content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
# NOTE: You need to check directory's permission
MAX_HEIGHT = 1536 # 1536 # 768 # 1280 # 1024 # 2048 # 2688
MAX_WIDTH = 3072 # 3072 # 1536 # 2560 # 2048 # 4096 # 5376
CROP_HEIGHT = 512 # 256, 384, 512
CROP_WIDTH = 512 # 512, 768, 1024
RESIZE_HEIGHT = 1536
RESIZE_WIDTH = 3072
# MNT_PATH = '/nfs/host/PConv-Keras' # For Spacely_Multi_GPU
MNT_PATH = '/nfs/host/PConv-Keras' # For Spacly_Lab
# house-dataset-src dir
ORIGINAL_PATH = ['{}/house-dataset-src/original/'.format(MNT_PATH)] # 9317 images
RESIZED_PATH = ['{}/house-dataset/resize-train-1536x3072/00'.format(MNT_PATH)]
TRAIN_PATH = '{}/house-dataset/resize-train-768x1536'.format(MNT_PATH)
VAL_PATH = '{}/house-dataset/resize-valid-768x1536'.format(MNT_PATH)
TEST_PATH = '{}/house-dataset/test-crop-256-512'.format(MNT_PATH)
# For mix training
TRAIN_SMALL_SIZE = '{}/house-dataset/resize-train-512x1024'.format(MNT_PATH)
TRAIN_MEDIUM_SIZE = '{}/house-dataset/resize-train-768x1536'.format(MNT_PATH)
TRAIN_LARGE_SIZE = '{}/house-dataset/resize-train-1536x3072'.format(MNT_PATH)
VALID_SMALL_SIZE = '{}/house-dataset/resize-valid-512x1024'.format(MNT_PATH)
VALID_MEDIUM_SIZE = '{}/house-dataset/resize-valid-768x1536'.format(MNT_PATH)
VALID_LARGE_SIZE = '{}/house-dataset/resize-valid-1536x3072'.format(MNT_PATH)
# Save dir
WEIGHT_PATH = '{}/data/model/resize-1536x3072/512x512_GPU-4_Batch-4_Remove255/weight/'.format(MNT_PATH)
TFLOG_PATH = '{}/data/model/resize-1536x3072/512x512_GPU-4_Batch-4_Remove255/tflogs'.format(MNT_PATH)
ERRLOG_PATH = '{}/error_log/'.format(MNT_PATH)
| max_height = 1536
max_width = 3072
crop_height = 512
crop_width = 512
resize_height = 1536
resize_width = 3072
mnt_path = '/nfs/host/PConv-Keras'
original_path = ['{}/house-dataset-src/original/'.format(MNT_PATH)]
resized_path = ['{}/house-dataset/resize-train-1536x3072/00'.format(MNT_PATH)]
train_path = '{}/house-dataset/resize-train-768x1536'.format(MNT_PATH)
val_path = '{}/house-dataset/resize-valid-768x1536'.format(MNT_PATH)
test_path = '{}/house-dataset/test-crop-256-512'.format(MNT_PATH)
train_small_size = '{}/house-dataset/resize-train-512x1024'.format(MNT_PATH)
train_medium_size = '{}/house-dataset/resize-train-768x1536'.format(MNT_PATH)
train_large_size = '{}/house-dataset/resize-train-1536x3072'.format(MNT_PATH)
valid_small_size = '{}/house-dataset/resize-valid-512x1024'.format(MNT_PATH)
valid_medium_size = '{}/house-dataset/resize-valid-768x1536'.format(MNT_PATH)
valid_large_size = '{}/house-dataset/resize-valid-1536x3072'.format(MNT_PATH)
weight_path = '{}/data/model/resize-1536x3072/512x512_GPU-4_Batch-4_Remove255/weight/'.format(MNT_PATH)
tflog_path = '{}/data/model/resize-1536x3072/512x512_GPU-4_Batch-4_Remove255/tflogs'.format(MNT_PATH)
errlog_path = '{}/error_log/'.format(MNT_PATH) |
# O(n+k) time complexity (Worst time complexity - O(2n-1)):
# O(k) (Get Slice 1)
# O(n-k) (Get Slice 2)
# O(k) (Concatenate Slices)
# CPython time-complexity - https://wiki.python.org/moin/TimeComplexity
# O(1) space complexity
# Rotates the characters in a string by a given input and have the overflow appear at the beginning.
def rotated_string(input_string, input_number):
input_number = input_number % len(input_string) # in case input_number > len(input_string)
print(input_string[-input_number:] + input_string[:-input_number])
return input_string[-input_number:] + input_string[:-input_number]
# Tests the 'rotated_string' method.
def test_rotated_string():
assert rotated_string("MyString", 2) == 'ngMyStri', "Should be \"ngMyStri\""
# Corner-case tests
assert rotated_string("MyString", 10) == 'ngMyStri', "Should be \"ngMyStri\""
assert rotated_string("MyString", -6) == 'ngMyStri', "Should be \"ngMyStri\""
assert rotated_string("MyString", -8) == 'MyString', "Should be \"MyString\""
assert rotated_string("MyString", 0) == 'MyString', "Should be \"MyString\""
assert rotated_string("MyString", 8) == 'MyString', "Should be \"MyString\""
if __name__ == '__main__':
test_rotated_string()
print("Everything passed")
| def rotated_string(input_string, input_number):
input_number = input_number % len(input_string)
print(input_string[-input_number:] + input_string[:-input_number])
return input_string[-input_number:] + input_string[:-input_number]
def test_rotated_string():
assert rotated_string('MyString', 2) == 'ngMyStri', 'Should be "ngMyStri"'
assert rotated_string('MyString', 10) == 'ngMyStri', 'Should be "ngMyStri"'
assert rotated_string('MyString', -6) == 'ngMyStri', 'Should be "ngMyStri"'
assert rotated_string('MyString', -8) == 'MyString', 'Should be "MyString"'
assert rotated_string('MyString', 0) == 'MyString', 'Should be "MyString"'
assert rotated_string('MyString', 8) == 'MyString', 'Should be "MyString"'
if __name__ == '__main__':
test_rotated_string()
print('Everything passed') |
def main():
print ('Filter data')
input_f = open('../data/result_size_large_files.tsv')
output_f = open('../data/result_size_large.csv', 'w')
lines = input_f.readlines()
distributions = ['Combo', 'Diagonal', 'DiagonalRot', 'Gauss', 'Parcel', 'Uniform']
for line in lines:
print (line)
data = line.strip().split('\t')
filenames = data[0].split('_')
print (filenames)
filenames_array = []
a = []
for s in filenames:
if s in distributions:
filenames_array.append(a)
a = [s]
else:
a.append(s)
filenames_array.append(a)
filenames_array = filenames_array[1:]
datasets = []
for a in filenames_array:
datasets.append('_'.join(a))
print (len(datasets))
output_f.writelines('{}.csv,{}.csv,{}\n'.format(datasets[0], datasets[1], data[1]))
output_f.close()
input_f.close()
if __name__ == '__main__':
main()
| def main():
print('Filter data')
input_f = open('../data/result_size_large_files.tsv')
output_f = open('../data/result_size_large.csv', 'w')
lines = input_f.readlines()
distributions = ['Combo', 'Diagonal', 'DiagonalRot', 'Gauss', 'Parcel', 'Uniform']
for line in lines:
print(line)
data = line.strip().split('\t')
filenames = data[0].split('_')
print(filenames)
filenames_array = []
a = []
for s in filenames:
if s in distributions:
filenames_array.append(a)
a = [s]
else:
a.append(s)
filenames_array.append(a)
filenames_array = filenames_array[1:]
datasets = []
for a in filenames_array:
datasets.append('_'.join(a))
print(len(datasets))
output_f.writelines('{}.csv,{}.csv,{}\n'.format(datasets[0], datasets[1], data[1]))
output_f.close()
input_f.close()
if __name__ == '__main__':
main() |
# Implementation of a Stack.
class Stack:
class Node: # Node class (or pointers that hold a value and direction to next node).
def __init__(self, val=None):
self.val = val
self.nextNode = None
def __init__(self):
self.head = None
# Add new node with value to stack.
def push(self, val):
newNode = self.Node(val) # Create new node with given value.
if self.head is None: # If stack is empty, put node in stack.
self.head = newNode
else: # Else loop through nodes until a given node points to nothing
currNode = self.head
while currNode.nextNode is not None:
currNode = currNode.nextNode
else: # Then set that last node to point to the newly-created node.
currNode.nextNode = newNode
# Remove value from the stack.
def pop(self, val=True):
currNode = self.head
if currNode is not None: # If stack is not empty, loop through nodes.
while currNode.nextNode.nextNode is not None:
currNode = currNode.nextNode
else:
# Save the value to be deleted and set last node to None through
# the previous node.
delVal = currNode.nextNode.val
currNode.nextNode = None
if val:
return delVal # Return deleted value if desired.
# Get value sitting on top of stack.
def peek(self, val=True):
currNode = self.head
if currNode is not None: # Loop through nodes until the last one is reached.
while currNode.nextNode is not None:
currNode = currNode.nextNode
else: # Return last node or its value depending on parameter.
return currNode.val if val else currNode
# Get length of stack.
@property
def length(self):
if self.head is None: # If stack is empty, return 0.
return 0
else:
counter = 1
currNode = self.head # While there is a next node to go to, add to counter.
while currNode.nextNode is not None:
currNode = currNode.nextNode
counter += 1
return counter # Return counter.
# Return string representation of stack.
def __str__(self):
vals = []
if self.head is None: # If stack is empty return pipe.
return "|"
else:
currNode = self.head # Add nodes values to list while iterating through them.
while currNode is not None:
vals.append(str(currNode.val))
currNode = currNode.nextNode
# Return values from list starting with a pipe, separated by a comma.
return f"|{', '.join(vals)}"
# Return canonical string representation of stack.
def __repr__(self):
vals = []
if self.head is None: # If stack is empty return pipe.
return "|"
else:
currNode = self.head
while currNode is not None: # Add nodes values to list while iterating through them.
vals.append(str(currNode.val))
currNode = currNode.nextNode
# Return values from list starting with a pipe, separated by a comma.
return f"|{', '.join(vals)}"
# Unit Tests.
if __name__ == "__main__":
stack = Stack()
print(stack.peek())
print(stack)
print()
stack.push(1)
print(stack.peek())
print(stack)
print()
stack.push(1)
print(stack.peek())
print(stack)
print()
stack.push(2)
print(stack.peek())
print(stack)
print()
stack.push(3)
print(stack.peek())
print(stack)
print()
stack.push(5)
print(stack.peek())
print(stack)
print()
stack.pop()
print(stack.peek())
print(stack)
print()
| class Stack:
class Node:
def __init__(self, val=None):
self.val = val
self.nextNode = None
def __init__(self):
self.head = None
def push(self, val):
new_node = self.Node(val)
if self.head is None:
self.head = newNode
else:
curr_node = self.head
while currNode.nextNode is not None:
curr_node = currNode.nextNode
else:
currNode.nextNode = newNode
def pop(self, val=True):
curr_node = self.head
if currNode is not None:
while currNode.nextNode.nextNode is not None:
curr_node = currNode.nextNode
else:
del_val = currNode.nextNode.val
currNode.nextNode = None
if val:
return delVal
def peek(self, val=True):
curr_node = self.head
if currNode is not None:
while currNode.nextNode is not None:
curr_node = currNode.nextNode
else:
return currNode.val if val else currNode
@property
def length(self):
if self.head is None:
return 0
else:
counter = 1
curr_node = self.head
while currNode.nextNode is not None:
curr_node = currNode.nextNode
counter += 1
return counter
def __str__(self):
vals = []
if self.head is None:
return '|'
else:
curr_node = self.head
while currNode is not None:
vals.append(str(currNode.val))
curr_node = currNode.nextNode
return f"|{', '.join(vals)}"
def __repr__(self):
vals = []
if self.head is None:
return '|'
else:
curr_node = self.head
while currNode is not None:
vals.append(str(currNode.val))
curr_node = currNode.nextNode
return f"|{', '.join(vals)}"
if __name__ == '__main__':
stack = stack()
print(stack.peek())
print(stack)
print()
stack.push(1)
print(stack.peek())
print(stack)
print()
stack.push(1)
print(stack.peek())
print(stack)
print()
stack.push(2)
print(stack.peek())
print(stack)
print()
stack.push(3)
print(stack.peek())
print(stack)
print()
stack.push(5)
print(stack.peek())
print(stack)
print()
stack.pop()
print(stack.peek())
print(stack)
print() |
j= 7
for i in range(9+1):
if i%2 ==1:
print(f"I={i} J={j}")
print(f"I={i} J={j-1}")
print(f"I={i} J={j-2}")
j =j+2
| j = 7
for i in range(9 + 1):
if i % 2 == 1:
print(f'I={i} J={j}')
print(f'I={i} J={j - 1}')
print(f'I={i} J={j - 2}')
j = j + 2 |
class BearToy:
def __init__(self, name, size, color):
self.name = name
self.size = size
self.color = color
def sing(self):
print('I am %s, lalala...' % self.name)
class NewBear(BearToy):
def __init__(self, name, size, color, material):
# BearToy.__init__(self, name, size, color)
super(NewBear, self).__init__(name, size, color)
self.material = material
def run(self):
print('running...')
if __name__ == '__main__':
b1 = NewBear('big_bear', 'Large', 'Brown', 'cotton')
b1.sing()
b1.run()
| class Beartoy:
def __init__(self, name, size, color):
self.name = name
self.size = size
self.color = color
def sing(self):
print('I am %s, lalala...' % self.name)
class Newbear(BearToy):
def __init__(self, name, size, color, material):
super(NewBear, self).__init__(name, size, color)
self.material = material
def run(self):
print('running...')
if __name__ == '__main__':
b1 = new_bear('big_bear', 'Large', 'Brown', 'cotton')
b1.sing()
b1.run() |
class DesignerSummary(object):
def __init__(self, designer_name, summary):
self.designer_name = designer_name
self.summary = summary
def print_summary(self):
print("[%s]" % self.designer_name)
print(" %s" % self.max_price())
print(" %s" % self.avg_price())
print(" %s" % self.min_price())
print(" %s" % self.total_items())
print(" %s" % self.avg_age_of_listing())
print(" %s" % self.avg_age_bumped())
print(" %s" % self.items_marked_down())
print(" %s" % self.items_bumped())
if 'num_collabs' in self.summary:
print(" %s\n" % self.num_collabs())
def max_price(self):
return "Max price: $%0.2f" % self.summary['max_price']
def avg_price(self):
return "Avg price: $%0.2f" % self.summary['avg_price']
def min_price(self):
return "Min price: $%0.2f" % self.summary['min_price']
def total_items(self):
return "Total items: %d" % self.summary['num_items']
def avg_age_of_listing(self):
return "Avg age of listing: %0.2f days" % self.summary['avg_age']
def avg_age_bumped(self):
return "Avg age bumped: %0.2f days" % self.summary['avg_age_bumped']
def items_marked_down(self):
return "Items marked down: %d (%0.2f %%)" % (self.summary['num_marked_down'], self.summary['per_marked_down'])
def items_bumped(self):
return "Items bumped: %d (%0.2f %%)" % (self.summary['num_bumped'], self.summary['per_bumped'])
def num_collabs(self):
return "Collaborations: %d" % self.summary['num_collabs']
| class Designersummary(object):
def __init__(self, designer_name, summary):
self.designer_name = designer_name
self.summary = summary
def print_summary(self):
print('[%s]' % self.designer_name)
print(' %s' % self.max_price())
print(' %s' % self.avg_price())
print(' %s' % self.min_price())
print(' %s' % self.total_items())
print(' %s' % self.avg_age_of_listing())
print(' %s' % self.avg_age_bumped())
print(' %s' % self.items_marked_down())
print(' %s' % self.items_bumped())
if 'num_collabs' in self.summary:
print(' %s\n' % self.num_collabs())
def max_price(self):
return 'Max price: $%0.2f' % self.summary['max_price']
def avg_price(self):
return 'Avg price: $%0.2f' % self.summary['avg_price']
def min_price(self):
return 'Min price: $%0.2f' % self.summary['min_price']
def total_items(self):
return 'Total items: %d' % self.summary['num_items']
def avg_age_of_listing(self):
return 'Avg age of listing: %0.2f days' % self.summary['avg_age']
def avg_age_bumped(self):
return 'Avg age bumped: %0.2f days' % self.summary['avg_age_bumped']
def items_marked_down(self):
return 'Items marked down: %d (%0.2f %%)' % (self.summary['num_marked_down'], self.summary['per_marked_down'])
def items_bumped(self):
return 'Items bumped: %d (%0.2f %%)' % (self.summary['num_bumped'], self.summary['per_bumped'])
def num_collabs(self):
return 'Collaborations: %d' % self.summary['num_collabs'] |
qrel_input = 'data/expert/qrels-covid_d4_j3.5-4.txt'
doc_type = 'expert'
qrel_name = 'baseline_doc'
qrel_path = f'qrels/{doc_type}/{qrel_name}'
with open(qrel_path, 'w') as fo:
with open(qrel_input) as f:
for line in f:
line = line.strip().split()
if line:
query_id, _, doc_id, dq_rank = line
query_id = int(query_id)
dq_rank = int(dq_rank)
if dq_rank > 1:
dq_rank = 1
line = f'{query_id}\tQ0\t{doc_id}\t{dq_rank}\n'
fo.write(line)
| qrel_input = 'data/expert/qrels-covid_d4_j3.5-4.txt'
doc_type = 'expert'
qrel_name = 'baseline_doc'
qrel_path = f'qrels/{doc_type}/{qrel_name}'
with open(qrel_path, 'w') as fo:
with open(qrel_input) as f:
for line in f:
line = line.strip().split()
if line:
(query_id, _, doc_id, dq_rank) = line
query_id = int(query_id)
dq_rank = int(dq_rank)
if dq_rank > 1:
dq_rank = 1
line = f'{query_id}\tQ0\t{doc_id}\t{dq_rank}\n'
fo.write(line) |
class BoundingBox:
def __init__(self, x1, y1, x2, y2):
self.x1 = x1
self.y1 = y1
self.x2 = x2
self.y2 = y2
self.k = 2 # scaling factor
def get_x_center(self):
return(self.x1 + self.x2) / 2
def get_y_center(self):
return(self.y1 + self.y2) / 2
def compute_output_height(self):
bbox_height = self.y2 - self.y1
output_height = self.k * bbox_height
return max(1.0, output_height)
def compute_output_width(self):
bbox_width = self.x2 - self.x1
output_width = self.k * bbox_width
return max(1.0, output_width)
def update_coordinates(self, x1, x2, y1, y2):
self.x1 = x1
self.x2 = x2
self.y1 = y1
self.y2 = y2
| class Boundingbox:
def __init__(self, x1, y1, x2, y2):
self.x1 = x1
self.y1 = y1
self.x2 = x2
self.y2 = y2
self.k = 2
def get_x_center(self):
return (self.x1 + self.x2) / 2
def get_y_center(self):
return (self.y1 + self.y2) / 2
def compute_output_height(self):
bbox_height = self.y2 - self.y1
output_height = self.k * bbox_height
return max(1.0, output_height)
def compute_output_width(self):
bbox_width = self.x2 - self.x1
output_width = self.k * bbox_width
return max(1.0, output_width)
def update_coordinates(self, x1, x2, y1, y2):
self.x1 = x1
self.x2 = x2
self.y1 = y1
self.y2 = y2 |
s = 0
for i in range(2,100):
for j in range(2,i):
if i % j == 0:
break
else:
s += i
print(s) | s = 0
for i in range(2, 100):
for j in range(2, i):
if i % j == 0:
break
else:
s += i
print(s) |
n1= input()
n2 = input()
j = 1
for i in range(1,n1+1):
j = i*j
k = j%n2
print(k)
print("\n") | n1 = input()
n2 = input()
j = 1
for i in range(1, n1 + 1):
j = i * j
k = j % n2
print(k)
print('\n') |
# Used to test import statements for the NoopAugmentor plugin.
def noop(x):
return x
| def noop(x):
return x |
C = int(input())
if C>=2 and C<=99:
for i in range(C):
x =input()
print("gzuz") | c = int(input())
if C >= 2 and C <= 99:
for i in range(C):
x = input()
print('gzuz') |
def my_bilateral_filter(ImgNoisy, window_size = 3 , sigma_d = 4, sigma_r = 40):
# sigma_d : smoothing weight factor
# sigma_r : range weight factor
height = ImgNoisy.shape[0]
width = ImgNoisy.shape[1]
# Initialize the filtered image:
filtered_image = np.empty([height,width])
# Starting looping and processing the orginal noisy and assigning values to the new filtered image
window_boundary = int(np.ceil(window_size/2))
for i in range(height):
for j in range(width):
normalization_counter = 0
filtered_pixel = 0
for k in range(i - window_boundary, i + window_boundary):
for l in range(j - window_boundary, j + window_boundary):
# Apply window boundary conditions
if (k >= 0 and k < height and l >= 0 and l < width):
# Calculate smoothing weight :
smoothing_weight_dist = math.sqrt(np.power((i - k), 2) + np.power((j - l), 2))
smoothing_weight = math.exp(-smoothing_weight_dist/(2 * (sigma_s ** 2)))
# Calculate range weight :
range_weight_dist = (abs(int(imgNoisy[i][j]) - int(imgNoisy[k][l]))) ** 2
range_weight = math.exp(-range_weight_dist /(2 * (sigma_r ** 2)))
# Calculate combined weight, perform summation and normalization operations
bilateral_weight = smoothing_weight * range_weight
neighbor_pixel = imgNoisy[k, l]
filtered_pixel += neighbor_pixel * bilateral_weight
normalization_counter += bilateral_weight
filtered_pixel = filtered_pixel / normalization_counter
filtered_image[i][j] = int(round(filtered_pixel))
return filtered_image
| def my_bilateral_filter(ImgNoisy, window_size=3, sigma_d=4, sigma_r=40):
height = ImgNoisy.shape[0]
width = ImgNoisy.shape[1]
filtered_image = np.empty([height, width])
window_boundary = int(np.ceil(window_size / 2))
for i in range(height):
for j in range(width):
normalization_counter = 0
filtered_pixel = 0
for k in range(i - window_boundary, i + window_boundary):
for l in range(j - window_boundary, j + window_boundary):
if k >= 0 and k < height and (l >= 0) and (l < width):
smoothing_weight_dist = math.sqrt(np.power(i - k, 2) + np.power(j - l, 2))
smoothing_weight = math.exp(-smoothing_weight_dist / (2 * sigma_s ** 2))
range_weight_dist = abs(int(imgNoisy[i][j]) - int(imgNoisy[k][l])) ** 2
range_weight = math.exp(-range_weight_dist / (2 * sigma_r ** 2))
bilateral_weight = smoothing_weight * range_weight
neighbor_pixel = imgNoisy[k, l]
filtered_pixel += neighbor_pixel * bilateral_weight
normalization_counter += bilateral_weight
filtered_pixel = filtered_pixel / normalization_counter
filtered_image[i][j] = int(round(filtered_pixel))
return filtered_image |
class EventTableData:
def __init__(self):
self._header_tag = 'th'
self._dispo_header = False
self._event_row = -1
def store_data(self, case_parser, data):
if self._dispo_header:
self._event_row += 1
case_parser.event_table_data.append([])
case_parser.event_table_data[self._event_row].append(data)
self._dispo_header = False
else:
case_parser.event_table_data[self._event_row].append(data)
def check_tag(self, tag):
if self._header_tag == tag:
self._dispo_header = True
| class Eventtabledata:
def __init__(self):
self._header_tag = 'th'
self._dispo_header = False
self._event_row = -1
def store_data(self, case_parser, data):
if self._dispo_header:
self._event_row += 1
case_parser.event_table_data.append([])
case_parser.event_table_data[self._event_row].append(data)
self._dispo_header = False
else:
case_parser.event_table_data[self._event_row].append(data)
def check_tag(self, tag):
if self._header_tag == tag:
self._dispo_header = True |
class IceCreamMachine:
all={}
def __init__(self, ingredients, toppings):
self.ingredients = ingredients
self.toppings = toppings
def scoops(self):
res = []
for i in self.ingredients:
for j in self.toppings:
res.append([i, j])
return res
machine = IceCreamMachine(["vanilla", "chocolate"], ["chocolate sauce"])
print(machine.scoops())
| class Icecreammachine:
all = {}
def __init__(self, ingredients, toppings):
self.ingredients = ingredients
self.toppings = toppings
def scoops(self):
res = []
for i in self.ingredients:
for j in self.toppings:
res.append([i, j])
return res
machine = ice_cream_machine(['vanilla', 'chocolate'], ['chocolate sauce'])
print(machine.scoops()) |
class lennox_period(object):
def __init__(self, id):
self.id = id
self.enabled = False
self.startTime = None
self.systemMode = None
self.hsp = None
self.hspC = None
self.csp = None
self.cspC = None
self.sp = None
self.spC = None
self.humidityMode = None
self.husp = None
self.desp = None
self.fanMode = None
def update(self, periods):
if 'enabled' in periods:
self.enabled = periods['enabled']
if 'period' in periods:
period = periods['period']
if 'startTime' in period:
self.startTime = period['startTime']
if 'systemMode' in period:
self.systemMode = period['systemMode']
if 'hsp' in period:
self.hsp = period['hsp']
if 'hspC' in period:
self.hspC = period['hspC']
if 'csp' in period:
self.csp = period['csp']
if 'cspC' in period:
self.cspC = period['cspC']
if 'sp' in period:
self.sp = period['sp']
if 'spC' in period:
self.spC = period['spC']
if 'humidityMode' in period:
self.humidityMode = period['humidityMode']
if 'husp' in period:
self.husp = period['husp']
if 'desp' in period:
self.desp = period['desp']
if 'fanMode' in period:
self.fanMode = period['fanMode'] | class Lennox_Period(object):
def __init__(self, id):
self.id = id
self.enabled = False
self.startTime = None
self.systemMode = None
self.hsp = None
self.hspC = None
self.csp = None
self.cspC = None
self.sp = None
self.spC = None
self.humidityMode = None
self.husp = None
self.desp = None
self.fanMode = None
def update(self, periods):
if 'enabled' in periods:
self.enabled = periods['enabled']
if 'period' in periods:
period = periods['period']
if 'startTime' in period:
self.startTime = period['startTime']
if 'systemMode' in period:
self.systemMode = period['systemMode']
if 'hsp' in period:
self.hsp = period['hsp']
if 'hspC' in period:
self.hspC = period['hspC']
if 'csp' in period:
self.csp = period['csp']
if 'cspC' in period:
self.cspC = period['cspC']
if 'sp' in period:
self.sp = period['sp']
if 'spC' in period:
self.spC = period['spC']
if 'humidityMode' in period:
self.humidityMode = period['humidityMode']
if 'husp' in period:
self.husp = period['husp']
if 'desp' in period:
self.desp = period['desp']
if 'fanMode' in period:
self.fanMode = period['fanMode'] |
#Inverter valores de 2 variaveis lidas.
a = input("Insira o valor de A: "); b = input("Insira o valor de B: ")
c = a
a = b
b = c
print("O valor de A (invertida): " + str(a) + " e o de B (invertido): " + str(b)) | a = input('Insira o valor de A: ')
b = input('Insira o valor de B: ')
c = a
a = b
b = c
print('O valor de A (invertida): ' + str(a) + ' e o de B (invertido): ' + str(b)) |
### Insert a node at the head of a linked list - Solution
class SinglyLinkedListNode:
def __init__(self, node_data):
self.data = node_data
self.next = None
class SinglyLinkedList:
def __init__(self):
self.head = None
self.tail = None
def print_singly_linked_list(node):
while (node != None):
print(node.data)
node = node.next
# Inserts node at the head of a linked list
def insertNodeAtHead(head, data):
new_node = SinglyLinkedListNode(data)
# Assign data to new_node's data
new_node.data = data
# Make new_node's next as head
new_node.next = head
# Make head point to new_node
head = new_node
return head
llist_size = int(input())
llist = SinglyLinkedList()
for _ in range(llist_size):
llist_item = int(input())
llist_head = insertNodeAtHead(llist.head, llist_item)
llist.head = llist_head
print_singly_linked_list(llist.head) | class Singlylinkedlistnode:
def __init__(self, node_data):
self.data = node_data
self.next = None
class Singlylinkedlist:
def __init__(self):
self.head = None
self.tail = None
def print_singly_linked_list(node):
while node != None:
print(node.data)
node = node.next
def insert_node_at_head(head, data):
new_node = singly_linked_list_node(data)
new_node.data = data
new_node.next = head
head = new_node
return head
llist_size = int(input())
llist = singly_linked_list()
for _ in range(llist_size):
llist_item = int(input())
llist_head = insert_node_at_head(llist.head, llist_item)
llist.head = llist_head
print_singly_linked_list(llist.head) |
# function to increase the pixel by one inside each box
def add_heat(heatmap, bbox_list):
# Iterate through list of bboxes
for box in bbox_list:
# Add += 1 for all pixels inside each bbox
# Assuming each "box" takes the form ((x1, y1), (x2, y2))
heatmap[box[0][1]:box[1][1], box[0][0]:box[1][0]] += 1
# Return updated heatmap
return heatmap
# applying a threshold value to the image to filter out low pixel cells
def apply_threshold(heatmap, threshold):
# Zero out pixels below the threshold
heatmap[heatmap <= threshold] = 0
# Return thresholded map
return heatmap
| def add_heat(heatmap, bbox_list):
for box in bbox_list:
heatmap[box[0][1]:box[1][1], box[0][0]:box[1][0]] += 1
return heatmap
def apply_threshold(heatmap, threshold):
heatmap[heatmap <= threshold] = 0
return heatmap |
fim = int(input("Digite um numero: "))
x = 0
while x <= fim:
if not x % 2 == 0:
print(x)
x += 1
| fim = int(input('Digite um numero: '))
x = 0
while x <= fim:
if not x % 2 == 0:
print(x)
x += 1 |
class EmployeeApi:
endpoint = 'Employee.json'
def __init__(self, client):
self.client = client
def get_employee(self, employeeId):
return self.client.get(endpoint=self.endpoint, payload={
"employeeID": employeeId,
"load_relations": '["Contact"]'
}) | class Employeeapi:
endpoint = 'Employee.json'
def __init__(self, client):
self.client = client
def get_employee(self, employeeId):
return self.client.get(endpoint=self.endpoint, payload={'employeeID': employeeId, 'load_relations': '["Contact"]'}) |
# HARD
# Input: "abcd"
# reverse input => as rev = "dcba"
# compare s[:n-i] with rev[i:]
# abcd vs dcba
# abc vs cba
# ab vs ba
# a vs a => i == 3
# the same substring is the overlapped part of the result, thus rev[:i] + s is the result
# Time O(N^2) Space O(n)
# KMP prefix table
# this reduced the substring time to O(1)
# Time O(N) Space O(N)
class Solution:
def shortestPalindrome(self, s: str) -> str:
return self.slow(s)
def slow(self,s):
n = len(s)
rev = ''.join(reversed(list(s)))
for i in range(n):
if s[:n-i] == rev[i:]:
return rev[:i]+ s
return ""
def fast(self,s):
n = len(s)
rev = ''.join(reversed(list(s)))
formed = s+"*"+rev
prefix = self.buildPrefix(formed)
# print([i for i in formed])
# print(prefix)
return rev[0:n-prefix[-1]]+s
def buildPrefix(self,s):
n = len(s)
prefix = [0]*n
length = 0
i = 1
j = 0
while i <n:
if s[i] == s[length]:
length += 1
prefix[i] = length
i += 1
else:
if length> 0:
length = prefix[length-1]
else:
prefix[i] = length
i+=1
return prefix | class Solution:
def shortest_palindrome(self, s: str) -> str:
return self.slow(s)
def slow(self, s):
n = len(s)
rev = ''.join(reversed(list(s)))
for i in range(n):
if s[:n - i] == rev[i:]:
return rev[:i] + s
return ''
def fast(self, s):
n = len(s)
rev = ''.join(reversed(list(s)))
formed = s + '*' + rev
prefix = self.buildPrefix(formed)
return rev[0:n - prefix[-1]] + s
def build_prefix(self, s):
n = len(s)
prefix = [0] * n
length = 0
i = 1
j = 0
while i < n:
if s[i] == s[length]:
length += 1
prefix[i] = length
i += 1
elif length > 0:
length = prefix[length - 1]
else:
prefix[i] = length
i += 1
return prefix |
{ 'application':{ 'type':'Application',
'name':'HtmlPreview',
'backgrounds':
[
{ 'type':'Background',
'name':'bgMin',
'title':'HTML Preview',
#'size':(800, 600),
'statusBar':1,
'style':['resizeable'],
'components':
[
{ 'type':'HtmlWindow',
'name':'html',
'size':(400, 200),
'text':''
},
]
}
]
}
}
| {'application': {'type': 'Application', 'name': 'HtmlPreview', 'backgrounds': [{'type': 'Background', 'name': 'bgMin', 'title': 'HTML Preview', 'statusBar': 1, 'style': ['resizeable'], 'components': [{'type': 'HtmlWindow', 'name': 'html', 'size': (400, 200), 'text': ''}]}]}} |
expected_output = {
"vrf": {
"default": {
"address_family": {
"ipv4": {
"instance": {
"1": {
"areas": {
"0.0.0.0": {
"database": {
"lsa_types": {
1: {
"lsa_type": 1,
"lsas": {
"10.4.1.1 10.4.1.1": {
"adv_router": "10.4.1.1",
"lsa_id": "10.4.1.1",
"ospfv2": {
"body": {
"router": {
"links": {
"10.4.1.1": {
"link_data": "255.255.255.255",
"link_id": "10.4.1.1",
"num_mtid_metrics": 2,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
},
32: {
"metric": 1,
"mt_id": 32,
},
33: {
"metric": 1,
"mt_id": 33,
},
},
"type": "stub network",
},
"10.1.2.1": {
"link_data": "10.1.2.1",
"link_id": "10.1.2.1",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
}
},
"type": "transit network",
},
"10.1.4.4": {
"link_data": "10.1.4.1",
"link_id": "10.1.4.4",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
}
},
"type": "transit network",
},
},
"num_of_links": 3,
}
},
"header": {
"adv_router": "10.4.1.1",
"age": 742,
"checksum": "0x6228",
"length": 60,
"lsa_id": "10.4.1.1",
"option": "None",
"option_desc": "No TOS-capability, DC",
"seq_num": "8000003D",
"type": 1,
},
},
},
"10.16.2.2 10.16.2.2": {
"adv_router": "10.16.2.2",
"lsa_id": "10.16.2.2",
"ospfv2": {
"body": {
"router": {
"links": {
"10.1.2.1": {
"link_data": "10.1.2.2",
"link_id": "10.1.2.1",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
}
},
"type": "transit network",
},
"10.2.3.3": {
"link_data": "10.2.3.2",
"link_id": "10.2.3.3",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
}
},
"type": "transit network",
},
"10.2.4.4": {
"link_data": "10.2.4.2",
"link_id": "10.2.4.4",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
}
},
"type": "transit network",
},
"10.16.2.2": {
"link_data": "255.255.255.255",
"link_id": "10.16.2.2",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
}
},
"type": "stub network",
},
},
"num_of_links": 4,
}
},
"header": {
"adv_router": "10.16.2.2",
"age": 1520,
"checksum": "0x672A",
"length": 72,
"lsa_id": "10.16.2.2",
"option": "None",
"option_desc": "No TOS-capability, No DC",
"seq_num": "80000013",
"type": 1,
},
},
},
"10.36.3.3 10.36.3.3": {
"adv_router": "10.36.3.3",
"lsa_id": "10.36.3.3",
"ospfv2": {
"body": {
"router": {
"links": {
"10.2.3.3": {
"link_data": "10.2.3.3",
"link_id": "10.2.3.3",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
}
},
"type": "transit network",
},
"10.3.4.4": {
"link_data": "10.3.4.3",
"link_id": "10.3.4.4",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
}
},
"type": "transit network",
},
"10.36.3.3": {
"link_data": "255.255.255.255",
"link_id": "10.36.3.3",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
}
},
"type": "stub network",
},
},
"num_of_links": 3,
}
},
"header": {
"adv_router": "10.36.3.3",
"age": 235,
"checksum": "0x75F8",
"length": 60,
"lsa_id": "10.36.3.3",
"option": "None",
"option_desc": "No TOS-capability, DC",
"seq_num": "80000033",
"type": 1,
},
},
},
"10.64.4.4 10.64.4.4": {
"adv_router": "10.64.4.4",
"lsa_id": "10.64.4.4",
"ospfv2": {
"body": {
"router": {
"links": {
"10.1.4.4": {
"link_data": "10.1.4.4",
"link_id": "10.1.4.4",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
}
},
"type": "transit network",
},
"10.2.4.4": {
"link_data": "10.2.4.4",
"link_id": "10.2.4.4",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
}
},
"type": "transit network",
},
"10.3.4.4": {
"link_data": "10.3.4.4",
"link_id": "10.3.4.4",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
}
},
"type": "transit network",
},
"10.64.4.4": {
"link_data": "255.255.255.255",
"link_id": "10.64.4.4",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
}
},
"type": "stub network",
},
},
"num_of_links": 4,
}
},
"header": {
"adv_router": "10.64.4.4",
"age": 1486,
"as_boundary_router": True,
"checksum": "0xA57C",
"length": 72,
"lsa_id": "10.64.4.4",
"option": "None",
"option_desc": "No TOS-capability, DC",
"seq_num": "80000036",
"type": 1,
},
},
},
},
}
}
}
}
}
},
"2": {
"areas": {
"0.0.0.1": {
"database": {
"lsa_types": {
1: {
"lsa_type": 1,
"lsas": {
"10.229.11.11 10.229.11.11": {
"adv_router": "10.229.11.11",
"lsa_id": "10.229.11.11",
"ospfv2": {
"body": {
"router": {
"links": {
"10.186.5.1": {
"link_data": "10.186.5.1",
"link_id": "10.186.5.1",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
}
},
"type": "transit network",
},
"10.151.22.22": {
"link_data": "0.0.0.14",
"link_id": "10.151.22.22",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 111,
"mt_id": 0,
"tos": 0,
}
},
"type": "another router (point-to-point)",
},
},
"num_of_links": 2,
}
},
"header": {
"adv_router": "10.229.11.11",
"age": 651,
"area_border_router": True,
"as_boundary_router": True,
"checksum": "0x9CE3",
"length": 48,
"lsa_id": "10.229.11.11",
"option": "None",
"option_desc": "No TOS-capability, DC",
"seq_num": "8000003E",
"type": 1,
},
},
},
"10.151.22.22 10.151.22.22": {
"adv_router": "10.151.22.22",
"lsa_id": "10.151.22.22",
"ospfv2": {
"body": {
"router": {
"links": {
"10.229.11.11": {
"link_data": "0.0.0.6",
"link_id": "10.229.11.11",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
}
},
"type": "another router (point-to-point)",
},
"10.229.6.6": {
"link_data": "10.229.6.2",
"link_id": "10.229.6.6",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 40,
"mt_id": 0,
"tos": 0,
}
},
"type": "transit network",
},
},
"num_of_links": 2,
}
},
"header": {
"adv_router": "10.151.22.22",
"age": 480,
"area_border_router": True,
"as_boundary_router": True,
"checksum": "0xC41A",
"length": 48,
"lsa_id": "10.151.22.22",
"option": "None",
"option_desc": "No TOS-capability, No DC",
"seq_num": "80000019",
"type": 1,
},
},
},
"10.36.3.3 10.36.3.3": {
"adv_router": "10.36.3.3",
"lsa_id": "10.36.3.3",
"ospfv2": {
"body": {
"router": {
"links": {
"10.19.7.7": {
"link_data": "10.19.7.3",
"link_id": "10.19.7.7",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
}
},
"type": "transit network",
}
},
"num_of_links": 1,
}
},
"header": {
"adv_router": "10.36.3.3",
"age": 1128,
"area_border_router": True,
"as_boundary_router": True,
"checksum": "0x5845",
"length": 36,
"lsa_id": "10.36.3.3",
"option": "None",
"option_desc": "No TOS-capability, DC",
"seq_num": "80000035",
"type": 1,
},
},
},
"10.115.55.55 10.115.55.55": {
"adv_router": "10.115.55.55",
"lsa_id": "10.115.55.55",
"ospfv2": {
"body": {
"router": {
"links": {
"10.186.5.1": {
"link_data": "10.186.5.5",
"link_id": "10.186.5.1",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
}
},
"type": "transit network",
},
"10.115.6.6": {
"link_data": "10.115.6.5",
"link_id": "10.115.6.6",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 30,
"mt_id": 0,
"tos": 0,
}
},
"type": "transit network",
},
"10.115.55.55": {
"link_data": "255.255.255.255",
"link_id": "10.115.55.55",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
}
},
"type": "stub network",
},
},
"num_of_links": 3,
}
},
"header": {
"adv_router": "10.115.55.55",
"age": 318,
"checksum": "0xE7BC",
"length": 60,
"lsa_id": "10.115.55.55",
"option": "None",
"option_desc": "No TOS-capability, DC",
"seq_num": "80000037",
"type": 1,
},
},
},
"10.84.66.66 10.84.66.66": {
"adv_router": "10.84.66.66",
"lsa_id": "10.84.66.66",
"ospfv2": {
"body": {
"router": {
"links": {
"10.229.6.6": {
"link_data": "10.229.6.6",
"link_id": "10.229.6.6",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
}
},
"type": "transit network",
},
"10.115.6.6": {
"link_data": "10.115.6.6",
"link_id": "10.115.6.6",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 30,
"mt_id": 0,
"tos": 0,
}
},
"type": "transit network",
},
"10.166.7.6": {
"link_data": "10.166.7.6",
"link_id": "10.166.7.6",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 30,
"mt_id": 0,
"tos": 0,
}
},
"type": "transit network",
},
"10.84.66.66": {
"link_data": "255.255.255.255",
"link_id": "10.84.66.66",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
}
},
"type": "stub network",
},
},
"num_of_links": 4,
}
},
"header": {
"adv_router": "10.84.66.66",
"age": 520,
"checksum": "0x1282",
"length": 72,
"lsa_id": "10.84.66.66",
"option": "None",
"option_desc": "No TOS-capability, DC",
"seq_num": "8000003C",
"type": 1,
},
},
},
"10.1.77.77 10.1.77.77": {
"adv_router": "10.1.77.77",
"lsa_id": "10.1.77.77",
"ospfv2": {
"body": {
"router": {
"links": {
"10.19.7.7": {
"link_data": "10.19.7.7",
"link_id": "10.19.7.7",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
}
},
"type": "transit network",
},
"10.166.7.6": {
"link_data": "10.166.7.7",
"link_id": "10.166.7.6",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 30,
"mt_id": 0,
"tos": 0,
}
},
"type": "transit network",
},
"10.1.77.77": {
"link_data": "255.255.255.255",
"link_id": "10.1.77.77",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
}
},
"type": "stub network",
},
},
"num_of_links": 3,
}
},
"header": {
"adv_router": "10.1.77.77",
"age": 288,
"checksum": "0x1379",
"length": 60,
"lsa_id": "10.1.77.77",
"option": "None",
"option_desc": "No TOS-capability, DC",
"seq_num": "80000030",
"type": 1,
},
},
},
},
}
}
}
}
}
},
"3": {
"areas": {
"0.0.0.0": {
"database": {
"lsa_types": {
1: {
"lsa_type": 1,
"lsas": {
"10.115.11.11 10.115.11.11": {
"adv_router": "10.115.11.11",
"lsa_id": "10.115.11.11",
"ospfv2": {
"body": {
"router": {
"links": {
"10.115.11.11": {
"link_data": "255.255.255.255",
"link_id": "10.115.11.11",
"num_mtid_metrics": 0,
"topologies": {
0: {
"metric": 1,
"mt_id": 0,
"tos": 0,
}
},
"type": "stub network",
}
},
"num_of_links": 1,
}
},
"header": {
"adv_router": "10.115.11.11",
"age": 50,
"as_boundary_router": True,
"checksum": "0x881A",
"length": 36,
"lsa_id": "10.115.11.11",
"option": "None",
"option_desc": "No TOS-capability, DC",
"seq_num": "80000001",
"type": 1,
},
},
}
},
}
}
}
},
"0.0.0.11": {
"database": {
"lsa_types": {
1: {
"lsa_type": 1,
"lsas": {
"10.115.11.11 10.115.11.11": {
"adv_router": "10.115.11.11",
"lsa_id": "10.115.11.11",
"ospfv2": {
"body": {
"router": {
"num_of_links": 0
}
},
"header": {
"adv_router": "10.115.11.11",
"age": 8,
"as_boundary_router": True,
"checksum": "0x1D1B",
"length": 24,
"lsa_id": "10.115.11.11",
"option": "None",
"option_desc": "No TOS-capability, DC",
"seq_num": "80000001",
"type": 1,
},
},
}
},
}
}
}
},
}
},
}
}
}
}
}
}
| expected_output = {'vrf': {'default': {'address_family': {'ipv4': {'instance': {'1': {'areas': {'0.0.0.0': {'database': {'lsa_types': {1: {'lsa_type': 1, 'lsas': {'10.4.1.1 10.4.1.1': {'adv_router': '10.4.1.1', 'lsa_id': '10.4.1.1', 'ospfv2': {'body': {'router': {'links': {'10.4.1.1': {'link_data': '255.255.255.255', 'link_id': '10.4.1.1', 'num_mtid_metrics': 2, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}, 32: {'metric': 1, 'mt_id': 32}, 33: {'metric': 1, 'mt_id': 33}}, 'type': 'stub network'}, '10.1.2.1': {'link_data': '10.1.2.1', 'link_id': '10.1.2.1', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}}, 'type': 'transit network'}, '10.1.4.4': {'link_data': '10.1.4.1', 'link_id': '10.1.4.4', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}}, 'type': 'transit network'}}, 'num_of_links': 3}}, 'header': {'adv_router': '10.4.1.1', 'age': 742, 'checksum': '0x6228', 'length': 60, 'lsa_id': '10.4.1.1', 'option': 'None', 'option_desc': 'No TOS-capability, DC', 'seq_num': '8000003D', 'type': 1}}}, '10.16.2.2 10.16.2.2': {'adv_router': '10.16.2.2', 'lsa_id': '10.16.2.2', 'ospfv2': {'body': {'router': {'links': {'10.1.2.1': {'link_data': '10.1.2.2', 'link_id': '10.1.2.1', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}}, 'type': 'transit network'}, '10.2.3.3': {'link_data': '10.2.3.2', 'link_id': '10.2.3.3', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}}, 'type': 'transit network'}, '10.2.4.4': {'link_data': '10.2.4.2', 'link_id': '10.2.4.4', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}}, 'type': 'transit network'}, '10.16.2.2': {'link_data': '255.255.255.255', 'link_id': '10.16.2.2', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}}, 'type': 'stub network'}}, 'num_of_links': 4}}, 'header': {'adv_router': '10.16.2.2', 'age': 1520, 'checksum': '0x672A', 'length': 72, 'lsa_id': '10.16.2.2', 'option': 'None', 'option_desc': 'No TOS-capability, No DC', 'seq_num': '80000013', 'type': 1}}}, '10.36.3.3 10.36.3.3': {'adv_router': '10.36.3.3', 'lsa_id': '10.36.3.3', 'ospfv2': {'body': {'router': {'links': {'10.2.3.3': {'link_data': '10.2.3.3', 'link_id': '10.2.3.3', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}}, 'type': 'transit network'}, '10.3.4.4': {'link_data': '10.3.4.3', 'link_id': '10.3.4.4', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}}, 'type': 'transit network'}, '10.36.3.3': {'link_data': '255.255.255.255', 'link_id': '10.36.3.3', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}}, 'type': 'stub network'}}, 'num_of_links': 3}}, 'header': {'adv_router': '10.36.3.3', 'age': 235, 'checksum': '0x75F8', 'length': 60, 'lsa_id': '10.36.3.3', 'option': 'None', 'option_desc': 'No TOS-capability, DC', 'seq_num': '80000033', 'type': 1}}}, '10.64.4.4 10.64.4.4': {'adv_router': '10.64.4.4', 'lsa_id': '10.64.4.4', 'ospfv2': {'body': {'router': {'links': {'10.1.4.4': {'link_data': '10.1.4.4', 'link_id': '10.1.4.4', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}}, 'type': 'transit network'}, '10.2.4.4': {'link_data': '10.2.4.4', 'link_id': '10.2.4.4', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}}, 'type': 'transit network'}, '10.3.4.4': {'link_data': '10.3.4.4', 'link_id': '10.3.4.4', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}}, 'type': 'transit network'}, '10.64.4.4': {'link_data': '255.255.255.255', 'link_id': '10.64.4.4', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}}, 'type': 'stub network'}}, 'num_of_links': 4}}, 'header': {'adv_router': '10.64.4.4', 'age': 1486, 'as_boundary_router': True, 'checksum': '0xA57C', 'length': 72, 'lsa_id': '10.64.4.4', 'option': 'None', 'option_desc': 'No TOS-capability, DC', 'seq_num': '80000036', 'type': 1}}}}}}}}}}, '2': {'areas': {'0.0.0.1': {'database': {'lsa_types': {1: {'lsa_type': 1, 'lsas': {'10.229.11.11 10.229.11.11': {'adv_router': '10.229.11.11', 'lsa_id': '10.229.11.11', 'ospfv2': {'body': {'router': {'links': {'10.186.5.1': {'link_data': '10.186.5.1', 'link_id': '10.186.5.1', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}}, 'type': 'transit network'}, '10.151.22.22': {'link_data': '0.0.0.14', 'link_id': '10.151.22.22', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 111, 'mt_id': 0, 'tos': 0}}, 'type': 'another router (point-to-point)'}}, 'num_of_links': 2}}, 'header': {'adv_router': '10.229.11.11', 'age': 651, 'area_border_router': True, 'as_boundary_router': True, 'checksum': '0x9CE3', 'length': 48, 'lsa_id': '10.229.11.11', 'option': 'None', 'option_desc': 'No TOS-capability, DC', 'seq_num': '8000003E', 'type': 1}}}, '10.151.22.22 10.151.22.22': {'adv_router': '10.151.22.22', 'lsa_id': '10.151.22.22', 'ospfv2': {'body': {'router': {'links': {'10.229.11.11': {'link_data': '0.0.0.6', 'link_id': '10.229.11.11', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}}, 'type': 'another router (point-to-point)'}, '10.229.6.6': {'link_data': '10.229.6.2', 'link_id': '10.229.6.6', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 40, 'mt_id': 0, 'tos': 0}}, 'type': 'transit network'}}, 'num_of_links': 2}}, 'header': {'adv_router': '10.151.22.22', 'age': 480, 'area_border_router': True, 'as_boundary_router': True, 'checksum': '0xC41A', 'length': 48, 'lsa_id': '10.151.22.22', 'option': 'None', 'option_desc': 'No TOS-capability, No DC', 'seq_num': '80000019', 'type': 1}}}, '10.36.3.3 10.36.3.3': {'adv_router': '10.36.3.3', 'lsa_id': '10.36.3.3', 'ospfv2': {'body': {'router': {'links': {'10.19.7.7': {'link_data': '10.19.7.3', 'link_id': '10.19.7.7', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}}, 'type': 'transit network'}}, 'num_of_links': 1}}, 'header': {'adv_router': '10.36.3.3', 'age': 1128, 'area_border_router': True, 'as_boundary_router': True, 'checksum': '0x5845', 'length': 36, 'lsa_id': '10.36.3.3', 'option': 'None', 'option_desc': 'No TOS-capability, DC', 'seq_num': '80000035', 'type': 1}}}, '10.115.55.55 10.115.55.55': {'adv_router': '10.115.55.55', 'lsa_id': '10.115.55.55', 'ospfv2': {'body': {'router': {'links': {'10.186.5.1': {'link_data': '10.186.5.5', 'link_id': '10.186.5.1', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}}, 'type': 'transit network'}, '10.115.6.6': {'link_data': '10.115.6.5', 'link_id': '10.115.6.6', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 30, 'mt_id': 0, 'tos': 0}}, 'type': 'transit network'}, '10.115.55.55': {'link_data': '255.255.255.255', 'link_id': '10.115.55.55', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}}, 'type': 'stub network'}}, 'num_of_links': 3}}, 'header': {'adv_router': '10.115.55.55', 'age': 318, 'checksum': '0xE7BC', 'length': 60, 'lsa_id': '10.115.55.55', 'option': 'None', 'option_desc': 'No TOS-capability, DC', 'seq_num': '80000037', 'type': 1}}}, '10.84.66.66 10.84.66.66': {'adv_router': '10.84.66.66', 'lsa_id': '10.84.66.66', 'ospfv2': {'body': {'router': {'links': {'10.229.6.6': {'link_data': '10.229.6.6', 'link_id': '10.229.6.6', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}}, 'type': 'transit network'}, '10.115.6.6': {'link_data': '10.115.6.6', 'link_id': '10.115.6.6', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 30, 'mt_id': 0, 'tos': 0}}, 'type': 'transit network'}, '10.166.7.6': {'link_data': '10.166.7.6', 'link_id': '10.166.7.6', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 30, 'mt_id': 0, 'tos': 0}}, 'type': 'transit network'}, '10.84.66.66': {'link_data': '255.255.255.255', 'link_id': '10.84.66.66', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}}, 'type': 'stub network'}}, 'num_of_links': 4}}, 'header': {'adv_router': '10.84.66.66', 'age': 520, 'checksum': '0x1282', 'length': 72, 'lsa_id': '10.84.66.66', 'option': 'None', 'option_desc': 'No TOS-capability, DC', 'seq_num': '8000003C', 'type': 1}}}, '10.1.77.77 10.1.77.77': {'adv_router': '10.1.77.77', 'lsa_id': '10.1.77.77', 'ospfv2': {'body': {'router': {'links': {'10.19.7.7': {'link_data': '10.19.7.7', 'link_id': '10.19.7.7', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}}, 'type': 'transit network'}, '10.166.7.6': {'link_data': '10.166.7.7', 'link_id': '10.166.7.6', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 30, 'mt_id': 0, 'tos': 0}}, 'type': 'transit network'}, '10.1.77.77': {'link_data': '255.255.255.255', 'link_id': '10.1.77.77', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}}, 'type': 'stub network'}}, 'num_of_links': 3}}, 'header': {'adv_router': '10.1.77.77', 'age': 288, 'checksum': '0x1379', 'length': 60, 'lsa_id': '10.1.77.77', 'option': 'None', 'option_desc': 'No TOS-capability, DC', 'seq_num': '80000030', 'type': 1}}}}}}}}}}, '3': {'areas': {'0.0.0.0': {'database': {'lsa_types': {1: {'lsa_type': 1, 'lsas': {'10.115.11.11 10.115.11.11': {'adv_router': '10.115.11.11', 'lsa_id': '10.115.11.11', 'ospfv2': {'body': {'router': {'links': {'10.115.11.11': {'link_data': '255.255.255.255', 'link_id': '10.115.11.11', 'num_mtid_metrics': 0, 'topologies': {0: {'metric': 1, 'mt_id': 0, 'tos': 0}}, 'type': 'stub network'}}, 'num_of_links': 1}}, 'header': {'adv_router': '10.115.11.11', 'age': 50, 'as_boundary_router': True, 'checksum': '0x881A', 'length': 36, 'lsa_id': '10.115.11.11', 'option': 'None', 'option_desc': 'No TOS-capability, DC', 'seq_num': '80000001', 'type': 1}}}}}}}}, '0.0.0.11': {'database': {'lsa_types': {1: {'lsa_type': 1, 'lsas': {'10.115.11.11 10.115.11.11': {'adv_router': '10.115.11.11', 'lsa_id': '10.115.11.11', 'ospfv2': {'body': {'router': {'num_of_links': 0}}, 'header': {'adv_router': '10.115.11.11', 'age': 8, 'as_boundary_router': True, 'checksum': '0x1D1B', 'length': 24, 'lsa_id': '10.115.11.11', 'option': 'None', 'option_desc': 'No TOS-capability, DC', 'seq_num': '80000001', 'type': 1}}}}}}}}}}}}}}}} |
pkgname = "fontconfig"
pkgver = "2.14.0"
pkgrel = 0
build_style = "gnu_configure"
configure_args = [
"--enable-static", "--enable-docs",
f"--with-cache-dir=/var/cache/{pkgname}",
]
make_cmd = "gmake"
hostmakedepends = ["pkgconf", "gperf", "gmake", "python"]
makedepends = ["libexpat-devel", "freetype-bootstrap", "libuuid-devel"]
triggers = ["/usr/share/fonts/*"]
pkgdesc = "Library for configuring and customizing font access"
maintainer = "q66 <q66@chimera-linux.org>"
license = "MIT"
url = "https://www.fontconfig.org"
source = f"$(FREEDESKTOP_SITE)/{pkgname}/release/{pkgname}-{pkgver}.tar.gz"
sha256 = "b8f607d556e8257da2f3616b4d704be30fd73bd71e367355ca78963f9a7f0434"
def post_install(self):
self.install_license("COPYING")
# reject bitmap fonts by default, preventing them from being preferred
self.install_link(
f"/usr/share/fontconfig/conf.avail/70-no-bitmaps.conf",
"etc/fonts/conf.d/70-no-bitmaps.conf"
)
@subpackage("fontconfig-devel")
def _devel(self):
return self.default_devel()
| pkgname = 'fontconfig'
pkgver = '2.14.0'
pkgrel = 0
build_style = 'gnu_configure'
configure_args = ['--enable-static', '--enable-docs', f'--with-cache-dir=/var/cache/{pkgname}']
make_cmd = 'gmake'
hostmakedepends = ['pkgconf', 'gperf', 'gmake', 'python']
makedepends = ['libexpat-devel', 'freetype-bootstrap', 'libuuid-devel']
triggers = ['/usr/share/fonts/*']
pkgdesc = 'Library for configuring and customizing font access'
maintainer = 'q66 <q66@chimera-linux.org>'
license = 'MIT'
url = 'https://www.fontconfig.org'
source = f'$(FREEDESKTOP_SITE)/{pkgname}/release/{pkgname}-{pkgver}.tar.gz'
sha256 = 'b8f607d556e8257da2f3616b4d704be30fd73bd71e367355ca78963f9a7f0434'
def post_install(self):
self.install_license('COPYING')
self.install_link(f'/usr/share/fontconfig/conf.avail/70-no-bitmaps.conf', 'etc/fonts/conf.d/70-no-bitmaps.conf')
@subpackage('fontconfig-devel')
def _devel(self):
return self.default_devel() |
'''
Created on 09-May-2017
@author: Sathesh Rgs
'''
print("Program to display armstrong numbers between two intervals")
try:
print("Enter the starting and ending intervals")
si=int(input())
ei=int(input())
print("The armstrong numbers between",si,"and",ei,"are")
for num in range(si,ei+1):
num1=num
asum=0
digit=0
while num1 != 0:
num1=num1//10
digit += 1
num1=num
while num1 != 0:
rem = num1 % 10
asum=asum + (rem ** digit)
num1 = num1 // 10
if asum == num:
print(asum)
except:
print("Enter a valid number")
| """
Created on 09-May-2017
@author: Sathesh Rgs
"""
print('Program to display armstrong numbers between two intervals')
try:
print('Enter the starting and ending intervals')
si = int(input())
ei = int(input())
print('The armstrong numbers between', si, 'and', ei, 'are')
for num in range(si, ei + 1):
num1 = num
asum = 0
digit = 0
while num1 != 0:
num1 = num1 // 10
digit += 1
num1 = num
while num1 != 0:
rem = num1 % 10
asum = asum + rem ** digit
num1 = num1 // 10
if asum == num:
print(asum)
except:
print('Enter a valid number') |
class Solution:
def minCostConnectPoints(self, points: List[List[int]]) -> int:
answer=0
u=[0]*len(points)
unionMap={}
if len(points)==1:
return 0
edges=[]
for i in range(len(points)):
u[i]=i
unionMap[i]=[i]
for j in range(i+1, len(points)):
edges.append((abs(points[i][0]-points[j][0])+abs(points[i][1]-points[j][1]), i,j))
heapq.heapify(edges)
while len(edges)>0 and len(unionMap)>1:
(dis, x,y)=heapq.heappop(edges)
if u[x]==u[y]:
continue
toBeMerged=u[y]
for e in unionMap[u[y]]:
u[e]=u[x]
unionMap[u[x]].append(e)
del unionMap[toBeMerged]
answer+=dis
return answer | class Solution:
def min_cost_connect_points(self, points: List[List[int]]) -> int:
answer = 0
u = [0] * len(points)
union_map = {}
if len(points) == 1:
return 0
edges = []
for i in range(len(points)):
u[i] = i
unionMap[i] = [i]
for j in range(i + 1, len(points)):
edges.append((abs(points[i][0] - points[j][0]) + abs(points[i][1] - points[j][1]), i, j))
heapq.heapify(edges)
while len(edges) > 0 and len(unionMap) > 1:
(dis, x, y) = heapq.heappop(edges)
if u[x] == u[y]:
continue
to_be_merged = u[y]
for e in unionMap[u[y]]:
u[e] = u[x]
unionMap[u[x]].append(e)
del unionMap[toBeMerged]
answer += dis
return answer |
''' A simple test
'''
def test_pytest():
'''test_pytest
Summary
-------
Dummy test function.
'''
assert True
| """ A simple test
"""
def test_pytest():
"""test_pytest
Summary
-------
Dummy test function.
"""
assert True |
#!/usr/bin/env python
def yell(text):
return text.upper() + '!'
print(yell('hello'))
# Functions are objects
bark = yell
print(bark('woof'))
del yell
print(bark('hey'))
# error
# print(yell('hello'))
print(bark.__name__)
print(bark.__qualname__)
funcs = [bark, str.lower, str.capitalize]
print(funcs)
for f in funcs:
print(f, f('hey there'))
print(funcs[0]('hey yo'))
def greet(func):
greeting = func('Hi, I am a python programmer')
print(greeting)
greet(bark)
def whisper(text):
return text.lower() + '...'
greet(whisper)
print(list(map(bark, ['hello', 'hey', 'hi'])))
def speak(text):
def whisper(text):
return text.lower() + '...'
return whisper(text)
print(speak('Hello, World'))
def get_speak_func(volumn):
def whisper(text):
return text.lower() + '...'
def yell(text):
return text.upper() + '!'
if volumn > 0.5:
return yell
else:
return whisper
print(get_speak_func(0.8))
print(get_speak_func(0.3))
print(get_speak_func(0.8)('Hello'))
print(get_speak_func(0.3)('Hello'))
def get_speak_func(text, volumn):
def whisper():
return text.lower() + '...'
def yell():
return text.upper() + '!'
if volumn > 0.5:
return yell
else:
return whisper
print('################################################################################')
print('## Functions can capture local state')
print('################################################################################')
def make_adder(n):
def adder(x):
return x+n
return adder
plus_3 = make_adder(3)
plus_5 = make_adder(5)
print(plus_3(4))
print(plus_5(4))
print('################################################################################')
print('## Objects can behave like functions')
print('################################################################################')
class Adder:
def __init__(self, n):
self.n = n
def __call__(self, x):
return self.n + x
plus_3 = Adder(3)
print(plus_3(4))
print('If bark is callable?', callable(bark))
print('If plus_3 is callable?', callable(plus_3))
print('If \'hello\' is callable?', callable('hello'))
| def yell(text):
return text.upper() + '!'
print(yell('hello'))
bark = yell
print(bark('woof'))
del yell
print(bark('hey'))
print(bark.__name__)
print(bark.__qualname__)
funcs = [bark, str.lower, str.capitalize]
print(funcs)
for f in funcs:
print(f, f('hey there'))
print(funcs[0]('hey yo'))
def greet(func):
greeting = func('Hi, I am a python programmer')
print(greeting)
greet(bark)
def whisper(text):
return text.lower() + '...'
greet(whisper)
print(list(map(bark, ['hello', 'hey', 'hi'])))
def speak(text):
def whisper(text):
return text.lower() + '...'
return whisper(text)
print(speak('Hello, World'))
def get_speak_func(volumn):
def whisper(text):
return text.lower() + '...'
def yell(text):
return text.upper() + '!'
if volumn > 0.5:
return yell
else:
return whisper
print(get_speak_func(0.8))
print(get_speak_func(0.3))
print(get_speak_func(0.8)('Hello'))
print(get_speak_func(0.3)('Hello'))
def get_speak_func(text, volumn):
def whisper():
return text.lower() + '...'
def yell():
return text.upper() + '!'
if volumn > 0.5:
return yell
else:
return whisper
print('################################################################################')
print('## Functions can capture local state')
print('################################################################################')
def make_adder(n):
def adder(x):
return x + n
return adder
plus_3 = make_adder(3)
plus_5 = make_adder(5)
print(plus_3(4))
print(plus_5(4))
print('################################################################################')
print('## Objects can behave like functions')
print('################################################################################')
class Adder:
def __init__(self, n):
self.n = n
def __call__(self, x):
return self.n + x
plus_3 = adder(3)
print(plus_3(4))
print('If bark is callable?', callable(bark))
print('If plus_3 is callable?', callable(plus_3))
print("If 'hello' is callable?", callable('hello')) |
#Python number
# int
# float
# complex
x = 1
y = 13.23
z = 1j
print(x)
print(y)
print(z)
print("-----------------------------------")
print(type(x))
print(type(y))
print(type(z))
print("-----------------------------------") | x = 1
y = 13.23
z = 1j
print(x)
print(y)
print(z)
print('-----------------------------------')
print(type(x))
print(type(y))
print(type(z))
print('-----------------------------------') |
class BaseError(Exception):
pass
class UnknownError(BaseError):
pass
class AccessTokenRequired(BaseError):
pass
class BadOAuthTokenError(BaseError):
pass
class BadRequestError(BaseError):
pass
class TokenError(BaseError):
pass
| class Baseerror(Exception):
pass
class Unknownerror(BaseError):
pass
class Accesstokenrequired(BaseError):
pass
class Badoauthtokenerror(BaseError):
pass
class Badrequesterror(BaseError):
pass
class Tokenerror(BaseError):
pass |
def numIslands(self, grid: List[List[str]]) -> int:
count = 0
rows = len(grid)
cols = len(grid[0])
''' very similar solution to all these permuation problems
going through each coordinate and changing them if they are
connected
'''
def explore(i, j):
if grid[i][j] == "1":
grid[i][j] = "0"
if i-1 > -1:
explore(i-1, j)
if i+1 < rows:
explore(i+1, j)
if j-1 > -1:
explore(i, j-1)
if j+1 < cols:
explore(i, j+1)
for i in range(rows):
for j in range(cols):
if grid[i][j] == "1":
explore(i, j)
count += 1
return count | def num_islands(self, grid: List[List[str]]) -> int:
count = 0
rows = len(grid)
cols = len(grid[0])
' very similar solution to all these permuation problems\n going through each coordinate and changing them if they are\n connected\n '
def explore(i, j):
if grid[i][j] == '1':
grid[i][j] = '0'
if i - 1 > -1:
explore(i - 1, j)
if i + 1 < rows:
explore(i + 1, j)
if j - 1 > -1:
explore(i, j - 1)
if j + 1 < cols:
explore(i, j + 1)
for i in range(rows):
for j in range(cols):
if grid[i][j] == '1':
explore(i, j)
count += 1
return count |
extension = '''
# from sqlalchemy.ext.declarative import declarative_base
# # from core.factories import Session
from sqlalchemy import MetaData
from gino.ext.starlette import Gino
from core.factories import settings
db: MetaData = Gino(dsn=settings.DATABASE_URL)
''' | extension = '\n# from sqlalchemy.ext.declarative import declarative_base\n# # from core.factories import Session\nfrom sqlalchemy import MetaData\nfrom gino.ext.starlette import Gino\nfrom core.factories import settings\n\n\ndb: MetaData = Gino(dsn=settings.DATABASE_URL)\n\n' |
STATS = [
{
"num_node_expansions": 0,
"search_time": 0.0553552,
"total_time": 0.13778,
"plan_length": 231,
"plan_cost": 231,
"objects_used": 140,
"objects_total": 250,
"neural_net_time": 0.07324552536010742,
"num_replanning_steps": 0,
"wall_time": 0.7697024345397949
},
{
"num_node_expansions": 0,
"search_time": 0.0617813,
"total_time": 0.129038,
"plan_length": 222,
"plan_cost": 222,
"objects_used": 134,
"objects_total": 250,
"neural_net_time": 0.03156590461730957,
"num_replanning_steps": 0,
"wall_time": 0.6574497222900391
},
{
"num_node_expansions": 0,
"search_time": 0.0938968,
"total_time": 0.194791,
"plan_length": 207,
"plan_cost": 207,
"objects_used": 153,
"objects_total": 356,
"neural_net_time": 0.06682157516479492,
"num_replanning_steps": 0,
"wall_time": 0.952847957611084
},
{
"num_node_expansions": 0,
"search_time": 0.0631711,
"total_time": 0.160995,
"plan_length": 247,
"plan_cost": 247,
"objects_used": 155,
"objects_total": 356,
"neural_net_time": 0.06831550598144531,
"num_replanning_steps": 0,
"wall_time": 0.879575252532959
},
{
"num_node_expansions": 0,
"search_time": 0.0368878,
"total_time": 0.114052,
"plan_length": 150,
"plan_cost": 150,
"objects_used": 128,
"objects_total": 375,
"neural_net_time": 0.051367998123168945,
"num_replanning_steps": 0,
"wall_time": 0.7391681671142578
},
{
"num_node_expansions": 0,
"search_time": 0.0720374,
"total_time": 0.156246,
"plan_length": 211,
"plan_cost": 211,
"objects_used": 127,
"objects_total": 375,
"neural_net_time": 0.047237396240234375,
"num_replanning_steps": 0,
"wall_time": 0.8465814590454102
},
{
"num_node_expansions": 0,
"search_time": 0.0888631,
"total_time": 0.206741,
"plan_length": 188,
"plan_cost": 188,
"objects_used": 121,
"objects_total": 252,
"neural_net_time": 0.03172731399536133,
"num_replanning_steps": 0,
"wall_time": 0.9832382202148438
},
{
"num_node_expansions": 0,
"search_time": 0.155961,
"total_time": 0.266882,
"plan_length": 244,
"plan_cost": 244,
"objects_used": 122,
"objects_total": 252,
"neural_net_time": 0.0343477725982666,
"num_replanning_steps": 0,
"wall_time": 1.0137133598327637
},
{
"num_node_expansions": 0,
"search_time": 0.0835422,
"total_time": 0.149342,
"plan_length": 196,
"plan_cost": 196,
"objects_used": 98,
"objects_total": 172,
"neural_net_time": 0.02288532257080078,
"num_replanning_steps": 0,
"wall_time": 0.684044599533081
},
{
"num_node_expansions": 0,
"search_time": 0.0729025,
"total_time": 0.158524,
"plan_length": 206,
"plan_cost": 206,
"objects_used": 103,
"objects_total": 172,
"neural_net_time": 0.021747350692749023,
"num_replanning_steps": 0,
"wall_time": 0.8100950717926025
},
{
"num_node_expansions": 0,
"search_time": 0.0568654,
"total_time": 0.137415,
"plan_length": 191,
"plan_cost": 191,
"objects_used": 105,
"objects_total": 246,
"neural_net_time": 0.03279542922973633,
"num_replanning_steps": 0,
"wall_time": 0.7673678398132324
},
{
"num_node_expansions": 0,
"search_time": 0.152617,
"total_time": 0.224431,
"plan_length": 194,
"plan_cost": 194,
"objects_used": 99,
"objects_total": 246,
"neural_net_time": 0.03205370903015137,
"num_replanning_steps": 0,
"wall_time": 0.8383169174194336
},
{
"num_node_expansions": 0,
"search_time": 0.0430356,
"total_time": 0.0916958,
"plan_length": 206,
"plan_cost": 206,
"objects_used": 104,
"objects_total": 194,
"neural_net_time": 0.024816274642944336,
"num_replanning_steps": 0,
"wall_time": 0.5796539783477783
},
{
"num_node_expansions": 0,
"search_time": 0.0793143,
"total_time": 0.15237,
"plan_length": 233,
"plan_cost": 233,
"objects_used": 111,
"objects_total": 194,
"neural_net_time": 0.024263620376586914,
"num_replanning_steps": 0,
"wall_time": 0.7465353012084961
},
{
"num_node_expansions": 0,
"search_time": 0.0579225,
"total_time": 0.136225,
"plan_length": 180,
"plan_cost": 180,
"objects_used": 100,
"objects_total": 196,
"neural_net_time": 0.024345874786376953,
"num_replanning_steps": 0,
"wall_time": 0.7536647319793701
},
{
"num_node_expansions": 0,
"search_time": 0.0646547,
"total_time": 0.158646,
"plan_length": 197,
"plan_cost": 197,
"objects_used": 102,
"objects_total": 196,
"neural_net_time": 0.025458097457885742,
"num_replanning_steps": 0,
"wall_time": 0.8155977725982666
},
{
"num_node_expansions": 0,
"search_time": 0.0690828,
"total_time": 0.1226,
"plan_length": 250,
"plan_cost": 250,
"objects_used": 150,
"objects_total": 261,
"neural_net_time": 0.03429579734802246,
"num_replanning_steps": 0,
"wall_time": 0.6279757022857666
},
{
"num_node_expansions": 0,
"search_time": 0.0692617,
"total_time": 0.146682,
"plan_length": 280,
"plan_cost": 280,
"objects_used": 158,
"objects_total": 261,
"neural_net_time": 0.03626728057861328,
"num_replanning_steps": 0,
"wall_time": 0.7651171684265137
},
{
"num_node_expansions": 0,
"search_time": 0.0391875,
"total_time": 0.0983801,
"plan_length": 197,
"plan_cost": 197,
"objects_used": 118,
"objects_total": 223,
"neural_net_time": 0.02935004234313965,
"num_replanning_steps": 0,
"wall_time": 0.6243836879730225
},
{
"num_node_expansions": 0,
"search_time": 0.0683405,
"total_time": 0.118893,
"plan_length": 309,
"plan_cost": 309,
"objects_used": 115,
"objects_total": 223,
"neural_net_time": 0.029554128646850586,
"num_replanning_steps": 0,
"wall_time": 0.642784833908081
},
{
"num_node_expansions": 0,
"search_time": 0.083412,
"total_time": 0.16882,
"plan_length": 209,
"plan_cost": 209,
"objects_used": 123,
"objects_total": 268,
"neural_net_time": 0.03368687629699707,
"num_replanning_steps": 0,
"wall_time": 0.823617696762085
},
{
"num_node_expansions": 0,
"search_time": 0.131707,
"total_time": 0.205061,
"plan_length": 251,
"plan_cost": 251,
"objects_used": 120,
"objects_total": 268,
"neural_net_time": 0.039069414138793945,
"num_replanning_steps": 0,
"wall_time": 0.8401038646697998
},
{
"num_node_expansions": 0,
"search_time": 0.0430802,
"total_time": 0.116279,
"plan_length": 175,
"plan_cost": 175,
"objects_used": 113,
"objects_total": 251,
"neural_net_time": 0.03359651565551758,
"num_replanning_steps": 0,
"wall_time": 0.7193644046783447
},
{
"num_node_expansions": 0,
"search_time": 0.0686163,
"total_time": 0.151265,
"plan_length": 211,
"plan_cost": 211,
"objects_used": 114,
"objects_total": 251,
"neural_net_time": 0.03354597091674805,
"num_replanning_steps": 0,
"wall_time": 0.8007180690765381
},
{
"num_node_expansions": 0,
"search_time": 0.0350066,
"total_time": 0.074157,
"plan_length": 170,
"plan_cost": 170,
"objects_used": 96,
"objects_total": 165,
"neural_net_time": 0.0218808650970459,
"num_replanning_steps": 0,
"wall_time": 0.5286593437194824
},
{
"num_node_expansions": 0,
"search_time": 0.0411249,
"total_time": 0.0831745,
"plan_length": 193,
"plan_cost": 193,
"objects_used": 98,
"objects_total": 165,
"neural_net_time": 0.022090673446655273,
"num_replanning_steps": 0,
"wall_time": 0.5557692050933838
},
{
"num_node_expansions": 0,
"search_time": 0.0964381,
"total_time": 0.18287,
"plan_length": 246,
"plan_cost": 246,
"objects_used": 111,
"objects_total": 280,
"neural_net_time": 0.035047054290771484,
"num_replanning_steps": 0,
"wall_time": 0.8643906116485596
},
{
"num_node_expansions": 0,
"search_time": 0.0441619,
"total_time": 0.122736,
"plan_length": 173,
"plan_cost": 173,
"objects_used": 109,
"objects_total": 280,
"neural_net_time": 0.03827977180480957,
"num_replanning_steps": 0,
"wall_time": 0.7664711475372314
},
{
"num_node_expansions": 0,
"search_time": 0.0926131,
"total_time": 0.209987,
"plan_length": 242,
"plan_cost": 242,
"objects_used": 139,
"objects_total": 275,
"neural_net_time": 0.03778886795043945,
"num_replanning_steps": 0,
"wall_time": 0.9464788436889648
},
{
"num_node_expansions": 0,
"search_time": 0.0845314,
"total_time": 0.167256,
"plan_length": 256,
"plan_cost": 256,
"objects_used": 132,
"objects_total": 275,
"neural_net_time": 0.03821539878845215,
"num_replanning_steps": 0,
"wall_time": 0.7884328365325928
},
{
"num_node_expansions": 0,
"search_time": 0.0529518,
"total_time": 0.124709,
"plan_length": 190,
"plan_cost": 190,
"objects_used": 138,
"objects_total": 313,
"neural_net_time": 0.03936409950256348,
"num_replanning_steps": 0,
"wall_time": 0.7054498195648193
},
{
"num_node_expansions": 0,
"search_time": 0.0521989,
"total_time": 0.125175,
"plan_length": 218,
"plan_cost": 218,
"objects_used": 138,
"objects_total": 313,
"neural_net_time": 0.03993034362792969,
"num_replanning_steps": 0,
"wall_time": 0.7154295444488525
},
{
"num_node_expansions": 0,
"search_time": 0.0493855,
"total_time": 0.124496,
"plan_length": 188,
"plan_cost": 188,
"objects_used": 113,
"objects_total": 251,
"neural_net_time": 0.03525900840759277,
"num_replanning_steps": 0,
"wall_time": 0.7170531749725342
},
{
"num_node_expansions": 0,
"search_time": 0.0427762,
"total_time": 0.107201,
"plan_length": 199,
"plan_cost": 199,
"objects_used": 111,
"objects_total": 251,
"neural_net_time": 0.03240776062011719,
"num_replanning_steps": 0,
"wall_time": 0.658397912979126
},
{
"num_node_expansions": 0,
"search_time": 0.367306,
"total_time": 0.488743,
"plan_length": 291,
"plan_cost": 291,
"objects_used": 130,
"objects_total": 235,
"neural_net_time": 0.03081965446472168,
"num_replanning_steps": 0,
"wall_time": 1.232940912246704
},
{
"num_node_expansions": 0,
"search_time": 0.167941,
"total_time": 0.272655,
"plan_length": 314,
"plan_cost": 314,
"objects_used": 127,
"objects_total": 235,
"neural_net_time": 0.0307772159576416,
"num_replanning_steps": 0,
"wall_time": 0.9764890670776367
},
{
"num_node_expansions": 0,
"search_time": 0.0958415,
"total_time": 0.195371,
"plan_length": 265,
"plan_cost": 265,
"objects_used": 143,
"objects_total": 340,
"neural_net_time": 0.04459547996520996,
"num_replanning_steps": 0,
"wall_time": 0.896115779876709
},
{
"num_node_expansions": 0,
"search_time": 0.0958713,
"total_time": 0.184557,
"plan_length": 278,
"plan_cost": 278,
"objects_used": 142,
"objects_total": 340,
"neural_net_time": 0.04405355453491211,
"num_replanning_steps": 0,
"wall_time": 0.8578188419342041
},
{
"num_node_expansions": 0,
"search_time": 0.0630232,
"total_time": 0.139247,
"plan_length": 175,
"plan_cost": 175,
"objects_used": 106,
"objects_total": 219,
"neural_net_time": 0.027605772018432617,
"num_replanning_steps": 0,
"wall_time": 0.7573132514953613
},
{
"num_node_expansions": 0,
"search_time": 0.0653257,
"total_time": 0.143589,
"plan_length": 187,
"plan_cost": 187,
"objects_used": 105,
"objects_total": 219,
"neural_net_time": 0.02782750129699707,
"num_replanning_steps": 0,
"wall_time": 0.7572407722473145
},
{
"num_node_expansions": 0,
"search_time": 0.170188,
"total_time": 0.22215,
"plan_length": 234,
"plan_cost": 234,
"objects_used": 96,
"objects_total": 247,
"neural_net_time": 0.032060861587524414,
"num_replanning_steps": 0,
"wall_time": 0.7359240055084229
},
{
"num_node_expansions": 0,
"search_time": 0.0314888,
"total_time": 0.109566,
"plan_length": 161,
"plan_cost": 161,
"objects_used": 104,
"objects_total": 247,
"neural_net_time": 0.03216266632080078,
"num_replanning_steps": 0,
"wall_time": 0.7081592082977295
},
{
"num_node_expansions": 0,
"search_time": 0.0726518,
"total_time": 0.174,
"plan_length": 196,
"plan_cost": 196,
"objects_used": 126,
"objects_total": 266,
"neural_net_time": 0.035826683044433594,
"num_replanning_steps": 0,
"wall_time": 0.8562233448028564
},
{
"num_node_expansions": 0,
"search_time": 0.0792656,
"total_time": 0.179632,
"plan_length": 232,
"plan_cost": 232,
"objects_used": 126,
"objects_total": 266,
"neural_net_time": 0.03566765785217285,
"num_replanning_steps": 0,
"wall_time": 0.8664400577545166
},
{
"num_node_expansions": 0,
"search_time": 0.101337,
"total_time": 0.196567,
"plan_length": 288,
"plan_cost": 288,
"objects_used": 137,
"objects_total": 364,
"neural_net_time": 0.0472872257232666,
"num_replanning_steps": 0,
"wall_time": 0.8953251838684082
},
{
"num_node_expansions": 0,
"search_time": 0.143672,
"total_time": 0.248258,
"plan_length": 291,
"plan_cost": 291,
"objects_used": 138,
"objects_total": 364,
"neural_net_time": 0.045786380767822266,
"num_replanning_steps": 0,
"wall_time": 0.9624395370483398
},
{
"num_node_expansions": 0,
"search_time": 0.0823153,
"total_time": 0.177269,
"plan_length": 215,
"plan_cost": 215,
"objects_used": 119,
"objects_total": 260,
"neural_net_time": 0.03521156311035156,
"num_replanning_steps": 0,
"wall_time": 0.8647644519805908
},
{
"num_node_expansions": 0,
"search_time": 0.0722084,
"total_time": 0.118556,
"plan_length": 206,
"plan_cost": 206,
"objects_used": 111,
"objects_total": 260,
"neural_net_time": 0.034618377685546875,
"num_replanning_steps": 0,
"wall_time": 0.6127479076385498
},
{
"num_node_expansions": 0,
"search_time": 0.18003,
"total_time": 0.279039,
"plan_length": 249,
"plan_cost": 249,
"objects_used": 125,
"objects_total": 304,
"neural_net_time": 0.037895917892456055,
"num_replanning_steps": 0,
"wall_time": 0.9646165370941162
},
{
"num_node_expansions": 0,
"search_time": 0.103696,
"total_time": 0.226759,
"plan_length": 226,
"plan_cost": 226,
"objects_used": 130,
"objects_total": 304,
"neural_net_time": 0.0409388542175293,
"num_replanning_steps": 0,
"wall_time": 1.0076186656951904
},
{
"num_node_expansions": 0,
"search_time": 0.0459504,
"total_time": 0.114275,
"plan_length": 171,
"plan_cost": 171,
"objects_used": 99,
"objects_total": 183,
"neural_net_time": 0.023260831832885742,
"num_replanning_steps": 0,
"wall_time": 0.6771140098571777
},
{
"num_node_expansions": 0,
"search_time": 0.0716183,
"total_time": 0.150031,
"plan_length": 156,
"plan_cost": 156,
"objects_used": 105,
"objects_total": 183,
"neural_net_time": 0.023253202438354492,
"num_replanning_steps": 0,
"wall_time": 0.7632434368133545
},
{
"num_node_expansions": 0,
"search_time": 0.0744395,
"total_time": 0.169348,
"plan_length": 221,
"plan_cost": 221,
"objects_used": 132,
"objects_total": 422,
"neural_net_time": 0.055629730224609375,
"num_replanning_steps": 0,
"wall_time": 0.8604276180267334
},
{
"num_node_expansions": 0,
"search_time": 0.171499,
"total_time": 0.291441,
"plan_length": 339,
"plan_cost": 339,
"objects_used": 138,
"objects_total": 422,
"neural_net_time": 0.05451369285583496,
"num_replanning_steps": 0,
"wall_time": 1.0652415752410889
},
{
"num_node_expansions": 0,
"search_time": 0.057438,
"total_time": 0.131651,
"plan_length": 244,
"plan_cost": 244,
"objects_used": 152,
"objects_total": 449,
"neural_net_time": 0.05934548377990723,
"num_replanning_steps": 0,
"wall_time": 0.7638118267059326
},
{
"num_node_expansions": 0,
"search_time": 0.0854431,
"total_time": 0.175947,
"plan_length": 265,
"plan_cost": 265,
"objects_used": 153,
"objects_total": 449,
"neural_net_time": 0.05878257751464844,
"num_replanning_steps": 0,
"wall_time": 0.8519854545593262
},
{
"num_node_expansions": 0,
"search_time": 0.0348568,
"total_time": 0.0919101,
"plan_length": 199,
"plan_cost": 199,
"objects_used": 113,
"objects_total": 182,
"neural_net_time": 0.02404642105102539,
"num_replanning_steps": 0,
"wall_time": 0.6046085357666016
},
{
"num_node_expansions": 0,
"search_time": 0.0512851,
"total_time": 0.118261,
"plan_length": 197,
"plan_cost": 197,
"objects_used": 116,
"objects_total": 182,
"neural_net_time": 0.02478623390197754,
"num_replanning_steps": 0,
"wall_time": 0.6582732200622559
},
{
"num_node_expansions": 0,
"search_time": 0.0814511,
"total_time": 0.178018,
"plan_length": 223,
"plan_cost": 223,
"objects_used": 112,
"objects_total": 291,
"neural_net_time": 0.03974652290344238,
"num_replanning_steps": 0,
"wall_time": 0.8690383434295654
},
{
"num_node_expansions": 0,
"search_time": 0.0972344,
"total_time": 0.186246,
"plan_length": 227,
"plan_cost": 227,
"objects_used": 113,
"objects_total": 291,
"neural_net_time": 0.040007829666137695,
"num_replanning_steps": 0,
"wall_time": 0.8641078472137451
},
{
"num_node_expansions": 0,
"search_time": 0.0535227,
"total_time": 0.153416,
"plan_length": 154,
"plan_cost": 154,
"objects_used": 127,
"objects_total": 236,
"neural_net_time": 0.03182673454284668,
"num_replanning_steps": 0,
"wall_time": 0.8149960041046143
},
{
"num_node_expansions": 0,
"search_time": 0.0725269,
"total_time": 0.154636,
"plan_length": 242,
"plan_cost": 242,
"objects_used": 121,
"objects_total": 236,
"neural_net_time": 0.03190732002258301,
"num_replanning_steps": 0,
"wall_time": 0.7674713134765625
},
{
"num_node_expansions": 0,
"search_time": 0.0430467,
"total_time": 0.105684,
"plan_length": 234,
"plan_cost": 234,
"objects_used": 122,
"objects_total": 438,
"neural_net_time": 0.056849002838134766,
"num_replanning_steps": 0,
"wall_time": 0.6843407154083252
},
{
"num_node_expansions": 0,
"search_time": 0.112816,
"total_time": 0.204347,
"plan_length": 223,
"plan_cost": 223,
"objects_used": 132,
"objects_total": 438,
"neural_net_time": 0.055657386779785156,
"num_replanning_steps": 0,
"wall_time": 0.8872087001800537
},
{
"num_node_expansions": 0,
"search_time": 0.0544153,
"total_time": 0.115915,
"plan_length": 245,
"plan_cost": 245,
"objects_used": 135,
"objects_total": 319,
"neural_net_time": 0.03964424133300781,
"num_replanning_steps": 0,
"wall_time": 0.6700730323791504
},
{
"num_node_expansions": 0,
"search_time": 0.0780284,
"total_time": 0.18411,
"plan_length": 228,
"plan_cost": 228,
"objects_used": 145,
"objects_total": 319,
"neural_net_time": 0.03910946846008301,
"num_replanning_steps": 0,
"wall_time": 0.8966822624206543
},
{
"num_node_expansions": 0,
"search_time": 0.0432264,
"total_time": 0.132364,
"plan_length": 157,
"plan_cost": 157,
"objects_used": 108,
"objects_total": 229,
"neural_net_time": 0.02909064292907715,
"num_replanning_steps": 0,
"wall_time": 0.7693536281585693
},
{
"num_node_expansions": 0,
"search_time": 0.0676754,
"total_time": 0.13993,
"plan_length": 192,
"plan_cost": 192,
"objects_used": 103,
"objects_total": 229,
"neural_net_time": 0.0286102294921875,
"num_replanning_steps": 0,
"wall_time": 0.7328910827636719
},
{
"num_node_expansions": 0,
"search_time": 0.0450956,
"total_time": 0.107957,
"plan_length": 204,
"plan_cost": 204,
"objects_used": 112,
"objects_total": 299,
"neural_net_time": 0.04078173637390137,
"num_replanning_steps": 0,
"wall_time": 0.653742790222168
},
{
"num_node_expansions": 0,
"search_time": 0.0619907,
"total_time": 0.139274,
"plan_length": 221,
"plan_cost": 221,
"objects_used": 116,
"objects_total": 299,
"neural_net_time": 0.042465925216674805,
"num_replanning_steps": 0,
"wall_time": 0.7609946727752686
},
{
"num_node_expansions": 0,
"search_time": 0.046714,
"total_time": 0.0960238,
"plan_length": 205,
"plan_cost": 205,
"objects_used": 107,
"objects_total": 218,
"neural_net_time": 0.028660058975219727,
"num_replanning_steps": 0,
"wall_time": 0.5864055156707764
},
{
"num_node_expansions": 0,
"search_time": 0.0742312,
"total_time": 0.124721,
"plan_length": 203,
"plan_cost": 203,
"objects_used": 107,
"objects_total": 218,
"neural_net_time": 0.0290069580078125,
"num_replanning_steps": 0,
"wall_time": 0.613102912902832
},
{
"num_node_expansions": 0,
"search_time": 0.0998901,
"total_time": 0.173317,
"plan_length": 232,
"plan_cost": 232,
"objects_used": 111,
"objects_total": 260,
"neural_net_time": 0.036131858825683594,
"num_replanning_steps": 0,
"wall_time": 0.8197505474090576
},
{
"num_node_expansions": 0,
"search_time": 0.0329897,
"total_time": 0.104079,
"plan_length": 146,
"plan_cost": 146,
"objects_used": 111,
"objects_total": 260,
"neural_net_time": 0.03419232368469238,
"num_replanning_steps": 0,
"wall_time": 0.6994471549987793
},
{
"num_node_expansions": 0,
"search_time": 0.0688091,
"total_time": 0.128025,
"plan_length": 170,
"plan_cost": 170,
"objects_used": 86,
"objects_total": 107,
"neural_net_time": 0.01390385627746582,
"num_replanning_steps": 0,
"wall_time": 0.5809447765350342
},
{
"num_node_expansions": 0,
"search_time": 0.0345073,
"total_time": 0.0865693,
"plan_length": 169,
"plan_cost": 169,
"objects_used": 88,
"objects_total": 107,
"neural_net_time": 0.014227867126464844,
"num_replanning_steps": 0,
"wall_time": 0.5783209800720215
},
{
"num_node_expansions": 0,
"search_time": 0.0549029,
"total_time": 0.148058,
"plan_length": 218,
"plan_cost": 218,
"objects_used": 163,
"objects_total": 395,
"neural_net_time": 0.05201601982116699,
"num_replanning_steps": 0,
"wall_time": 0.8142600059509277
},
{
"num_node_expansions": 0,
"search_time": 0.148722,
"total_time": 0.268158,
"plan_length": 319,
"plan_cost": 319,
"objects_used": 167,
"objects_total": 395,
"neural_net_time": 0.053879499435424805,
"num_replanning_steps": 0,
"wall_time": 1.0406162738800049
},
{
"num_node_expansions": 0,
"search_time": 0.0493865,
"total_time": 0.115891,
"plan_length": 248,
"plan_cost": 248,
"objects_used": 136,
"objects_total": 296,
"neural_net_time": 0.04027199745178223,
"num_replanning_steps": 0,
"wall_time": 0.6825110912322998
},
{
"num_node_expansions": 0,
"search_time": 0.0444351,
"total_time": 0.102212,
"plan_length": 233,
"plan_cost": 233,
"objects_used": 131,
"objects_total": 296,
"neural_net_time": 0.040221214294433594,
"num_replanning_steps": 0,
"wall_time": 0.6275992393493652
},
{
"num_node_expansions": 0,
"search_time": 0.0320574,
"total_time": 0.0803789,
"plan_length": 152,
"plan_cost": 152,
"objects_used": 84,
"objects_total": 126,
"neural_net_time": 0.01577472686767578,
"num_replanning_steps": 0,
"wall_time": 0.6480550765991211
},
{
"num_node_expansions": 0,
"search_time": 0.0569042,
"total_time": 0.115243,
"plan_length": 175,
"plan_cost": 175,
"objects_used": 87,
"objects_total": 126,
"neural_net_time": 0.023028850555419922,
"num_replanning_steps": 0,
"wall_time": 0.6434402465820312
},
{
"num_node_expansions": 0,
"search_time": 0.0845776,
"total_time": 0.187273,
"plan_length": 232,
"plan_cost": 232,
"objects_used": 127,
"objects_total": 295,
"neural_net_time": 0.0505681037902832,
"num_replanning_steps": 0,
"wall_time": 0.9154479503631592
},
{
"num_node_expansions": 0,
"search_time": 0.05377,
"total_time": 0.126935,
"plan_length": 196,
"plan_cost": 196,
"objects_used": 121,
"objects_total": 295,
"neural_net_time": 0.03970003128051758,
"num_replanning_steps": 0,
"wall_time": 0.7530832290649414
},
{
"num_node_expansions": 0,
"search_time": 0.034628,
"total_time": 0.0986284,
"plan_length": 155,
"plan_cost": 155,
"objects_used": 102,
"objects_total": 195,
"neural_net_time": 0.0242612361907959,
"num_replanning_steps": 0,
"wall_time": 0.6272718906402588
},
{
"num_node_expansions": 0,
"search_time": 0.0460013,
"total_time": 0.108895,
"plan_length": 173,
"plan_cost": 173,
"objects_used": 99,
"objects_total": 195,
"neural_net_time": 0.024209976196289062,
"num_replanning_steps": 0,
"wall_time": 0.6477742195129395
},
{
"num_node_expansions": 0,
"search_time": 0.0607851,
"total_time": 0.160475,
"plan_length": 192,
"plan_cost": 192,
"objects_used": 116,
"objects_total": 246,
"neural_net_time": 0.03200078010559082,
"num_replanning_steps": 0,
"wall_time": 0.831235408782959
},
{
"num_node_expansions": 0,
"search_time": 0.0808828,
"total_time": 0.167005,
"plan_length": 221,
"plan_cost": 221,
"objects_used": 116,
"objects_total": 246,
"neural_net_time": 0.034296274185180664,
"num_replanning_steps": 0,
"wall_time": 0.8123514652252197
},
{
"num_node_expansions": 0,
"search_time": 0.125551,
"total_time": 0.241321,
"plan_length": 254,
"plan_cost": 254,
"objects_used": 126,
"objects_total": 239,
"neural_net_time": 0.03389883041381836,
"num_replanning_steps": 0,
"wall_time": 0.9676728248596191
},
{
"num_node_expansions": 0,
"search_time": 0.0537401,
"total_time": 0.129181,
"plan_length": 204,
"plan_cost": 204,
"objects_used": 117,
"objects_total": 239,
"neural_net_time": 0.03226113319396973,
"num_replanning_steps": 0,
"wall_time": 0.7413692474365234
},
{
"num_node_expansions": 0,
"search_time": 0.0427963,
"total_time": 0.102569,
"plan_length": 144,
"plan_cost": 144,
"objects_used": 91,
"objects_total": 178,
"neural_net_time": 0.022121191024780273,
"num_replanning_steps": 0,
"wall_time": 0.6236279010772705
},
{
"num_node_expansions": 0,
"search_time": 0.0610904,
"total_time": 0.145927,
"plan_length": 173,
"plan_cost": 173,
"objects_used": 94,
"objects_total": 178,
"neural_net_time": 0.022466659545898438,
"num_replanning_steps": 0,
"wall_time": 0.7872977256774902
},
{
"num_node_expansions": 0,
"search_time": 0.105739,
"total_time": 0.156724,
"plan_length": 242,
"plan_cost": 242,
"objects_used": 91,
"objects_total": 149,
"neural_net_time": 0.019915103912353516,
"num_replanning_steps": 0,
"wall_time": 0.6529858112335205
},
{
"num_node_expansions": 0,
"search_time": 0.0412097,
"total_time": 0.0860239,
"plan_length": 165,
"plan_cost": 165,
"objects_used": 88,
"objects_total": 149,
"neural_net_time": 0.01854991912841797,
"num_replanning_steps": 0,
"wall_time": 0.542670488357544
},
{
"num_node_expansions": 0,
"search_time": 0.0585739,
"total_time": 0.108371,
"plan_length": 181,
"plan_cost": 181,
"objects_used": 111,
"objects_total": 303,
"neural_net_time": 0.03990364074707031,
"num_replanning_steps": 0,
"wall_time": 0.6126856803894043
},
{
"num_node_expansions": 0,
"search_time": 0.0287513,
"total_time": 0.0792464,
"plan_length": 160,
"plan_cost": 160,
"objects_used": 112,
"objects_total": 303,
"neural_net_time": 0.042130231857299805,
"num_replanning_steps": 0,
"wall_time": 0.5846388339996338
},
{
"num_node_expansions": 0,
"search_time": 0.107534,
"total_time": 0.229351,
"plan_length": 217,
"plan_cost": 217,
"objects_used": 129,
"objects_total": 249,
"neural_net_time": 0.03248929977416992,
"num_replanning_steps": 0,
"wall_time": 1.0149266719818115
},
{
"num_node_expansions": 0,
"search_time": 0.0762152,
"total_time": 0.164597,
"plan_length": 246,
"plan_cost": 246,
"objects_used": 120,
"objects_total": 249,
"neural_net_time": 0.03411459922790527,
"num_replanning_steps": 0,
"wall_time": 0.8181357383728027
},
{
"num_node_expansions": 0,
"search_time": 0.0587584,
"total_time": 0.164629,
"plan_length": 218,
"plan_cost": 218,
"objects_used": 149,
"objects_total": 587,
"neural_net_time": 0.086212158203125,
"num_replanning_steps": 0,
"wall_time": 0.9260921478271484
},
{
"num_node_expansions": 0,
"search_time": 0.0554733,
"total_time": 0.122241,
"plan_length": 265,
"plan_cost": 265,
"objects_used": 142,
"objects_total": 587,
"neural_net_time": 0.08226633071899414,
"num_replanning_steps": 0,
"wall_time": 0.7610836029052734
},
{
"num_node_expansions": 0,
"search_time": 0.0408733,
"total_time": 0.100948,
"plan_length": 165,
"plan_cost": 165,
"objects_used": 92,
"objects_total": 134,
"neural_net_time": 0.017212629318237305,
"num_replanning_steps": 0,
"wall_time": 0.6096396446228027
},
{
"num_node_expansions": 0,
"search_time": 0.0342132,
"total_time": 0.0953756,
"plan_length": 158,
"plan_cost": 158,
"objects_used": 90,
"objects_total": 134,
"neural_net_time": 0.017091989517211914,
"num_replanning_steps": 0,
"wall_time": 0.6211745738983154
},
{
"num_node_expansions": 0,
"search_time": 0.0458456,
"total_time": 0.111354,
"plan_length": 170,
"plan_cost": 170,
"objects_used": 105,
"objects_total": 191,
"neural_net_time": 0.02404499053955078,
"num_replanning_steps": 0,
"wall_time": 0.6399385929107666
},
{
"num_node_expansions": 0,
"search_time": 0.0504605,
"total_time": 0.104297,
"plan_length": 203,
"plan_cost": 203,
"objects_used": 102,
"objects_total": 191,
"neural_net_time": 0.023929357528686523,
"num_replanning_steps": 0,
"wall_time": 0.6030387878417969
},
{
"num_node_expansions": 0,
"search_time": 0.0633861,
"total_time": 0.12648,
"plan_length": 230,
"plan_cost": 230,
"objects_used": 121,
"objects_total": 270,
"neural_net_time": 0.035614728927612305,
"num_replanning_steps": 0,
"wall_time": 0.6686084270477295
},
{
"num_node_expansions": 0,
"search_time": 0.0427827,
"total_time": 0.106424,
"plan_length": 167,
"plan_cost": 167,
"objects_used": 121,
"objects_total": 270,
"neural_net_time": 0.03508901596069336,
"num_replanning_steps": 0,
"wall_time": 0.6471562385559082
},
{
"num_node_expansions": 0,
"search_time": 0.0699054,
"total_time": 0.146207,
"plan_length": 182,
"plan_cost": 182,
"objects_used": 108,
"objects_total": 249,
"neural_net_time": 0.033226966857910156,
"num_replanning_steps": 0,
"wall_time": 0.7620828151702881
},
{
"num_node_expansions": 0,
"search_time": 0.0396139,
"total_time": 0.105753,
"plan_length": 182,
"plan_cost": 182,
"objects_used": 103,
"objects_total": 249,
"neural_net_time": 0.03296351432800293,
"num_replanning_steps": 0,
"wall_time": 0.6554136276245117
},
{
"num_node_expansions": 0,
"search_time": 0.186225,
"total_time": 0.284902,
"plan_length": 307,
"plan_cost": 307,
"objects_used": 121,
"objects_total": 339,
"neural_net_time": 0.041571855545043945,
"num_replanning_steps": 0,
"wall_time": 0.9901289939880371
},
{
"num_node_expansions": 0,
"search_time": 0.103152,
"total_time": 0.214738,
"plan_length": 271,
"plan_cost": 271,
"objects_used": 124,
"objects_total": 339,
"neural_net_time": 0.041908979415893555,
"num_replanning_steps": 0,
"wall_time": 0.9619948863983154
},
{
"num_node_expansions": 0,
"search_time": 0.0980407,
"total_time": 0.197482,
"plan_length": 259,
"plan_cost": 259,
"objects_used": 125,
"objects_total": 236,
"neural_net_time": 0.031392574310302734,
"num_replanning_steps": 0,
"wall_time": 0.8748137950897217
},
{
"num_node_expansions": 0,
"search_time": 0.118228,
"total_time": 0.236724,
"plan_length": 224,
"plan_cost": 224,
"objects_used": 128,
"objects_total": 236,
"neural_net_time": 0.030808210372924805,
"num_replanning_steps": 0,
"wall_time": 0.9691076278686523
},
{
"num_node_expansions": 0,
"search_time": 0.364483,
"total_time": 0.553356,
"plan_length": 327,
"plan_cost": 327,
"objects_used": 183,
"objects_total": 545,
"neural_net_time": 0.07480621337890625,
"num_replanning_steps": 0,
"wall_time": 1.6058380603790283
},
{
"num_node_expansions": 0,
"search_time": 0.175042,
"total_time": 0.304095,
"plan_length": 268,
"plan_cost": 268,
"objects_used": 175,
"objects_total": 545,
"neural_net_time": 0.0760653018951416,
"num_replanning_steps": 0,
"wall_time": 1.144291639328003
},
{
"num_node_expansions": 0,
"search_time": 0.0468189,
"total_time": 0.0977976,
"plan_length": 183,
"plan_cost": 183,
"objects_used": 124,
"objects_total": 282,
"neural_net_time": 0.03844618797302246,
"num_replanning_steps": 0,
"wall_time": 0.6090617179870605
},
{
"num_node_expansions": 0,
"search_time": 0.0591433,
"total_time": 0.118038,
"plan_length": 210,
"plan_cost": 210,
"objects_used": 125,
"objects_total": 282,
"neural_net_time": 0.03890657424926758,
"num_replanning_steps": 0,
"wall_time": 0.657982587814331
},
{
"num_node_expansions": 0,
"search_time": 0.0713976,
"total_time": 0.160077,
"plan_length": 242,
"plan_cost": 242,
"objects_used": 159,
"objects_total": 353,
"neural_net_time": 0.04707837104797363,
"num_replanning_steps": 0,
"wall_time": 0.81772780418396
},
{
"num_node_expansions": 0,
"search_time": 0.0691563,
"total_time": 0.156866,
"plan_length": 273,
"plan_cost": 273,
"objects_used": 161,
"objects_total": 353,
"neural_net_time": 0.050296783447265625,
"num_replanning_steps": 0,
"wall_time": 0.8201048374176025
},
{
"num_node_expansions": 0,
"search_time": 0.0553024,
"total_time": 0.122233,
"plan_length": 211,
"plan_cost": 211,
"objects_used": 103,
"objects_total": 201,
"neural_net_time": 0.02599501609802246,
"num_replanning_steps": 0,
"wall_time": 0.670032262802124
},
{
"num_node_expansions": 0,
"search_time": 0.0686447,
"total_time": 0.152336,
"plan_length": 222,
"plan_cost": 222,
"objects_used": 107,
"objects_total": 201,
"neural_net_time": 0.0256350040435791,
"num_replanning_steps": 0,
"wall_time": 0.7799983024597168
},
{
"num_node_expansions": 0,
"search_time": 0.0571376,
"total_time": 0.116092,
"plan_length": 214,
"plan_cost": 214,
"objects_used": 90,
"objects_total": 127,
"neural_net_time": 0.015542984008789062,
"num_replanning_steps": 0,
"wall_time": 0.6360890865325928
},
{
"num_node_expansions": 0,
"search_time": 0.0383512,
"total_time": 0.0814155,
"plan_length": 161,
"plan_cost": 161,
"objects_used": 85,
"objects_total": 127,
"neural_net_time": 0.01593756675720215,
"num_replanning_steps": 0,
"wall_time": 0.533531904220581
},
{
"num_node_expansions": 0,
"search_time": 0.133944,
"total_time": 0.249637,
"plan_length": 241,
"plan_cost": 241,
"objects_used": 129,
"objects_total": 279,
"neural_net_time": 0.038277626037597656,
"num_replanning_steps": 1,
"wall_time": 1.2898194789886475
},
{
"num_node_expansions": 0,
"search_time": 0.0831433,
"total_time": 0.169426,
"plan_length": 244,
"plan_cost": 244,
"objects_used": 125,
"objects_total": 279,
"neural_net_time": 0.03785538673400879,
"num_replanning_steps": 1,
"wall_time": 1.106647253036499
},
{
"num_node_expansions": 0,
"search_time": 0.0542981,
"total_time": 0.134971,
"plan_length": 194,
"plan_cost": 194,
"objects_used": 117,
"objects_total": 238,
"neural_net_time": 0.03080582618713379,
"num_replanning_steps": 0,
"wall_time": 0.7395229339599609
},
{
"num_node_expansions": 0,
"search_time": 0.0959696,
"total_time": 0.191952,
"plan_length": 196,
"plan_cost": 196,
"objects_used": 117,
"objects_total": 238,
"neural_net_time": 0.031075000762939453,
"num_replanning_steps": 0,
"wall_time": 0.8637576103210449
},
{
"num_node_expansions": 0,
"search_time": 0.0611591,
"total_time": 0.131317,
"plan_length": 195,
"plan_cost": 195,
"objects_used": 112,
"objects_total": 300,
"neural_net_time": 0.0395965576171875,
"num_replanning_steps": 0,
"wall_time": 0.7352595329284668
},
{
"num_node_expansions": 0,
"search_time": 0.0417098,
"total_time": 0.103968,
"plan_length": 179,
"plan_cost": 179,
"objects_used": 109,
"objects_total": 300,
"neural_net_time": 0.05868864059448242,
"num_replanning_steps": 0,
"wall_time": 0.6886849403381348
},
{
"num_node_expansions": 0,
"search_time": 0.0529681,
"total_time": 0.12608,
"plan_length": 189,
"plan_cost": 189,
"objects_used": 112,
"objects_total": 184,
"neural_net_time": 0.023520708084106445,
"num_replanning_steps": 0,
"wall_time": 0.7392187118530273
},
{
"num_node_expansions": 0,
"search_time": 0.0843586,
"total_time": 0.151541,
"plan_length": 220,
"plan_cost": 220,
"objects_used": 110,
"objects_total": 184,
"neural_net_time": 0.023136138916015625,
"num_replanning_steps": 0,
"wall_time": 0.705009937286377
},
{
"num_node_expansions": 0,
"search_time": 0.0467406,
"total_time": 0.117989,
"plan_length": 196,
"plan_cost": 196,
"objects_used": 109,
"objects_total": 146,
"neural_net_time": 0.01931452751159668,
"num_replanning_steps": 0,
"wall_time": 0.6652824878692627
},
{
"num_node_expansions": 0,
"search_time": 0.0379704,
"total_time": 0.0800131,
"plan_length": 238,
"plan_cost": 238,
"objects_used": 103,
"objects_total": 146,
"neural_net_time": 0.01961207389831543,
"num_replanning_steps": 0,
"wall_time": 0.536597490310669
},
{
"num_node_expansions": 0,
"search_time": 0.0483327,
"total_time": 0.112984,
"plan_length": 186,
"plan_cost": 186,
"objects_used": 124,
"objects_total": 267,
"neural_net_time": 0.03605031967163086,
"num_replanning_steps": 0,
"wall_time": 0.6485176086425781
},
{
"num_node_expansions": 0,
"search_time": 0.0439203,
"total_time": 0.125272,
"plan_length": 173,
"plan_cost": 173,
"objects_used": 128,
"objects_total": 267,
"neural_net_time": 0.0352480411529541,
"num_replanning_steps": 0,
"wall_time": 0.7430524826049805
},
{
"num_node_expansions": 0,
"search_time": 0.0386232,
"total_time": 0.120683,
"plan_length": 157,
"plan_cost": 157,
"objects_used": 103,
"objects_total": 156,
"neural_net_time": 0.019634246826171875,
"num_replanning_steps": 0,
"wall_time": 0.7323524951934814
},
{
"num_node_expansions": 0,
"search_time": 0.0443711,
"total_time": 0.104729,
"plan_length": 172,
"plan_cost": 172,
"objects_used": 97,
"objects_total": 156,
"neural_net_time": 0.019132375717163086,
"num_replanning_steps": 0,
"wall_time": 0.6208879947662354
},
{
"num_node_expansions": 0,
"search_time": 0.0693282,
"total_time": 0.135163,
"plan_length": 199,
"plan_cost": 199,
"objects_used": 115,
"objects_total": 242,
"neural_net_time": 0.031639814376831055,
"num_replanning_steps": 0,
"wall_time": 0.6920380592346191
},
{
"num_node_expansions": 0,
"search_time": 0.0815554,
"total_time": 0.151773,
"plan_length": 224,
"plan_cost": 224,
"objects_used": 116,
"objects_total": 242,
"neural_net_time": 0.03125143051147461,
"num_replanning_steps": 0,
"wall_time": 0.7135045528411865
},
{
"num_node_expansions": 0,
"search_time": 0.0688792,
"total_time": 0.141483,
"plan_length": 208,
"plan_cost": 208,
"objects_used": 101,
"objects_total": 221,
"neural_net_time": 0.027935504913330078,
"num_replanning_steps": 0,
"wall_time": 0.7388238906860352
},
{
"num_node_expansions": 0,
"search_time": 0.0603724,
"total_time": 0.15025,
"plan_length": 194,
"plan_cost": 194,
"objects_used": 107,
"objects_total": 221,
"neural_net_time": 0.027875185012817383,
"num_replanning_steps": 0,
"wall_time": 0.8049612045288086
},
{
"num_node_expansions": 0,
"search_time": 0.153015,
"total_time": 0.289896,
"plan_length": 283,
"plan_cost": 283,
"objects_used": 153,
"objects_total": 341,
"neural_net_time": 0.043010711669921875,
"num_replanning_steps": 0,
"wall_time": 1.1008539199829102
},
{
"num_node_expansions": 0,
"search_time": 0.12146,
"total_time": 0.249465,
"plan_length": 240,
"plan_cost": 240,
"objects_used": 152,
"objects_total": 341,
"neural_net_time": 0.04365897178649902,
"num_replanning_steps": 0,
"wall_time": 1.0132684707641602
},
{
"num_node_expansions": 0,
"search_time": 0.0949912,
"total_time": 0.197119,
"plan_length": 199,
"plan_cost": 199,
"objects_used": 117,
"objects_total": 458,
"neural_net_time": 0.05961298942565918,
"num_replanning_steps": 0,
"wall_time": 0.9479503631591797
},
{
"num_node_expansions": 0,
"search_time": 0.0580958,
"total_time": 0.144879,
"plan_length": 186,
"plan_cost": 186,
"objects_used": 115,
"objects_total": 458,
"neural_net_time": 0.058806657791137695,
"num_replanning_steps": 0,
"wall_time": 0.8448758125305176
},
{
"num_node_expansions": 0,
"search_time": 0.0943401,
"total_time": 0.161204,
"plan_length": 195,
"plan_cost": 195,
"objects_used": 92,
"objects_total": 210,
"neural_net_time": 0.026703596115112305,
"num_replanning_steps": 0,
"wall_time": 0.7436492443084717
},
{
"num_node_expansions": 0,
"search_time": 0.0635854,
"total_time": 0.137845,
"plan_length": 186,
"plan_cost": 186,
"objects_used": 96,
"objects_total": 210,
"neural_net_time": 0.026533842086791992,
"num_replanning_steps": 0,
"wall_time": 0.7571001052856445
},
{
"num_node_expansions": 0,
"search_time": 0.0901677,
"total_time": 0.173323,
"plan_length": 221,
"plan_cost": 221,
"objects_used": 114,
"objects_total": 207,
"neural_net_time": 0.027188539505004883,
"num_replanning_steps": 0,
"wall_time": 0.8224620819091797
},
{
"num_node_expansions": 0,
"search_time": 0.0608369,
"total_time": 0.170949,
"plan_length": 185,
"plan_cost": 185,
"objects_used": 117,
"objects_total": 207,
"neural_net_time": 0.0276031494140625,
"num_replanning_steps": 0,
"wall_time": 0.8914165496826172
},
{
"num_node_expansions": 0,
"search_time": 0.041906,
"total_time": 0.110025,
"plan_length": 152,
"plan_cost": 152,
"objects_used": 93,
"objects_total": 173,
"neural_net_time": 0.021545886993408203,
"num_replanning_steps": 0,
"wall_time": 0.6613976955413818
},
{
"num_node_expansions": 0,
"search_time": 0.0544924,
"total_time": 0.101439,
"plan_length": 182,
"plan_cost": 182,
"objects_used": 87,
"objects_total": 173,
"neural_net_time": 0.021553516387939453,
"num_replanning_steps": 0,
"wall_time": 0.5893330574035645
},
{
"num_node_expansions": 0,
"search_time": 0.0403196,
"total_time": 0.108449,
"plan_length": 185,
"plan_cost": 185,
"objects_used": 119,
"objects_total": 170,
"neural_net_time": 0.02425980567932129,
"num_replanning_steps": 0,
"wall_time": 0.6672317981719971
},
{
"num_node_expansions": 0,
"search_time": 0.0516592,
"total_time": 0.112916,
"plan_length": 207,
"plan_cost": 207,
"objects_used": 116,
"objects_total": 170,
"neural_net_time": 0.022519826889038086,
"num_replanning_steps": 0,
"wall_time": 0.6428146362304688
},
{
"num_node_expansions": 0,
"search_time": 0.0962543,
"total_time": 0.21676,
"plan_length": 212,
"plan_cost": 212,
"objects_used": 131,
"objects_total": 336,
"neural_net_time": 0.043267011642456055,
"num_replanning_steps": 0,
"wall_time": 1.0185496807098389
},
{
"num_node_expansions": 0,
"search_time": 0.0446287,
"total_time": 0.122667,
"plan_length": 171,
"plan_cost": 171,
"objects_used": 122,
"objects_total": 336,
"neural_net_time": 0.04323554039001465,
"num_replanning_steps": 0,
"wall_time": 0.7306642532348633
},
{
"num_node_expansions": 0,
"search_time": 0.0464855,
"total_time": 0.119964,
"plan_length": 196,
"plan_cost": 196,
"objects_used": 109,
"objects_total": 212,
"neural_net_time": 0.027590274810791016,
"num_replanning_steps": 0,
"wall_time": 0.7042622566223145
},
{
"num_node_expansions": 0,
"search_time": 0.0775273,
"total_time": 0.195325,
"plan_length": 225,
"plan_cost": 225,
"objects_used": 122,
"objects_total": 212,
"neural_net_time": 0.027378320693969727,
"num_replanning_steps": 0,
"wall_time": 0.9562668800354004
},
{
"num_node_expansions": 0,
"search_time": 0.137595,
"total_time": 0.261872,
"plan_length": 276,
"plan_cost": 276,
"objects_used": 147,
"objects_total": 330,
"neural_net_time": 0.04086756706237793,
"num_replanning_steps": 0,
"wall_time": 1.0305814743041992
},
{
"num_node_expansions": 0,
"search_time": 0.0767862,
"total_time": 0.164567,
"plan_length": 260,
"plan_cost": 260,
"objects_used": 138,
"objects_total": 330,
"neural_net_time": 0.041510820388793945,
"num_replanning_steps": 0,
"wall_time": 0.8132703304290771
},
{
"num_node_expansions": 0,
"search_time": 0.0363089,
"total_time": 0.0983888,
"plan_length": 168,
"plan_cost": 168,
"objects_used": 109,
"objects_total": 283,
"neural_net_time": 0.03784584999084473,
"num_replanning_steps": 0,
"wall_time": 0.6496407985687256
},
{
"num_node_expansions": 0,
"search_time": 0.0483727,
"total_time": 0.12327,
"plan_length": 174,
"plan_cost": 174,
"objects_used": 111,
"objects_total": 283,
"neural_net_time": 0.03927254676818848,
"num_replanning_steps": 0,
"wall_time": 0.7217986583709717
},
{
"num_node_expansions": 0,
"search_time": 0.0509841,
"total_time": 0.102645,
"plan_length": 228,
"plan_cost": 228,
"objects_used": 106,
"objects_total": 197,
"neural_net_time": 0.025380611419677734,
"num_replanning_steps": 0,
"wall_time": 0.5928609371185303
},
{
"num_node_expansions": 0,
"search_time": 0.226994,
"total_time": 0.363337,
"plan_length": 226,
"plan_cost": 226,
"objects_used": 124,
"objects_total": 197,
"neural_net_time": 0.025945186614990234,
"num_replanning_steps": 0,
"wall_time": 1.1579084396362305
},
{
"num_node_expansions": 0,
"search_time": 0.0524179,
"total_time": 0.110885,
"plan_length": 178,
"plan_cost": 178,
"objects_used": 94,
"objects_total": 178,
"neural_net_time": 0.022000789642333984,
"num_replanning_steps": 0,
"wall_time": 0.6276707649230957
},
{
"num_node_expansions": 0,
"search_time": 0.0465348,
"total_time": 0.12546,
"plan_length": 175,
"plan_cost": 175,
"objects_used": 99,
"objects_total": 178,
"neural_net_time": 0.022142648696899414,
"num_replanning_steps": 0,
"wall_time": 0.7352862358093262
},
{
"num_node_expansions": 0,
"search_time": 0.0642858,
"total_time": 0.140108,
"plan_length": 231,
"plan_cost": 231,
"objects_used": 123,
"objects_total": 226,
"neural_net_time": 0.030933141708374023,
"num_replanning_steps": 0,
"wall_time": 0.6825463771820068
},
{
"num_node_expansions": 0,
"search_time": 0.0567909,
"total_time": 0.129672,
"plan_length": 211,
"plan_cost": 211,
"objects_used": 126,
"objects_total": 226,
"neural_net_time": 0.02934718132019043,
"num_replanning_steps": 0,
"wall_time": 0.7046728134155273
},
{
"num_node_expansions": 0,
"search_time": 0.268314,
"total_time": 0.378804,
"plan_length": 249,
"plan_cost": 249,
"objects_used": 144,
"objects_total": 330,
"neural_net_time": 0.040805816650390625,
"num_replanning_steps": 0,
"wall_time": 1.0990633964538574
},
{
"num_node_expansions": 0,
"search_time": 0.115738,
"total_time": 0.222156,
"plan_length": 270,
"plan_cost": 270,
"objects_used": 146,
"objects_total": 330,
"neural_net_time": 0.04066777229309082,
"num_replanning_steps": 0,
"wall_time": 0.9505331516265869
},
{
"num_node_expansions": 0,
"search_time": 0.0275556,
"total_time": 0.0502858,
"plan_length": 169,
"plan_cost": 169,
"objects_used": 78,
"objects_total": 158,
"neural_net_time": 0.019761085510253906,
"num_replanning_steps": 0,
"wall_time": 0.4359562397003174
},
{
"num_node_expansions": 0,
"search_time": 0.0267146,
"total_time": 0.0510226,
"plan_length": 175,
"plan_cost": 175,
"objects_used": 78,
"objects_total": 158,
"neural_net_time": 0.019104957580566406,
"num_replanning_steps": 0,
"wall_time": 0.4357891082763672
},
{
"num_node_expansions": 0,
"search_time": 0.063073,
"total_time": 0.132548,
"plan_length": 231,
"plan_cost": 231,
"objects_used": 134,
"objects_total": 397,
"neural_net_time": 0.051296234130859375,
"num_replanning_steps": 0,
"wall_time": 0.7388997077941895
},
{
"num_node_expansions": 0,
"search_time": 0.0755074,
"total_time": 0.156133,
"plan_length": 246,
"plan_cost": 246,
"objects_used": 137,
"objects_total": 397,
"neural_net_time": 0.05353140830993652,
"num_replanning_steps": 0,
"wall_time": 0.8052575588226318
}
] | stats = [{'num_node_expansions': 0, 'search_time': 0.0553552, 'total_time': 0.13778, 'plan_length': 231, 'plan_cost': 231, 'objects_used': 140, 'objects_total': 250, 'neural_net_time': 0.07324552536010742, 'num_replanning_steps': 0, 'wall_time': 0.7697024345397949}, {'num_node_expansions': 0, 'search_time': 0.0617813, 'total_time': 0.129038, 'plan_length': 222, 'plan_cost': 222, 'objects_used': 134, 'objects_total': 250, 'neural_net_time': 0.03156590461730957, 'num_replanning_steps': 0, 'wall_time': 0.6574497222900391}, {'num_node_expansions': 0, 'search_time': 0.0938968, 'total_time': 0.194791, 'plan_length': 207, 'plan_cost': 207, 'objects_used': 153, 'objects_total': 356, 'neural_net_time': 0.06682157516479492, 'num_replanning_steps': 0, 'wall_time': 0.952847957611084}, {'num_node_expansions': 0, 'search_time': 0.0631711, 'total_time': 0.160995, 'plan_length': 247, 'plan_cost': 247, 'objects_used': 155, 'objects_total': 356, 'neural_net_time': 0.06831550598144531, 'num_replanning_steps': 0, 'wall_time': 0.879575252532959}, {'num_node_expansions': 0, 'search_time': 0.0368878, 'total_time': 0.114052, 'plan_length': 150, 'plan_cost': 150, 'objects_used': 128, 'objects_total': 375, 'neural_net_time': 0.051367998123168945, 'num_replanning_steps': 0, 'wall_time': 0.7391681671142578}, {'num_node_expansions': 0, 'search_time': 0.0720374, 'total_time': 0.156246, 'plan_length': 211, 'plan_cost': 211, 'objects_used': 127, 'objects_total': 375, 'neural_net_time': 0.047237396240234375, 'num_replanning_steps': 0, 'wall_time': 0.8465814590454102}, {'num_node_expansions': 0, 'search_time': 0.0888631, 'total_time': 0.206741, 'plan_length': 188, 'plan_cost': 188, 'objects_used': 121, 'objects_total': 252, 'neural_net_time': 0.03172731399536133, 'num_replanning_steps': 0, 'wall_time': 0.9832382202148438}, {'num_node_expansions': 0, 'search_time': 0.155961, 'total_time': 0.266882, 'plan_length': 244, 'plan_cost': 244, 'objects_used': 122, 'objects_total': 252, 'neural_net_time': 0.0343477725982666, 'num_replanning_steps': 0, 'wall_time': 1.0137133598327637}, {'num_node_expansions': 0, 'search_time': 0.0835422, 'total_time': 0.149342, 'plan_length': 196, 'plan_cost': 196, 'objects_used': 98, 'objects_total': 172, 'neural_net_time': 0.02288532257080078, 'num_replanning_steps': 0, 'wall_time': 0.684044599533081}, {'num_node_expansions': 0, 'search_time': 0.0729025, 'total_time': 0.158524, 'plan_length': 206, 'plan_cost': 206, 'objects_used': 103, 'objects_total': 172, 'neural_net_time': 0.021747350692749023, 'num_replanning_steps': 0, 'wall_time': 0.8100950717926025}, {'num_node_expansions': 0, 'search_time': 0.0568654, 'total_time': 0.137415, 'plan_length': 191, 'plan_cost': 191, 'objects_used': 105, 'objects_total': 246, 'neural_net_time': 0.03279542922973633, 'num_replanning_steps': 0, 'wall_time': 0.7673678398132324}, {'num_node_expansions': 0, 'search_time': 0.152617, 'total_time': 0.224431, 'plan_length': 194, 'plan_cost': 194, 'objects_used': 99, 'objects_total': 246, 'neural_net_time': 0.03205370903015137, 'num_replanning_steps': 0, 'wall_time': 0.8383169174194336}, {'num_node_expansions': 0, 'search_time': 0.0430356, 'total_time': 0.0916958, 'plan_length': 206, 'plan_cost': 206, 'objects_used': 104, 'objects_total': 194, 'neural_net_time': 0.024816274642944336, 'num_replanning_steps': 0, 'wall_time': 0.5796539783477783}, {'num_node_expansions': 0, 'search_time': 0.0793143, 'total_time': 0.15237, 'plan_length': 233, 'plan_cost': 233, 'objects_used': 111, 'objects_total': 194, 'neural_net_time': 0.024263620376586914, 'num_replanning_steps': 0, 'wall_time': 0.7465353012084961}, {'num_node_expansions': 0, 'search_time': 0.0579225, 'total_time': 0.136225, 'plan_length': 180, 'plan_cost': 180, 'objects_used': 100, 'objects_total': 196, 'neural_net_time': 0.024345874786376953, 'num_replanning_steps': 0, 'wall_time': 0.7536647319793701}, {'num_node_expansions': 0, 'search_time': 0.0646547, 'total_time': 0.158646, 'plan_length': 197, 'plan_cost': 197, 'objects_used': 102, 'objects_total': 196, 'neural_net_time': 0.025458097457885742, 'num_replanning_steps': 0, 'wall_time': 0.8155977725982666}, {'num_node_expansions': 0, 'search_time': 0.0690828, 'total_time': 0.1226, 'plan_length': 250, 'plan_cost': 250, 'objects_used': 150, 'objects_total': 261, 'neural_net_time': 0.03429579734802246, 'num_replanning_steps': 0, 'wall_time': 0.6279757022857666}, {'num_node_expansions': 0, 'search_time': 0.0692617, 'total_time': 0.146682, 'plan_length': 280, 'plan_cost': 280, 'objects_used': 158, 'objects_total': 261, 'neural_net_time': 0.03626728057861328, 'num_replanning_steps': 0, 'wall_time': 0.7651171684265137}, {'num_node_expansions': 0, 'search_time': 0.0391875, 'total_time': 0.0983801, 'plan_length': 197, 'plan_cost': 197, 'objects_used': 118, 'objects_total': 223, 'neural_net_time': 0.02935004234313965, 'num_replanning_steps': 0, 'wall_time': 0.6243836879730225}, {'num_node_expansions': 0, 'search_time': 0.0683405, 'total_time': 0.118893, 'plan_length': 309, 'plan_cost': 309, 'objects_used': 115, 'objects_total': 223, 'neural_net_time': 0.029554128646850586, 'num_replanning_steps': 0, 'wall_time': 0.642784833908081}, {'num_node_expansions': 0, 'search_time': 0.083412, 'total_time': 0.16882, 'plan_length': 209, 'plan_cost': 209, 'objects_used': 123, 'objects_total': 268, 'neural_net_time': 0.03368687629699707, 'num_replanning_steps': 0, 'wall_time': 0.823617696762085}, {'num_node_expansions': 0, 'search_time': 0.131707, 'total_time': 0.205061, 'plan_length': 251, 'plan_cost': 251, 'objects_used': 120, 'objects_total': 268, 'neural_net_time': 0.039069414138793945, 'num_replanning_steps': 0, 'wall_time': 0.8401038646697998}, {'num_node_expansions': 0, 'search_time': 0.0430802, 'total_time': 0.116279, 'plan_length': 175, 'plan_cost': 175, 'objects_used': 113, 'objects_total': 251, 'neural_net_time': 0.03359651565551758, 'num_replanning_steps': 0, 'wall_time': 0.7193644046783447}, {'num_node_expansions': 0, 'search_time': 0.0686163, 'total_time': 0.151265, 'plan_length': 211, 'plan_cost': 211, 'objects_used': 114, 'objects_total': 251, 'neural_net_time': 0.03354597091674805, 'num_replanning_steps': 0, 'wall_time': 0.8007180690765381}, {'num_node_expansions': 0, 'search_time': 0.0350066, 'total_time': 0.074157, 'plan_length': 170, 'plan_cost': 170, 'objects_used': 96, 'objects_total': 165, 'neural_net_time': 0.0218808650970459, 'num_replanning_steps': 0, 'wall_time': 0.5286593437194824}, {'num_node_expansions': 0, 'search_time': 0.0411249, 'total_time': 0.0831745, 'plan_length': 193, 'plan_cost': 193, 'objects_used': 98, 'objects_total': 165, 'neural_net_time': 0.022090673446655273, 'num_replanning_steps': 0, 'wall_time': 0.5557692050933838}, {'num_node_expansions': 0, 'search_time': 0.0964381, 'total_time': 0.18287, 'plan_length': 246, 'plan_cost': 246, 'objects_used': 111, 'objects_total': 280, 'neural_net_time': 0.035047054290771484, 'num_replanning_steps': 0, 'wall_time': 0.8643906116485596}, {'num_node_expansions': 0, 'search_time': 0.0441619, 'total_time': 0.122736, 'plan_length': 173, 'plan_cost': 173, 'objects_used': 109, 'objects_total': 280, 'neural_net_time': 0.03827977180480957, 'num_replanning_steps': 0, 'wall_time': 0.7664711475372314}, {'num_node_expansions': 0, 'search_time': 0.0926131, 'total_time': 0.209987, 'plan_length': 242, 'plan_cost': 242, 'objects_used': 139, 'objects_total': 275, 'neural_net_time': 0.03778886795043945, 'num_replanning_steps': 0, 'wall_time': 0.9464788436889648}, {'num_node_expansions': 0, 'search_time': 0.0845314, 'total_time': 0.167256, 'plan_length': 256, 'plan_cost': 256, 'objects_used': 132, 'objects_total': 275, 'neural_net_time': 0.03821539878845215, 'num_replanning_steps': 0, 'wall_time': 0.7884328365325928}, {'num_node_expansions': 0, 'search_time': 0.0529518, 'total_time': 0.124709, 'plan_length': 190, 'plan_cost': 190, 'objects_used': 138, 'objects_total': 313, 'neural_net_time': 0.03936409950256348, 'num_replanning_steps': 0, 'wall_time': 0.7054498195648193}, {'num_node_expansions': 0, 'search_time': 0.0521989, 'total_time': 0.125175, 'plan_length': 218, 'plan_cost': 218, 'objects_used': 138, 'objects_total': 313, 'neural_net_time': 0.03993034362792969, 'num_replanning_steps': 0, 'wall_time': 0.7154295444488525}, {'num_node_expansions': 0, 'search_time': 0.0493855, 'total_time': 0.124496, 'plan_length': 188, 'plan_cost': 188, 'objects_used': 113, 'objects_total': 251, 'neural_net_time': 0.03525900840759277, 'num_replanning_steps': 0, 'wall_time': 0.7170531749725342}, {'num_node_expansions': 0, 'search_time': 0.0427762, 'total_time': 0.107201, 'plan_length': 199, 'plan_cost': 199, 'objects_used': 111, 'objects_total': 251, 'neural_net_time': 0.03240776062011719, 'num_replanning_steps': 0, 'wall_time': 0.658397912979126}, {'num_node_expansions': 0, 'search_time': 0.367306, 'total_time': 0.488743, 'plan_length': 291, 'plan_cost': 291, 'objects_used': 130, 'objects_total': 235, 'neural_net_time': 0.03081965446472168, 'num_replanning_steps': 0, 'wall_time': 1.232940912246704}, {'num_node_expansions': 0, 'search_time': 0.167941, 'total_time': 0.272655, 'plan_length': 314, 'plan_cost': 314, 'objects_used': 127, 'objects_total': 235, 'neural_net_time': 0.0307772159576416, 'num_replanning_steps': 0, 'wall_time': 0.9764890670776367}, {'num_node_expansions': 0, 'search_time': 0.0958415, 'total_time': 0.195371, 'plan_length': 265, 'plan_cost': 265, 'objects_used': 143, 'objects_total': 340, 'neural_net_time': 0.04459547996520996, 'num_replanning_steps': 0, 'wall_time': 0.896115779876709}, {'num_node_expansions': 0, 'search_time': 0.0958713, 'total_time': 0.184557, 'plan_length': 278, 'plan_cost': 278, 'objects_used': 142, 'objects_total': 340, 'neural_net_time': 0.04405355453491211, 'num_replanning_steps': 0, 'wall_time': 0.8578188419342041}, {'num_node_expansions': 0, 'search_time': 0.0630232, 'total_time': 0.139247, 'plan_length': 175, 'plan_cost': 175, 'objects_used': 106, 'objects_total': 219, 'neural_net_time': 0.027605772018432617, 'num_replanning_steps': 0, 'wall_time': 0.7573132514953613}, {'num_node_expansions': 0, 'search_time': 0.0653257, 'total_time': 0.143589, 'plan_length': 187, 'plan_cost': 187, 'objects_used': 105, 'objects_total': 219, 'neural_net_time': 0.02782750129699707, 'num_replanning_steps': 0, 'wall_time': 0.7572407722473145}, {'num_node_expansions': 0, 'search_time': 0.170188, 'total_time': 0.22215, 'plan_length': 234, 'plan_cost': 234, 'objects_used': 96, 'objects_total': 247, 'neural_net_time': 0.032060861587524414, 'num_replanning_steps': 0, 'wall_time': 0.7359240055084229}, {'num_node_expansions': 0, 'search_time': 0.0314888, 'total_time': 0.109566, 'plan_length': 161, 'plan_cost': 161, 'objects_used': 104, 'objects_total': 247, 'neural_net_time': 0.03216266632080078, 'num_replanning_steps': 0, 'wall_time': 0.7081592082977295}, {'num_node_expansions': 0, 'search_time': 0.0726518, 'total_time': 0.174, 'plan_length': 196, 'plan_cost': 196, 'objects_used': 126, 'objects_total': 266, 'neural_net_time': 0.035826683044433594, 'num_replanning_steps': 0, 'wall_time': 0.8562233448028564}, {'num_node_expansions': 0, 'search_time': 0.0792656, 'total_time': 0.179632, 'plan_length': 232, 'plan_cost': 232, 'objects_used': 126, 'objects_total': 266, 'neural_net_time': 0.03566765785217285, 'num_replanning_steps': 0, 'wall_time': 0.8664400577545166}, {'num_node_expansions': 0, 'search_time': 0.101337, 'total_time': 0.196567, 'plan_length': 288, 'plan_cost': 288, 'objects_used': 137, 'objects_total': 364, 'neural_net_time': 0.0472872257232666, 'num_replanning_steps': 0, 'wall_time': 0.8953251838684082}, {'num_node_expansions': 0, 'search_time': 0.143672, 'total_time': 0.248258, 'plan_length': 291, 'plan_cost': 291, 'objects_used': 138, 'objects_total': 364, 'neural_net_time': 0.045786380767822266, 'num_replanning_steps': 0, 'wall_time': 0.9624395370483398}, {'num_node_expansions': 0, 'search_time': 0.0823153, 'total_time': 0.177269, 'plan_length': 215, 'plan_cost': 215, 'objects_used': 119, 'objects_total': 260, 'neural_net_time': 0.03521156311035156, 'num_replanning_steps': 0, 'wall_time': 0.8647644519805908}, {'num_node_expansions': 0, 'search_time': 0.0722084, 'total_time': 0.118556, 'plan_length': 206, 'plan_cost': 206, 'objects_used': 111, 'objects_total': 260, 'neural_net_time': 0.034618377685546875, 'num_replanning_steps': 0, 'wall_time': 0.6127479076385498}, {'num_node_expansions': 0, 'search_time': 0.18003, 'total_time': 0.279039, 'plan_length': 249, 'plan_cost': 249, 'objects_used': 125, 'objects_total': 304, 'neural_net_time': 0.037895917892456055, 'num_replanning_steps': 0, 'wall_time': 0.9646165370941162}, {'num_node_expansions': 0, 'search_time': 0.103696, 'total_time': 0.226759, 'plan_length': 226, 'plan_cost': 226, 'objects_used': 130, 'objects_total': 304, 'neural_net_time': 0.0409388542175293, 'num_replanning_steps': 0, 'wall_time': 1.0076186656951904}, {'num_node_expansions': 0, 'search_time': 0.0459504, 'total_time': 0.114275, 'plan_length': 171, 'plan_cost': 171, 'objects_used': 99, 'objects_total': 183, 'neural_net_time': 0.023260831832885742, 'num_replanning_steps': 0, 'wall_time': 0.6771140098571777}, {'num_node_expansions': 0, 'search_time': 0.0716183, 'total_time': 0.150031, 'plan_length': 156, 'plan_cost': 156, 'objects_used': 105, 'objects_total': 183, 'neural_net_time': 0.023253202438354492, 'num_replanning_steps': 0, 'wall_time': 0.7632434368133545}, {'num_node_expansions': 0, 'search_time': 0.0744395, 'total_time': 0.169348, 'plan_length': 221, 'plan_cost': 221, 'objects_used': 132, 'objects_total': 422, 'neural_net_time': 0.055629730224609375, 'num_replanning_steps': 0, 'wall_time': 0.8604276180267334}, {'num_node_expansions': 0, 'search_time': 0.171499, 'total_time': 0.291441, 'plan_length': 339, 'plan_cost': 339, 'objects_used': 138, 'objects_total': 422, 'neural_net_time': 0.05451369285583496, 'num_replanning_steps': 0, 'wall_time': 1.0652415752410889}, {'num_node_expansions': 0, 'search_time': 0.057438, 'total_time': 0.131651, 'plan_length': 244, 'plan_cost': 244, 'objects_used': 152, 'objects_total': 449, 'neural_net_time': 0.05934548377990723, 'num_replanning_steps': 0, 'wall_time': 0.7638118267059326}, {'num_node_expansions': 0, 'search_time': 0.0854431, 'total_time': 0.175947, 'plan_length': 265, 'plan_cost': 265, 'objects_used': 153, 'objects_total': 449, 'neural_net_time': 0.05878257751464844, 'num_replanning_steps': 0, 'wall_time': 0.8519854545593262}, {'num_node_expansions': 0, 'search_time': 0.0348568, 'total_time': 0.0919101, 'plan_length': 199, 'plan_cost': 199, 'objects_used': 113, 'objects_total': 182, 'neural_net_time': 0.02404642105102539, 'num_replanning_steps': 0, 'wall_time': 0.6046085357666016}, {'num_node_expansions': 0, 'search_time': 0.0512851, 'total_time': 0.118261, 'plan_length': 197, 'plan_cost': 197, 'objects_used': 116, 'objects_total': 182, 'neural_net_time': 0.02478623390197754, 'num_replanning_steps': 0, 'wall_time': 0.6582732200622559}, {'num_node_expansions': 0, 'search_time': 0.0814511, 'total_time': 0.178018, 'plan_length': 223, 'plan_cost': 223, 'objects_used': 112, 'objects_total': 291, 'neural_net_time': 0.03974652290344238, 'num_replanning_steps': 0, 'wall_time': 0.8690383434295654}, {'num_node_expansions': 0, 'search_time': 0.0972344, 'total_time': 0.186246, 'plan_length': 227, 'plan_cost': 227, 'objects_used': 113, 'objects_total': 291, 'neural_net_time': 0.040007829666137695, 'num_replanning_steps': 0, 'wall_time': 0.8641078472137451}, {'num_node_expansions': 0, 'search_time': 0.0535227, 'total_time': 0.153416, 'plan_length': 154, 'plan_cost': 154, 'objects_used': 127, 'objects_total': 236, 'neural_net_time': 0.03182673454284668, 'num_replanning_steps': 0, 'wall_time': 0.8149960041046143}, {'num_node_expansions': 0, 'search_time': 0.0725269, 'total_time': 0.154636, 'plan_length': 242, 'plan_cost': 242, 'objects_used': 121, 'objects_total': 236, 'neural_net_time': 0.03190732002258301, 'num_replanning_steps': 0, 'wall_time': 0.7674713134765625}, {'num_node_expansions': 0, 'search_time': 0.0430467, 'total_time': 0.105684, 'plan_length': 234, 'plan_cost': 234, 'objects_used': 122, 'objects_total': 438, 'neural_net_time': 0.056849002838134766, 'num_replanning_steps': 0, 'wall_time': 0.6843407154083252}, {'num_node_expansions': 0, 'search_time': 0.112816, 'total_time': 0.204347, 'plan_length': 223, 'plan_cost': 223, 'objects_used': 132, 'objects_total': 438, 'neural_net_time': 0.055657386779785156, 'num_replanning_steps': 0, 'wall_time': 0.8872087001800537}, {'num_node_expansions': 0, 'search_time': 0.0544153, 'total_time': 0.115915, 'plan_length': 245, 'plan_cost': 245, 'objects_used': 135, 'objects_total': 319, 'neural_net_time': 0.03964424133300781, 'num_replanning_steps': 0, 'wall_time': 0.6700730323791504}, {'num_node_expansions': 0, 'search_time': 0.0780284, 'total_time': 0.18411, 'plan_length': 228, 'plan_cost': 228, 'objects_used': 145, 'objects_total': 319, 'neural_net_time': 0.03910946846008301, 'num_replanning_steps': 0, 'wall_time': 0.8966822624206543}, {'num_node_expansions': 0, 'search_time': 0.0432264, 'total_time': 0.132364, 'plan_length': 157, 'plan_cost': 157, 'objects_used': 108, 'objects_total': 229, 'neural_net_time': 0.02909064292907715, 'num_replanning_steps': 0, 'wall_time': 0.7693536281585693}, {'num_node_expansions': 0, 'search_time': 0.0676754, 'total_time': 0.13993, 'plan_length': 192, 'plan_cost': 192, 'objects_used': 103, 'objects_total': 229, 'neural_net_time': 0.0286102294921875, 'num_replanning_steps': 0, 'wall_time': 0.7328910827636719}, {'num_node_expansions': 0, 'search_time': 0.0450956, 'total_time': 0.107957, 'plan_length': 204, 'plan_cost': 204, 'objects_used': 112, 'objects_total': 299, 'neural_net_time': 0.04078173637390137, 'num_replanning_steps': 0, 'wall_time': 0.653742790222168}, {'num_node_expansions': 0, 'search_time': 0.0619907, 'total_time': 0.139274, 'plan_length': 221, 'plan_cost': 221, 'objects_used': 116, 'objects_total': 299, 'neural_net_time': 0.042465925216674805, 'num_replanning_steps': 0, 'wall_time': 0.7609946727752686}, {'num_node_expansions': 0, 'search_time': 0.046714, 'total_time': 0.0960238, 'plan_length': 205, 'plan_cost': 205, 'objects_used': 107, 'objects_total': 218, 'neural_net_time': 0.028660058975219727, 'num_replanning_steps': 0, 'wall_time': 0.5864055156707764}, {'num_node_expansions': 0, 'search_time': 0.0742312, 'total_time': 0.124721, 'plan_length': 203, 'plan_cost': 203, 'objects_used': 107, 'objects_total': 218, 'neural_net_time': 0.0290069580078125, 'num_replanning_steps': 0, 'wall_time': 0.613102912902832}, {'num_node_expansions': 0, 'search_time': 0.0998901, 'total_time': 0.173317, 'plan_length': 232, 'plan_cost': 232, 'objects_used': 111, 'objects_total': 260, 'neural_net_time': 0.036131858825683594, 'num_replanning_steps': 0, 'wall_time': 0.8197505474090576}, {'num_node_expansions': 0, 'search_time': 0.0329897, 'total_time': 0.104079, 'plan_length': 146, 'plan_cost': 146, 'objects_used': 111, 'objects_total': 260, 'neural_net_time': 0.03419232368469238, 'num_replanning_steps': 0, 'wall_time': 0.6994471549987793}, {'num_node_expansions': 0, 'search_time': 0.0688091, 'total_time': 0.128025, 'plan_length': 170, 'plan_cost': 170, 'objects_used': 86, 'objects_total': 107, 'neural_net_time': 0.01390385627746582, 'num_replanning_steps': 0, 'wall_time': 0.5809447765350342}, {'num_node_expansions': 0, 'search_time': 0.0345073, 'total_time': 0.0865693, 'plan_length': 169, 'plan_cost': 169, 'objects_used': 88, 'objects_total': 107, 'neural_net_time': 0.014227867126464844, 'num_replanning_steps': 0, 'wall_time': 0.5783209800720215}, {'num_node_expansions': 0, 'search_time': 0.0549029, 'total_time': 0.148058, 'plan_length': 218, 'plan_cost': 218, 'objects_used': 163, 'objects_total': 395, 'neural_net_time': 0.05201601982116699, 'num_replanning_steps': 0, 'wall_time': 0.8142600059509277}, {'num_node_expansions': 0, 'search_time': 0.148722, 'total_time': 0.268158, 'plan_length': 319, 'plan_cost': 319, 'objects_used': 167, 'objects_total': 395, 'neural_net_time': 0.053879499435424805, 'num_replanning_steps': 0, 'wall_time': 1.0406162738800049}, {'num_node_expansions': 0, 'search_time': 0.0493865, 'total_time': 0.115891, 'plan_length': 248, 'plan_cost': 248, 'objects_used': 136, 'objects_total': 296, 'neural_net_time': 0.04027199745178223, 'num_replanning_steps': 0, 'wall_time': 0.6825110912322998}, {'num_node_expansions': 0, 'search_time': 0.0444351, 'total_time': 0.102212, 'plan_length': 233, 'plan_cost': 233, 'objects_used': 131, 'objects_total': 296, 'neural_net_time': 0.040221214294433594, 'num_replanning_steps': 0, 'wall_time': 0.6275992393493652}, {'num_node_expansions': 0, 'search_time': 0.0320574, 'total_time': 0.0803789, 'plan_length': 152, 'plan_cost': 152, 'objects_used': 84, 'objects_total': 126, 'neural_net_time': 0.01577472686767578, 'num_replanning_steps': 0, 'wall_time': 0.6480550765991211}, {'num_node_expansions': 0, 'search_time': 0.0569042, 'total_time': 0.115243, 'plan_length': 175, 'plan_cost': 175, 'objects_used': 87, 'objects_total': 126, 'neural_net_time': 0.023028850555419922, 'num_replanning_steps': 0, 'wall_time': 0.6434402465820312}, {'num_node_expansions': 0, 'search_time': 0.0845776, 'total_time': 0.187273, 'plan_length': 232, 'plan_cost': 232, 'objects_used': 127, 'objects_total': 295, 'neural_net_time': 0.0505681037902832, 'num_replanning_steps': 0, 'wall_time': 0.9154479503631592}, {'num_node_expansions': 0, 'search_time': 0.05377, 'total_time': 0.126935, 'plan_length': 196, 'plan_cost': 196, 'objects_used': 121, 'objects_total': 295, 'neural_net_time': 0.03970003128051758, 'num_replanning_steps': 0, 'wall_time': 0.7530832290649414}, {'num_node_expansions': 0, 'search_time': 0.034628, 'total_time': 0.0986284, 'plan_length': 155, 'plan_cost': 155, 'objects_used': 102, 'objects_total': 195, 'neural_net_time': 0.0242612361907959, 'num_replanning_steps': 0, 'wall_time': 0.6272718906402588}, {'num_node_expansions': 0, 'search_time': 0.0460013, 'total_time': 0.108895, 'plan_length': 173, 'plan_cost': 173, 'objects_used': 99, 'objects_total': 195, 'neural_net_time': 0.024209976196289062, 'num_replanning_steps': 0, 'wall_time': 0.6477742195129395}, {'num_node_expansions': 0, 'search_time': 0.0607851, 'total_time': 0.160475, 'plan_length': 192, 'plan_cost': 192, 'objects_used': 116, 'objects_total': 246, 'neural_net_time': 0.03200078010559082, 'num_replanning_steps': 0, 'wall_time': 0.831235408782959}, {'num_node_expansions': 0, 'search_time': 0.0808828, 'total_time': 0.167005, 'plan_length': 221, 'plan_cost': 221, 'objects_used': 116, 'objects_total': 246, 'neural_net_time': 0.034296274185180664, 'num_replanning_steps': 0, 'wall_time': 0.8123514652252197}, {'num_node_expansions': 0, 'search_time': 0.125551, 'total_time': 0.241321, 'plan_length': 254, 'plan_cost': 254, 'objects_used': 126, 'objects_total': 239, 'neural_net_time': 0.03389883041381836, 'num_replanning_steps': 0, 'wall_time': 0.9676728248596191}, {'num_node_expansions': 0, 'search_time': 0.0537401, 'total_time': 0.129181, 'plan_length': 204, 'plan_cost': 204, 'objects_used': 117, 'objects_total': 239, 'neural_net_time': 0.03226113319396973, 'num_replanning_steps': 0, 'wall_time': 0.7413692474365234}, {'num_node_expansions': 0, 'search_time': 0.0427963, 'total_time': 0.102569, 'plan_length': 144, 'plan_cost': 144, 'objects_used': 91, 'objects_total': 178, 'neural_net_time': 0.022121191024780273, 'num_replanning_steps': 0, 'wall_time': 0.6236279010772705}, {'num_node_expansions': 0, 'search_time': 0.0610904, 'total_time': 0.145927, 'plan_length': 173, 'plan_cost': 173, 'objects_used': 94, 'objects_total': 178, 'neural_net_time': 0.022466659545898438, 'num_replanning_steps': 0, 'wall_time': 0.7872977256774902}, {'num_node_expansions': 0, 'search_time': 0.105739, 'total_time': 0.156724, 'plan_length': 242, 'plan_cost': 242, 'objects_used': 91, 'objects_total': 149, 'neural_net_time': 0.019915103912353516, 'num_replanning_steps': 0, 'wall_time': 0.6529858112335205}, {'num_node_expansions': 0, 'search_time': 0.0412097, 'total_time': 0.0860239, 'plan_length': 165, 'plan_cost': 165, 'objects_used': 88, 'objects_total': 149, 'neural_net_time': 0.01854991912841797, 'num_replanning_steps': 0, 'wall_time': 0.542670488357544}, {'num_node_expansions': 0, 'search_time': 0.0585739, 'total_time': 0.108371, 'plan_length': 181, 'plan_cost': 181, 'objects_used': 111, 'objects_total': 303, 'neural_net_time': 0.03990364074707031, 'num_replanning_steps': 0, 'wall_time': 0.6126856803894043}, {'num_node_expansions': 0, 'search_time': 0.0287513, 'total_time': 0.0792464, 'plan_length': 160, 'plan_cost': 160, 'objects_used': 112, 'objects_total': 303, 'neural_net_time': 0.042130231857299805, 'num_replanning_steps': 0, 'wall_time': 0.5846388339996338}, {'num_node_expansions': 0, 'search_time': 0.107534, 'total_time': 0.229351, 'plan_length': 217, 'plan_cost': 217, 'objects_used': 129, 'objects_total': 249, 'neural_net_time': 0.03248929977416992, 'num_replanning_steps': 0, 'wall_time': 1.0149266719818115}, {'num_node_expansions': 0, 'search_time': 0.0762152, 'total_time': 0.164597, 'plan_length': 246, 'plan_cost': 246, 'objects_used': 120, 'objects_total': 249, 'neural_net_time': 0.03411459922790527, 'num_replanning_steps': 0, 'wall_time': 0.8181357383728027}, {'num_node_expansions': 0, 'search_time': 0.0587584, 'total_time': 0.164629, 'plan_length': 218, 'plan_cost': 218, 'objects_used': 149, 'objects_total': 587, 'neural_net_time': 0.086212158203125, 'num_replanning_steps': 0, 'wall_time': 0.9260921478271484}, {'num_node_expansions': 0, 'search_time': 0.0554733, 'total_time': 0.122241, 'plan_length': 265, 'plan_cost': 265, 'objects_used': 142, 'objects_total': 587, 'neural_net_time': 0.08226633071899414, 'num_replanning_steps': 0, 'wall_time': 0.7610836029052734}, {'num_node_expansions': 0, 'search_time': 0.0408733, 'total_time': 0.100948, 'plan_length': 165, 'plan_cost': 165, 'objects_used': 92, 'objects_total': 134, 'neural_net_time': 0.017212629318237305, 'num_replanning_steps': 0, 'wall_time': 0.6096396446228027}, {'num_node_expansions': 0, 'search_time': 0.0342132, 'total_time': 0.0953756, 'plan_length': 158, 'plan_cost': 158, 'objects_used': 90, 'objects_total': 134, 'neural_net_time': 0.017091989517211914, 'num_replanning_steps': 0, 'wall_time': 0.6211745738983154}, {'num_node_expansions': 0, 'search_time': 0.0458456, 'total_time': 0.111354, 'plan_length': 170, 'plan_cost': 170, 'objects_used': 105, 'objects_total': 191, 'neural_net_time': 0.02404499053955078, 'num_replanning_steps': 0, 'wall_time': 0.6399385929107666}, {'num_node_expansions': 0, 'search_time': 0.0504605, 'total_time': 0.104297, 'plan_length': 203, 'plan_cost': 203, 'objects_used': 102, 'objects_total': 191, 'neural_net_time': 0.023929357528686523, 'num_replanning_steps': 0, 'wall_time': 0.6030387878417969}, {'num_node_expansions': 0, 'search_time': 0.0633861, 'total_time': 0.12648, 'plan_length': 230, 'plan_cost': 230, 'objects_used': 121, 'objects_total': 270, 'neural_net_time': 0.035614728927612305, 'num_replanning_steps': 0, 'wall_time': 0.6686084270477295}, {'num_node_expansions': 0, 'search_time': 0.0427827, 'total_time': 0.106424, 'plan_length': 167, 'plan_cost': 167, 'objects_used': 121, 'objects_total': 270, 'neural_net_time': 0.03508901596069336, 'num_replanning_steps': 0, 'wall_time': 0.6471562385559082}, {'num_node_expansions': 0, 'search_time': 0.0699054, 'total_time': 0.146207, 'plan_length': 182, 'plan_cost': 182, 'objects_used': 108, 'objects_total': 249, 'neural_net_time': 0.033226966857910156, 'num_replanning_steps': 0, 'wall_time': 0.7620828151702881}, {'num_node_expansions': 0, 'search_time': 0.0396139, 'total_time': 0.105753, 'plan_length': 182, 'plan_cost': 182, 'objects_used': 103, 'objects_total': 249, 'neural_net_time': 0.03296351432800293, 'num_replanning_steps': 0, 'wall_time': 0.6554136276245117}, {'num_node_expansions': 0, 'search_time': 0.186225, 'total_time': 0.284902, 'plan_length': 307, 'plan_cost': 307, 'objects_used': 121, 'objects_total': 339, 'neural_net_time': 0.041571855545043945, 'num_replanning_steps': 0, 'wall_time': 0.9901289939880371}, {'num_node_expansions': 0, 'search_time': 0.103152, 'total_time': 0.214738, 'plan_length': 271, 'plan_cost': 271, 'objects_used': 124, 'objects_total': 339, 'neural_net_time': 0.041908979415893555, 'num_replanning_steps': 0, 'wall_time': 0.9619948863983154}, {'num_node_expansions': 0, 'search_time': 0.0980407, 'total_time': 0.197482, 'plan_length': 259, 'plan_cost': 259, 'objects_used': 125, 'objects_total': 236, 'neural_net_time': 0.031392574310302734, 'num_replanning_steps': 0, 'wall_time': 0.8748137950897217}, {'num_node_expansions': 0, 'search_time': 0.118228, 'total_time': 0.236724, 'plan_length': 224, 'plan_cost': 224, 'objects_used': 128, 'objects_total': 236, 'neural_net_time': 0.030808210372924805, 'num_replanning_steps': 0, 'wall_time': 0.9691076278686523}, {'num_node_expansions': 0, 'search_time': 0.364483, 'total_time': 0.553356, 'plan_length': 327, 'plan_cost': 327, 'objects_used': 183, 'objects_total': 545, 'neural_net_time': 0.07480621337890625, 'num_replanning_steps': 0, 'wall_time': 1.6058380603790283}, {'num_node_expansions': 0, 'search_time': 0.175042, 'total_time': 0.304095, 'plan_length': 268, 'plan_cost': 268, 'objects_used': 175, 'objects_total': 545, 'neural_net_time': 0.0760653018951416, 'num_replanning_steps': 0, 'wall_time': 1.144291639328003}, {'num_node_expansions': 0, 'search_time': 0.0468189, 'total_time': 0.0977976, 'plan_length': 183, 'plan_cost': 183, 'objects_used': 124, 'objects_total': 282, 'neural_net_time': 0.03844618797302246, 'num_replanning_steps': 0, 'wall_time': 0.6090617179870605}, {'num_node_expansions': 0, 'search_time': 0.0591433, 'total_time': 0.118038, 'plan_length': 210, 'plan_cost': 210, 'objects_used': 125, 'objects_total': 282, 'neural_net_time': 0.03890657424926758, 'num_replanning_steps': 0, 'wall_time': 0.657982587814331}, {'num_node_expansions': 0, 'search_time': 0.0713976, 'total_time': 0.160077, 'plan_length': 242, 'plan_cost': 242, 'objects_used': 159, 'objects_total': 353, 'neural_net_time': 0.04707837104797363, 'num_replanning_steps': 0, 'wall_time': 0.81772780418396}, {'num_node_expansions': 0, 'search_time': 0.0691563, 'total_time': 0.156866, 'plan_length': 273, 'plan_cost': 273, 'objects_used': 161, 'objects_total': 353, 'neural_net_time': 0.050296783447265625, 'num_replanning_steps': 0, 'wall_time': 0.8201048374176025}, {'num_node_expansions': 0, 'search_time': 0.0553024, 'total_time': 0.122233, 'plan_length': 211, 'plan_cost': 211, 'objects_used': 103, 'objects_total': 201, 'neural_net_time': 0.02599501609802246, 'num_replanning_steps': 0, 'wall_time': 0.670032262802124}, {'num_node_expansions': 0, 'search_time': 0.0686447, 'total_time': 0.152336, 'plan_length': 222, 'plan_cost': 222, 'objects_used': 107, 'objects_total': 201, 'neural_net_time': 0.0256350040435791, 'num_replanning_steps': 0, 'wall_time': 0.7799983024597168}, {'num_node_expansions': 0, 'search_time': 0.0571376, 'total_time': 0.116092, 'plan_length': 214, 'plan_cost': 214, 'objects_used': 90, 'objects_total': 127, 'neural_net_time': 0.015542984008789062, 'num_replanning_steps': 0, 'wall_time': 0.6360890865325928}, {'num_node_expansions': 0, 'search_time': 0.0383512, 'total_time': 0.0814155, 'plan_length': 161, 'plan_cost': 161, 'objects_used': 85, 'objects_total': 127, 'neural_net_time': 0.01593756675720215, 'num_replanning_steps': 0, 'wall_time': 0.533531904220581}, {'num_node_expansions': 0, 'search_time': 0.133944, 'total_time': 0.249637, 'plan_length': 241, 'plan_cost': 241, 'objects_used': 129, 'objects_total': 279, 'neural_net_time': 0.038277626037597656, 'num_replanning_steps': 1, 'wall_time': 1.2898194789886475}, {'num_node_expansions': 0, 'search_time': 0.0831433, 'total_time': 0.169426, 'plan_length': 244, 'plan_cost': 244, 'objects_used': 125, 'objects_total': 279, 'neural_net_time': 0.03785538673400879, 'num_replanning_steps': 1, 'wall_time': 1.106647253036499}, {'num_node_expansions': 0, 'search_time': 0.0542981, 'total_time': 0.134971, 'plan_length': 194, 'plan_cost': 194, 'objects_used': 117, 'objects_total': 238, 'neural_net_time': 0.03080582618713379, 'num_replanning_steps': 0, 'wall_time': 0.7395229339599609}, {'num_node_expansions': 0, 'search_time': 0.0959696, 'total_time': 0.191952, 'plan_length': 196, 'plan_cost': 196, 'objects_used': 117, 'objects_total': 238, 'neural_net_time': 0.031075000762939453, 'num_replanning_steps': 0, 'wall_time': 0.8637576103210449}, {'num_node_expansions': 0, 'search_time': 0.0611591, 'total_time': 0.131317, 'plan_length': 195, 'plan_cost': 195, 'objects_used': 112, 'objects_total': 300, 'neural_net_time': 0.0395965576171875, 'num_replanning_steps': 0, 'wall_time': 0.7352595329284668}, {'num_node_expansions': 0, 'search_time': 0.0417098, 'total_time': 0.103968, 'plan_length': 179, 'plan_cost': 179, 'objects_used': 109, 'objects_total': 300, 'neural_net_time': 0.05868864059448242, 'num_replanning_steps': 0, 'wall_time': 0.6886849403381348}, {'num_node_expansions': 0, 'search_time': 0.0529681, 'total_time': 0.12608, 'plan_length': 189, 'plan_cost': 189, 'objects_used': 112, 'objects_total': 184, 'neural_net_time': 0.023520708084106445, 'num_replanning_steps': 0, 'wall_time': 0.7392187118530273}, {'num_node_expansions': 0, 'search_time': 0.0843586, 'total_time': 0.151541, 'plan_length': 220, 'plan_cost': 220, 'objects_used': 110, 'objects_total': 184, 'neural_net_time': 0.023136138916015625, 'num_replanning_steps': 0, 'wall_time': 0.705009937286377}, {'num_node_expansions': 0, 'search_time': 0.0467406, 'total_time': 0.117989, 'plan_length': 196, 'plan_cost': 196, 'objects_used': 109, 'objects_total': 146, 'neural_net_time': 0.01931452751159668, 'num_replanning_steps': 0, 'wall_time': 0.6652824878692627}, {'num_node_expansions': 0, 'search_time': 0.0379704, 'total_time': 0.0800131, 'plan_length': 238, 'plan_cost': 238, 'objects_used': 103, 'objects_total': 146, 'neural_net_time': 0.01961207389831543, 'num_replanning_steps': 0, 'wall_time': 0.536597490310669}, {'num_node_expansions': 0, 'search_time': 0.0483327, 'total_time': 0.112984, 'plan_length': 186, 'plan_cost': 186, 'objects_used': 124, 'objects_total': 267, 'neural_net_time': 0.03605031967163086, 'num_replanning_steps': 0, 'wall_time': 0.6485176086425781}, {'num_node_expansions': 0, 'search_time': 0.0439203, 'total_time': 0.125272, 'plan_length': 173, 'plan_cost': 173, 'objects_used': 128, 'objects_total': 267, 'neural_net_time': 0.0352480411529541, 'num_replanning_steps': 0, 'wall_time': 0.7430524826049805}, {'num_node_expansions': 0, 'search_time': 0.0386232, 'total_time': 0.120683, 'plan_length': 157, 'plan_cost': 157, 'objects_used': 103, 'objects_total': 156, 'neural_net_time': 0.019634246826171875, 'num_replanning_steps': 0, 'wall_time': 0.7323524951934814}, {'num_node_expansions': 0, 'search_time': 0.0443711, 'total_time': 0.104729, 'plan_length': 172, 'plan_cost': 172, 'objects_used': 97, 'objects_total': 156, 'neural_net_time': 0.019132375717163086, 'num_replanning_steps': 0, 'wall_time': 0.6208879947662354}, {'num_node_expansions': 0, 'search_time': 0.0693282, 'total_time': 0.135163, 'plan_length': 199, 'plan_cost': 199, 'objects_used': 115, 'objects_total': 242, 'neural_net_time': 0.031639814376831055, 'num_replanning_steps': 0, 'wall_time': 0.6920380592346191}, {'num_node_expansions': 0, 'search_time': 0.0815554, 'total_time': 0.151773, 'plan_length': 224, 'plan_cost': 224, 'objects_used': 116, 'objects_total': 242, 'neural_net_time': 0.03125143051147461, 'num_replanning_steps': 0, 'wall_time': 0.7135045528411865}, {'num_node_expansions': 0, 'search_time': 0.0688792, 'total_time': 0.141483, 'plan_length': 208, 'plan_cost': 208, 'objects_used': 101, 'objects_total': 221, 'neural_net_time': 0.027935504913330078, 'num_replanning_steps': 0, 'wall_time': 0.7388238906860352}, {'num_node_expansions': 0, 'search_time': 0.0603724, 'total_time': 0.15025, 'plan_length': 194, 'plan_cost': 194, 'objects_used': 107, 'objects_total': 221, 'neural_net_time': 0.027875185012817383, 'num_replanning_steps': 0, 'wall_time': 0.8049612045288086}, {'num_node_expansions': 0, 'search_time': 0.153015, 'total_time': 0.289896, 'plan_length': 283, 'plan_cost': 283, 'objects_used': 153, 'objects_total': 341, 'neural_net_time': 0.043010711669921875, 'num_replanning_steps': 0, 'wall_time': 1.1008539199829102}, {'num_node_expansions': 0, 'search_time': 0.12146, 'total_time': 0.249465, 'plan_length': 240, 'plan_cost': 240, 'objects_used': 152, 'objects_total': 341, 'neural_net_time': 0.04365897178649902, 'num_replanning_steps': 0, 'wall_time': 1.0132684707641602}, {'num_node_expansions': 0, 'search_time': 0.0949912, 'total_time': 0.197119, 'plan_length': 199, 'plan_cost': 199, 'objects_used': 117, 'objects_total': 458, 'neural_net_time': 0.05961298942565918, 'num_replanning_steps': 0, 'wall_time': 0.9479503631591797}, {'num_node_expansions': 0, 'search_time': 0.0580958, 'total_time': 0.144879, 'plan_length': 186, 'plan_cost': 186, 'objects_used': 115, 'objects_total': 458, 'neural_net_time': 0.058806657791137695, 'num_replanning_steps': 0, 'wall_time': 0.8448758125305176}, {'num_node_expansions': 0, 'search_time': 0.0943401, 'total_time': 0.161204, 'plan_length': 195, 'plan_cost': 195, 'objects_used': 92, 'objects_total': 210, 'neural_net_time': 0.026703596115112305, 'num_replanning_steps': 0, 'wall_time': 0.7436492443084717}, {'num_node_expansions': 0, 'search_time': 0.0635854, 'total_time': 0.137845, 'plan_length': 186, 'plan_cost': 186, 'objects_used': 96, 'objects_total': 210, 'neural_net_time': 0.026533842086791992, 'num_replanning_steps': 0, 'wall_time': 0.7571001052856445}, {'num_node_expansions': 0, 'search_time': 0.0901677, 'total_time': 0.173323, 'plan_length': 221, 'plan_cost': 221, 'objects_used': 114, 'objects_total': 207, 'neural_net_time': 0.027188539505004883, 'num_replanning_steps': 0, 'wall_time': 0.8224620819091797}, {'num_node_expansions': 0, 'search_time': 0.0608369, 'total_time': 0.170949, 'plan_length': 185, 'plan_cost': 185, 'objects_used': 117, 'objects_total': 207, 'neural_net_time': 0.0276031494140625, 'num_replanning_steps': 0, 'wall_time': 0.8914165496826172}, {'num_node_expansions': 0, 'search_time': 0.041906, 'total_time': 0.110025, 'plan_length': 152, 'plan_cost': 152, 'objects_used': 93, 'objects_total': 173, 'neural_net_time': 0.021545886993408203, 'num_replanning_steps': 0, 'wall_time': 0.6613976955413818}, {'num_node_expansions': 0, 'search_time': 0.0544924, 'total_time': 0.101439, 'plan_length': 182, 'plan_cost': 182, 'objects_used': 87, 'objects_total': 173, 'neural_net_time': 0.021553516387939453, 'num_replanning_steps': 0, 'wall_time': 0.5893330574035645}, {'num_node_expansions': 0, 'search_time': 0.0403196, 'total_time': 0.108449, 'plan_length': 185, 'plan_cost': 185, 'objects_used': 119, 'objects_total': 170, 'neural_net_time': 0.02425980567932129, 'num_replanning_steps': 0, 'wall_time': 0.6672317981719971}, {'num_node_expansions': 0, 'search_time': 0.0516592, 'total_time': 0.112916, 'plan_length': 207, 'plan_cost': 207, 'objects_used': 116, 'objects_total': 170, 'neural_net_time': 0.022519826889038086, 'num_replanning_steps': 0, 'wall_time': 0.6428146362304688}, {'num_node_expansions': 0, 'search_time': 0.0962543, 'total_time': 0.21676, 'plan_length': 212, 'plan_cost': 212, 'objects_used': 131, 'objects_total': 336, 'neural_net_time': 0.043267011642456055, 'num_replanning_steps': 0, 'wall_time': 1.0185496807098389}, {'num_node_expansions': 0, 'search_time': 0.0446287, 'total_time': 0.122667, 'plan_length': 171, 'plan_cost': 171, 'objects_used': 122, 'objects_total': 336, 'neural_net_time': 0.04323554039001465, 'num_replanning_steps': 0, 'wall_time': 0.7306642532348633}, {'num_node_expansions': 0, 'search_time': 0.0464855, 'total_time': 0.119964, 'plan_length': 196, 'plan_cost': 196, 'objects_used': 109, 'objects_total': 212, 'neural_net_time': 0.027590274810791016, 'num_replanning_steps': 0, 'wall_time': 0.7042622566223145}, {'num_node_expansions': 0, 'search_time': 0.0775273, 'total_time': 0.195325, 'plan_length': 225, 'plan_cost': 225, 'objects_used': 122, 'objects_total': 212, 'neural_net_time': 0.027378320693969727, 'num_replanning_steps': 0, 'wall_time': 0.9562668800354004}, {'num_node_expansions': 0, 'search_time': 0.137595, 'total_time': 0.261872, 'plan_length': 276, 'plan_cost': 276, 'objects_used': 147, 'objects_total': 330, 'neural_net_time': 0.04086756706237793, 'num_replanning_steps': 0, 'wall_time': 1.0305814743041992}, {'num_node_expansions': 0, 'search_time': 0.0767862, 'total_time': 0.164567, 'plan_length': 260, 'plan_cost': 260, 'objects_used': 138, 'objects_total': 330, 'neural_net_time': 0.041510820388793945, 'num_replanning_steps': 0, 'wall_time': 0.8132703304290771}, {'num_node_expansions': 0, 'search_time': 0.0363089, 'total_time': 0.0983888, 'plan_length': 168, 'plan_cost': 168, 'objects_used': 109, 'objects_total': 283, 'neural_net_time': 0.03784584999084473, 'num_replanning_steps': 0, 'wall_time': 0.6496407985687256}, {'num_node_expansions': 0, 'search_time': 0.0483727, 'total_time': 0.12327, 'plan_length': 174, 'plan_cost': 174, 'objects_used': 111, 'objects_total': 283, 'neural_net_time': 0.03927254676818848, 'num_replanning_steps': 0, 'wall_time': 0.7217986583709717}, {'num_node_expansions': 0, 'search_time': 0.0509841, 'total_time': 0.102645, 'plan_length': 228, 'plan_cost': 228, 'objects_used': 106, 'objects_total': 197, 'neural_net_time': 0.025380611419677734, 'num_replanning_steps': 0, 'wall_time': 0.5928609371185303}, {'num_node_expansions': 0, 'search_time': 0.226994, 'total_time': 0.363337, 'plan_length': 226, 'plan_cost': 226, 'objects_used': 124, 'objects_total': 197, 'neural_net_time': 0.025945186614990234, 'num_replanning_steps': 0, 'wall_time': 1.1579084396362305}, {'num_node_expansions': 0, 'search_time': 0.0524179, 'total_time': 0.110885, 'plan_length': 178, 'plan_cost': 178, 'objects_used': 94, 'objects_total': 178, 'neural_net_time': 0.022000789642333984, 'num_replanning_steps': 0, 'wall_time': 0.6276707649230957}, {'num_node_expansions': 0, 'search_time': 0.0465348, 'total_time': 0.12546, 'plan_length': 175, 'plan_cost': 175, 'objects_used': 99, 'objects_total': 178, 'neural_net_time': 0.022142648696899414, 'num_replanning_steps': 0, 'wall_time': 0.7352862358093262}, {'num_node_expansions': 0, 'search_time': 0.0642858, 'total_time': 0.140108, 'plan_length': 231, 'plan_cost': 231, 'objects_used': 123, 'objects_total': 226, 'neural_net_time': 0.030933141708374023, 'num_replanning_steps': 0, 'wall_time': 0.6825463771820068}, {'num_node_expansions': 0, 'search_time': 0.0567909, 'total_time': 0.129672, 'plan_length': 211, 'plan_cost': 211, 'objects_used': 126, 'objects_total': 226, 'neural_net_time': 0.02934718132019043, 'num_replanning_steps': 0, 'wall_time': 0.7046728134155273}, {'num_node_expansions': 0, 'search_time': 0.268314, 'total_time': 0.378804, 'plan_length': 249, 'plan_cost': 249, 'objects_used': 144, 'objects_total': 330, 'neural_net_time': 0.040805816650390625, 'num_replanning_steps': 0, 'wall_time': 1.0990633964538574}, {'num_node_expansions': 0, 'search_time': 0.115738, 'total_time': 0.222156, 'plan_length': 270, 'plan_cost': 270, 'objects_used': 146, 'objects_total': 330, 'neural_net_time': 0.04066777229309082, 'num_replanning_steps': 0, 'wall_time': 0.9505331516265869}, {'num_node_expansions': 0, 'search_time': 0.0275556, 'total_time': 0.0502858, 'plan_length': 169, 'plan_cost': 169, 'objects_used': 78, 'objects_total': 158, 'neural_net_time': 0.019761085510253906, 'num_replanning_steps': 0, 'wall_time': 0.4359562397003174}, {'num_node_expansions': 0, 'search_time': 0.0267146, 'total_time': 0.0510226, 'plan_length': 175, 'plan_cost': 175, 'objects_used': 78, 'objects_total': 158, 'neural_net_time': 0.019104957580566406, 'num_replanning_steps': 0, 'wall_time': 0.4357891082763672}, {'num_node_expansions': 0, 'search_time': 0.063073, 'total_time': 0.132548, 'plan_length': 231, 'plan_cost': 231, 'objects_used': 134, 'objects_total': 397, 'neural_net_time': 0.051296234130859375, 'num_replanning_steps': 0, 'wall_time': 0.7388997077941895}, {'num_node_expansions': 0, 'search_time': 0.0755074, 'total_time': 0.156133, 'plan_length': 246, 'plan_cost': 246, 'objects_used': 137, 'objects_total': 397, 'neural_net_time': 0.05353140830993652, 'num_replanning_steps': 0, 'wall_time': 0.8052575588226318}] |
def jwt_response_payload_handler(token,user=None,request=None):
return {
'token': token,
'user_id': user.id,
'username': user.username
}
def jwt_get_user_secret(user):
print(user)
return user.user_secret
| def jwt_response_payload_handler(token, user=None, request=None):
return {'token': token, 'user_id': user.id, 'username': user.username}
def jwt_get_user_secret(user):
print(user)
return user.user_secret |
power = {'BUSES': {'Area': 1.33155,
'Bus/Area': 1.33155,
'Bus/Gate Leakage': 0.00662954,
'Bus/Peak Dynamic': 0.0,
'Bus/Runtime Dynamic': 0.0,
'Bus/Subthreshold Leakage': 0.0691322,
'Bus/Subthreshold Leakage with power gating': 0.0259246,
'Gate Leakage': 0.00662954,
'Peak Dynamic': 0.0,
'Runtime Dynamic': 0.0,
'Subthreshold Leakage': 0.0691322,
'Subthreshold Leakage with power gating': 0.0259246},
'Core': [{'Area': 32.6082,
'Execution Unit/Area': 8.2042,
'Execution Unit/Complex ALUs/Area': 0.235435,
'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646,
'Execution Unit/Complex ALUs/Peak Dynamic': 0.302632,
'Execution Unit/Complex ALUs/Runtime Dynamic': 0.44039,
'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111,
'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163,
'Execution Unit/Floating Point Units/Area': 4.6585,
'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156,
'Execution Unit/Floating Point Units/Peak Dynamic': 1.74064,
'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033,
'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829,
'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061,
'Execution Unit/Gate Leakage': 0.122718,
'Execution Unit/Instruction Scheduler/Area': 2.17927,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.328073,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.00115349,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.20978,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.728653,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.017004,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00962066,
'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00730101,
'Execution Unit/Instruction Scheduler/Instruction Window/Area': 1.00996,
'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00529112,
'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 2.07911,
'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 1.26176,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0800117,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0455351,
'Execution Unit/Instruction Scheduler/Peak Dynamic': 4.84781,
'Execution Unit/Instruction Scheduler/ROB/Area': 0.841232,
'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.000856399,
'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.55892,
'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.723657,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.0178624,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00897339,
'Execution Unit/Instruction Scheduler/Runtime Dynamic': 2.71407,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.114878,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.0641291,
'Execution Unit/Integer ALUs/Area': 0.47087,
'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291,
'Execution Unit/Integer ALUs/Peak Dynamic': 0.453379,
'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344,
'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222,
'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833,
'Execution Unit/Peak Dynamic': 8.84284,
'Execution Unit/Register Files/Area': 0.570804,
'Execution Unit/Register Files/Floating Point RF/Area': 0.208131,
'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788,
'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.328844,
'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.0264143,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968,
'Execution Unit/Register Files/Gate Leakage': 0.000622708,
'Execution Unit/Register Files/Integer RF/Area': 0.362673,
'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992,
'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.299986,
'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.19535,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675,
'Execution Unit/Register Files/Peak Dynamic': 0.62883,
'Execution Unit/Register Files/Runtime Dynamic': 0.221764,
'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387,
'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643,
'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0442632,
'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00607074,
'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.807798,
'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 1.80673,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.0920413,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0345155,
'Execution Unit/Runtime Dynamic': 5.58833,
'Execution Unit/Subthreshold Leakage': 1.83518,
'Execution Unit/Subthreshold Leakage with power gating': 0.709678,
'Gate Leakage': 0.372997,
'Instruction Fetch Unit/Area': 5.86007,
'Instruction Fetch Unit/Branch Predictor/Area': 0.138516,
'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00113814,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00113814,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.000994454,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000386686,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045,
'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838,
'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732,
'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05,
'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602,
'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.00280621,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733,
'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00607694,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282,
'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954,
'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758,
'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867,
'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0108002,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357,
'Instruction Fetch Unit/Gate Leakage': 0.0590479,
'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323,
'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05,
'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827,
'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.187795,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682,
'Instruction Fetch Unit/Instruction Cache/Area': 3.14635,
'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931,
'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 6.43323,
'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.387106,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386,
'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799,
'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493,
'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404,
'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.637835,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104,
'Instruction Fetch Unit/Peak Dynamic': 8.96874,
'Instruction Fetch Unit/Runtime Dynamic': 1.22961,
'Instruction Fetch Unit/Subthreshold Leakage': 0.932587,
'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.408542,
'L2/Area': 4.53318,
'L2/Gate Leakage': 0.015464,
'L2/Peak Dynamic': 0.0676826,
'L2/Runtime Dynamic': 0.0135037,
'L2/Subthreshold Leakage': 0.834142,
'L2/Subthreshold Leakage with power gating': 0.401066,
'Load Store Unit/Area': 8.80969,
'Load Store Unit/Data Cache/Area': 6.84535,
'Load Store Unit/Data Cache/Gate Leakage': 0.0279261,
'Load Store Unit/Data Cache/Peak Dynamic': 6.47358,
'Load Store Unit/Data Cache/Runtime Dynamic': 2.51904,
'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675,
'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085,
'Load Store Unit/Gate Leakage': 0.0351387,
'Load Store Unit/LoadQ/Area': 0.0836782,
'Load Store Unit/LoadQ/Gate Leakage': 0.00059896,
'Load Store Unit/LoadQ/Peak Dynamic': 0.169412,
'Load Store Unit/LoadQ/Runtime Dynamic': 0.169412,
'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961,
'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918,
'Load Store Unit/Peak Dynamic': 7.27684,
'Load Store Unit/Runtime Dynamic': 3.52393,
'Load Store Unit/StoreQ/Area': 0.322079,
'Load Store Unit/StoreQ/Gate Leakage': 0.00329971,
'Load Store Unit/StoreQ/Peak Dynamic': 0.417741,
'Load Store Unit/StoreQ/Runtime Dynamic': 0.835482,
'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621,
'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004,
'Load Store Unit/Subthreshold Leakage': 0.591622,
'Load Store Unit/Subthreshold Leakage with power gating': 0.283406,
'Memory Management Unit/Area': 0.434579,
'Memory Management Unit/Dtlb/Area': 0.0879726,
'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729,
'Memory Management Unit/Dtlb/Peak Dynamic': 0.148258,
'Memory Management Unit/Dtlb/Runtime Dynamic': 0.149268,
'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699,
'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485,
'Memory Management Unit/Gate Leakage': 0.00813591,
'Memory Management Unit/Itlb/Area': 0.301552,
'Memory Management Unit/Itlb/Gate Leakage': 0.00393464,
'Memory Management Unit/Itlb/Peak Dynamic': 0.399995,
'Memory Management Unit/Itlb/Runtime Dynamic': 0.063478,
'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758,
'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842,
'Memory Management Unit/Peak Dynamic': 0.814803,
'Memory Management Unit/Runtime Dynamic': 0.212746,
'Memory Management Unit/Subthreshold Leakage': 0.0769113,
'Memory Management Unit/Subthreshold Leakage with power gating': 0.0399462,
'Peak Dynamic': 30.5326,
'Renaming Unit/Area': 0.369768,
'Renaming Unit/FP Front End RAT/Area': 0.168486,
'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00489731,
'Renaming Unit/FP Front End RAT/Peak Dynamic': 3.33511,
'Renaming Unit/FP Front End RAT/Runtime Dynamic': 1.14726,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0437281,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.024925,
'Renaming Unit/Free List/Area': 0.0414755,
'Renaming Unit/Free List/Gate Leakage': 4.15911e-05,
'Renaming Unit/Free List/Peak Dynamic': 0.0401324,
'Renaming Unit/Free List/Runtime Dynamic': 0.0510646,
'Renaming Unit/Free List/Subthreshold Leakage': 0.000670426,
'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000377987,
'Renaming Unit/Gate Leakage': 0.00863632,
'Renaming Unit/Int Front End RAT/Area': 0.114751,
'Renaming Unit/Int Front End RAT/Gate Leakage': 0.00038343,
'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.86945,
'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.358373,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00611897,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00348781,
'Renaming Unit/Peak Dynamic': 4.56169,
'Renaming Unit/Runtime Dynamic': 1.5567,
'Renaming Unit/Subthreshold Leakage': 0.070483,
'Renaming Unit/Subthreshold Leakage with power gating': 0.0362779,
'Runtime Dynamic': 12.1248,
'Subthreshold Leakage': 6.21877,
'Subthreshold Leakage with power gating': 2.58311},
{'Area': 32.0201,
'Execution Unit/Area': 7.68434,
'Execution Unit/Complex ALUs/Area': 0.235435,
'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646,
'Execution Unit/Complex ALUs/Peak Dynamic': 2.83407e-06,
'Execution Unit/Complex ALUs/Runtime Dynamic': 0.202691,
'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111,
'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163,
'Execution Unit/Floating Point Units/Area': 4.6585,
'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156,
'Execution Unit/Floating Point Units/Peak Dynamic': 1.01201e-05,
'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033,
'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829,
'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061,
'Execution Unit/Gate Leakage': 0.120359,
'Execution Unit/Instruction Scheduler/Area': 1.66526,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.154568,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519,
'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913,
'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223,
'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562,
'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763,
'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.249312,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964,
'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262,
'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388,
'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608,
'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451,
'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.125844,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446,
'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.529725,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346,
'Execution Unit/Integer ALUs/Area': 0.47087,
'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291,
'Execution Unit/Integer ALUs/Peak Dynamic': 0.176778,
'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344,
'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222,
'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833,
'Execution Unit/Peak Dynamic': 4.16878,
'Execution Unit/Register Files/Area': 0.570804,
'Execution Unit/Register Files/Floating Point RF/Area': 0.208131,
'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788,
'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 1.91191e-06,
'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.00648327,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968,
'Execution Unit/Register Files/Gate Leakage': 0.000622708,
'Execution Unit/Register Files/Integer RF/Area': 0.362673,
'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992,
'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0468833,
'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0479478,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675,
'Execution Unit/Register Files/Peak Dynamic': 0.0468852,
'Execution Unit/Register Files/Runtime Dynamic': 0.054431,
'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387,
'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643,
'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912,
'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402,
'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.0987706,
'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.253717,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543,
'Execution Unit/Runtime Dynamic': 1.44594,
'Execution Unit/Subthreshold Leakage': 1.79543,
'Execution Unit/Subthreshold Leakage with power gating': 0.688821,
'Gate Leakage': 0.368936,
'Instruction Fetch Unit/Area': 5.85939,
'Instruction Fetch Unit/Branch Predictor/Area': 0.138516,
'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00222979,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00222979,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.00200626,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000811718,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045,
'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838,
'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732,
'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05,
'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602,
'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.000688773,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733,
'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00715461,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282,
'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954,
'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758,
'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867,
'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0190885,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357,
'Instruction Fetch Unit/Gate Leakage': 0.0589979,
'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323,
'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05,
'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827,
'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0460934,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682,
'Instruction Fetch Unit/Instruction Cache/Area': 3.14635,
'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931,
'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 2.93194,
'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.173486,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386,
'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799,
'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493,
'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404,
'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.156554,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104,
'Instruction Fetch Unit/Peak Dynamic': 5.29275,
'Instruction Fetch Unit/Runtime Dynamic': 0.402376,
'Instruction Fetch Unit/Subthreshold Leakage': 0.932286,
'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843,
'L2/Area': 4.53318,
'L2/Gate Leakage': 0.015464,
'L2/Peak Dynamic': 0.0356709,
'L2/Runtime Dynamic': 0.0080202,
'L2/Subthreshold Leakage': 0.834142,
'L2/Subthreshold Leakage with power gating': 0.401066,
'Load Store Unit/Area': 8.80901,
'Load Store Unit/Data Cache/Area': 6.84535,
'Load Store Unit/Data Cache/Gate Leakage': 0.0279261,
'Load Store Unit/Data Cache/Peak Dynamic': 2.63095,
'Load Store Unit/Data Cache/Runtime Dynamic': 0.680792,
'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675,
'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085,
'Load Store Unit/Gate Leakage': 0.0350888,
'Load Store Unit/LoadQ/Area': 0.0836782,
'Load Store Unit/LoadQ/Gate Leakage': 0.00059896,
'Load Store Unit/LoadQ/Peak Dynamic': 0.0450938,
'Load Store Unit/LoadQ/Runtime Dynamic': 0.0450937,
'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961,
'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918,
'Load Store Unit/Peak Dynamic': 2.84389,
'Load Store Unit/Runtime Dynamic': 0.948273,
'Load Store Unit/StoreQ/Area': 0.322079,
'Load Store Unit/StoreQ/Gate Leakage': 0.00329971,
'Load Store Unit/StoreQ/Peak Dynamic': 0.111194,
'Load Store Unit/StoreQ/Runtime Dynamic': 0.222387,
'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621,
'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004,
'Load Store Unit/Subthreshold Leakage': 0.591321,
'Load Store Unit/Subthreshold Leakage with power gating': 0.283293,
'Memory Management Unit/Area': 0.4339,
'Memory Management Unit/Dtlb/Area': 0.0879726,
'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729,
'Memory Management Unit/Dtlb/Peak Dynamic': 0.0394629,
'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0398514,
'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699,
'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485,
'Memory Management Unit/Gate Leakage': 0.00808595,
'Memory Management Unit/Itlb/Area': 0.301552,
'Memory Management Unit/Itlb/Gate Leakage': 0.00393464,
'Memory Management Unit/Itlb/Peak Dynamic': 0.182297,
'Memory Management Unit/Itlb/Runtime Dynamic': 0.0288764,
'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758,
'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842,
'Memory Management Unit/Peak Dynamic': 0.406196,
'Memory Management Unit/Runtime Dynamic': 0.0687278,
'Memory Management Unit/Subthreshold Leakage': 0.0766103,
'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333,
'Peak Dynamic': 16.3368,
'Renaming Unit/Area': 0.303608,
'Renaming Unit/FP Front End RAT/Area': 0.131045,
'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123,
'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468,
'Renaming Unit/FP Front End RAT/Runtime Dynamic': 4.96768e-06,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885,
'Renaming Unit/Free List/Area': 0.0340654,
'Renaming Unit/Free List/Gate Leakage': 2.5481e-05,
'Renaming Unit/Free List/Peak Dynamic': 0.0306032,
'Renaming Unit/Free List/Runtime Dynamic': 0.00697374,
'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144,
'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064,
'Renaming Unit/Gate Leakage': 0.00708398,
'Renaming Unit/Int Front End RAT/Area': 0.0941223,
'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242,
'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965,
'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.0784063,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228,
'Renaming Unit/Peak Dynamic': 3.58947,
'Renaming Unit/Runtime Dynamic': 0.085385,
'Renaming Unit/Subthreshold Leakage': 0.0552466,
'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461,
'Runtime Dynamic': 2.95872,
'Subthreshold Leakage': 6.16288,
'Subthreshold Leakage with power gating': 2.55328},
{'Area': 32.0201,
'Execution Unit/Area': 7.68434,
'Execution Unit/Complex ALUs/Area': 0.235435,
'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646,
'Execution Unit/Complex ALUs/Peak Dynamic': 0.0497804,
'Execution Unit/Complex ALUs/Runtime Dynamic': 0.241788,
'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111,
'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163,
'Execution Unit/Floating Point Units/Area': 4.6585,
'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156,
'Execution Unit/Floating Point Units/Peak Dynamic': 0.266638,
'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033,
'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829,
'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061,
'Execution Unit/Gate Leakage': 0.120359,
'Execution Unit/Instruction Scheduler/Area': 1.66526,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.115969,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519,
'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913,
'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223,
'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562,
'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763,
'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.187054,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964,
'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262,
'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388,
'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608,
'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451,
'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.0944185,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446,
'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.397441,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346,
'Execution Unit/Integer ALUs/Area': 0.47087,
'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291,
'Execution Unit/Integer ALUs/Peak Dynamic': 0.0917557,
'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344,
'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222,
'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833,
'Execution Unit/Peak Dynamic': 4.47338,
'Execution Unit/Register Files/Area': 0.570804,
'Execution Unit/Register Files/Floating Point RF/Area': 0.208131,
'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788,
'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.0503736,
'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.00486426,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968,
'Execution Unit/Register Files/Gate Leakage': 0.000622708,
'Execution Unit/Register Files/Integer RF/Area': 0.362673,
'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992,
'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0539008,
'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0359742,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675,
'Execution Unit/Register Files/Peak Dynamic': 0.104274,
'Execution Unit/Register Files/Runtime Dynamic': 0.0408385,
'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387,
'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643,
'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912,
'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402,
'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.126002,
'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.313117,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543,
'Execution Unit/Runtime Dynamic': 1.39856,
'Execution Unit/Subthreshold Leakage': 1.79543,
'Execution Unit/Subthreshold Leakage with power gating': 0.688821,
'Gate Leakage': 0.368936,
'Instruction Fetch Unit/Area': 5.85939,
'Instruction Fetch Unit/Branch Predictor/Area': 0.138516,
'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.000352288,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.000352288,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.000323299,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000134155,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045,
'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838,
'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732,
'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05,
'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602,
'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.000516772,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733,
'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00154465,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282,
'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954,
'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758,
'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867,
'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.00278975,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357,
'Instruction Fetch Unit/Gate Leakage': 0.0589979,
'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323,
'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05,
'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827,
'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0345829,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682,
'Instruction Fetch Unit/Instruction Cache/Area': 3.14635,
'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931,
'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 2.19977,
'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.080069,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386,
'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799,
'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493,
'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404,
'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.117459,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104,
'Instruction Fetch Unit/Peak Dynamic': 4.52505,
'Instruction Fetch Unit/Runtime Dynamic': 0.236446,
'Instruction Fetch Unit/Subthreshold Leakage': 0.932286,
'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843,
'L2/Area': 4.53318,
'L2/Gate Leakage': 0.015464,
'L2/Peak Dynamic': 0.0463941,
'L2/Runtime Dynamic': 0.00401459,
'L2/Subthreshold Leakage': 0.834142,
'L2/Subthreshold Leakage with power gating': 0.401066,
'Load Store Unit/Area': 8.80901,
'Load Store Unit/Data Cache/Area': 6.84535,
'Load Store Unit/Data Cache/Gate Leakage': 0.0279261,
'Load Store Unit/Data Cache/Peak Dynamic': 2.59537,
'Load Store Unit/Data Cache/Runtime Dynamic': 0.657263,
'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675,
'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085,
'Load Store Unit/Gate Leakage': 0.0350888,
'Load Store Unit/LoadQ/Area': 0.0836782,
'Load Store Unit/LoadQ/Gate Leakage': 0.00059896,
'Load Store Unit/LoadQ/Peak Dynamic': 0.0439427,
'Load Store Unit/LoadQ/Runtime Dynamic': 0.0439426,
'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961,
'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918,
'Load Store Unit/Peak Dynamic': 2.80288,
'Load Store Unit/Runtime Dynamic': 0.917916,
'Load Store Unit/StoreQ/Area': 0.322079,
'Load Store Unit/StoreQ/Gate Leakage': 0.00329971,
'Load Store Unit/StoreQ/Peak Dynamic': 0.108355,
'Load Store Unit/StoreQ/Runtime Dynamic': 0.21671,
'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621,
'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004,
'Load Store Unit/Subthreshold Leakage': 0.591321,
'Load Store Unit/Subthreshold Leakage with power gating': 0.283293,
'Memory Management Unit/Area': 0.4339,
'Memory Management Unit/Dtlb/Area': 0.0879726,
'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729,
'Memory Management Unit/Dtlb/Peak Dynamic': 0.0384556,
'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0391504,
'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699,
'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485,
'Memory Management Unit/Gate Leakage': 0.00808595,
'Memory Management Unit/Itlb/Area': 0.301552,
'Memory Management Unit/Itlb/Gate Leakage': 0.00393464,
'Memory Management Unit/Itlb/Peak Dynamic': 0.136774,
'Memory Management Unit/Itlb/Runtime Dynamic': 0.0131318,
'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758,
'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842,
'Memory Management Unit/Peak Dynamic': 0.358943,
'Memory Management Unit/Runtime Dynamic': 0.0522822,
'Memory Management Unit/Subthreshold Leakage': 0.0766103,
'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333,
'Peak Dynamic': 15.7961,
'Renaming Unit/Area': 0.303608,
'Renaming Unit/FP Front End RAT/Area': 0.131045,
'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123,
'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468,
'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.13251,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885,
'Renaming Unit/Free List/Area': 0.0340654,
'Renaming Unit/Free List/Gate Leakage': 2.5481e-05,
'Renaming Unit/Free List/Peak Dynamic': 0.0306032,
'Renaming Unit/Free List/Runtime Dynamic': 0.00684483,
'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144,
'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064,
'Renaming Unit/Gate Leakage': 0.00708398,
'Renaming Unit/Int Front End RAT/Area': 0.0941223,
'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242,
'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965,
'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.0569405,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228,
'Renaming Unit/Peak Dynamic': 3.58947,
'Renaming Unit/Runtime Dynamic': 0.196296,
'Renaming Unit/Subthreshold Leakage': 0.0552466,
'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461,
'Runtime Dynamic': 2.80552,
'Subthreshold Leakage': 6.16288,
'Subthreshold Leakage with power gating': 2.55328},
{'Area': 32.0201,
'Execution Unit/Area': 7.68434,
'Execution Unit/Complex ALUs/Area': 0.235435,
'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646,
'Execution Unit/Complex ALUs/Peak Dynamic': 0.0981967,
'Execution Unit/Complex ALUs/Runtime Dynamic': 0.279817,
'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111,
'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163,
'Execution Unit/Floating Point Units/Area': 4.6585,
'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156,
'Execution Unit/Floating Point Units/Peak Dynamic': 0.622045,
'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033,
'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829,
'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061,
'Execution Unit/Gate Leakage': 0.120359,
'Execution Unit/Instruction Scheduler/Area': 1.66526,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.18956,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519,
'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913,
'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223,
'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562,
'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763,
'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.305753,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964,
'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262,
'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388,
'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608,
'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451,
'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.154334,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446,
'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.649647,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346,
'Execution Unit/Integer ALUs/Area': 0.47087,
'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291,
'Execution Unit/Integer ALUs/Peak Dynamic': 0.121434,
'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344,
'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222,
'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833,
'Execution Unit/Peak Dynamic': 5.10391,
'Execution Unit/Register Files/Area': 0.570804,
'Execution Unit/Register Files/Floating Point RF/Area': 0.208131,
'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788,
'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.117518,
'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.007951,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968,
'Execution Unit/Register Files/Gate Leakage': 0.000622708,
'Execution Unit/Register Files/Integer RF/Area': 0.362673,
'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992,
'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0905286,
'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0588025,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675,
'Execution Unit/Register Files/Peak Dynamic': 0.208046,
'Execution Unit/Register Files/Runtime Dynamic': 0.0667535,
'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387,
'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643,
'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912,
'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402,
'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.215273,
'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.562655,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543,
'Execution Unit/Runtime Dynamic': 1.96425,
'Execution Unit/Subthreshold Leakage': 1.79543,
'Execution Unit/Subthreshold Leakage with power gating': 0.688821,
'Gate Leakage': 0.368936,
'Instruction Fetch Unit/Area': 5.85939,
'Instruction Fetch Unit/Branch Predictor/Area': 0.138516,
'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 2.12932e-05,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 2.12932e-05,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 1.857e-05,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 7.20164e-06,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045,
'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838,
'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732,
'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05,
'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602,
'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.000844703,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733,
'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.000905859,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282,
'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954,
'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758,
'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867,
'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.000203314,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357,
'Instruction Fetch Unit/Gate Leakage': 0.0589979,
'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323,
'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05,
'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827,
'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0565284,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682,
'Instruction Fetch Unit/Instruction Cache/Area': 3.14635,
'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931,
'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 3.59569,
'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.13911,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386,
'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799,
'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493,
'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404,
'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.191996,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104,
'Instruction Fetch Unit/Peak Dynamic': 5.98871,
'Instruction Fetch Unit/Runtime Dynamic': 0.388743,
'Instruction Fetch Unit/Subthreshold Leakage': 0.932286,
'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843,
'L2/Area': 4.53318,
'L2/Gate Leakage': 0.015464,
'L2/Peak Dynamic': 0.0399561,
'L2/Runtime Dynamic': 0.0110362,
'L2/Subthreshold Leakage': 0.834142,
'L2/Subthreshold Leakage with power gating': 0.401066,
'Load Store Unit/Area': 8.80901,
'Load Store Unit/Data Cache/Area': 6.84535,
'Load Store Unit/Data Cache/Gate Leakage': 0.0279261,
'Load Store Unit/Data Cache/Peak Dynamic': 3.62214,
'Load Store Unit/Data Cache/Runtime Dynamic': 1.15876,
'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675,
'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085,
'Load Store Unit/Gate Leakage': 0.0350888,
'Load Store Unit/LoadQ/Area': 0.0836782,
'Load Store Unit/LoadQ/Gate Leakage': 0.00059896,
'Load Store Unit/LoadQ/Peak Dynamic': 0.0771611,
'Load Store Unit/LoadQ/Runtime Dynamic': 0.0771611,
'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961,
'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918,
'Load Store Unit/Peak Dynamic': 3.98651,
'Load Store Unit/Runtime Dynamic': 1.61645,
'Load Store Unit/StoreQ/Area': 0.322079,
'Load Store Unit/StoreQ/Gate Leakage': 0.00329971,
'Load Store Unit/StoreQ/Peak Dynamic': 0.190266,
'Load Store Unit/StoreQ/Runtime Dynamic': 0.380532,
'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621,
'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004,
'Load Store Unit/Subthreshold Leakage': 0.591321,
'Load Store Unit/Subthreshold Leakage with power gating': 0.283293,
'Memory Management Unit/Area': 0.4339,
'Memory Management Unit/Dtlb/Area': 0.0879726,
'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729,
'Memory Management Unit/Dtlb/Peak Dynamic': 0.0675261,
'Memory Management Unit/Dtlb/Runtime Dynamic': 0.06811,
'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699,
'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485,
'Memory Management Unit/Gate Leakage': 0.00808595,
'Memory Management Unit/Itlb/Area': 0.301552,
'Memory Management Unit/Itlb/Gate Leakage': 0.00393464,
'Memory Management Unit/Itlb/Peak Dynamic': 0.223567,
'Memory Management Unit/Itlb/Runtime Dynamic': 0.0228527,
'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758,
'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842,
'Memory Management Unit/Peak Dynamic': 0.495673,
'Memory Management Unit/Runtime Dynamic': 0.0909628,
'Memory Management Unit/Subthreshold Leakage': 0.0766103,
'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333,
'Peak Dynamic': 19.2042,
'Renaming Unit/Area': 0.303608,
'Renaming Unit/FP Front End RAT/Area': 0.131045,
'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123,
'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468,
'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.309136,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885,
'Renaming Unit/Free List/Area': 0.0340654,
'Renaming Unit/Free List/Gate Leakage': 2.5481e-05,
'Renaming Unit/Free List/Peak Dynamic': 0.0306032,
'Renaming Unit/Free List/Runtime Dynamic': 0.0123145,
'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144,
'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064,
'Renaming Unit/Gate Leakage': 0.00708398,
'Renaming Unit/Int Front End RAT/Area': 0.0941223,
'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242,
'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965,
'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.0907896,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228,
'Renaming Unit/Peak Dynamic': 3.58947,
'Renaming Unit/Runtime Dynamic': 0.41224,
'Renaming Unit/Subthreshold Leakage': 0.0552466,
'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461,
'Runtime Dynamic': 4.48368,
'Subthreshold Leakage': 6.16288,
'Subthreshold Leakage with power gating': 2.55328}],
'DRAM': {'Area': 0,
'Gate Leakage': 0,
'Peak Dynamic': 3.8126648077879777,
'Runtime Dynamic': 3.8126648077879777,
'Subthreshold Leakage': 4.252,
'Subthreshold Leakage with power gating': 4.252},
'L3': [{'Area': 61.9075,
'Gate Leakage': 0.0484137,
'Peak Dynamic': 0.203129,
'Runtime Dynamic': 0.0598429,
'Subthreshold Leakage': 6.80085,
'Subthreshold Leakage with power gating': 3.32364}],
'Processor': {'Area': 191.908,
'Gate Leakage': 1.53485,
'Peak Dynamic': 82.0728,
'Peak Power': 115.185,
'Runtime Dynamic': 22.4326,
'Subthreshold Leakage': 31.5774,
'Subthreshold Leakage with power gating': 13.9484,
'Total Cores/Area': 128.669,
'Total Cores/Gate Leakage': 1.4798,
'Total Cores/Peak Dynamic': 81.8697,
'Total Cores/Runtime Dynamic': 22.3728,
'Total Cores/Subthreshold Leakage': 24.7074,
'Total Cores/Subthreshold Leakage with power gating': 10.2429,
'Total L3s/Area': 61.9075,
'Total L3s/Gate Leakage': 0.0484137,
'Total L3s/Peak Dynamic': 0.203129,
'Total L3s/Runtime Dynamic': 0.0598429,
'Total L3s/Subthreshold Leakage': 6.80085,
'Total L3s/Subthreshold Leakage with power gating': 3.32364,
'Total Leakage': 33.1122,
'Total NoCs/Area': 1.33155,
'Total NoCs/Gate Leakage': 0.00662954,
'Total NoCs/Peak Dynamic': 0.0,
'Total NoCs/Runtime Dynamic': 0.0,
'Total NoCs/Subthreshold Leakage': 0.0691322,
'Total NoCs/Subthreshold Leakage with power gating': 0.0259246}} | power = {'BUSES': {'Area': 1.33155, 'Bus/Area': 1.33155, 'Bus/Gate Leakage': 0.00662954, 'Bus/Peak Dynamic': 0.0, 'Bus/Runtime Dynamic': 0.0, 'Bus/Subthreshold Leakage': 0.0691322, 'Bus/Subthreshold Leakage with power gating': 0.0259246, 'Gate Leakage': 0.00662954, 'Peak Dynamic': 0.0, 'Runtime Dynamic': 0.0, 'Subthreshold Leakage': 0.0691322, 'Subthreshold Leakage with power gating': 0.0259246}, 'Core': [{'Area': 32.6082, 'Execution Unit/Area': 8.2042, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 0.302632, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.44039, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 1.74064, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.122718, 'Execution Unit/Instruction Scheduler/Area': 2.17927, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.328073, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.00115349, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.20978, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.728653, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.017004, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00962066, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00730101, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 1.00996, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00529112, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 2.07911, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 1.26176, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0800117, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0455351, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 4.84781, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.841232, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.000856399, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.55892, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.723657, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.0178624, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00897339, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 2.71407, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.114878, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.0641291, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.453379, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 8.84284, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.328844, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.0264143, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.299986, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.19535, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.62883, 'Execution Unit/Register Files/Runtime Dynamic': 0.221764, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0442632, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00607074, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.807798, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 1.80673, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.0920413, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0345155, 'Execution Unit/Runtime Dynamic': 5.58833, 'Execution Unit/Subthreshold Leakage': 1.83518, 'Execution Unit/Subthreshold Leakage with power gating': 0.709678, 'Gate Leakage': 0.372997, 'Instruction Fetch Unit/Area': 5.86007, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00113814, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00113814, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.000994454, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000386686, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.00280621, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00607694, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0108002, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0590479, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.187795, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 6.43323, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.387106, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.637835, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 8.96874, 'Instruction Fetch Unit/Runtime Dynamic': 1.22961, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932587, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.408542, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0676826, 'L2/Runtime Dynamic': 0.0135037, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80969, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 6.47358, 'Load Store Unit/Data Cache/Runtime Dynamic': 2.51904, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0351387, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.169412, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.169412, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 7.27684, 'Load Store Unit/Runtime Dynamic': 3.52393, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.417741, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.835482, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591622, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283406, 'Memory Management Unit/Area': 0.434579, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.148258, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.149268, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00813591, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.399995, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.063478, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.814803, 'Memory Management Unit/Runtime Dynamic': 0.212746, 'Memory Management Unit/Subthreshold Leakage': 0.0769113, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0399462, 'Peak Dynamic': 30.5326, 'Renaming Unit/Area': 0.369768, 'Renaming Unit/FP Front End RAT/Area': 0.168486, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00489731, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 3.33511, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 1.14726, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0437281, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.024925, 'Renaming Unit/Free List/Area': 0.0414755, 'Renaming Unit/Free List/Gate Leakage': 4.15911e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0401324, 'Renaming Unit/Free List/Runtime Dynamic': 0.0510646, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000670426, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000377987, 'Renaming Unit/Gate Leakage': 0.00863632, 'Renaming Unit/Int Front End RAT/Area': 0.114751, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.00038343, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.86945, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.358373, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00611897, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00348781, 'Renaming Unit/Peak Dynamic': 4.56169, 'Renaming Unit/Runtime Dynamic': 1.5567, 'Renaming Unit/Subthreshold Leakage': 0.070483, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0362779, 'Runtime Dynamic': 12.1248, 'Subthreshold Leakage': 6.21877, 'Subthreshold Leakage with power gating': 2.58311}, {'Area': 32.0201, 'Execution Unit/Area': 7.68434, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 2.83407e-06, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.202691, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 1.01201e-05, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.120359, 'Execution Unit/Instruction Scheduler/Area': 1.66526, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.154568, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.249312, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.125844, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.529725, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.176778, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 4.16878, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 1.91191e-06, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.00648327, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0468833, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0479478, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.0468852, 'Execution Unit/Register Files/Runtime Dynamic': 0.054431, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.0987706, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.253717, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543, 'Execution Unit/Runtime Dynamic': 1.44594, 'Execution Unit/Subthreshold Leakage': 1.79543, 'Execution Unit/Subthreshold Leakage with power gating': 0.688821, 'Gate Leakage': 0.368936, 'Instruction Fetch Unit/Area': 5.85939, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00222979, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00222979, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.00200626, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000811718, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.000688773, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00715461, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0190885, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0589979, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0460934, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 2.93194, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.173486, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.156554, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 5.29275, 'Instruction Fetch Unit/Runtime Dynamic': 0.402376, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932286, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0356709, 'L2/Runtime Dynamic': 0.0080202, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80901, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 2.63095, 'Load Store Unit/Data Cache/Runtime Dynamic': 0.680792, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0350888, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.0450938, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.0450937, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 2.84389, 'Load Store Unit/Runtime Dynamic': 0.948273, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.111194, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.222387, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591321, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283293, 'Memory Management Unit/Area': 0.4339, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0394629, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0398514, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00808595, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.182297, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0288764, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.406196, 'Memory Management Unit/Runtime Dynamic': 0.0687278, 'Memory Management Unit/Subthreshold Leakage': 0.0766103, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333, 'Peak Dynamic': 16.3368, 'Renaming Unit/Area': 0.303608, 'Renaming Unit/FP Front End RAT/Area': 0.131045, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 4.96768e-06, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885, 'Renaming Unit/Free List/Area': 0.0340654, 'Renaming Unit/Free List/Gate Leakage': 2.5481e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0306032, 'Renaming Unit/Free List/Runtime Dynamic': 0.00697374, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064, 'Renaming Unit/Gate Leakage': 0.00708398, 'Renaming Unit/Int Front End RAT/Area': 0.0941223, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.0784063, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228, 'Renaming Unit/Peak Dynamic': 3.58947, 'Renaming Unit/Runtime Dynamic': 0.085385, 'Renaming Unit/Subthreshold Leakage': 0.0552466, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461, 'Runtime Dynamic': 2.95872, 'Subthreshold Leakage': 6.16288, 'Subthreshold Leakage with power gating': 2.55328}, {'Area': 32.0201, 'Execution Unit/Area': 7.68434, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 0.0497804, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.241788, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 0.266638, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.120359, 'Execution Unit/Instruction Scheduler/Area': 1.66526, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.115969, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.187054, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.0944185, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.397441, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.0917557, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 4.47338, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.0503736, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.00486426, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0539008, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0359742, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.104274, 'Execution Unit/Register Files/Runtime Dynamic': 0.0408385, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.126002, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.313117, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543, 'Execution Unit/Runtime Dynamic': 1.39856, 'Execution Unit/Subthreshold Leakage': 1.79543, 'Execution Unit/Subthreshold Leakage with power gating': 0.688821, 'Gate Leakage': 0.368936, 'Instruction Fetch Unit/Area': 5.85939, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.000352288, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.000352288, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.000323299, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000134155, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.000516772, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00154465, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.00278975, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0589979, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0345829, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 2.19977, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.080069, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.117459, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 4.52505, 'Instruction Fetch Unit/Runtime Dynamic': 0.236446, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932286, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0463941, 'L2/Runtime Dynamic': 0.00401459, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80901, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 2.59537, 'Load Store Unit/Data Cache/Runtime Dynamic': 0.657263, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0350888, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.0439427, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.0439426, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 2.80288, 'Load Store Unit/Runtime Dynamic': 0.917916, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.108355, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.21671, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591321, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283293, 'Memory Management Unit/Area': 0.4339, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0384556, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0391504, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00808595, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.136774, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0131318, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.358943, 'Memory Management Unit/Runtime Dynamic': 0.0522822, 'Memory Management Unit/Subthreshold Leakage': 0.0766103, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333, 'Peak Dynamic': 15.7961, 'Renaming Unit/Area': 0.303608, 'Renaming Unit/FP Front End RAT/Area': 0.131045, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.13251, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885, 'Renaming Unit/Free List/Area': 0.0340654, 'Renaming Unit/Free List/Gate Leakage': 2.5481e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0306032, 'Renaming Unit/Free List/Runtime Dynamic': 0.00684483, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064, 'Renaming Unit/Gate Leakage': 0.00708398, 'Renaming Unit/Int Front End RAT/Area': 0.0941223, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.0569405, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228, 'Renaming Unit/Peak Dynamic': 3.58947, 'Renaming Unit/Runtime Dynamic': 0.196296, 'Renaming Unit/Subthreshold Leakage': 0.0552466, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461, 'Runtime Dynamic': 2.80552, 'Subthreshold Leakage': 6.16288, 'Subthreshold Leakage with power gating': 2.55328}, {'Area': 32.0201, 'Execution Unit/Area': 7.68434, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 0.0981967, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.279817, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 0.622045, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.120359, 'Execution Unit/Instruction Scheduler/Area': 1.66526, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.18956, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.305753, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.154334, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.649647, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.121434, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 5.10391, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.117518, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.007951, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0905286, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0588025, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.208046, 'Execution Unit/Register Files/Runtime Dynamic': 0.0667535, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.215273, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.562655, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543, 'Execution Unit/Runtime Dynamic': 1.96425, 'Execution Unit/Subthreshold Leakage': 1.79543, 'Execution Unit/Subthreshold Leakage with power gating': 0.688821, 'Gate Leakage': 0.368936, 'Instruction Fetch Unit/Area': 5.85939, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 2.12932e-05, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 2.12932e-05, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 1.857e-05, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 7.20164e-06, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.000844703, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.000905859, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.000203314, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0589979, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0565284, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 3.59569, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.13911, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.191996, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 5.98871, 'Instruction Fetch Unit/Runtime Dynamic': 0.388743, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932286, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0399561, 'L2/Runtime Dynamic': 0.0110362, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80901, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 3.62214, 'Load Store Unit/Data Cache/Runtime Dynamic': 1.15876, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0350888, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.0771611, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.0771611, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 3.98651, 'Load Store Unit/Runtime Dynamic': 1.61645, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.190266, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.380532, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591321, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283293, 'Memory Management Unit/Area': 0.4339, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0675261, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.06811, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00808595, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.223567, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0228527, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.495673, 'Memory Management Unit/Runtime Dynamic': 0.0909628, 'Memory Management Unit/Subthreshold Leakage': 0.0766103, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333, 'Peak Dynamic': 19.2042, 'Renaming Unit/Area': 0.303608, 'Renaming Unit/FP Front End RAT/Area': 0.131045, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.309136, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885, 'Renaming Unit/Free List/Area': 0.0340654, 'Renaming Unit/Free List/Gate Leakage': 2.5481e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0306032, 'Renaming Unit/Free List/Runtime Dynamic': 0.0123145, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064, 'Renaming Unit/Gate Leakage': 0.00708398, 'Renaming Unit/Int Front End RAT/Area': 0.0941223, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.0907896, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228, 'Renaming Unit/Peak Dynamic': 3.58947, 'Renaming Unit/Runtime Dynamic': 0.41224, 'Renaming Unit/Subthreshold Leakage': 0.0552466, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461, 'Runtime Dynamic': 4.48368, 'Subthreshold Leakage': 6.16288, 'Subthreshold Leakage with power gating': 2.55328}], 'DRAM': {'Area': 0, 'Gate Leakage': 0, 'Peak Dynamic': 3.8126648077879777, 'Runtime Dynamic': 3.8126648077879777, 'Subthreshold Leakage': 4.252, 'Subthreshold Leakage with power gating': 4.252}, 'L3': [{'Area': 61.9075, 'Gate Leakage': 0.0484137, 'Peak Dynamic': 0.203129, 'Runtime Dynamic': 0.0598429, 'Subthreshold Leakage': 6.80085, 'Subthreshold Leakage with power gating': 3.32364}], 'Processor': {'Area': 191.908, 'Gate Leakage': 1.53485, 'Peak Dynamic': 82.0728, 'Peak Power': 115.185, 'Runtime Dynamic': 22.4326, 'Subthreshold Leakage': 31.5774, 'Subthreshold Leakage with power gating': 13.9484, 'Total Cores/Area': 128.669, 'Total Cores/Gate Leakage': 1.4798, 'Total Cores/Peak Dynamic': 81.8697, 'Total Cores/Runtime Dynamic': 22.3728, 'Total Cores/Subthreshold Leakage': 24.7074, 'Total Cores/Subthreshold Leakage with power gating': 10.2429, 'Total L3s/Area': 61.9075, 'Total L3s/Gate Leakage': 0.0484137, 'Total L3s/Peak Dynamic': 0.203129, 'Total L3s/Runtime Dynamic': 0.0598429, 'Total L3s/Subthreshold Leakage': 6.80085, 'Total L3s/Subthreshold Leakage with power gating': 3.32364, 'Total Leakage': 33.1122, 'Total NoCs/Area': 1.33155, 'Total NoCs/Gate Leakage': 0.00662954, 'Total NoCs/Peak Dynamic': 0.0, 'Total NoCs/Runtime Dynamic': 0.0, 'Total NoCs/Subthreshold Leakage': 0.0691322, 'Total NoCs/Subthreshold Leakage with power gating': 0.0259246}} |
#!/usr/bin/env python3
k = int(input())
a, b = map(int, input().split())
for i in range(a, b+1):
if i%k == 0:
print("OK")
exit()
print("NG") | k = int(input())
(a, b) = map(int, input().split())
for i in range(a, b + 1):
if i % k == 0:
print('OK')
exit()
print('NG') |
# generated from genmsg/cmake/pkg-genmsg.context.in
messages_str = "/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/msg/FingerPosition.msg;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/msg/JointAngles.msg;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/msg/JointVelocity.msg;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/msg/JointTorque.msg;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/msg/KinovaPose.msg;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/msg/PoseVelocity.msg;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/msg/CartesianForce.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmJointAnglesAction.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmJointAnglesActionGoal.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmJointAnglesActionResult.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmJointAnglesActionFeedback.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmJointAnglesGoal.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmJointAnglesResult.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmJointAnglesFeedback.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmPoseAction.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmPoseActionGoal.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmPoseActionResult.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmPoseActionFeedback.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmPoseGoal.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmPoseResult.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmPoseFeedback.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/Arm_KinovaPoseAction.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/Arm_KinovaPoseActionGoal.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/Arm_KinovaPoseActionResult.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/Arm_KinovaPoseActionFeedback.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/Arm_KinovaPoseGoal.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/Arm_KinovaPoseResult.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/Arm_KinovaPoseFeedback.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/SetFingersPositionAction.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/SetFingersPositionActionGoal.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/SetFingersPositionActionResult.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/SetFingersPositionActionFeedback.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/SetFingersPositionGoal.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/SetFingersPositionResult.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/SetFingersPositionFeedback.msg"
services_str = "/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/Start.srv;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/Stop.srv;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/HomeArm.srv;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/SetForceControlParams.srv;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/SetEndEffectorOffset.srv;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/SetNullSpaceModeState.srv;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/SetTorqueControlMode.srv;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/SetTorqueControlParameters.srv;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/ClearTrajectories.srv;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/ZeroTorques.srv;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/AddPoseToCartesianTrajectory.srv;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/RunCOMParametersEstimation.srv"
pkg_name = "kinova_msgs"
dependencies_str = "actionlib_msgs;geometry_msgs"
langs = "gencpp;geneus;genlisp;gennodejs;genpy"
dep_include_paths_str = "kinova_msgs;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/msg;kinova_msgs;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg;actionlib_msgs;/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg;geometry_msgs;/opt/ros/kinetic/share/geometry_msgs/cmake/../msg;std_msgs;/opt/ros/kinetic/share/std_msgs/cmake/../msg"
PYTHON_EXECUTABLE = "/usr/bin/python"
package_has_static_sources = '' == 'TRUE'
genmsg_check_deps_script = "/opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py"
| messages_str = '/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/msg/FingerPosition.msg;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/msg/JointAngles.msg;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/msg/JointVelocity.msg;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/msg/JointTorque.msg;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/msg/KinovaPose.msg;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/msg/PoseVelocity.msg;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/msg/CartesianForce.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmJointAnglesAction.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmJointAnglesActionGoal.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmJointAnglesActionResult.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmJointAnglesActionFeedback.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmJointAnglesGoal.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmJointAnglesResult.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmJointAnglesFeedback.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmPoseAction.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmPoseActionGoal.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmPoseActionResult.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmPoseActionFeedback.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmPoseGoal.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmPoseResult.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/ArmPoseFeedback.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/Arm_KinovaPoseAction.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/Arm_KinovaPoseActionGoal.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/Arm_KinovaPoseActionResult.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/Arm_KinovaPoseActionFeedback.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/Arm_KinovaPoseGoal.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/Arm_KinovaPoseResult.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/Arm_KinovaPoseFeedback.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/SetFingersPositionAction.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/SetFingersPositionActionGoal.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/SetFingersPositionActionResult.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/SetFingersPositionActionFeedback.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/SetFingersPositionGoal.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/SetFingersPositionResult.msg;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg/SetFingersPositionFeedback.msg'
services_str = '/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/Start.srv;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/Stop.srv;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/HomeArm.srv;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/SetForceControlParams.srv;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/SetEndEffectorOffset.srv;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/SetNullSpaceModeState.srv;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/SetTorqueControlMode.srv;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/SetTorqueControlParameters.srv;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/ClearTrajectories.srv;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/ZeroTorques.srv;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/AddPoseToCartesianTrajectory.srv;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/srv/RunCOMParametersEstimation.srv'
pkg_name = 'kinova_msgs'
dependencies_str = 'actionlib_msgs;geometry_msgs'
langs = 'gencpp;geneus;genlisp;gennodejs;genpy'
dep_include_paths_str = 'kinova_msgs;/home/kinova/MillenCapstone/catkin_ws/src/kinova-ros/kinova_msgs/msg;kinova_msgs;/home/kinova/MillenCapstone/catkin_ws/devel/share/kinova_msgs/msg;actionlib_msgs;/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg;geometry_msgs;/opt/ros/kinetic/share/geometry_msgs/cmake/../msg;std_msgs;/opt/ros/kinetic/share/std_msgs/cmake/../msg'
python_executable = '/usr/bin/python'
package_has_static_sources = '' == 'TRUE'
genmsg_check_deps_script = '/opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py' |
# 5! = 120
#
# 5 * 4 * 3 * 2 * 1
def factorial(n):
if n == 1:
return 1
return n * factorial(n - 1)
print(f'5!={factorial(5):,},' # 120
f' 3!={factorial(3):,},' # 6
f' 11!={factorial(11):,}') # HUGE
| def factorial(n):
if n == 1:
return 1
return n * factorial(n - 1)
print(f'5!={factorial(5):,}, 3!={factorial(3):,}, 11!={factorial(11):,}') |
'''
Write a Python program to parse a string to Float or Integer.
'''
varStr = input("Enter a number: ")
print("The string above was parsed an an integer", int(varStr)) | """
Write a Python program to parse a string to Float or Integer.
"""
var_str = input('Enter a number: ')
print('The string above was parsed an an integer', int(varStr)) |
# Compute the Factorial of a given value (n!)
# multiply all whole numbers from our chosen number
# down to 1.
# 4! = 4 * 3 * 2 * 1
# 1 * 1 = 1
# 1 * 2 = 2
# 2 * 3
# iterative approach
def fact_i(n):
# set a end point fact initial value
fact = 1
# loop from 1 to n+1 using an index
for i in range(1, n + 1):
# set fact to fact multiplied by index
fact = fact * i
# return fact
return fact
print(fact_i(4))
# recursive
def rec_fact(n):
# base case
if n <= 1:
return 1
else:
# call rec_fact on n - 1
# return n multiplied by rec_fact of n - 1
return n * rec_fact(n - 1)
print(rec_fact(4))
| def fact_i(n):
fact = 1
for i in range(1, n + 1):
fact = fact * i
return fact
print(fact_i(4))
def rec_fact(n):
if n <= 1:
return 1
else:
return n * rec_fact(n - 1)
print(rec_fact(4)) |
def indent_dotcode(dotcode, indent):
return '\n'.join(['%s%s' % (indent, line)
for line in dotcode.split('\n')])
def sphinx_format(dotcode):
dotcode = indent_dotcode(dotcode, ' ')
warning_comment = '.. Autogenerated graphviz code. Do not edit manually.'
dotcode = "%s\n\n.. graphviz::\n\n%s" % (warning_comment, dotcode)
return dotcode
| def indent_dotcode(dotcode, indent):
return '\n'.join(['%s%s' % (indent, line) for line in dotcode.split('\n')])
def sphinx_format(dotcode):
dotcode = indent_dotcode(dotcode, ' ')
warning_comment = '.. Autogenerated graphviz code. Do not edit manually.'
dotcode = '%s\n\n.. graphviz::\n\n%s' % (warning_comment, dotcode)
return dotcode |
def cal(n, data):
for x in range(1, n+1):
if (n % x == 0):
tmp = data[:x]
for y in range(x, n, x):
if data[y:y+x] != tmp:
break
if(y+x >= n):
return x
return n
n = int(input())
data = list(input())
print(cal(n, data))
| def cal(n, data):
for x in range(1, n + 1):
if n % x == 0:
tmp = data[:x]
for y in range(x, n, x):
if data[y:y + x] != tmp:
break
if y + x >= n:
return x
return n
n = int(input())
data = list(input())
print(cal(n, data)) |
def resolve():
'''
code here
'''
N = int(input())
As = [int(item) for item in input().split()]
As.sort()
max_num = max(As)
res = 10**9 + 1
if max_num % 2 == 0:
if max_num //2 in As:
res = max_num //2
else:
for item in As:
if abs(max_num //2 - res) > abs(max_num //2 - item):
res = item
else:
if max_num //2 in As:
res = max_num //2
elif max_num // 2 + 1 in As:
res = max_num //2 + 1
else:
for item in As:
if abs(max_num //2 - res) > abs(max_num //2 - item):
res = item
if abs(max_num //2 + 1 - res) > abs(max_num //2 + 1 - item):
res = item
print(max(As), res)
if __name__ == "__main__":
resolve()
| def resolve():
"""
code here
"""
n = int(input())
as = [int(item) for item in input().split()]
As.sort()
max_num = max(As)
res = 10 ** 9 + 1
if max_num % 2 == 0:
if max_num // 2 in As:
res = max_num // 2
else:
for item in As:
if abs(max_num // 2 - res) > abs(max_num // 2 - item):
res = item
elif max_num // 2 in As:
res = max_num // 2
elif max_num // 2 + 1 in As:
res = max_num // 2 + 1
else:
for item in As:
if abs(max_num // 2 - res) > abs(max_num // 2 - item):
res = item
if abs(max_num // 2 + 1 - res) > abs(max_num // 2 + 1 - item):
res = item
print(max(As), res)
if __name__ == '__main__':
resolve() |
#!/usr/bin/python3
for i in range(1,10):
for j in range(1,10):
print("%d * %d = %d "%(j,i,i*j), end="")
print("")
| for i in range(1, 10):
for j in range(1, 10):
print('%d * %d = %d ' % (j, i, i * j), end='')
print('') |
expected_output = {
'vrf': {
'default': {
'interface': {
'GigabitEthernet0/0/0/0': {
'counters': {
'joins': 18,
'leaves': 5
},
'enable': True,
'internet_address': 'fe80::5054:ff:fefa:9ad7',
'interface_status': 'up',
'last_member_query_interval': 1,
'oper_status': 'up',
'querier': 'fe80::5054:ff:fed7:c01f',
'querier_timeout': 3666,
'query_interval': 366,
'query_max_response_time': 12,
'time_elapsed_since_igmp_router_enabled': '1d06h',
'time_elapsed_since_last_query_sent': '00:30:16',
'time_elapsed_since_last_report_received': '00:05:05',
'version': 2
}
}
}
}
}
| expected_output = {'vrf': {'default': {'interface': {'GigabitEthernet0/0/0/0': {'counters': {'joins': 18, 'leaves': 5}, 'enable': True, 'internet_address': 'fe80::5054:ff:fefa:9ad7', 'interface_status': 'up', 'last_member_query_interval': 1, 'oper_status': 'up', 'querier': 'fe80::5054:ff:fed7:c01f', 'querier_timeout': 3666, 'query_interval': 366, 'query_max_response_time': 12, 'time_elapsed_since_igmp_router_enabled': '1d06h', 'time_elapsed_since_last_query_sent': '00:30:16', 'time_elapsed_since_last_report_received': '00:05:05', 'version': 2}}}}} |
while True:
n=int(input('ENTER A NUMBER TO CHECK DIVISIBILITY: '))
for i in range (2,n):
if n%i == 0:
print('THE ENTER NO. IS DIVISIBLE BY: ',i)
| while True:
n = int(input('ENTER A NUMBER TO CHECK DIVISIBILITY: '))
for i in range(2, n):
if n % i == 0:
print('THE ENTER NO. IS DIVISIBLE BY: ', i) |
# SCENARIO: Calculator - Do a substraction
# GIVEN a running calculator app
type(Key.WIN + "calculator" + Key.ENTER)
wait("1471901583292.png")
# AND '5' is displayed
click("1471901439420.png")
wait("1471901563200.png")
# WHEN I click on '-', '1', '='
click("1471901612968.png")
click("1471901595751.png")
click("1471901627768.png")
# THEN result should be '4'
wait("1471901656932.png") | type(Key.WIN + 'calculator' + Key.ENTER)
wait('1471901583292.png')
click('1471901439420.png')
wait('1471901563200.png')
click('1471901612968.png')
click('1471901595751.png')
click('1471901627768.png')
wait('1471901656932.png') |
DbName = "FantasyDraftHost.db"
tables = {
"leagues": {
"name": "Leagues",
"columnIndexes": {
"Id": 0,
"Name": 1
}
},
"playerPositions": {
"name": "PlayerPositions",
"columnIndexes": {
"Id": 0,
"PlayerId": 1,
"PositionId": 2
}
},
"players": {
"name": "Players",
"columnIndexes": {
"Id": 0,
"FirstName": 1,
"LastName": 2,
"TeamId": 3
}
},
"positions": {
"name": "Positions",
"columnIndexes": {
"Id": 0,
"Name": 1,
"LeagueId": 2
}
},
"teams": {
"name": "Teams",
"columnIndexes": {
"Id": 0,
"Name": 1,
"Abbreviation": 2,
"Location": 3,
"LeagueId": 4
}
}
}
def indexOf(table, column):
return tables[table]["columnIndexes"][column]
def tableName(table):
return tables[table]["name"]
| db_name = 'FantasyDraftHost.db'
tables = {'leagues': {'name': 'Leagues', 'columnIndexes': {'Id': 0, 'Name': 1}}, 'playerPositions': {'name': 'PlayerPositions', 'columnIndexes': {'Id': 0, 'PlayerId': 1, 'PositionId': 2}}, 'players': {'name': 'Players', 'columnIndexes': {'Id': 0, 'FirstName': 1, 'LastName': 2, 'TeamId': 3}}, 'positions': {'name': 'Positions', 'columnIndexes': {'Id': 0, 'Name': 1, 'LeagueId': 2}}, 'teams': {'name': 'Teams', 'columnIndexes': {'Id': 0, 'Name': 1, 'Abbreviation': 2, 'Location': 3, 'LeagueId': 4}}}
def index_of(table, column):
return tables[table]['columnIndexes'][column]
def table_name(table):
return tables[table]['name'] |
a = [100,2,1,3,5,200,300,400,2,3,0,1,23,24,56,30,500,20,1000,3000]
#print(a.index(max(a)))
b = []
for i in range(0,9):
b.append(a.index(max(a)))
a[a.index(max(a))] = 0
print(b) | a = [100, 2, 1, 3, 5, 200, 300, 400, 2, 3, 0, 1, 23, 24, 56, 30, 500, 20, 1000, 3000]
b = []
for i in range(0, 9):
b.append(a.index(max(a)))
a[a.index(max(a))] = 0
print(b) |
class MovieCard:
def __init__(self, price):
self._price = price
self._tickets = 10 if price == 70 else 15 # assume price = 70 or 100 only
@property
def tickets(self):
return self._tickets
def redeem_ticket(self, qty=1):
if qty > 2:
raise ValueError("Maximum ticket redemptions is 2.")
elif qty <= self._tickets:
self._tickets -= qty
return True
return False
def __str__(self):
return f"Ticket price: ${self._price}, tickets remaining: {self._tickets}"
if __name__ == '__main__':
mc1 = MovieCard(70)
print(mc1)
print(mc1.redeem_ticket(2))
print(mc1)
print(mc1.tickets)
| class Moviecard:
def __init__(self, price):
self._price = price
self._tickets = 10 if price == 70 else 15
@property
def tickets(self):
return self._tickets
def redeem_ticket(self, qty=1):
if qty > 2:
raise value_error('Maximum ticket redemptions is 2.')
elif qty <= self._tickets:
self._tickets -= qty
return True
return False
def __str__(self):
return f'Ticket price: ${self._price}, tickets remaining: {self._tickets}'
if __name__ == '__main__':
mc1 = movie_card(70)
print(mc1)
print(mc1.redeem_ticket(2))
print(mc1)
print(mc1.tickets) |
#!/usr/bin/env python
# _*_ coding: utf-8
# See LICENSE for details.
class BaseConfig:
def __init__(self, logger=None, BaseConfig=None):
self
self.logger = logger
self.stageing = False
self.config_directory = None
self.default_key_type = 'RSA'
# TODO: Support 'ECDSA' also as global default
self.ec_curve = 'secp256r1'
# Storage
self.storage_mode = 'file'
self.storage_file_directory = None
# DNS
self.dns_provider = 'route53'
self.dns_route53_aws_accesskey = None
self.dns_route53_aws_secretkey = None
# CA
self.default_ca = 'LetsEncrypt'.lower()
self.ca = []
self.ca_by_name = {}
if BaseConfig is not None:
self.loadBaseConfig(self._LowerCaseOfKey(BaseConfig))
def loadBaseConfig(self,BaseConfig):
self.logger.info('Loading Base Config')
self.config_directory = BaseConfig['generic']['confdirectory']
if 'defaultca' in BaseConfig['generic']:
self.default_ca = BaseConfig['generic']['defaultca'].lower()
# Storage
if 'certdirectory' in BaseConfig['generic']:
self.storage_file_directory = BaseConfig['generic']['certdirectory']
# DNS
if 'aws_accesskey' in BaseConfig['route53']:
self.dns_route53_aws_accesskey = BaseConfig['route53']['aws_accesskey']
if 'aws_secretkey' in BaseConfig['route53']:
self.dns_route53_aws_secretkey = BaseConfig['route53']['aws_secretkey']
# CA Config
increment=0
for key, value in BaseConfig['ca'].items():
if 'type' in value:
if value['type'].lower() == 'local':
self.ca.append(CaLocalConfig(key, value))
elif value['type'].lower() == 'acme':
self.ca.append(CaACMEConfig(key, value))
else:
self.ca.append(CaConfig(key,value))
self.ca_by_name[key] = increment
increment += 1
return True
def _LowerCaseOfKey(self,x, recusiv=True):
r = {}
for k, v in x.items():
if isinstance(v, dict) and recusiv == True:
v = self._LowerCaseOfKey(v)
if isinstance(k, str):
r[k.lower()] = v
else:
r[k] = v
return r
def stats_ca_increment_certs(self, ca_name, increment=1):
try:
self.ca[self.ca_by_name[ca_name]].stats.increment_certs(increment)
except Exception as e:
pass
def stats_ca_increment_certs_rsa(self, ca_name, increment=1):
try:
self.ca[self.ca_by_name[ca_name]].stats.increment_certs_rsa(increment)
except Exception as e:
pass
def stats_ca_increment_certs_ec(self, ca_name, increment=1):
try:
self.ca[self.ca_by_name[ca_name]].stats.increment_certs_ec(increment)
except Exception as e:
pass
def stats_ca_increment_fqdns(self, ca_name, increment=1):
try:
self.ca[self.ca_by_name[ca_name]].stats.increment_fqdn(increment)
except Exception as e:
pass
def stats_ca_increment_to_renew(self, ca_name, increment=1):
try:
self.ca[self.ca_by_name[ca_name]].stats.increment_to_renew(increment)
except Exception as e:
pass
def stats_ca_increment_renew_success(self, ca_name, increment=1):
try:
self.ca[self.ca_by_name[ca_name]].stats.increment_renew_success(increment)
except Exception as e:
pass
def stats_ca_increment_renew_failed(self, ca_name, increment=1):
try:
self.ca[self.ca_by_name[ca_name]].stats.increment_renew_failed(increment)
except Exception as e:
pass
def stats_ca_increment_check_successful(self, ca_name, increment=1):
try:
self.ca[self.ca_by_name[ca_name]].stats.increment_check_successful(increment)
except Exception as e:
pass
def stats_ca_increment_config_error(self, ca_name, increment=1):
try:
self.ca[self.ca_by_name[ca_name]].stats.increment_config_error(increment)
except Exception as e:
pass
def get_ca_issuer_name(self,ca_name):
try:
return self.ca[self.ca_by_name[ca_name]].issuer_name
except Exception as e:
return None
def get_ca_type(self,ca_name):
return self.ca[self.ca_by_name[ca_name]].ca_type
def get_ca_renew_lifetime_left(self,ca_name):
try:
return self.ca[self.ca_by_name[ca_name]].cert_renew_lifetime_left
except Exception as e:
return None
def get_ca_renew_days_left(self,ca_name):
try:
return self.ca[self.ca_by_name[ca_name]].cert_renew_days_left
except Exception as e:
return None
def clean_up(self):
self = None
class CaConfig:
def __init__(self, name, CaConfig):
self
self.ca_name = name
self.issuer_name = None
# Certificate Settings
self.cert_renew_lifetime_left = None
self.cert_renew_days_left = None
self.cert_default_subject = None
self.stats = CaStats()
if CaConfig is not None:
self.loadCaConfig(CaConfig)
def __str__(self):
return str(self.__class__) + ": " + str(self.__dict__)
def loadCaConfig(self,CaConfig):
self.issuer_name = CaConfig['issuer_name']
if 'cert_renew_lifetime_left' in CaConfig:
# Interpret Percentage Value for 'Lifetime Left'
if isinstance(CaConfig['cert_renew_lifetime_left'], float) or isinstance(
CaConfig['cert_renew_lifetime_left'], int):
self.cert_renew_lifetime_left = CaConfig['cert_renew_lifetime_left']
else:
if isinstance(CaConfig['cert_renew_lifetime_left'], str) and '%' in CaConfig['cert_renew_lifetime_left']:
self.cert_renew_lifetime_left = float(
CaConfig['cert_renew_lifetime_left'].strip(' ').strip('%')) / 100.0
if 'cert_renew_days_left' in CaConfig:
self.cert_renew_days_left = CaConfig['cert_renew_days_left']
if 'cert_subject_default' in CaConfig:
self.loadSubject(CaConfig['cert_subject_default'])
class CaLocalConfig(CaConfig):
def __init__(self, name, CaConfig):
super().__init__(name, CaConfig)
self.ca_type = 'local'
self.cert_expire_days_default = 90
self.cert_expire_days_min = 1
self.cert_expire_days_max = 365*2
self.key = None
self.key_rsa = None
self.key_ec = None
self.key_passphrase = None
self.cert = None
self.cert_rsa = None
self.cert_ec = None
if CaConfig is not None:
self.loadCaLocalConfig(CaConfig)
def loadCaLocalConfig(self, CaConfig):
if 'key' in CaConfig:
self.key = CaConfig['key']
if 'key_rsa' in CaConfig:
self.key_rsa = CaConfig['key_rsa']
if 'key_ec' in CaConfig:
self.key_ec = CaConfig['key_ec']
if 'key_passphrase' in CaConfig:
self.key_passphrase = CaConfig['key_passphrase']
elif 'keypassphrase' in CaConfig:
self.key_passphrase = CaConfig['keypassphrase']
if 'cert' in CaConfig:
self.cert = CaConfig['cert']
if 'cert_rsa' in CaConfig:
self.cert_rsa = CaConfig['cert_rsa']
if 'cert_ec' in CaConfig:
self.cert_ec = CaConfig['cert_ec']
def loadSubject(self, subject):
self.cert_default_subject = CertSubject(subject)
class CaACMEConfig(CaConfig):
def __init__(self, name, CaConfig):
super().__init__(name, CaConfig)
self.ca_type = 'acme'
# Authentification
self.account_key = None
self.account_key_passphrase = None
self.directory_url = 'https://acme-v01.api.letsencrypt.org/directory' # Let's Encrypt Production as defalut
if CaConfig is not None:
self.loadCaACMEConfig(CaConfig)
def loadCaACMEConfig(self, CaConfig):
if 'account_key' in CaConfig:
self.account_key = CaConfig['account_key']
if 'account_key_passphrase' in CaConfig:
self.account_key_passphrase = CaConfig['account_key_passphrase']
if 'directory_url' in CaConfig:
self.directory_url = CaConfig['directory_url']
class CertSubject:
def __init__(self, subject=None):
self
self.organization = None
self.organizational_unit = None
self.country = None
self.state = None
self.locality = None
self.email = None
if subject is not None:
self.loadSubject(subject)
def __str__(self):
return str(self.__class__) + ": " + str(self.__dict__)
def loadSubject(self, subject):
if 'organization' in subject:
self.organization = subject['organization']
if 'organizational_unit' in subject:
self.organizational_unit = subject['organizational_unit']
if 'country' in subject:
self.country = subject['country']
if 'state' in subject:
self.state = subject['state']
if 'locality' in subject:
self.locality = subject['locality']
if 'email' in subject:
self.email = subject['email']
class CertConfig:
def __init__(self, CertConfig=None, BaseConfig=None):
self
self.cert = None
self.san = []
self.subject = None
self.ca = None
self.costumer = None
self.stage = None
self.sub = None
self.file_save_path = None
self.validity_days = None
self.key_type = ['RSA']
self.reuse_key = False
self.dns_zone = None
self.force_renew = False
if CertConfig is not None:
self.loadCertConfig(self._LowerCaseOfKey(CertConfig),BaseConfig)
def __str__(self):
return str(self.__class__) + ": " + str(self.__dict__)
def loadCertConfig(self,CertConfig,BaseConfig):
if 'domain' in CertConfig:
self.cert = CertConfig['domain']
self.san.append(self.cert)
if 'alternativename' in CertConfig:
for domain in CertConfig['alternativename']:
self.san.append(domain)
elif 'subjectalternativename' in CertConfig:
for domain in CertConfig['subjectalternativename']:
self.san.append(domain)
if 'ca' in CertConfig:
self.ca = CertConfig['ca'].lower()
else:
self.ca = BaseConfig.default_ca
if 'subject' in CertConfig:
self.subject = CertSubject(CertConfig['subject'])
else:
self.subject = BaseConfig.ca[BaseConfig.ca_by_name[self.ca]].cert_default_subject
if 'costumer' in CertConfig:
self.costumer = CertConfig['costumer']
if 'stage' in CertConfig:
self.stage = CertConfig['stage']
if 'sub' in CertConfig:
self.sub = CertConfig['sub']
self.file_save_path = BaseConfig.storage_file_directory + '/'
if self.costumer:
self.file_save_path += self.costumer + '/'
if self.stage:
self.file_save_path += self.stage + '/'
if self.sub:
self.file_save_path += self.sub + '/'
self.file_save_path = self.file_save_path.replace('//', '/')
if 'key_type' in CertConfig:
self.key_type = self._parse_key_type(CertConfig['key_type'])
if 'validity_days' in CertConfig:
try:
self.validity_days = int(float(CertConfig['validity_days']))
except Exception as e:
pass
if 'reuse_key' in CertConfig:
self.reuse_key = self._str2bool(CertConfig['reuse_key'])
if 'dns_zone' in CertConfig:
self.dns_zone = CertConfig['dns_zone']
if 'force_renew' in CertConfig:
self.force_renew = self._str2bool(CertConfig['force_renew'])
def _parse_key_type(self,key_type):
r = []
if 'RSA' in str(key_type).upper():
r.append('RSA')
if 'ECDSA' in str(key_type).upper():
r.append('ECDSA')
return r
def _LowerCaseOfKey(self,x, recusiv=True):
r = {}
for k, v in x.items():
if isinstance(v, dict) and recusiv == True:
v = self._LowerCaseOfKey(v)
if isinstance(k, str):
r[k.lower()] = v
else:
r[k] = v
return r
def _str2bool(self, s):
return str(s).lower() in ("yes", "true", "y", "t", "1")
def clean_up(self):
self = None
class CaStats:
def __init__(self):
self
self.certs = 0
self.certs_rsa = 0
self.certs_ec = 0
self.fqdn = 0
self.to_renew = 0
self.renew_success = 0
self.renew_failed = 0
self.check_successful = 0
self.config_error = 0
def __str__(self):
return str(self.__class__) + ": " + str(self.__dict__)
def increment_certs(self,increment=1):
self.certs += increment
def increment_certs_rsa(self,increment=1):
self.certs_rsa += increment
def increment_certs_ec(self,increment=1):
self.certs_ec += increment
def increment_fqdn(self,increment=1):
self.fqdn += increment
def increment_to_renew(self,increment=1):
self.to_renew += increment
def increment_renew_success(self,increment=1):
self.renew_success += increment
def increment_renew_failed(self,increment=1):
self.renew_failed += increment
def increment_check_successful(self,increment=1):
self.check_successful += increment
def increment_config_error(self, increment=1):
self.config_error += increment
| class Baseconfig:
def __init__(self, logger=None, BaseConfig=None):
self
self.logger = logger
self.stageing = False
self.config_directory = None
self.default_key_type = 'RSA'
self.ec_curve = 'secp256r1'
self.storage_mode = 'file'
self.storage_file_directory = None
self.dns_provider = 'route53'
self.dns_route53_aws_accesskey = None
self.dns_route53_aws_secretkey = None
self.default_ca = 'LetsEncrypt'.lower()
self.ca = []
self.ca_by_name = {}
if BaseConfig is not None:
self.loadBaseConfig(self._LowerCaseOfKey(BaseConfig))
def load_base_config(self, BaseConfig):
self.logger.info('Loading Base Config')
self.config_directory = BaseConfig['generic']['confdirectory']
if 'defaultca' in BaseConfig['generic']:
self.default_ca = BaseConfig['generic']['defaultca'].lower()
if 'certdirectory' in BaseConfig['generic']:
self.storage_file_directory = BaseConfig['generic']['certdirectory']
if 'aws_accesskey' in BaseConfig['route53']:
self.dns_route53_aws_accesskey = BaseConfig['route53']['aws_accesskey']
if 'aws_secretkey' in BaseConfig['route53']:
self.dns_route53_aws_secretkey = BaseConfig['route53']['aws_secretkey']
increment = 0
for (key, value) in BaseConfig['ca'].items():
if 'type' in value:
if value['type'].lower() == 'local':
self.ca.append(ca_local_config(key, value))
elif value['type'].lower() == 'acme':
self.ca.append(ca_acme_config(key, value))
else:
self.ca.append(ca_config(key, value))
self.ca_by_name[key] = increment
increment += 1
return True
def __lower_case_of_key(self, x, recusiv=True):
r = {}
for (k, v) in x.items():
if isinstance(v, dict) and recusiv == True:
v = self._LowerCaseOfKey(v)
if isinstance(k, str):
r[k.lower()] = v
else:
r[k] = v
return r
def stats_ca_increment_certs(self, ca_name, increment=1):
try:
self.ca[self.ca_by_name[ca_name]].stats.increment_certs(increment)
except Exception as e:
pass
def stats_ca_increment_certs_rsa(self, ca_name, increment=1):
try:
self.ca[self.ca_by_name[ca_name]].stats.increment_certs_rsa(increment)
except Exception as e:
pass
def stats_ca_increment_certs_ec(self, ca_name, increment=1):
try:
self.ca[self.ca_by_name[ca_name]].stats.increment_certs_ec(increment)
except Exception as e:
pass
def stats_ca_increment_fqdns(self, ca_name, increment=1):
try:
self.ca[self.ca_by_name[ca_name]].stats.increment_fqdn(increment)
except Exception as e:
pass
def stats_ca_increment_to_renew(self, ca_name, increment=1):
try:
self.ca[self.ca_by_name[ca_name]].stats.increment_to_renew(increment)
except Exception as e:
pass
def stats_ca_increment_renew_success(self, ca_name, increment=1):
try:
self.ca[self.ca_by_name[ca_name]].stats.increment_renew_success(increment)
except Exception as e:
pass
def stats_ca_increment_renew_failed(self, ca_name, increment=1):
try:
self.ca[self.ca_by_name[ca_name]].stats.increment_renew_failed(increment)
except Exception as e:
pass
def stats_ca_increment_check_successful(self, ca_name, increment=1):
try:
self.ca[self.ca_by_name[ca_name]].stats.increment_check_successful(increment)
except Exception as e:
pass
def stats_ca_increment_config_error(self, ca_name, increment=1):
try:
self.ca[self.ca_by_name[ca_name]].stats.increment_config_error(increment)
except Exception as e:
pass
def get_ca_issuer_name(self, ca_name):
try:
return self.ca[self.ca_by_name[ca_name]].issuer_name
except Exception as e:
return None
def get_ca_type(self, ca_name):
return self.ca[self.ca_by_name[ca_name]].ca_type
def get_ca_renew_lifetime_left(self, ca_name):
try:
return self.ca[self.ca_by_name[ca_name]].cert_renew_lifetime_left
except Exception as e:
return None
def get_ca_renew_days_left(self, ca_name):
try:
return self.ca[self.ca_by_name[ca_name]].cert_renew_days_left
except Exception as e:
return None
def clean_up(self):
self = None
class Caconfig:
def __init__(self, name, CaConfig):
self
self.ca_name = name
self.issuer_name = None
self.cert_renew_lifetime_left = None
self.cert_renew_days_left = None
self.cert_default_subject = None
self.stats = ca_stats()
if CaConfig is not None:
self.loadCaConfig(CaConfig)
def __str__(self):
return str(self.__class__) + ': ' + str(self.__dict__)
def load_ca_config(self, CaConfig):
self.issuer_name = CaConfig['issuer_name']
if 'cert_renew_lifetime_left' in CaConfig:
if isinstance(CaConfig['cert_renew_lifetime_left'], float) or isinstance(CaConfig['cert_renew_lifetime_left'], int):
self.cert_renew_lifetime_left = CaConfig['cert_renew_lifetime_left']
elif isinstance(CaConfig['cert_renew_lifetime_left'], str) and '%' in CaConfig['cert_renew_lifetime_left']:
self.cert_renew_lifetime_left = float(CaConfig['cert_renew_lifetime_left'].strip(' ').strip('%')) / 100.0
if 'cert_renew_days_left' in CaConfig:
self.cert_renew_days_left = CaConfig['cert_renew_days_left']
if 'cert_subject_default' in CaConfig:
self.loadSubject(CaConfig['cert_subject_default'])
class Calocalconfig(CaConfig):
def __init__(self, name, CaConfig):
super().__init__(name, CaConfig)
self.ca_type = 'local'
self.cert_expire_days_default = 90
self.cert_expire_days_min = 1
self.cert_expire_days_max = 365 * 2
self.key = None
self.key_rsa = None
self.key_ec = None
self.key_passphrase = None
self.cert = None
self.cert_rsa = None
self.cert_ec = None
if CaConfig is not None:
self.loadCaLocalConfig(CaConfig)
def load_ca_local_config(self, CaConfig):
if 'key' in CaConfig:
self.key = CaConfig['key']
if 'key_rsa' in CaConfig:
self.key_rsa = CaConfig['key_rsa']
if 'key_ec' in CaConfig:
self.key_ec = CaConfig['key_ec']
if 'key_passphrase' in CaConfig:
self.key_passphrase = CaConfig['key_passphrase']
elif 'keypassphrase' in CaConfig:
self.key_passphrase = CaConfig['keypassphrase']
if 'cert' in CaConfig:
self.cert = CaConfig['cert']
if 'cert_rsa' in CaConfig:
self.cert_rsa = CaConfig['cert_rsa']
if 'cert_ec' in CaConfig:
self.cert_ec = CaConfig['cert_ec']
def load_subject(self, subject):
self.cert_default_subject = cert_subject(subject)
class Caacmeconfig(CaConfig):
def __init__(self, name, CaConfig):
super().__init__(name, CaConfig)
self.ca_type = 'acme'
self.account_key = None
self.account_key_passphrase = None
self.directory_url = 'https://acme-v01.api.letsencrypt.org/directory'
if CaConfig is not None:
self.loadCaACMEConfig(CaConfig)
def load_ca_acme_config(self, CaConfig):
if 'account_key' in CaConfig:
self.account_key = CaConfig['account_key']
if 'account_key_passphrase' in CaConfig:
self.account_key_passphrase = CaConfig['account_key_passphrase']
if 'directory_url' in CaConfig:
self.directory_url = CaConfig['directory_url']
class Certsubject:
def __init__(self, subject=None):
self
self.organization = None
self.organizational_unit = None
self.country = None
self.state = None
self.locality = None
self.email = None
if subject is not None:
self.loadSubject(subject)
def __str__(self):
return str(self.__class__) + ': ' + str(self.__dict__)
def load_subject(self, subject):
if 'organization' in subject:
self.organization = subject['organization']
if 'organizational_unit' in subject:
self.organizational_unit = subject['organizational_unit']
if 'country' in subject:
self.country = subject['country']
if 'state' in subject:
self.state = subject['state']
if 'locality' in subject:
self.locality = subject['locality']
if 'email' in subject:
self.email = subject['email']
class Certconfig:
def __init__(self, CertConfig=None, BaseConfig=None):
self
self.cert = None
self.san = []
self.subject = None
self.ca = None
self.costumer = None
self.stage = None
self.sub = None
self.file_save_path = None
self.validity_days = None
self.key_type = ['RSA']
self.reuse_key = False
self.dns_zone = None
self.force_renew = False
if CertConfig is not None:
self.loadCertConfig(self._LowerCaseOfKey(CertConfig), BaseConfig)
def __str__(self):
return str(self.__class__) + ': ' + str(self.__dict__)
def load_cert_config(self, CertConfig, BaseConfig):
if 'domain' in CertConfig:
self.cert = CertConfig['domain']
self.san.append(self.cert)
if 'alternativename' in CertConfig:
for domain in CertConfig['alternativename']:
self.san.append(domain)
elif 'subjectalternativename' in CertConfig:
for domain in CertConfig['subjectalternativename']:
self.san.append(domain)
if 'ca' in CertConfig:
self.ca = CertConfig['ca'].lower()
else:
self.ca = BaseConfig.default_ca
if 'subject' in CertConfig:
self.subject = cert_subject(CertConfig['subject'])
else:
self.subject = BaseConfig.ca[BaseConfig.ca_by_name[self.ca]].cert_default_subject
if 'costumer' in CertConfig:
self.costumer = CertConfig['costumer']
if 'stage' in CertConfig:
self.stage = CertConfig['stage']
if 'sub' in CertConfig:
self.sub = CertConfig['sub']
self.file_save_path = BaseConfig.storage_file_directory + '/'
if self.costumer:
self.file_save_path += self.costumer + '/'
if self.stage:
self.file_save_path += self.stage + '/'
if self.sub:
self.file_save_path += self.sub + '/'
self.file_save_path = self.file_save_path.replace('//', '/')
if 'key_type' in CertConfig:
self.key_type = self._parse_key_type(CertConfig['key_type'])
if 'validity_days' in CertConfig:
try:
self.validity_days = int(float(CertConfig['validity_days']))
except Exception as e:
pass
if 'reuse_key' in CertConfig:
self.reuse_key = self._str2bool(CertConfig['reuse_key'])
if 'dns_zone' in CertConfig:
self.dns_zone = CertConfig['dns_zone']
if 'force_renew' in CertConfig:
self.force_renew = self._str2bool(CertConfig['force_renew'])
def _parse_key_type(self, key_type):
r = []
if 'RSA' in str(key_type).upper():
r.append('RSA')
if 'ECDSA' in str(key_type).upper():
r.append('ECDSA')
return r
def __lower_case_of_key(self, x, recusiv=True):
r = {}
for (k, v) in x.items():
if isinstance(v, dict) and recusiv == True:
v = self._LowerCaseOfKey(v)
if isinstance(k, str):
r[k.lower()] = v
else:
r[k] = v
return r
def _str2bool(self, s):
return str(s).lower() in ('yes', 'true', 'y', 't', '1')
def clean_up(self):
self = None
class Castats:
def __init__(self):
self
self.certs = 0
self.certs_rsa = 0
self.certs_ec = 0
self.fqdn = 0
self.to_renew = 0
self.renew_success = 0
self.renew_failed = 0
self.check_successful = 0
self.config_error = 0
def __str__(self):
return str(self.__class__) + ': ' + str(self.__dict__)
def increment_certs(self, increment=1):
self.certs += increment
def increment_certs_rsa(self, increment=1):
self.certs_rsa += increment
def increment_certs_ec(self, increment=1):
self.certs_ec += increment
def increment_fqdn(self, increment=1):
self.fqdn += increment
def increment_to_renew(self, increment=1):
self.to_renew += increment
def increment_renew_success(self, increment=1):
self.renew_success += increment
def increment_renew_failed(self, increment=1):
self.renew_failed += increment
def increment_check_successful(self, increment=1):
self.check_successful += increment
def increment_config_error(self, increment=1):
self.config_error += increment |
# Team 5
def save_to_excel(datatables: list, directory=None):
pass
def open_excel():
pass
| def save_to_excel(datatables: list, directory=None):
pass
def open_excel():
pass |
class Solution:
def isValidSerialization(self, preorder: str) -> bool:
nodes = preorder.split(",")
cnt = 1
for i, x in enumerate(nodes):
if x == "#":
cnt -= 1
if cnt == 0:
return i == len(nodes) - 1
else:
cnt += 1
return False
| class Solution:
def is_valid_serialization(self, preorder: str) -> bool:
nodes = preorder.split(',')
cnt = 1
for (i, x) in enumerate(nodes):
if x == '#':
cnt -= 1
if cnt == 0:
return i == len(nodes) - 1
else:
cnt += 1
return False |
# -*- coding: utf-8
class Document:
__slots__ = ('root',)
def __init__(self):
self.root = None
| class Document:
__slots__ = ('root',)
def __init__(self):
self.root = None |
def includeme(config):
config.add_static_view('static', 'static', cache_max_age=None)
config.add_route('home', '/')
config.add_route('auth', '/auth')
config.add_route('portfolio', '/portfolio')
config.add_route('detail', '/portfolio/{symbol}')
config.add_route('add', '/add')
config.add_route('logout', '/logout')
| def includeme(config):
config.add_static_view('static', 'static', cache_max_age=None)
config.add_route('home', '/')
config.add_route('auth', '/auth')
config.add_route('portfolio', '/portfolio')
config.add_route('detail', '/portfolio/{symbol}')
config.add_route('add', '/add')
config.add_route('logout', '/logout') |
print("BMI Calculator")
print("=" * 20)
height = input("Enter height (m): ")
weight = input("Enter weight (kg): ")
try:
height = float(height)
weight = float(weight)
except ValueError:
print("One or more invalid values entered.")
exit(1)
print("Your BMI is %d." % int((weight / (height ** 2))))
# 35.5
#
# 1.8288
# 96.615096
# 81.64656 (180 pounds)
| print('BMI Calculator')
print('=' * 20)
height = input('Enter height (m): ')
weight = input('Enter weight (kg): ')
try:
height = float(height)
weight = float(weight)
except ValueError:
print('One or more invalid values entered.')
exit(1)
print('Your BMI is %d.' % int(weight / height ** 2)) |
class Solution:
def rob(self, nums: List[int]) -> int:
n = len(nums)
if(n==0):
return 0
dp = [0]*n
dp[0] = nums[0]
for i in range(1,n):
if(i == 1):
dp[i] = max(nums[0], nums[1])
else:
dp[i] = max(dp[i-1], dp[i-2] + nums[i])
return dp[-1] | class Solution:
def rob(self, nums: List[int]) -> int:
n = len(nums)
if n == 0:
return 0
dp = [0] * n
dp[0] = nums[0]
for i in range(1, n):
if i == 1:
dp[i] = max(nums[0], nums[1])
else:
dp[i] = max(dp[i - 1], dp[i - 2] + nums[i])
return dp[-1] |
def bmw_finder_price_gt_25k(mileage, price):
if price > 25000:
return 1
else:
return 0
def bmw_finder_price_gt_20k(mileage, price):
if price > 20000:
return 1
else:
return 0
def bmw_finder_price_gt_cutoff_price(cutoff_price):
def c(x,p):
if p > cutoff_price:
return 1
else:
return 0
return c
def bmw_finder_decision_boundary(mileage,price):
if price > 21000 - 0.07 * mileage:
return 1
else:
return 0
| def bmw_finder_price_gt_25k(mileage, price):
if price > 25000:
return 1
else:
return 0
def bmw_finder_price_gt_20k(mileage, price):
if price > 20000:
return 1
else:
return 0
def bmw_finder_price_gt_cutoff_price(cutoff_price):
def c(x, p):
if p > cutoff_price:
return 1
else:
return 0
return c
def bmw_finder_decision_boundary(mileage, price):
if price > 21000 - 0.07 * mileage:
return 1
else:
return 0 |
STATS = [
{
"num_node_expansions": 1733,
"plan_length": 142,
"search_time": 1.66,
"total_time": 1.66
},
{
"num_node_expansions": 2128,
"plan_length": 153,
"search_time": 1.93,
"total_time": 1.93
},
{
"num_node_expansions": 2114,
"plan_length": 148,
"search_time": 29.02,
"total_time": 29.02
},
{
"num_node_expansions": 1614,
"plan_length": 131,
"search_time": 6.32,
"total_time": 6.32
},
{
"num_node_expansions": 1935,
"plan_length": 131,
"search_time": 9.72,
"total_time": 9.72
},
{
"num_node_expansions": 1082,
"plan_length": 118,
"search_time": 0.63,
"total_time": 0.63
},
{
"num_node_expansions": 1661,
"plan_length": 132,
"search_time": 1.17,
"total_time": 1.17
},
{
"num_node_expansions": 1174,
"plan_length": 110,
"search_time": 5.23,
"total_time": 5.23
},
{
"num_node_expansions": 2119,
"plan_length": 126,
"search_time": 6.1,
"total_time": 6.1
},
{
"num_node_expansions": 1923,
"plan_length": 139,
"search_time": 0.91,
"total_time": 0.91
},
{
"num_node_expansions": 2942,
"plan_length": 170,
"search_time": 1.6,
"total_time": 1.6
},
{
"num_node_expansions": 1801,
"plan_length": 136,
"search_time": 2.39,
"total_time": 2.39
},
{
"num_node_expansions": 1319,
"plan_length": 120,
"search_time": 1.58,
"total_time": 1.58
},
{
"num_node_expansions": 4197,
"plan_length": 159,
"search_time": 2.95,
"total_time": 2.95
},
{
"num_node_expansions": 2238,
"plan_length": 178,
"search_time": 1.7,
"total_time": 1.7
},
{
"num_node_expansions": 1491,
"plan_length": 128,
"search_time": 0.85,
"total_time": 0.85
},
{
"num_node_expansions": 1303,
"plan_length": 136,
"search_time": 1.02,
"total_time": 1.02
},
{
"num_node_expansions": 1649,
"plan_length": 131,
"search_time": 10.69,
"total_time": 10.69
},
{
"num_node_expansions": 2624,
"plan_length": 136,
"search_time": 18.03,
"total_time": 18.03
},
{
"num_node_expansions": 1272,
"plan_length": 119,
"search_time": 3.84,
"total_time": 3.84
},
{
"num_node_expansions": 2018,
"plan_length": 133,
"search_time": 9.12,
"total_time": 9.12
},
{
"num_node_expansions": 1270,
"plan_length": 123,
"search_time": 0.37,
"total_time": 0.37
},
{
"num_node_expansions": 1667,
"plan_length": 126,
"search_time": 0.45,
"total_time": 0.45
},
{
"num_node_expansions": 4136,
"plan_length": 144,
"search_time": 26.87,
"total_time": 26.87
},
{
"num_node_expansions": 2322,
"plan_length": 130,
"search_time": 9.48,
"total_time": 9.48
},
{
"num_node_expansions": 2246,
"plan_length": 146,
"search_time": 7.53,
"total_time": 7.53
},
{
"num_node_expansions": 1562,
"plan_length": 114,
"search_time": 7.07,
"total_time": 7.07
},
{
"num_node_expansions": 3919,
"plan_length": 138,
"search_time": 15.15,
"total_time": 15.15
},
{
"num_node_expansions": 1350,
"plan_length": 132,
"search_time": 6.06,
"total_time": 6.06
},
{
"num_node_expansions": 1171,
"plan_length": 118,
"search_time": 5.05,
"total_time": 5.05
},
{
"num_node_expansions": 6679,
"plan_length": 167,
"search_time": 13.82,
"total_time": 13.82
},
{
"num_node_expansions": 4456,
"plan_length": 152,
"search_time": 4.9,
"total_time": 4.9
},
{
"num_node_expansions": 2157,
"plan_length": 153,
"search_time": 26.45,
"total_time": 26.45
},
{
"num_node_expansions": 1486,
"plan_length": 121,
"search_time": 2.91,
"total_time": 2.91
},
{
"num_node_expansions": 1935,
"plan_length": 140,
"search_time": 3.54,
"total_time": 3.54
},
{
"num_node_expansions": 2673,
"plan_length": 153,
"search_time": 8.58,
"total_time": 8.58
},
{
"num_node_expansions": 1065,
"plan_length": 120,
"search_time": 3.22,
"total_time": 3.22
},
{
"num_node_expansions": 1813,
"plan_length": 132,
"search_time": 10.42,
"total_time": 10.42
},
{
"num_node_expansions": 2476,
"plan_length": 147,
"search_time": 14.71,
"total_time": 14.71
},
{
"num_node_expansions": 2078,
"plan_length": 157,
"search_time": 7.62,
"total_time": 7.62
},
{
"num_node_expansions": 2139,
"plan_length": 129,
"search_time": 11.28,
"total_time": 11.28
},
{
"num_node_expansions": 1431,
"plan_length": 132,
"search_time": 17.03,
"total_time": 17.03
},
{
"num_node_expansions": 1003,
"plan_length": 102,
"search_time": 0.63,
"total_time": 0.63
},
{
"num_node_expansions": 1036,
"plan_length": 115,
"search_time": 0.61,
"total_time": 0.61
},
{
"num_node_expansions": 1576,
"plan_length": 146,
"search_time": 0.61,
"total_time": 0.61
},
{
"num_node_expansions": 1607,
"plan_length": 129,
"search_time": 0.6,
"total_time": 0.6
},
{
"num_node_expansions": 1765,
"plan_length": 140,
"search_time": 20.97,
"total_time": 20.97
},
{
"num_node_expansions": 3217,
"plan_length": 157,
"search_time": 25.76,
"total_time": 25.76
},
{
"num_node_expansions": 1212,
"plan_length": 127,
"search_time": 2.55,
"total_time": 2.55
},
{
"num_node_expansions": 3228,
"plan_length": 163,
"search_time": 7.53,
"total_time": 7.53
},
{
"num_node_expansions": 3255,
"plan_length": 141,
"search_time": 28.4,
"total_time": 28.4
},
{
"num_node_expansions": 1615,
"plan_length": 151,
"search_time": 15.0,
"total_time": 15.0
},
{
"num_node_expansions": 1950,
"plan_length": 128,
"search_time": 4.52,
"total_time": 4.52
},
{
"num_node_expansions": 1444,
"plan_length": 122,
"search_time": 3.42,
"total_time": 3.42
},
{
"num_node_expansions": 2089,
"plan_length": 127,
"search_time": 9.86,
"total_time": 9.86
},
{
"num_node_expansions": 1998,
"plan_length": 139,
"search_time": 7.82,
"total_time": 7.82
},
{
"num_node_expansions": 1295,
"plan_length": 126,
"search_time": 0.78,
"total_time": 0.78
},
{
"num_node_expansions": 1972,
"plan_length": 125,
"search_time": 1.17,
"total_time": 1.17
},
{
"num_node_expansions": 2800,
"plan_length": 165,
"search_time": 7.1,
"total_time": 7.1
},
{
"num_node_expansions": 1501,
"plan_length": 123,
"search_time": 3.93,
"total_time": 3.93
},
{
"num_node_expansions": 1548,
"plan_length": 116,
"search_time": 0.15,
"total_time": 0.15
},
{
"num_node_expansions": 1536,
"plan_length": 122,
"search_time": 0.14,
"total_time": 0.14
},
{
"num_node_expansions": 2061,
"plan_length": 161,
"search_time": 13.65,
"total_time": 13.65
},
{
"num_node_expansions": 2755,
"plan_length": 167,
"search_time": 16.59,
"total_time": 16.59
},
{
"num_node_expansions": 1178,
"plan_length": 119,
"search_time": 0.22,
"total_time": 0.22
},
{
"num_node_expansions": 1098,
"plan_length": 103,
"search_time": 0.21,
"total_time": 0.21
},
{
"num_node_expansions": 1723,
"plan_length": 149,
"search_time": 15.6,
"total_time": 15.6
},
{
"num_node_expansions": 1627,
"plan_length": 136,
"search_time": 16.62,
"total_time": 16.62
},
{
"num_node_expansions": 965,
"plan_length": 112,
"search_time": 1.15,
"total_time": 1.15
},
{
"num_node_expansions": 1170,
"plan_length": 114,
"search_time": 1.4,
"total_time": 1.4
},
{
"num_node_expansions": 1516,
"plan_length": 129,
"search_time": 5.37,
"total_time": 5.37
},
{
"num_node_expansions": 2787,
"plan_length": 146,
"search_time": 9.25,
"total_time": 9.25
},
{
"num_node_expansions": 2142,
"plan_length": 133,
"search_time": 6.6,
"total_time": 6.6
},
{
"num_node_expansions": 1471,
"plan_length": 130,
"search_time": 5.43,
"total_time": 5.43
},
{
"num_node_expansions": 858,
"plan_length": 99,
"search_time": 0.44,
"total_time": 0.44
},
{
"num_node_expansions": 1463,
"plan_length": 108,
"search_time": 1.37,
"total_time": 1.37
},
{
"num_node_expansions": 2214,
"plan_length": 128,
"search_time": 0.67,
"total_time": 0.67
},
{
"num_node_expansions": 2107,
"plan_length": 130,
"search_time": 0.65,
"total_time": 0.65
},
{
"num_node_expansions": 1485,
"plan_length": 130,
"search_time": 12.52,
"total_time": 12.52
},
{
"num_node_expansions": 1014,
"plan_length": 121,
"search_time": 8.2,
"total_time": 8.2
},
{
"num_node_expansions": 1810,
"plan_length": 139,
"search_time": 8.51,
"total_time": 8.51
},
{
"num_node_expansions": 1986,
"plan_length": 137,
"search_time": 7.52,
"total_time": 7.52
},
{
"num_node_expansions": 909,
"plan_length": 114,
"search_time": 0.17,
"total_time": 0.17
},
{
"num_node_expansions": 932,
"plan_length": 116,
"search_time": 0.18,
"total_time": 0.18
},
{
"num_node_expansions": 1449,
"plan_length": 114,
"search_time": 1.06,
"total_time": 1.06
},
{
"num_node_expansions": 1327,
"plan_length": 110,
"search_time": 0.96,
"total_time": 0.96
},
{
"num_node_expansions": 2128,
"plan_length": 146,
"search_time": 4.92,
"total_time": 4.92
},
{
"num_node_expansions": 1546,
"plan_length": 121,
"search_time": 5.63,
"total_time": 5.63
},
{
"num_node_expansions": 1160,
"plan_length": 116,
"search_time": 5.94,
"total_time": 5.94
},
{
"num_node_expansions": 1307,
"plan_length": 113,
"search_time": 6.71,
"total_time": 6.71
},
{
"num_node_expansions": 5169,
"plan_length": 185,
"search_time": 12.9,
"total_time": 12.9
},
{
"num_node_expansions": 6569,
"plan_length": 187,
"search_time": 20.49,
"total_time": 20.49
},
{
"num_node_expansions": 1242,
"plan_length": 134,
"search_time": 3.14,
"total_time": 3.14
},
{
"num_node_expansions": 1823,
"plan_length": 130,
"search_time": 5.73,
"total_time": 5.73
},
{
"num_node_expansions": 1578,
"plan_length": 127,
"search_time": 1.82,
"total_time": 1.82
},
{
"num_node_expansions": 1599,
"plan_length": 129,
"search_time": 1.77,
"total_time": 1.77
},
{
"num_node_expansions": 1324,
"plan_length": 131,
"search_time": 0.21,
"total_time": 0.21
},
{
"num_node_expansions": 841,
"plan_length": 108,
"search_time": 0.11,
"total_time": 0.11
},
{
"num_node_expansions": 1741,
"plan_length": 166,
"search_time": 16.15,
"total_time": 16.15
},
{
"num_node_expansions": 2136,
"plan_length": 148,
"search_time": 20.12,
"total_time": 20.12
},
{
"num_node_expansions": 2163,
"plan_length": 134,
"search_time": 6.96,
"total_time": 6.96
},
{
"num_node_expansions": 1742,
"plan_length": 119,
"search_time": 4.44,
"total_time": 4.44
},
{
"num_node_expansions": 1542,
"plan_length": 129,
"search_time": 13.63,
"total_time": 13.63
},
{
"num_node_expansions": 1531,
"plan_length": 113,
"search_time": 12.74,
"total_time": 12.74
},
{
"num_node_expansions": 3823,
"plan_length": 138,
"search_time": 2.07,
"total_time": 2.07
},
{
"num_node_expansions": 1669,
"plan_length": 139,
"search_time": 0.89,
"total_time": 0.89
},
{
"num_node_expansions": 4082,
"plan_length": 150,
"search_time": 0.5,
"total_time": 0.5
},
{
"num_node_expansions": 3729,
"plan_length": 146,
"search_time": 0.43,
"total_time": 0.43
},
{
"num_node_expansions": 958,
"plan_length": 116,
"search_time": 4.08,
"total_time": 4.08
},
{
"num_node_expansions": 2277,
"plan_length": 145,
"search_time": 10.8,
"total_time": 10.8
},
{
"num_node_expansions": 1147,
"plan_length": 117,
"search_time": 0.26,
"total_time": 0.26
},
{
"num_node_expansions": 1597,
"plan_length": 119,
"search_time": 0.46,
"total_time": 0.46
},
{
"num_node_expansions": 1368,
"plan_length": 135,
"search_time": 3.41,
"total_time": 3.41
},
{
"num_node_expansions": 1497,
"plan_length": 123,
"search_time": 4.09,
"total_time": 4.09
},
{
"num_node_expansions": 1441,
"plan_length": 131,
"search_time": 3.58,
"total_time": 3.58
},
{
"num_node_expansions": 1512,
"plan_length": 129,
"search_time": 4.2,
"total_time": 4.2
},
{
"num_node_expansions": 1478,
"plan_length": 124,
"search_time": 2.16,
"total_time": 2.16
},
{
"num_node_expansions": 1188,
"plan_length": 118,
"search_time": 2.03,
"total_time": 2.03
},
{
"num_node_expansions": 1993,
"plan_length": 138,
"search_time": 1.91,
"total_time": 1.91
},
{
"num_node_expansions": 1876,
"plan_length": 153,
"search_time": 1.95,
"total_time": 1.95
},
{
"num_node_expansions": 1258,
"plan_length": 116,
"search_time": 0.89,
"total_time": 0.89
},
{
"num_node_expansions": 950,
"plan_length": 104,
"search_time": 0.63,
"total_time": 0.63
},
{
"num_node_expansions": 1906,
"plan_length": 137,
"search_time": 0.39,
"total_time": 0.39
},
{
"num_node_expansions": 2203,
"plan_length": 144,
"search_time": 0.46,
"total_time": 0.46
},
{
"num_node_expansions": 1155,
"plan_length": 131,
"search_time": 21.85,
"total_time": 21.85
},
{
"num_node_expansions": 1293,
"plan_length": 136,
"search_time": 2.11,
"total_time": 2.11
},
{
"num_node_expansions": 1396,
"plan_length": 134,
"search_time": 1.76,
"total_time": 1.76
},
{
"num_node_expansions": 1382,
"plan_length": 120,
"search_time": 9.7,
"total_time": 9.7
},
{
"num_node_expansions": 1307,
"plan_length": 124,
"search_time": 11.99,
"total_time": 11.99
},
{
"num_node_expansions": 1785,
"plan_length": 148,
"search_time": 1.55,
"total_time": 1.55
},
{
"num_node_expansions": 2491,
"plan_length": 167,
"search_time": 2.14,
"total_time": 2.14
},
{
"num_node_expansions": 1066,
"plan_length": 102,
"search_time": 1.0,
"total_time": 1.0
},
{
"num_node_expansions": 1292,
"plan_length": 146,
"search_time": 1.33,
"total_time": 1.33
},
{
"num_node_expansions": 1319,
"plan_length": 139,
"search_time": 1.6,
"total_time": 1.6
},
{
"num_node_expansions": 3342,
"plan_length": 150,
"search_time": 3.91,
"total_time": 3.91
},
{
"num_node_expansions": 2211,
"plan_length": 175,
"search_time": 24.26,
"total_time": 24.26
},
{
"num_node_expansions": 1044,
"plan_length": 109,
"search_time": 0.22,
"total_time": 0.22
},
{
"num_node_expansions": 2278,
"plan_length": 120,
"search_time": 0.5,
"total_time": 0.5
}
]
num_timeouts = 34
num_timeouts = 0
num_problems = 172
| stats = [{'num_node_expansions': 1733, 'plan_length': 142, 'search_time': 1.66, 'total_time': 1.66}, {'num_node_expansions': 2128, 'plan_length': 153, 'search_time': 1.93, 'total_time': 1.93}, {'num_node_expansions': 2114, 'plan_length': 148, 'search_time': 29.02, 'total_time': 29.02}, {'num_node_expansions': 1614, 'plan_length': 131, 'search_time': 6.32, 'total_time': 6.32}, {'num_node_expansions': 1935, 'plan_length': 131, 'search_time': 9.72, 'total_time': 9.72}, {'num_node_expansions': 1082, 'plan_length': 118, 'search_time': 0.63, 'total_time': 0.63}, {'num_node_expansions': 1661, 'plan_length': 132, 'search_time': 1.17, 'total_time': 1.17}, {'num_node_expansions': 1174, 'plan_length': 110, 'search_time': 5.23, 'total_time': 5.23}, {'num_node_expansions': 2119, 'plan_length': 126, 'search_time': 6.1, 'total_time': 6.1}, {'num_node_expansions': 1923, 'plan_length': 139, 'search_time': 0.91, 'total_time': 0.91}, {'num_node_expansions': 2942, 'plan_length': 170, 'search_time': 1.6, 'total_time': 1.6}, {'num_node_expansions': 1801, 'plan_length': 136, 'search_time': 2.39, 'total_time': 2.39}, {'num_node_expansions': 1319, 'plan_length': 120, 'search_time': 1.58, 'total_time': 1.58}, {'num_node_expansions': 4197, 'plan_length': 159, 'search_time': 2.95, 'total_time': 2.95}, {'num_node_expansions': 2238, 'plan_length': 178, 'search_time': 1.7, 'total_time': 1.7}, {'num_node_expansions': 1491, 'plan_length': 128, 'search_time': 0.85, 'total_time': 0.85}, {'num_node_expansions': 1303, 'plan_length': 136, 'search_time': 1.02, 'total_time': 1.02}, {'num_node_expansions': 1649, 'plan_length': 131, 'search_time': 10.69, 'total_time': 10.69}, {'num_node_expansions': 2624, 'plan_length': 136, 'search_time': 18.03, 'total_time': 18.03}, {'num_node_expansions': 1272, 'plan_length': 119, 'search_time': 3.84, 'total_time': 3.84}, {'num_node_expansions': 2018, 'plan_length': 133, 'search_time': 9.12, 'total_time': 9.12}, {'num_node_expansions': 1270, 'plan_length': 123, 'search_time': 0.37, 'total_time': 0.37}, {'num_node_expansions': 1667, 'plan_length': 126, 'search_time': 0.45, 'total_time': 0.45}, {'num_node_expansions': 4136, 'plan_length': 144, 'search_time': 26.87, 'total_time': 26.87}, {'num_node_expansions': 2322, 'plan_length': 130, 'search_time': 9.48, 'total_time': 9.48}, {'num_node_expansions': 2246, 'plan_length': 146, 'search_time': 7.53, 'total_time': 7.53}, {'num_node_expansions': 1562, 'plan_length': 114, 'search_time': 7.07, 'total_time': 7.07}, {'num_node_expansions': 3919, 'plan_length': 138, 'search_time': 15.15, 'total_time': 15.15}, {'num_node_expansions': 1350, 'plan_length': 132, 'search_time': 6.06, 'total_time': 6.06}, {'num_node_expansions': 1171, 'plan_length': 118, 'search_time': 5.05, 'total_time': 5.05}, {'num_node_expansions': 6679, 'plan_length': 167, 'search_time': 13.82, 'total_time': 13.82}, {'num_node_expansions': 4456, 'plan_length': 152, 'search_time': 4.9, 'total_time': 4.9}, {'num_node_expansions': 2157, 'plan_length': 153, 'search_time': 26.45, 'total_time': 26.45}, {'num_node_expansions': 1486, 'plan_length': 121, 'search_time': 2.91, 'total_time': 2.91}, {'num_node_expansions': 1935, 'plan_length': 140, 'search_time': 3.54, 'total_time': 3.54}, {'num_node_expansions': 2673, 'plan_length': 153, 'search_time': 8.58, 'total_time': 8.58}, {'num_node_expansions': 1065, 'plan_length': 120, 'search_time': 3.22, 'total_time': 3.22}, {'num_node_expansions': 1813, 'plan_length': 132, 'search_time': 10.42, 'total_time': 10.42}, {'num_node_expansions': 2476, 'plan_length': 147, 'search_time': 14.71, 'total_time': 14.71}, {'num_node_expansions': 2078, 'plan_length': 157, 'search_time': 7.62, 'total_time': 7.62}, {'num_node_expansions': 2139, 'plan_length': 129, 'search_time': 11.28, 'total_time': 11.28}, {'num_node_expansions': 1431, 'plan_length': 132, 'search_time': 17.03, 'total_time': 17.03}, {'num_node_expansions': 1003, 'plan_length': 102, 'search_time': 0.63, 'total_time': 0.63}, {'num_node_expansions': 1036, 'plan_length': 115, 'search_time': 0.61, 'total_time': 0.61}, {'num_node_expansions': 1576, 'plan_length': 146, 'search_time': 0.61, 'total_time': 0.61}, {'num_node_expansions': 1607, 'plan_length': 129, 'search_time': 0.6, 'total_time': 0.6}, {'num_node_expansions': 1765, 'plan_length': 140, 'search_time': 20.97, 'total_time': 20.97}, {'num_node_expansions': 3217, 'plan_length': 157, 'search_time': 25.76, 'total_time': 25.76}, {'num_node_expansions': 1212, 'plan_length': 127, 'search_time': 2.55, 'total_time': 2.55}, {'num_node_expansions': 3228, 'plan_length': 163, 'search_time': 7.53, 'total_time': 7.53}, {'num_node_expansions': 3255, 'plan_length': 141, 'search_time': 28.4, 'total_time': 28.4}, {'num_node_expansions': 1615, 'plan_length': 151, 'search_time': 15.0, 'total_time': 15.0}, {'num_node_expansions': 1950, 'plan_length': 128, 'search_time': 4.52, 'total_time': 4.52}, {'num_node_expansions': 1444, 'plan_length': 122, 'search_time': 3.42, 'total_time': 3.42}, {'num_node_expansions': 2089, 'plan_length': 127, 'search_time': 9.86, 'total_time': 9.86}, {'num_node_expansions': 1998, 'plan_length': 139, 'search_time': 7.82, 'total_time': 7.82}, {'num_node_expansions': 1295, 'plan_length': 126, 'search_time': 0.78, 'total_time': 0.78}, {'num_node_expansions': 1972, 'plan_length': 125, 'search_time': 1.17, 'total_time': 1.17}, {'num_node_expansions': 2800, 'plan_length': 165, 'search_time': 7.1, 'total_time': 7.1}, {'num_node_expansions': 1501, 'plan_length': 123, 'search_time': 3.93, 'total_time': 3.93}, {'num_node_expansions': 1548, 'plan_length': 116, 'search_time': 0.15, 'total_time': 0.15}, {'num_node_expansions': 1536, 'plan_length': 122, 'search_time': 0.14, 'total_time': 0.14}, {'num_node_expansions': 2061, 'plan_length': 161, 'search_time': 13.65, 'total_time': 13.65}, {'num_node_expansions': 2755, 'plan_length': 167, 'search_time': 16.59, 'total_time': 16.59}, {'num_node_expansions': 1178, 'plan_length': 119, 'search_time': 0.22, 'total_time': 0.22}, {'num_node_expansions': 1098, 'plan_length': 103, 'search_time': 0.21, 'total_time': 0.21}, {'num_node_expansions': 1723, 'plan_length': 149, 'search_time': 15.6, 'total_time': 15.6}, {'num_node_expansions': 1627, 'plan_length': 136, 'search_time': 16.62, 'total_time': 16.62}, {'num_node_expansions': 965, 'plan_length': 112, 'search_time': 1.15, 'total_time': 1.15}, {'num_node_expansions': 1170, 'plan_length': 114, 'search_time': 1.4, 'total_time': 1.4}, {'num_node_expansions': 1516, 'plan_length': 129, 'search_time': 5.37, 'total_time': 5.37}, {'num_node_expansions': 2787, 'plan_length': 146, 'search_time': 9.25, 'total_time': 9.25}, {'num_node_expansions': 2142, 'plan_length': 133, 'search_time': 6.6, 'total_time': 6.6}, {'num_node_expansions': 1471, 'plan_length': 130, 'search_time': 5.43, 'total_time': 5.43}, {'num_node_expansions': 858, 'plan_length': 99, 'search_time': 0.44, 'total_time': 0.44}, {'num_node_expansions': 1463, 'plan_length': 108, 'search_time': 1.37, 'total_time': 1.37}, {'num_node_expansions': 2214, 'plan_length': 128, 'search_time': 0.67, 'total_time': 0.67}, {'num_node_expansions': 2107, 'plan_length': 130, 'search_time': 0.65, 'total_time': 0.65}, {'num_node_expansions': 1485, 'plan_length': 130, 'search_time': 12.52, 'total_time': 12.52}, {'num_node_expansions': 1014, 'plan_length': 121, 'search_time': 8.2, 'total_time': 8.2}, {'num_node_expansions': 1810, 'plan_length': 139, 'search_time': 8.51, 'total_time': 8.51}, {'num_node_expansions': 1986, 'plan_length': 137, 'search_time': 7.52, 'total_time': 7.52}, {'num_node_expansions': 909, 'plan_length': 114, 'search_time': 0.17, 'total_time': 0.17}, {'num_node_expansions': 932, 'plan_length': 116, 'search_time': 0.18, 'total_time': 0.18}, {'num_node_expansions': 1449, 'plan_length': 114, 'search_time': 1.06, 'total_time': 1.06}, {'num_node_expansions': 1327, 'plan_length': 110, 'search_time': 0.96, 'total_time': 0.96}, {'num_node_expansions': 2128, 'plan_length': 146, 'search_time': 4.92, 'total_time': 4.92}, {'num_node_expansions': 1546, 'plan_length': 121, 'search_time': 5.63, 'total_time': 5.63}, {'num_node_expansions': 1160, 'plan_length': 116, 'search_time': 5.94, 'total_time': 5.94}, {'num_node_expansions': 1307, 'plan_length': 113, 'search_time': 6.71, 'total_time': 6.71}, {'num_node_expansions': 5169, 'plan_length': 185, 'search_time': 12.9, 'total_time': 12.9}, {'num_node_expansions': 6569, 'plan_length': 187, 'search_time': 20.49, 'total_time': 20.49}, {'num_node_expansions': 1242, 'plan_length': 134, 'search_time': 3.14, 'total_time': 3.14}, {'num_node_expansions': 1823, 'plan_length': 130, 'search_time': 5.73, 'total_time': 5.73}, {'num_node_expansions': 1578, 'plan_length': 127, 'search_time': 1.82, 'total_time': 1.82}, {'num_node_expansions': 1599, 'plan_length': 129, 'search_time': 1.77, 'total_time': 1.77}, {'num_node_expansions': 1324, 'plan_length': 131, 'search_time': 0.21, 'total_time': 0.21}, {'num_node_expansions': 841, 'plan_length': 108, 'search_time': 0.11, 'total_time': 0.11}, {'num_node_expansions': 1741, 'plan_length': 166, 'search_time': 16.15, 'total_time': 16.15}, {'num_node_expansions': 2136, 'plan_length': 148, 'search_time': 20.12, 'total_time': 20.12}, {'num_node_expansions': 2163, 'plan_length': 134, 'search_time': 6.96, 'total_time': 6.96}, {'num_node_expansions': 1742, 'plan_length': 119, 'search_time': 4.44, 'total_time': 4.44}, {'num_node_expansions': 1542, 'plan_length': 129, 'search_time': 13.63, 'total_time': 13.63}, {'num_node_expansions': 1531, 'plan_length': 113, 'search_time': 12.74, 'total_time': 12.74}, {'num_node_expansions': 3823, 'plan_length': 138, 'search_time': 2.07, 'total_time': 2.07}, {'num_node_expansions': 1669, 'plan_length': 139, 'search_time': 0.89, 'total_time': 0.89}, {'num_node_expansions': 4082, 'plan_length': 150, 'search_time': 0.5, 'total_time': 0.5}, {'num_node_expansions': 3729, 'plan_length': 146, 'search_time': 0.43, 'total_time': 0.43}, {'num_node_expansions': 958, 'plan_length': 116, 'search_time': 4.08, 'total_time': 4.08}, {'num_node_expansions': 2277, 'plan_length': 145, 'search_time': 10.8, 'total_time': 10.8}, {'num_node_expansions': 1147, 'plan_length': 117, 'search_time': 0.26, 'total_time': 0.26}, {'num_node_expansions': 1597, 'plan_length': 119, 'search_time': 0.46, 'total_time': 0.46}, {'num_node_expansions': 1368, 'plan_length': 135, 'search_time': 3.41, 'total_time': 3.41}, {'num_node_expansions': 1497, 'plan_length': 123, 'search_time': 4.09, 'total_time': 4.09}, {'num_node_expansions': 1441, 'plan_length': 131, 'search_time': 3.58, 'total_time': 3.58}, {'num_node_expansions': 1512, 'plan_length': 129, 'search_time': 4.2, 'total_time': 4.2}, {'num_node_expansions': 1478, 'plan_length': 124, 'search_time': 2.16, 'total_time': 2.16}, {'num_node_expansions': 1188, 'plan_length': 118, 'search_time': 2.03, 'total_time': 2.03}, {'num_node_expansions': 1993, 'plan_length': 138, 'search_time': 1.91, 'total_time': 1.91}, {'num_node_expansions': 1876, 'plan_length': 153, 'search_time': 1.95, 'total_time': 1.95}, {'num_node_expansions': 1258, 'plan_length': 116, 'search_time': 0.89, 'total_time': 0.89}, {'num_node_expansions': 950, 'plan_length': 104, 'search_time': 0.63, 'total_time': 0.63}, {'num_node_expansions': 1906, 'plan_length': 137, 'search_time': 0.39, 'total_time': 0.39}, {'num_node_expansions': 2203, 'plan_length': 144, 'search_time': 0.46, 'total_time': 0.46}, {'num_node_expansions': 1155, 'plan_length': 131, 'search_time': 21.85, 'total_time': 21.85}, {'num_node_expansions': 1293, 'plan_length': 136, 'search_time': 2.11, 'total_time': 2.11}, {'num_node_expansions': 1396, 'plan_length': 134, 'search_time': 1.76, 'total_time': 1.76}, {'num_node_expansions': 1382, 'plan_length': 120, 'search_time': 9.7, 'total_time': 9.7}, {'num_node_expansions': 1307, 'plan_length': 124, 'search_time': 11.99, 'total_time': 11.99}, {'num_node_expansions': 1785, 'plan_length': 148, 'search_time': 1.55, 'total_time': 1.55}, {'num_node_expansions': 2491, 'plan_length': 167, 'search_time': 2.14, 'total_time': 2.14}, {'num_node_expansions': 1066, 'plan_length': 102, 'search_time': 1.0, 'total_time': 1.0}, {'num_node_expansions': 1292, 'plan_length': 146, 'search_time': 1.33, 'total_time': 1.33}, {'num_node_expansions': 1319, 'plan_length': 139, 'search_time': 1.6, 'total_time': 1.6}, {'num_node_expansions': 3342, 'plan_length': 150, 'search_time': 3.91, 'total_time': 3.91}, {'num_node_expansions': 2211, 'plan_length': 175, 'search_time': 24.26, 'total_time': 24.26}, {'num_node_expansions': 1044, 'plan_length': 109, 'search_time': 0.22, 'total_time': 0.22}, {'num_node_expansions': 2278, 'plan_length': 120, 'search_time': 0.5, 'total_time': 0.5}]
num_timeouts = 34
num_timeouts = 0
num_problems = 172 |
LINE_DICT_TEMPLATE = {
'kind': '',
'buy_cur': '',
'buy_amount': 0,
'sell_cur': '',
'sell_amount': 0,
'fee_cur': '',
'fee_amount': 0,
'exchange': 'Bitshares',
'mark': -1,
'comment': '',
'order_id': '',
}
# CSV format is ccGains generic format
HEADER = 'Kind,Date,Buy currency,Buy amount,Sell currency,Sell amount,Fee currency,Fee amount,Exchange,Mark,Comment\n'
LINE_TEMPLATE = (
'{kind},{date},{buy_cur},{buy_amount},{sell_cur},{sell_amount},{fee_cur},{fee_amount},{exchange},'
'{mark},{comment}\n'
)
| line_dict_template = {'kind': '', 'buy_cur': '', 'buy_amount': 0, 'sell_cur': '', 'sell_amount': 0, 'fee_cur': '', 'fee_amount': 0, 'exchange': 'Bitshares', 'mark': -1, 'comment': '', 'order_id': ''}
header = 'Kind,Date,Buy currency,Buy amount,Sell currency,Sell amount,Fee currency,Fee amount,Exchange,Mark,Comment\n'
line_template = '{kind},{date},{buy_cur},{buy_amount},{sell_cur},{sell_amount},{fee_cur},{fee_amount},{exchange},{mark},{comment}\n' |
globalval=6
def checkglobalvalue():
return globalval
def localvariablevalue():
globalval=8
return globalval
print ("This is global value",checkglobalvalue())
print ("This is global value",globalval)
print ("This is local value",localvariablevalue())
print ("This is global value",globalval)
| globalval = 6
def checkglobalvalue():
return globalval
def localvariablevalue():
globalval = 8
return globalval
print('This is global value', checkglobalvalue())
print('This is global value', globalval)
print('This is local value', localvariablevalue())
print('This is global value', globalval) |
class Logger:
def __init__(self, simulator, time, image_analyzer, speed_controller,
car, gyro, asservissement, sequencer, handles, tachometer):
self.tachometer = tachometer
self.handles = handles
self.time = time
self.image_analyzer = image_analyzer
self.sequencer = sequencer
self.asservissement = asservissement
self.gyro = gyro
self.car = car
self.speed_controller = speed_controller
self.simulator = simulator
def execute(self):
self.log()
def log(self):
print("tacho : %s" % self.tachometer.get_tacho())
print("Simu time : %fs " % self.time.time())
# print("orientation : %s" % str(self.simulator.get_object_orientation(self.handles["base_car"])))
| class Logger:
def __init__(self, simulator, time, image_analyzer, speed_controller, car, gyro, asservissement, sequencer, handles, tachometer):
self.tachometer = tachometer
self.handles = handles
self.time = time
self.image_analyzer = image_analyzer
self.sequencer = sequencer
self.asservissement = asservissement
self.gyro = gyro
self.car = car
self.speed_controller = speed_controller
self.simulator = simulator
def execute(self):
self.log()
def log(self):
print('tacho : %s' % self.tachometer.get_tacho())
print('Simu time : %fs ' % self.time.time()) |
total = 0
for line in open('input.txt'):
l, w, h = [int(side) for side in line.split('x')]
sides = [2*(l+w), 2*(w+h), 2*(h+l)]
total += min(sides) + l*w*h
print(total)
| total = 0
for line in open('input.txt'):
(l, w, h) = [int(side) for side in line.split('x')]
sides = [2 * (l + w), 2 * (w + h), 2 * (h + l)]
total += min(sides) + l * w * h
print(total) |
def missions_per_year(df):
'''
From a dataframe with the 'Year' column,
Plot a graph showing the number of missions per year
'''
missions_per_year = df.Year.value_counts()
plt.plot(missions_per_year.sort_index())
plt.show()
def missions_per_week(df):
'''
From a dataframe with the 'Year' column,
Plot a graph showing the number of missions per year
'''
missions_per_year = df.Year.value_counts()
plt.plot(missions_per_year.sort_index())
plt.show()
| def missions_per_year(df):
"""
From a dataframe with the 'Year' column,
Plot a graph showing the number of missions per year
"""
missions_per_year = df.Year.value_counts()
plt.plot(missions_per_year.sort_index())
plt.show()
def missions_per_week(df):
"""
From a dataframe with the 'Year' column,
Plot a graph showing the number of missions per year
"""
missions_per_year = df.Year.value_counts()
plt.plot(missions_per_year.sort_index())
plt.show() |
def sum_func(a, *args):
s = a+sum(args)
print(s)
sum_func(10)
sum_func(10,20)
sum_func(10,20,30)
sum_func(10, 20, 30, 40)
| def sum_func(a, *args):
s = a + sum(args)
print(s)
sum_func(10)
sum_func(10, 20)
sum_func(10, 20, 30)
sum_func(10, 20, 30, 40) |
TAG_MAP = {
('landuse', 'forest'): {"TYPE": "forest", "DRAW_TYPE": "plane"},
('natural', 'wood'): {"TYPE": "forest", "SUBTYPE": "natural", "DRAW_TYPE": "plane"}
}
def find_type(tags):
keys = list(tags.items())
return [TAG_MAP[key] for key in keys if key in TAG_MAP]
| tag_map = {('landuse', 'forest'): {'TYPE': 'forest', 'DRAW_TYPE': 'plane'}, ('natural', 'wood'): {'TYPE': 'forest', 'SUBTYPE': 'natural', 'DRAW_TYPE': 'plane'}}
def find_type(tags):
keys = list(tags.items())
return [TAG_MAP[key] for key in keys if key in TAG_MAP] |
#
# PySNMP MIB module Webio-Digital-MIB-US (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/Webio-Digital-MIB-US
# Produced by pysmi-0.3.4 at Mon Apr 29 21:32:33 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ConstraintsIntersection, SingleValueConstraint, ValueRangeConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ConstraintsIntersection", "SingleValueConstraint", "ValueRangeConstraint", "ValueSizeConstraint")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
ObjectIdentity, Unsigned32, enterprises, TimeTicks, Bits, IpAddress, ModuleIdentity, MibIdentifier, NotificationType, NotificationType, MibScalar, MibTable, MibTableRow, MibTableColumn, Gauge32, Integer32, Counter64, iso, Counter32 = mibBuilder.importSymbols("SNMPv2-SMI", "ObjectIdentity", "Unsigned32", "enterprises", "TimeTicks", "Bits", "IpAddress", "ModuleIdentity", "MibIdentifier", "NotificationType", "NotificationType", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Gauge32", "Integer32", "Counter64", "iso", "Counter32")
DisplayString, TextualConvention, PhysAddress = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention", "PhysAddress")
wut = MibIdentifier((1, 3, 6, 1, 4, 1, 5040))
wtComServer = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1))
wtWebio = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2))
wtWebioEA12x12 = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4))
wtWebioEA2x2 = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13))
wtWebioEA24oem = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14))
wtWebioEA12x6Rel = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19))
wtWebAlarm6x6 = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20))
wtWebCount6 = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22))
wtWebioEA6x6 = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24))
wtWebioEA2x2ERP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25))
wtWebioEA12x6RelERP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26))
wtIpWatcher = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27))
wtWebioEA2x2_24V = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30))
wtWebioEA2x2ERP_24V = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31))
wtIpWatcher_24V = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32))
wtTrapReceiver2x2 = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33))
wtWebioEA2x2InOut = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1))
wtWebioEA2x2SessCntrl = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 2))
wtWebioEA2x2Config = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3))
wtWebioEA2x2Diag = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 4))
wtWebioEA2x2Device = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1))
wtWebioEA2x2Ports = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2))
wtWebioEA2x2Manufact = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 3))
wtWebioEA2x2Text = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 1))
wtWebioEA2x2TimeDate = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2))
wtWebioEA2x2Basic = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3))
wtWebioEA2x2OutputMode = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 4))
wtWebioEA2x2Alarm = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5))
wtWebioEA2x2Network = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 1))
wtWebioEA2x2HTTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 2))
wtWebioEA2x2Mail = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 3))
wtWebioEA2x2SNMP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 4))
wtWebioEA2x2UDP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 5))
wtWebioEA2x2Binary = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6))
wtWebioEA2x2Syslog = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 7))
wtWebioEA2x2FTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 8))
wtWebioEA2x2TimeZone = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1))
wtWebioEA2x2TimeServer = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 2))
wtWebioEA2x2DeviceClock = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 3))
wtWebioEA12x12InOut = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1))
wtWebioEA12x12SessCntrl = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 2))
wtWebioEA12x12Config = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3))
wtWebioEA12x12Diag = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 4))
wtWebioEA12x12Device = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1))
wtWebioEA12x12Ports = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2))
wtWebioEA12x12Manufact = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 3))
wtWebioEA12x12Text = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 1))
wtWebioEA12x12TimeDate = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2))
wtWebioEA12x12Basic = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3))
wtWebioEA12x12OutputMode = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 4))
wtWebioEA12x12Alarm = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5))
wtWebioEA12x12Network = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 1))
wtWebioEA12x12HTTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 2))
wtWebioEA12x12Mail = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 3))
wtWebioEA12x12SNMP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 4))
wtWebioEA12x12UDP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 5))
wtWebioEA12x12Binary = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6))
wtWebioEA12x12Syslog = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 7))
wtWebioEA12x12FTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 8))
wtWebioEA12x12TimeZone = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1))
wtWebioEA12x12TimeServer = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 2))
wtWebioEA12x12DeviceClock = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 3))
wtWebioEA24oemInOut = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1))
wtWebioEA24oemSessCntrl = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 2))
wtWebioEA24oemConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3))
wtWebioEA24oemDiag = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 4))
wtWebioEA24oemDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1))
wtWebioEA24oemPorts = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2))
wtWebioEA24oemManufact = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 3))
wtWebioEA24oemText = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 1))
wtWebioEA24oemTimeDate = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2))
wtWebioEA24oemBasic = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3))
wtWebioEA24oemOutputMode = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 4))
wtWebioEA24oemAlarm = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5))
wtWebioEA24oemNetwork = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 1))
wtWebioEA24oemHTTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 2))
wtWebioEA24oemMail = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 3))
wtWebioEA24oemSNMP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 4))
wtWebioEA24oemUDP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 5))
wtWebioEA24oemBinary = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6))
wtWebioEA24oemSyslog = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 7))
wtWebioEA24oemFTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 8))
wtWebioEA24oemTimeZone = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1))
wtWebioEA24oemTimeServer = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 2))
wtWebioEA24oemDeviceClock = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 3))
wtWebioEA12x6RelInOut = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1))
wtWebioEA12x6RelSessCntrl = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 2))
wtWebioEA12x6RelConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3))
wtWebioEA12x6RelDiag = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 4))
wtWebioEA12x6RelDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1))
wtWebioEA12x6RelPorts = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2))
wtWebioEA12x6RelManufact = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 3))
wtWebioEA12x6RelText = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 1))
wtWebioEA12x6RelTimeDate = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2))
wtWebioEA12x6RelBasic = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3))
wtWebioEA12x6RelOutputMode = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 4))
wtWebioEA12x6RelAlarm = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5))
wtWebioEA12x6RelNetwork = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 1))
wtWebioEA12x6RelHTTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 2))
wtWebioEA12x6RelMail = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 3))
wtWebioEA12x6RelSNMP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 4))
wtWebioEA12x6RelUDP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 5))
wtWebioEA12x6RelBinary = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6))
wtWebioEA12x6RelSyslog = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 7))
wtWebioEA12x6RelFTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 8))
wtWebioEA12x6RelTimeZone = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1))
wtWebioEA12x6RelTimeServer = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 2))
wtWebioEA12x6RelDeviceClock = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 3))
wtWebAlarm6x6InOut = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1))
wtWebAlarm6x6SessCntrl = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 2))
wtWebAlarm6x6Config = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3))
wtWebAlarm6x6Diag = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 4))
wtWebAlarm6x6Device = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1))
wtWebAlarm6x6Ports = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2))
wtWebAlarm6x6Manufact = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 3))
wtWebAlarm6x6Text = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 1))
wtWebAlarm6x6TimeDate = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2))
wtWebAlarm6x6Basic = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3))
wtWebAlarm6x6Alarm = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5))
wtWebAlarm6x6Network = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 1))
wtWebAlarm6x6HTTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 2))
wtWebAlarm6x6Mail = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 3))
wtWebAlarm6x6SNMP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 4))
wtWebAlarm6x6UDP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 5))
wtWebAlarm6x6Syslog = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 7))
wtWebAlarm6x6FTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 8))
wtWebAlarm6x6TimeZone = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1))
wtWebAlarm6x6TimeServer = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 2))
wtWebAlarm6x6DeviceClock = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 3))
wtWebCount6InOut = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1))
wtWebCount6SessCntrl = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 2))
wtWebCount6Config = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3))
wtWebCount6Diag = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 4))
wtWebCount6Device = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1))
wtWebCount6Ports = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2))
wtWebCount6Manufact = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 3))
wtWebCount6Text = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 1))
wtWebCount6TimeDate = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2))
wtWebCount6Basic = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3))
wtWebCount6Report = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5))
wtWebCount6Network = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 1))
wtWebCount6HTTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 2))
wtWebCount6Mail = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 3))
wtWebCount6SNMP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 4))
wtWebCount6UDP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 5))
wtWebCount6Syslog = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 7))
wtWebCount6FTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 8))
wtWebCount6TimeZone = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1))
wtWebCount6TimeServer = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 2))
wtWebCount6DeviceClock = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 3))
wtWebioEA6x6InOut = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1))
wtWebioEA6x6SessCntrl = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 2))
wtWebioEA6x6Config = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3))
wtWebioEA6x6Diag = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 4))
wtWebioEA6x6Device = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1))
wtWebioEA6x6Ports = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2))
wtWebioEA6x6Manufact = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 3))
wtWebioEA6x6Text = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 1))
wtWebioEA6x6TimeDate = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2))
wtWebioEA6x6Basic = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3))
wtWebioEA6x6OutputMode = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 4))
wtWebioEA6x6Alarm = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5))
wtWebioEA6x6Network = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 1))
wtWebioEA6x6HTTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 2))
wtWebioEA6x6Mail = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 3))
wtWebioEA6x6SNMP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 4))
wtWebioEA6x6UDP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 5))
wtWebioEA6x6Binary = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6))
wtWebioEA6x6Syslog = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 7))
wtWebioEA6x6FTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 8))
wtWebioEA6x6TimeZone = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1))
wtWebioEA6x6TimeServer = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 2))
wtWebioEA6x6DeviceClock = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 3))
wtWebioEA2x2ERPInOut = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1))
wtWebioEA2x2ERPSessCntrl = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 2))
wtWebioEA2x2ERPConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3))
wtWebioEA2x2ERPDiag = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 4))
wtWebioEA2x2ERPDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1))
wtWebioEA2x2ERPPorts = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2))
wtWebioEA2x2ERPManufact = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 3))
wtWebioEA2x2ERPText = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 1))
wtWebioEA2x2ERPTimeDate = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2))
wtWebioEA2x2ERPBasic = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3))
wtWebioEA2x2ERPOutputMode = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 4))
wtWebioEA2x2ERPAlarm = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5))
wtWebioEA2x2ERPNetwork = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 1))
wtWebioEA2x2ERPHTTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 2))
wtWebioEA2x2ERPMail = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 3))
wtWebioEA2x2ERPSNMP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 4))
wtWebioEA2x2ERPUDP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 5))
wtWebioEA2x2ERPBinary = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6))
wtWebioEA2x2ERPSyslog = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 7))
wtWebioEA2x2ERPFTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 8))
wtWebioEA2x2ERPWayBack = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 10))
wtWebioEA2x2ERPTimeZone = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1))
wtWebioEA2x2ERPTimeServer = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 2))
wtWebioEA2x2ERPDeviceClock = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 3))
wtWebioEA12x6RelERPInOut = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1))
wtWebioEA12x6RelERPSessCntrl = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 2))
wtWebioEA12x6RelERPConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3))
wtWebioEA12x6RelERPDiag = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 4))
wtWebioEA12x6RelERPDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1))
wtWebioEA12x6RelERPPorts = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2))
wtWebioEA12x6RelERPManufact = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 3))
wtWebioEA12x6RelERPText = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 1))
wtWebioEA12x6RelERPTimeDate = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2))
wtWebioEA12x6RelERPBasic = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3))
wtWebioEA12x6RelERPOutputMode = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 4))
wtWebioEA12x6RelERPAlarm = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5))
wtWebioEA12x6RelERPNetwork = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 1))
wtWebioEA12x6RelERPHTTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 2))
wtWebioEA12x6RelERPMail = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 3))
wtWebioEA12x6RelERPSNMP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 4))
wtWebioEA12x6RelERPUDP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 5))
wtWebioEA12x6RelERPBinary = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6))
wtWebioEA12x6RelERPSyslog = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 7))
wtWebioEA12x6RelERPFTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 8))
wtWebioEA12x6RelERPWayBack = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 10))
wtWebioEA12x6RelERPTimeZone = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1))
wtWebioEA12x6RelERPTimeServer = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 2))
wtWebioEA12x6RelERPDeviceClock = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 3))
wtIpWatcherInOut = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1))
wtIpWatcherSessCntrl = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 2))
wtIpWatcherConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3))
wtIpWatcherDiag = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 4))
wtIpWatcherDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1))
wtIpWatcherPorts = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2))
wtIpWatcherManufact = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 3))
wtIpWatcherText = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 1))
wtIpWatcherTimeDate = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2))
wtIpWatcherBasic = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3))
wtIpWatcherAlarm = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5))
wtIpWatcherNetwork = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 1))
wtIpWatcherHTTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 2))
wtIpWatcherMail = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 3))
wtIpWatcherSNMP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 4))
wtIpWatcherUDP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 5))
wtIpWatcherSyslog = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 7))
wtIpWatcherFTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 8))
wtIpWatcherIpList = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11))
wtIpWatcherTimeZone = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1))
wtIpWatcherTimeServer = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 2))
wtIpWatcherDeviceClock = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 3))
wtWebioEA2x2_24VInOut = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1))
wtWebioEA2x2_24VSessCntrl = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 2))
wtWebioEA2x2_24VConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3))
wtWebioEA2x2_24VDiag = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 4))
wtWebioEA2x2_24VDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1))
wtWebioEA2x2_24VPorts = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2))
wtWebioEA2x2_24VManufact = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 3))
wtWebioEA2x2_24VText = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 1))
wtWebioEA2x2_24VTimeDate = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2))
wtWebioEA2x2_24VBasic = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3))
wtWebioEA2x2_24VOutputMode = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 4))
wtWebioEA2x2_24VAlarm = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5))
wtWebioEA2x2_24VNetwork = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 1))
wtWebioEA2x2_24VHTTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 2))
wtWebioEA2x2_24VMail = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 3))
wtWebioEA2x2_24VSNMP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 4))
wtWebioEA2x2_24VUDP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 5))
wtWebioEA2x2_24VBinary = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6))
wtWebioEA2x2_24VSyslog = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 7))
wtWebioEA2x2_24VFTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 8))
wtWebioEA2x2_24VTimeZone = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1))
wtWebioEA2x2_24VTimeServer = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 2))
wtWebioEA2x2_24VDeviceClock = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 3))
wtWebioEA2x2ERP_24VInOut = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1))
wtWebioEA2x2ERP_24VSessCntrl = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 2))
wtWebioEA2x2ERP_24VConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3))
wtWebioEA2x2ERP_24VDiag = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 4))
wtWebioEA2x2ERP_24VDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1))
wtWebioEA2x2ERP_24VPorts = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2))
wtWebioEA2x2ERP_24VManufact = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 3))
wtWebioEA2x2ERP_24VText = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 1))
wtWebioEA2x2ERP_24VTimeDate = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2))
wtWebioEA2x2ERP_24VBasic = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3))
wtWebioEA2x2ERP_24VOutputMode = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 4))
wtWebioEA2x2ERP_24VAlarm = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5))
wtWebioEA2x2ERP_24VNetwork = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 1))
wtWebioEA2x2ERP_24VHTTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 2))
wtWebioEA2x2ERP_24VMail = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 3))
wtWebioEA2x2ERP_24VSNMP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 4))
wtWebioEA2x2ERP_24VUDP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 5))
wtWebioEA2x2ERP_24VBinary = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6))
wtWebioEA2x2ERP_24VSyslog = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 7))
wtWebioEA2x2ERP_24VFTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 8))
wtWebioEA2x2ERP_24VWayBack = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 10))
wtWebioEA2x2ERP_24VTimeZone = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1))
wtWebioEA2x2ERP_24VTimeServer = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 2))
wtWebioEA2x2ERP_24VDeviceClock = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 3))
wtIpWatcher_24VInOut = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1))
wtIpWatcher_24VSessCntrl = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 2))
wtIpWatcher_24VConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3))
wtIpWatcher_24VDiag = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 4))
wtIpWatcher_24VDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1))
wtIpWatcher_24VPorts = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2))
wtIpWatcher_24VManufact = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 3))
wtIpWatcher_24VText = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 1))
wtIpWatcher_24VTimeDate = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2))
wtIpWatcher_24VBasic = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3))
wtIpWatcher_24VOutputMode = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 4))
wtIpWatcher_24VAlarm = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5))
wtIpWatcher_24VNetwork = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 1))
wtIpWatcher_24VHTTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 2))
wtIpWatcher_24VMail = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 3))
wtIpWatcher_24VSNMP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 4))
wtIpWatcher_24VUDP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 5))
wtIpWatcher_24VSyslog = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 7))
wtIpWatcher_24VFTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 8))
wtIpWatcher_24VIpList = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11))
wtIpWatcher_24VTimeZone = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1))
wtIpWatcher_24VTimeServer = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 2))
wtIpWatcher_24VDeviceClock = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 3))
wtTrapReceiver2x2InOut = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1))
wtTrapReceiver2x2SessCntrl = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 2))
wtTrapReceiver2x2Config = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3))
wtTrapReceiver2x2Diag = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 4))
wtTrapReceiver2x2Device = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1))
wtTrapReceiver2x2Ports = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 2))
wtTrapReceiver2x2Manufact = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 3))
wtTrapReceiver2x2Text = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 1))
wtTrapReceiver2x2TimeDate = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2))
wtTrapReceiver2x2Basic = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3))
wtTrapReceiver2x2OutputMode = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 4))
wtTrapReceiver2x2Action = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5))
wtTrapReceiver2x2PrepareInEvents = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6))
wtTrapReceiver2x2PrepareOutEvents = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 7))
wtTrapReceiver2x2Network = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 1))
wtTrapReceiver2x2HTTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 2))
wtTrapReceiver2x2Mail = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 3))
wtTrapReceiver2x2SNMP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 4))
wtTrapReceiver2x2UDP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 5))
wtTrapReceiver2x2Syslog = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 7))
wtTrapReceiver2x2FTP = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 8))
wtTrapReceiver2x2TimeZone = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1))
wtTrapReceiver2x2TimeServer = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 2))
wtTrapReceiver2x2DeviceClock = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 3))
wtTrapReceiver2x2WatchList = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1))
wtTrapReceiver2x2InEvSystemTimer = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 2))
wtTrapReceiver2x2InEvButtons = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 3))
wtTrapReceiver2x2InEvInputs = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 4))
wtTrapReceiver2x2OutEvOutputs = MibIdentifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 7, 1))
wtWebioEA2x2Inputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2Inputs.setStatus('mandatory')
wtWebioEA2x2Outputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2Outputs.setStatus('mandatory')
wtWebioEA2x2InputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 3), )
if mibBuilder.loadTexts: wtWebioEA2x2InputTable.setStatus('mandatory')
wtWebioEA2x2InputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2InputNo"))
if mibBuilder.loadTexts: wtWebioEA2x2InputEntry.setStatus('mandatory')
wtWebioEA2x2InputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2InputNo.setStatus('mandatory')
wtWebioEA2x2InputCounter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2InputCounter.setStatus('mandatory')
wtWebioEA2x2InputCounterClear = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2InputCounterClear.setStatus('mandatory')
wtWebioEA2x2InputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA2x2InputState-OFF", 0), ("wtWebioEA2x2InputState-ON", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2InputState.setStatus('mandatory')
wtWebioEA2x2InputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2InputValue.setStatus('mandatory')
wtWebioEA2x2OutputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 5), )
if mibBuilder.loadTexts: wtWebioEA2x2OutputTable.setStatus('mandatory')
wtWebioEA2x2OutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 5, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2OutputNo"))
if mibBuilder.loadTexts: wtWebioEA2x2OutputEntry.setStatus('mandatory')
wtWebioEA2x2OutputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2OutputNo.setStatus('mandatory')
wtWebioEA2x2OutputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 5, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA2x2OutputState-OFF", 0), ("wtWebioEA2x2OutputState-ON", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2OutputState.setStatus('mandatory')
wtWebioEA2x2OutputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2OutputValue.setStatus('mandatory')
wtWebioEA2x2SetOutput = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2SetOutput.setStatus('mandatory')
wtWebioEA2x2SessCntrlPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2SessCntrlPassword.setStatus('mandatory')
wtWebioEA2x2SessCntrlConfigMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA2x2SessCntrl-NoSession", 0), ("wtWebioEA2x2SessCntrl-Session", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2SessCntrlConfigMode.setStatus('mandatory')
wtWebioEA2x2SessCntrlLogout = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 2, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2SessCntrlLogout.setStatus('mandatory')
wtWebioEA2x2SessCntrlAdminPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 2, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2SessCntrlAdminPassword.setStatus('mandatory')
wtWebioEA2x2SessCntrlConfigPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 2, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2SessCntrlConfigPassword.setStatus('mandatory')
wtWebioEA2x2DeviceName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2DeviceName.setStatus('mandatory')
wtWebioEA2x2DeviceText = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2DeviceText.setStatus('mandatory')
wtWebioEA2x2DeviceLocation = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2DeviceLocation.setStatus('mandatory')
wtWebioEA2x2DeviceContact = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2DeviceContact.setStatus('mandatory')
wtWebioEA2x2TzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2TzOffsetHrs.setStatus('mandatory')
wtWebioEA2x2TzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2TzOffsetMin.setStatus('mandatory')
wtWebioEA2x2TzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2TzEnable.setStatus('mandatory')
wtWebioEA2x2StTzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2StTzOffsetHrs.setStatus('mandatory')
wtWebioEA2x2StTzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2StTzOffsetMin.setStatus('mandatory')
wtWebioEA2x2StTzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2StTzEnable.setStatus('mandatory')
wtWebioEA2x2StTzStartMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA2x2StartMonth-January", 1), ("wtWebioEA2x2StartMonth-February", 2), ("wtWebioEA2x2StartMonth-March", 3), ("wtWebioEA2x2StartMonth-April", 4), ("wtWebioEA2x2StartMonth-May", 5), ("wtWebioEA2x2StartMonth-June", 6), ("wtWebioEA2x2StartMonth-July", 7), ("wtWebioEA2x2StartMonth-August", 8), ("wtWebioEA2x2StartMonth-September", 9), ("wtWebioEA2x2StartMonth-October", 10), ("wtWebioEA2x2StartMonth-November", 11), ("wtWebioEA2x2StartMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2StTzStartMonth.setStatus('mandatory')
wtWebioEA2x2StTzStartMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtWebioEA2x2StartMode-first", 1), ("wtWebioEA2x2StartMode-second", 2), ("wtWebioEA2x2StartMode-third", 3), ("wtWebioEA2x2StartMode-fourth", 4), ("wtWebioEA2x2StartMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2StTzStartMode.setStatus('mandatory')
wtWebioEA2x2StTzStartWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtWebioEA2x2StartWday-Sunday", 1), ("wtWebioEA2x2StartWday-Monday", 2), ("wtWebioEA2x2StartWday-Tuesday", 3), ("wtWebioEA2x2StartWday-Thursday", 4), ("wtWebioEA2x2StartWday-Wednesday", 5), ("wtWebioEA2x2StartWday-Friday", 6), ("wtWebioEA2x2StartWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2StTzStartWday.setStatus('mandatory')
wtWebioEA2x2StTzStartHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2StTzStartHrs.setStatus('mandatory')
wtWebioEA2x2StTzStartMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2StTzStartMin.setStatus('mandatory')
wtWebioEA2x2StTzStopMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA2x2StopMonth-January", 1), ("wtWebioEA2x2StopMonth-February", 2), ("wtWebioEA2x2StopMonth-March", 3), ("wtWebioEA2x2StopMonth-April", 4), ("wtWebioEA2x2StopMonth-May", 5), ("wtWebioEA2x2StopMonth-June", 6), ("wtWebioEA2x2StopMonth-July", 7), ("wtWebioEA2x2StopMonth-August", 8), ("wtWebioEA2x2StopMonth-September", 9), ("wtWebioEA2x2StopMonth-October", 10), ("wtWebioEA2x2StopMonth-November", 11), ("wtWebioEA2x2StopMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2StTzStopMonth.setStatus('mandatory')
wtWebioEA2x2StTzStopMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtWebioEA2x2StopMode-first", 1), ("wtWebioEA2x2StopMode-second", 2), ("wtWebioEA2x2StopMode-third", 3), ("wtWebioEA2x2StopMode-fourth", 4), ("wtWebioEA2x2StopMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2StTzStopMode.setStatus('mandatory')
wtWebioEA2x2StTzStopWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtWebioEA2x2StopWday-Sunday", 1), ("wtWebioEA2x2StopWday-Monday", 2), ("wtWebioEA2x2StopWday-Tuesday", 3), ("wtWebioEA2x2StopWday-Thursday", 4), ("wtWebioEA2x2StopWday-Wednesday", 5), ("wtWebioEA2x2StopWday-Friday", 6), ("wtWebioEA2x2StopWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2StTzStopWday.setStatus('mandatory')
wtWebioEA2x2StTzStopHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 15), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2StTzStopHrs.setStatus('mandatory')
wtWebioEA2x2StTzStopMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 16), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2StTzStopMin.setStatus('mandatory')
wtWebioEA2x2TimeServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2TimeServer1.setStatus('mandatory')
wtWebioEA2x2TimeServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 2, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2TimeServer2.setStatus('mandatory')
wtWebioEA2x2TsEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 2, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2TsEnable.setStatus('mandatory')
wtWebioEA2x2TsSyncTime = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 2, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2TsSyncTime.setStatus('mandatory')
wtWebioEA2x2ClockHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 3, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 23))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ClockHrs.setStatus('mandatory')
wtWebioEA2x2ClockMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 3, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 59))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ClockMin.setStatus('mandatory')
wtWebioEA2x2ClockDay = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 3, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ClockDay.setStatus('mandatory')
wtWebioEA2x2ClockMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 3, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA2x2ClockMonth-January", 1), ("wtWebioEA2x2ClockMonth-February", 2), ("wtWebioEA2x2ClockMonth-March", 3), ("wtWebioEA2x2ClockMonth-April", 4), ("wtWebioEA2x2ClockMonth-May", 5), ("wtWebioEA2x2ClockMonth-June", 6), ("wtWebioEA2x2ClockMonth-July", 7), ("wtWebioEA2x2ClockMonth-August", 8), ("wtWebioEA2x2ClockMonth-September", 9), ("wtWebioEA2x2ClockMonth-October", 10), ("wtWebioEA2x2ClockMonth-November", 11), ("wtWebioEA2x2ClockMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ClockMonth.setStatus('mandatory')
wtWebioEA2x2ClockYear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 3, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ClockYear.setStatus('mandatory')
wtWebioEA2x2IpAddress = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2IpAddress.setStatus('mandatory')
wtWebioEA2x2SubnetMask = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2SubnetMask.setStatus('mandatory')
wtWebioEA2x2Gateway = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2Gateway.setStatus('mandatory')
wtWebioEA2x2DnsServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2DnsServer1.setStatus('mandatory')
wtWebioEA2x2DnsServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2DnsServer2.setStatus('mandatory')
wtWebioEA2x2AddConfig = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 1, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AddConfig.setStatus('mandatory')
wtWebioEA2x2Startup = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2Startup.setStatus('mandatory')
wtWebioEA2x2GetHeaderEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 2, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2GetHeaderEnable.setStatus('mandatory')
wtWebioEA2x2HttpInputTrigger = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 2, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2HttpInputTrigger.setStatus('mandatory')
wtWebioEA2x2HttpPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 2, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2HttpPort.setStatus('mandatory')
wtWebioEA2x2MailAdName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2MailAdName.setStatus('mandatory')
wtWebioEA2x2MailReply = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2MailReply.setStatus('mandatory')
wtWebioEA2x2MailServer = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2MailServer.setStatus('mandatory')
wtWebioEA2x2MailEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2MailEnable.setStatus('mandatory')
wtWebioEA2x2MailAuthentication = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 3, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2MailAuthentication.setStatus('mandatory')
wtWebioEA2x2MailAuthUser = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 3, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2MailAuthUser.setStatus('mandatory')
wtWebioEA2x2MailAuthPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 3, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2MailAuthPassword.setStatus('mandatory')
wtWebioEA2x2MailPop3Server = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 3, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2MailPop3Server.setStatus('mandatory')
wtWebioEA2x2SnmpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 4, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2SnmpEnable.setStatus('mandatory')
wtWebioEA2x2SnmpCommunityStringRead = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 4, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2SnmpCommunityStringRead.setStatus('mandatory')
wtWebioEA2x2SnmpCommunityStringReadWrite = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 4, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2SnmpCommunityStringReadWrite.setStatus('mandatory')
wtWebioEA2x2SnmpSystemTrapManagerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 4, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2SnmpSystemTrapManagerIP.setStatus('mandatory')
wtWebioEA2x2SnmpSystemTrapEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 4, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2SnmpSystemTrapEnable.setStatus('mandatory')
wtWebioEA2x2UdpAdminPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 5, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2UdpAdminPort.setStatus('mandatory')
wtWebioEA2x2UdpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 5, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2UdpEnable.setStatus('mandatory')
wtWebioEA2x2UdpRemotePort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 5, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2UdpRemotePort.setStatus('mandatory')
wtWebioEA2x2BinaryModeCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryModeCount.setStatus('mandatory')
wtWebioEA2x2BinaryIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 2), )
if mibBuilder.loadTexts: wtWebioEA2x2BinaryIfTable.setStatus('mandatory')
wtWebioEA2x2BinaryIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2BinaryModeNo"))
if mibBuilder.loadTexts: wtWebioEA2x2BinaryIfEntry.setStatus('mandatory')
wtWebioEA2x2BinaryModeNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryModeNo.setStatus('mandatory')
wtWebioEA2x2BinaryTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3), )
if mibBuilder.loadTexts: wtWebioEA2x2BinaryTable.setStatus('mandatory')
wtWebioEA2x2BinaryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2BinaryModeNo"))
if mibBuilder.loadTexts: wtWebioEA2x2BinaryEntry.setStatus('mandatory')
wtWebioEA2x2BinaryOperationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryOperationMode.setStatus('mandatory')
wtWebioEA2x2BinaryTcpServerLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryTcpServerLocalPort.setStatus('mandatory')
wtWebioEA2x2BinaryTcpServerInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryTcpServerInputTrigger.setStatus('mandatory')
wtWebioEA2x2BinaryTcpServerApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryTcpServerApplicationMode.setStatus('mandatory')
wtWebioEA2x2BinaryTcpClientLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryTcpClientLocalPort.setStatus('mandatory')
wtWebioEA2x2BinaryTcpClientServerPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryTcpClientServerPort.setStatus('mandatory')
wtWebioEA2x2BinaryTcpClientServerIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryTcpClientServerIpAddr.setStatus('mandatory')
wtWebioEA2x2BinaryTcpClientServerPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryTcpClientServerPassword.setStatus('mandatory')
wtWebioEA2x2BinaryTcpClientInactivity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryTcpClientInactivity.setStatus('mandatory')
wtWebioEA2x2BinaryTcpClientInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryTcpClientInputTrigger.setStatus('mandatory')
wtWebioEA2x2BinaryTcpClientInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryTcpClientInterval.setStatus('mandatory')
wtWebioEA2x2BinaryTcpClientApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 12), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryTcpClientApplicationMode.setStatus('mandatory')
wtWebioEA2x2BinaryUdpPeerLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryUdpPeerLocalPort.setStatus('mandatory')
wtWebioEA2x2BinaryUdpPeerRemotePort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryUdpPeerRemotePort.setStatus('mandatory')
wtWebioEA2x2BinaryUdpPeerRemoteIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 15), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryUdpPeerRemoteIpAddr.setStatus('mandatory')
wtWebioEA2x2BinaryUdpPeerInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 16), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryUdpPeerInputTrigger.setStatus('mandatory')
wtWebioEA2x2BinaryUdpPeerInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryUdpPeerInterval.setStatus('mandatory')
wtWebioEA2x2BinaryUdpPeerApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 18), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryUdpPeerApplicationMode.setStatus('mandatory')
wtWebioEA2x2BinaryConnectedPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryConnectedPort.setStatus('mandatory')
wtWebioEA2x2BinaryConnectedIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 20), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryConnectedIpAddr.setStatus('mandatory')
wtWebioEA2x2BinaryTcpServerClientHttpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryTcpServerClientHttpPort.setStatus('mandatory')
wtWebioEA2x2BinaryTcpClientServerHttpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2BinaryTcpClientServerHttpPort.setStatus('mandatory')
wtWebioEA2x2SyslogServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 7, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2SyslogServerIP.setStatus('mandatory')
wtWebioEA2x2SyslogServerPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 7, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2SyslogServerPort.setStatus('mandatory')
wtWebioEA2x2SyslogSystemMessagesEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 7, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2SyslogSystemMessagesEnable.setStatus('mandatory')
wtWebioEA2x2SyslogEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 7, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2SyslogEnable.setStatus('mandatory')
wtWebioEA2x2FTPServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 8, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2FTPServerIP.setStatus('mandatory')
wtWebioEA2x2FTPServerControlPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 8, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2FTPServerControlPort.setStatus('mandatory')
wtWebioEA2x2FTPUserName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 8, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2FTPUserName.setStatus('mandatory')
wtWebioEA2x2FTPPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 8, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2FTPPassword.setStatus('mandatory')
wtWebioEA2x2FTPAccount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 8, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2FTPAccount.setStatus('mandatory')
wtWebioEA2x2FTPOption = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 8, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2FTPOption.setStatus('mandatory')
wtWebioEA2x2FTPEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 8, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2FTPEnable.setStatus('mandatory')
wtWebioEA2x2OutputModeTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 4, 1), )
if mibBuilder.loadTexts: wtWebioEA2x2OutputModeTable.setStatus('mandatory')
wtWebioEA2x2OutputModeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 4, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2OutputNo"))
if mibBuilder.loadTexts: wtWebioEA2x2OutputModeEntry.setStatus('mandatory')
wtWebioEA2x2OutputModeBit = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 4, 1, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2OutputModeBit.setStatus('mandatory')
wtWebioEA2x2SafetyTimeout = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 4, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2SafetyTimeout.setStatus('mandatory')
wtWebioEA2x2LoadControlEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 4, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2LoadControlEnable.setStatus('mandatory')
wtWebioEA2x2AlarmCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmCount.setStatus('mandatory')
wtWebioEA2x2AlarmIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 2), )
if mibBuilder.loadTexts: wtWebioEA2x2AlarmIfTable.setStatus('mandatory')
wtWebioEA2x2AlarmIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2AlarmNo"))
if mibBuilder.loadTexts: wtWebioEA2x2AlarmIfEntry.setStatus('mandatory')
wtWebioEA2x2AlarmNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmNo.setStatus('mandatory')
wtWebioEA2x2AlarmTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3), )
if mibBuilder.loadTexts: wtWebioEA2x2AlarmTable.setStatus('mandatory')
wtWebioEA2x2AlarmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2AlarmNo"))
if mibBuilder.loadTexts: wtWebioEA2x2AlarmEntry.setStatus('mandatory')
wtWebioEA2x2AlarmInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(12, 12)).setFixedLength(12)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmInputTrigger.setStatus('mandatory')
wtWebioEA2x2AlarmOutputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(12, 12)).setFixedLength(12)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmOutputTrigger.setStatus('mandatory')
wtWebioEA2x2AlarmSystemTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmSystemTrigger.setStatus('mandatory')
wtWebioEA2x2AlarmMaxCounterValue = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmMaxCounterValue.setStatus('mandatory')
wtWebioEA2x2AlarmInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmInterval.setStatus('mandatory')
wtWebioEA2x2AlarmEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmEnable.setStatus('mandatory')
wtWebioEA2x2AlarmMailAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmMailAddr.setStatus('mandatory')
wtWebioEA2x2AlarmMailSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmMailSubject.setStatus('mandatory')
wtWebioEA2x2AlarmMailText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 9), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmMailText.setStatus('mandatory')
wtWebioEA2x2AlarmSnmpManagerIP = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 10), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmSnmpManagerIP.setStatus('mandatory')
wtWebioEA2x2AlarmSnmpTrapText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 11), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmSnmpTrapText.setStatus('mandatory')
wtWebioEA2x2AlarmUdpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 12), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmUdpIpAddr.setStatus('mandatory')
wtWebioEA2x2AlarmUdpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmUdpPort.setStatus('mandatory')
wtWebioEA2x2AlarmUdpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 14), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmUdpText.setStatus('mandatory')
wtWebioEA2x2AlarmTcpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 15), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmTcpIpAddr.setStatus('mandatory')
wtWebioEA2x2AlarmTcpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmTcpPort.setStatus('mandatory')
wtWebioEA2x2AlarmTcpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 17), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmTcpText.setStatus('mandatory')
wtWebioEA2x2AlarmSyslogIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 18), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmSyslogIpAddr.setStatus('mandatory')
wtWebioEA2x2AlarmSyslogPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmSyslogPort.setStatus('mandatory')
wtWebioEA2x2AlarmSyslogText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 20), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmSyslogText.setStatus('mandatory')
wtWebioEA2x2AlarmFtpDataPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 21), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmFtpDataPort.setStatus('mandatory')
wtWebioEA2x2AlarmFtpFileName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 22), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmFtpFileName.setStatus('mandatory')
wtWebioEA2x2AlarmFtpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 23), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmFtpText.setStatus('mandatory')
wtWebioEA2x2AlarmFtpOption = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 24), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmFtpOption.setStatus('mandatory')
wtWebioEA2x2AlarmTimerCron = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 25), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmTimerCron.setStatus('mandatory')
wtWebioEA2x2AlarmMailReleaseSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 26), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmMailReleaseSubject.setStatus('mandatory')
wtWebioEA2x2AlarmMailReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 27), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmMailReleaseText.setStatus('mandatory')
wtWebioEA2x2AlarmSnmpTrapReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 28), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmSnmpTrapReleaseText.setStatus('mandatory')
wtWebioEA2x2AlarmUdpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 29), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmUdpReleaseText.setStatus('mandatory')
wtWebioEA2x2AlarmTcpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 30), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmTcpReleaseText.setStatus('mandatory')
wtWebioEA2x2AlarmSyslogReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 31), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmSyslogReleaseText.setStatus('mandatory')
wtWebioEA2x2AlarmFtpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 32), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2AlarmFtpReleaseText.setStatus('mandatory')
wtWebioEA2x2LoadControlView = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2LoadControlView.setStatus('mandatory')
wtWebioEA2x2LCShutDownView = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2LCShutDownView.setStatus('mandatory')
wtWebioEA2x2InputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 1), )
if mibBuilder.loadTexts: wtWebioEA2x2InputPortTable.setStatus('mandatory')
wtWebioEA2x2InputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2InputNo"))
if mibBuilder.loadTexts: wtWebioEA2x2InputPortEntry.setStatus('mandatory')
wtWebioEA2x2PortInputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2PortInputName.setStatus('mandatory')
wtWebioEA2x2PortInputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2PortInputText.setStatus('mandatory')
wtWebioEA2x2PortInputMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2PortInputMode.setStatus('mandatory')
wtWebioEA2x2PortInputFilter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2PortInputFilter.setStatus('mandatory')
wtWebioEA2x2PortInputBicountPulsePolarity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2PortInputBicountPulsePolarity.setStatus('mandatory')
wtWebioEA2x2PortInputBicountInactivTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 1, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2PortInputBicountInactivTimeout.setStatus('mandatory')
wtWebioEA2x2OutputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2), )
if mibBuilder.loadTexts: wtWebioEA2x2OutputPortTable.setStatus('mandatory')
wtWebioEA2x2OutputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2OutputNo"))
if mibBuilder.loadTexts: wtWebioEA2x2OutputPortEntry.setStatus('mandatory')
wtWebioEA2x2PortOutputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2PortOutputName.setStatus('mandatory')
wtWebioEA2x2PortOutputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2PortOutputText.setStatus('mandatory')
wtWebioEA2x2PortOutputGroupMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2PortOutputGroupMode.setStatus('mandatory')
wtWebioEA2x2PortOutputSafetyState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2PortOutputSafetyState.setStatus('mandatory')
wtWebioEA2x2PortLogicInputMask = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2PortLogicInputMask.setStatus('mandatory')
wtWebioEA2x2PortLogicInputInverter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2PortLogicInputInverter.setStatus('mandatory')
wtWebioEA2x2PortLogicFunction = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2PortLogicFunction.setStatus('mandatory')
wtWebioEA2x2PortLogicOutputInverter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2, 1, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2PortLogicOutputInverter.setStatus('mandatory')
wtWebioEA2x2PortPulseDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2PortPulseDuration.setStatus('mandatory')
wtWebioEA2x2PortPulsePolarity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2PortPulsePolarity.setStatus('mandatory')
wtWebioEA2x2MfName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2MfName.setStatus('mandatory')
wtWebioEA2x2MfAddr = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2MfAddr.setStatus('mandatory')
wtWebioEA2x2MfHotline = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2MfHotline.setStatus('mandatory')
wtWebioEA2x2MfInternet = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2MfInternet.setStatus('mandatory')
wtWebioEA2x2MfDeviceTyp = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 3, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2MfDeviceTyp.setStatus('mandatory')
wtWebioEA2x2DiagErrorCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2DiagErrorCount.setStatus('mandatory')
wtWebioEA2x2DiagBinaryError = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 4, 2), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2DiagBinaryError.setStatus('mandatory')
wtWebioEA2x2DiagErrorIndex = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 4, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2DiagErrorIndex.setStatus('mandatory')
wtWebioEA2x2DiagErrorMessage = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 4, 4), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2DiagErrorMessage.setStatus('mandatory')
wtWebioEA2x2DiagErrorClear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 4, 5), Integer32()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: wtWebioEA2x2DiagErrorClear.setStatus('mandatory')
wtWebioEA2x2Alert1 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,41)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapText"))
wtWebioEA2x2Alert2 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,42)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapText"))
wtWebioEA2x2Alert3 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,43)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapText"))
wtWebioEA2x2Alert4 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,44)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapText"))
wtWebioEA2x2Alert5 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,45)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapText"))
wtWebioEA2x2Alert6 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,46)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapText"))
wtWebioEA2x2Alert7 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,47)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapText"))
wtWebioEA2x2Alert8 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,48)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapText"))
wtWebioEA2x2Alert9 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,49)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapText"))
wtWebioEA2x2Alert10 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,50)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapText"))
wtWebioEA2x2Alert11 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,51)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapText"))
wtWebioEA2x2Alert12 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,52)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapText"))
wtWebioEA2x2Alert13 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,71)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapReleaseText"))
wtWebioEA2x2Alert14 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,72)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapReleaseText"))
wtWebioEA2x2Alert15 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,73)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapReleaseText"))
wtWebioEA2x2Alert16 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,74)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapReleaseText"))
wtWebioEA2x2Alert17 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,75)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapReleaseText"))
wtWebioEA2x2Alert18 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,76)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapReleaseText"))
wtWebioEA2x2Alert19 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,77)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapReleaseText"))
wtWebioEA2x2Alert20 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,78)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapReleaseText"))
wtWebioEA2x2Alert21 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,79)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapReleaseText"))
wtWebioEA2x2Alert22 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,80)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapReleaseText"))
wtWebioEA2x2Alert23 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,81)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapReleaseText"))
wtWebioEA2x2Alert24 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,82)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2AlarmSnmpTrapReleaseText"))
wtWebioEA2x2AlertDiag = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0,110)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2DiagErrorIndex"), ("Webio-Digital-MIB-US", "wtWebioEA2x2DiagErrorMessage"))
wtWebioEA12x12Inputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x12Inputs.setStatus('mandatory')
wtWebioEA12x12Outputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x12Outputs.setStatus('mandatory')
wtWebioEA12x12InputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 3), )
if mibBuilder.loadTexts: wtWebioEA12x12InputTable.setStatus('mandatory')
wtWebioEA12x12InputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x12InputNo"))
if mibBuilder.loadTexts: wtWebioEA12x12InputEntry.setStatus('mandatory')
wtWebioEA12x12InputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x12InputNo.setStatus('mandatory')
wtWebioEA12x12InputCounter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x12InputCounter.setStatus('mandatory')
wtWebioEA12x12InputCounterClear = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x12InputCounterClear.setStatus('mandatory')
wtWebioEA12x12InputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA12x12InputState-OFF", 0), ("wtWebioEA12x12InputState-ON", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x12InputState.setStatus('mandatory')
wtWebioEA12x12InputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x12InputValue.setStatus('mandatory')
wtWebioEA12x12OutputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 5), )
if mibBuilder.loadTexts: wtWebioEA12x12OutputTable.setStatus('mandatory')
wtWebioEA12x12OutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 5, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x12OutputNo"))
if mibBuilder.loadTexts: wtWebioEA12x12OutputEntry.setStatus('mandatory')
wtWebioEA12x12OutputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x12OutputNo.setStatus('mandatory')
wtWebioEA12x12OutputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 5, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA12x12OutputState-OFF", 0), ("wtWebioEA12x12OutputState-ON", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12OutputState.setStatus('mandatory')
wtWebioEA12x12OutputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12OutputValue.setStatus('mandatory')
wtWebioEA12x12SetOutput = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12SetOutput.setStatus('mandatory')
wtWebioEA12x12SessCntrlPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12SessCntrlPassword.setStatus('mandatory')
wtWebioEA12x12SessCntrlConfigMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA12x12SessCntrl-NoSession", 0), ("wtWebioEA12x12SessCntrl-Session", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x12SessCntrlConfigMode.setStatus('mandatory')
wtWebioEA12x12SessCntrlLogout = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 2, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12SessCntrlLogout.setStatus('mandatory')
wtWebioEA12x12SessCntrlAdminPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 2, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12SessCntrlAdminPassword.setStatus('mandatory')
wtWebioEA12x12SessCntrlConfigPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 2, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12SessCntrlConfigPassword.setStatus('mandatory')
wtWebioEA12x12DeviceName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12DeviceName.setStatus('mandatory')
wtWebioEA12x12DeviceText = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12DeviceText.setStatus('mandatory')
wtWebioEA12x12DeviceLocation = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12DeviceLocation.setStatus('mandatory')
wtWebioEA12x12DeviceContact = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12DeviceContact.setStatus('mandatory')
wtWebioEA12x12TzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12TzOffsetHrs.setStatus('mandatory')
wtWebioEA12x12TzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12TzOffsetMin.setStatus('mandatory')
wtWebioEA12x12TzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12TzEnable.setStatus('mandatory')
wtWebioEA12x12StTzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12StTzOffsetHrs.setStatus('mandatory')
wtWebioEA12x12StTzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12StTzOffsetMin.setStatus('mandatory')
wtWebioEA12x12StTzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12StTzEnable.setStatus('mandatory')
wtWebioEA12x12StTzStartMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA12x12StartMonth-January", 1), ("wtWebioEA12x12StartMonth-February", 2), ("wtWebioEA12x12StartMonth-March", 3), ("wtWebioEA12x12StartMonth-April", 4), ("wtWebioEA12x12StartMonth-May", 5), ("wtWebioEA12x12StartMonth-June", 6), ("wtWebioEA12x12StartMonth-July", 7), ("wtWebioEA12x12StartMonth-August", 8), ("wtWebioEA12x12StartMonth-September", 9), ("wtWebioEA12x12StartMonth-October", 10), ("wtWebioEA12x12StartMonth-November", 11), ("wtWebioEA12x12StartMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12StTzStartMonth.setStatus('mandatory')
wtWebioEA12x12StTzStartMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtWebioEA12x12StartMode-first", 1), ("wtWebioEA12x12StartMode-second", 2), ("wtWebioEA12x12StartMode-third", 3), ("wtWebioEA12x12StartMode-fourth", 4), ("wtWebioEA12x12StartMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12StTzStartMode.setStatus('mandatory')
wtWebioEA12x12StTzStartWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtWebioEA12x12StartWday-Sunday", 1), ("wtWebioEA12x12StartWday-Monday", 2), ("wtWebioEA12x12StartWday-Tuesday", 3), ("wtWebioEA12x12StartWday-Thursday", 4), ("wtWebioEA12x12StartWday-Wednesday", 5), ("wtWebioEA12x12StartWday-Friday", 6), ("wtWebioEA12x12StartWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12StTzStartWday.setStatus('mandatory')
wtWebioEA12x12StTzStartHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12StTzStartHrs.setStatus('mandatory')
wtWebioEA12x12StTzStartMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12StTzStartMin.setStatus('mandatory')
wtWebioEA12x12StTzStopMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA12x12StopMonth-January", 1), ("wtWebioEA12x12StopMonth-February", 2), ("wtWebioEA12x12StopMonth-March", 3), ("wtWebioEA12x12StopMonth-April", 4), ("wtWebioEA12x12StopMonth-May", 5), ("wtWebioEA12x12StopMonth-June", 6), ("wtWebioEA12x12StopMonth-July", 7), ("wtWebioEA12x12StopMonth-August", 8), ("wtWebioEA12x12StopMonth-September", 9), ("wtWebioEA12x12StopMonth-October", 10), ("wtWebioEA12x12StopMonth-November", 11), ("wtWebioEA12x12StopMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12StTzStopMonth.setStatus('mandatory')
wtWebioEA12x12StTzStopMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtWebioEA12x12StopMode-first", 1), ("wtWebioEA12x12StopMode-second", 2), ("wtWebioEA12x12StopMode-third", 3), ("wtWebioEA12x12StopMode-fourth", 4), ("wtWebioEA12x12StopMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12StTzStopMode.setStatus('mandatory')
wtWebioEA12x12StTzStopWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtWebioEA12x12StopWday-Sunday", 1), ("wtWebioEA12x12StopWday-Monday", 2), ("wtWebioEA12x12StopWday-Tuesday", 3), ("wtWebioEA12x12StopWday-Thursday", 4), ("wtWebioEA12x12StopWday-Wednesday", 5), ("wtWebioEA12x12StopWday-Friday", 6), ("wtWebioEA12x12StopWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12StTzStopWday.setStatus('mandatory')
wtWebioEA12x12StTzStopHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 15), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12StTzStopHrs.setStatus('mandatory')
wtWebioEA12x12StTzStopMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 16), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12StTzStopMin.setStatus('mandatory')
wtWebioEA12x12TimeServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12TimeServer1.setStatus('mandatory')
wtWebioEA12x12TimeServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 2, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12TimeServer2.setStatus('mandatory')
wtWebioEA12x12TsEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 2, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12TsEnable.setStatus('mandatory')
wtWebioEA12x12TsSyncTime = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 2, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12TsSyncTime.setStatus('mandatory')
wtWebioEA12x12ClockHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 3, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 23))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12ClockHrs.setStatus('mandatory')
wtWebioEA12x12ClockMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 3, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 59))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12ClockMin.setStatus('mandatory')
wtWebioEA12x12ClockDay = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 3, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12ClockDay.setStatus('mandatory')
wtWebioEA12x12ClockMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 3, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA12x12ClockMonth-January", 1), ("wtWebioEA12x12ClockMonth-February", 2), ("wtWebioEA12x12ClockMonth-March", 3), ("wtWebioEA12x12ClockMonth-April", 4), ("wtWebioEA12x12ClockMonth-May", 5), ("wtWebioEA12x12ClockMonth-June", 6), ("wtWebioEA12x12ClockMonth-July", 7), ("wtWebioEA12x12ClockMonth-August", 8), ("wtWebioEA12x12ClockMonth-September", 9), ("wtWebioEA12x12ClockMonth-October", 10), ("wtWebioEA12x12ClockMonth-November", 11), ("wtWebioEA12x12ClockMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12ClockMonth.setStatus('mandatory')
wtWebioEA12x12ClockYear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 3, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12ClockYear.setStatus('mandatory')
wtWebioEA12x12IpAddress = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12IpAddress.setStatus('mandatory')
wtWebioEA12x12SubnetMask = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12SubnetMask.setStatus('mandatory')
wtWebioEA12x12Gateway = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12Gateway.setStatus('mandatory')
wtWebioEA12x12DnsServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12DnsServer1.setStatus('mandatory')
wtWebioEA12x12DnsServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12DnsServer2.setStatus('mandatory')
wtWebioEA12x12AddConfig = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 1, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AddConfig.setStatus('mandatory')
wtWebioEA12x12Startup = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12Startup.setStatus('mandatory')
wtWebioEA12x12GetHeaderEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 2, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12GetHeaderEnable.setStatus('mandatory')
wtWebioEA12x12HttpInputTrigger = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 2, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12HttpInputTrigger.setStatus('mandatory')
wtWebioEA12x12HttpPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 2, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12HttpPort.setStatus('mandatory')
wtWebioEA12x12MailAdName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12MailAdName.setStatus('mandatory')
wtWebioEA12x12MailReply = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12MailReply.setStatus('mandatory')
wtWebioEA12x12MailServer = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12MailServer.setStatus('mandatory')
wtWebioEA12x12MailEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12MailEnable.setStatus('mandatory')
wtWebioEA12x12MailAuthentication = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 3, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12MailAuthentication.setStatus('mandatory')
wtWebioEA12x12MailAuthUser = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 3, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12MailAuthUser.setStatus('mandatory')
wtWebioEA12x12MailAuthPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 3, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12MailAuthPassword.setStatus('mandatory')
wtWebioEA12x12MailPop3Server = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 3, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12MailPop3Server.setStatus('mandatory')
wtWebioEA12x12SnmpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 4, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12SnmpEnable.setStatus('mandatory')
wtWebioEA12x12SnmpCommunityStringRead = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 4, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12SnmpCommunityStringRead.setStatus('mandatory')
wtWebioEA12x12SnmpCommunityStringReadWrite = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 4, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12SnmpCommunityStringReadWrite.setStatus('mandatory')
wtWebioEA12x12SnmpSystemTrapManagerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 4, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12SnmpSystemTrapManagerIP.setStatus('mandatory')
wtWebioEA12x12SnmpSystemTrapEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 4, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12SnmpSystemTrapEnable.setStatus('mandatory')
wtWebioEA12x12UdpAdminPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 5, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12UdpAdminPort.setStatus('mandatory')
wtWebioEA12x12UdpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 5, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12UdpEnable.setStatus('mandatory')
wtWebioEA12x12UdpRemotePort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 5, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12UdpRemotePort.setStatus('mandatory')
wtWebioEA12x12BinaryModeCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryModeCount.setStatus('mandatory')
wtWebioEA12x12BinaryIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 2), )
if mibBuilder.loadTexts: wtWebioEA12x12BinaryIfTable.setStatus('mandatory')
wtWebioEA12x12BinaryIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x12BinaryModeNo"))
if mibBuilder.loadTexts: wtWebioEA12x12BinaryIfEntry.setStatus('mandatory')
wtWebioEA12x12BinaryModeNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryModeNo.setStatus('mandatory')
wtWebioEA12x12BinaryTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3), )
if mibBuilder.loadTexts: wtWebioEA12x12BinaryTable.setStatus('mandatory')
wtWebioEA12x12BinaryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x12BinaryModeNo"))
if mibBuilder.loadTexts: wtWebioEA12x12BinaryEntry.setStatus('mandatory')
wtWebioEA12x12BinaryOperationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryOperationMode.setStatus('mandatory')
wtWebioEA12x12BinaryTcpServerLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryTcpServerLocalPort.setStatus('mandatory')
wtWebioEA12x12BinaryTcpServerInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryTcpServerInputTrigger.setStatus('mandatory')
wtWebioEA12x12BinaryTcpServerApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryTcpServerApplicationMode.setStatus('mandatory')
wtWebioEA12x12BinaryTcpClientLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryTcpClientLocalPort.setStatus('mandatory')
wtWebioEA12x12BinaryTcpClientServerPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryTcpClientServerPort.setStatus('mandatory')
wtWebioEA12x12BinaryTcpClientServerIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryTcpClientServerIpAddr.setStatus('mandatory')
wtWebioEA12x12BinaryTcpClientServerPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryTcpClientServerPassword.setStatus('mandatory')
wtWebioEA12x12BinaryTcpClientInactivity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryTcpClientInactivity.setStatus('mandatory')
wtWebioEA12x12BinaryTcpClientInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryTcpClientInputTrigger.setStatus('mandatory')
wtWebioEA12x12BinaryTcpClientInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryTcpClientInterval.setStatus('mandatory')
wtWebioEA12x12BinaryTcpClientApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 12), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryTcpClientApplicationMode.setStatus('mandatory')
wtWebioEA12x12BinaryUdpPeerLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryUdpPeerLocalPort.setStatus('mandatory')
wtWebioEA12x12BinaryUdpPeerRemotePort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryUdpPeerRemotePort.setStatus('mandatory')
wtWebioEA12x12BinaryUdpPeerRemoteIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 15), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryUdpPeerRemoteIpAddr.setStatus('mandatory')
wtWebioEA12x12BinaryUdpPeerInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 16), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryUdpPeerInputTrigger.setStatus('mandatory')
wtWebioEA12x12BinaryUdpPeerInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryUdpPeerInterval.setStatus('mandatory')
wtWebioEA12x12BinaryUdpPeerApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 18), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryUdpPeerApplicationMode.setStatus('mandatory')
wtWebioEA12x12BinaryConnectedPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryConnectedPort.setStatus('mandatory')
wtWebioEA12x12BinaryConnectedIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 20), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryConnectedIpAddr.setStatus('mandatory')
wtWebioEA12x12BinaryTcpServerClientHttpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryTcpServerClientHttpPort.setStatus('mandatory')
wtWebioEA12x12BinaryTcpClientServerHttpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12BinaryTcpClientServerHttpPort.setStatus('mandatory')
wtWebioEA12x12SyslogServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 7, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12SyslogServerIP.setStatus('mandatory')
wtWebioEA12x12SyslogServerPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 7, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12SyslogServerPort.setStatus('mandatory')
wtWebioEA12x12SyslogSystemMessagesEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 7, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12SyslogSystemMessagesEnable.setStatus('mandatory')
wtWebioEA12x12SyslogEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 7, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12SyslogEnable.setStatus('mandatory')
wtWebioEA12x12FTPServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 8, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12FTPServerIP.setStatus('mandatory')
wtWebioEA12x12FTPServerControlPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 8, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12FTPServerControlPort.setStatus('mandatory')
wtWebioEA12x12FTPUserName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 8, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12FTPUserName.setStatus('mandatory')
wtWebioEA12x12FTPPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 8, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12FTPPassword.setStatus('mandatory')
wtWebioEA12x12FTPAccount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 8, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12FTPAccount.setStatus('mandatory')
wtWebioEA12x12FTPOption = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 8, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12FTPOption.setStatus('mandatory')
wtWebioEA12x12FTPEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 8, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12FTPEnable.setStatus('mandatory')
wtWebioEA12x12OutputModeTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 4, 1), )
if mibBuilder.loadTexts: wtWebioEA12x12OutputModeTable.setStatus('mandatory')
wtWebioEA12x12OutputModeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 4, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x12OutputNo"))
if mibBuilder.loadTexts: wtWebioEA12x12OutputModeEntry.setStatus('mandatory')
wtWebioEA12x12OutputModeBit = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 4, 1, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12OutputModeBit.setStatus('mandatory')
wtWebioEA12x12SafetyTimeout = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 4, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12SafetyTimeout.setStatus('mandatory')
wtWebioEA12x12LoadControlEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 4, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12LoadControlEnable.setStatus('mandatory')
wtWebioEA12x12AlarmCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmCount.setStatus('mandatory')
wtWebioEA12x12AlarmIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 2), )
if mibBuilder.loadTexts: wtWebioEA12x12AlarmIfTable.setStatus('mandatory')
wtWebioEA12x12AlarmIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x12AlarmNo"))
if mibBuilder.loadTexts: wtWebioEA12x12AlarmIfEntry.setStatus('mandatory')
wtWebioEA12x12AlarmNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmNo.setStatus('mandatory')
wtWebioEA12x12AlarmTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3), )
if mibBuilder.loadTexts: wtWebioEA12x12AlarmTable.setStatus('mandatory')
wtWebioEA12x12AlarmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x12AlarmNo"))
if mibBuilder.loadTexts: wtWebioEA12x12AlarmEntry.setStatus('mandatory')
wtWebioEA12x12AlarmInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(12, 12)).setFixedLength(12)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmInputTrigger.setStatus('mandatory')
wtWebioEA12x12AlarmOutputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(12, 12)).setFixedLength(12)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmOutputTrigger.setStatus('mandatory')
wtWebioEA12x12AlarmSystemTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmSystemTrigger.setStatus('mandatory')
wtWebioEA12x12AlarmMaxCounterValue = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmMaxCounterValue.setStatus('mandatory')
wtWebioEA12x12AlarmInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmInterval.setStatus('mandatory')
wtWebioEA12x12AlarmEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmEnable.setStatus('mandatory')
wtWebioEA12x12AlarmMailAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmMailAddr.setStatus('mandatory')
wtWebioEA12x12AlarmMailSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmMailSubject.setStatus('mandatory')
wtWebioEA12x12AlarmMailText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 9), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmMailText.setStatus('mandatory')
wtWebioEA12x12AlarmSnmpManagerIP = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 10), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmSnmpManagerIP.setStatus('mandatory')
wtWebioEA12x12AlarmSnmpTrapText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 11), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmSnmpTrapText.setStatus('mandatory')
wtWebioEA12x12AlarmUdpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 12), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmUdpIpAddr.setStatus('mandatory')
wtWebioEA12x12AlarmUdpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmUdpPort.setStatus('mandatory')
wtWebioEA12x12AlarmUdpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 14), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmUdpText.setStatus('mandatory')
wtWebioEA12x12AlarmTcpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 15), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmTcpIpAddr.setStatus('mandatory')
wtWebioEA12x12AlarmTcpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmTcpPort.setStatus('mandatory')
wtWebioEA12x12AlarmTcpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 17), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmTcpText.setStatus('mandatory')
wtWebioEA12x12AlarmSyslogIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 18), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmSyslogIpAddr.setStatus('mandatory')
wtWebioEA12x12AlarmSyslogPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmSyslogPort.setStatus('mandatory')
wtWebioEA12x12AlarmSyslogText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 20), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmSyslogText.setStatus('mandatory')
wtWebioEA12x12AlarmFtpDataPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 21), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmFtpDataPort.setStatus('mandatory')
wtWebioEA12x12AlarmFtpFileName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 22), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmFtpFileName.setStatus('mandatory')
wtWebioEA12x12AlarmFtpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 23), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmFtpText.setStatus('mandatory')
wtWebioEA12x12AlarmFtpOption = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 24), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmFtpOption.setStatus('mandatory')
wtWebioEA12x12AlarmTimerCron = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 25), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmTimerCron.setStatus('mandatory')
wtWebioEA12x12AlarmMailReleaseSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 26), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmMailReleaseSubject.setStatus('mandatory')
wtWebioEA12x12AlarmMailReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 27), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmMailReleaseText.setStatus('mandatory')
wtWebioEA12x12AlarmSnmpTrapReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 28), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmSnmpTrapReleaseText.setStatus('mandatory')
wtWebioEA12x12AlarmUdpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 29), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmUdpReleaseText.setStatus('mandatory')
wtWebioEA12x12AlarmTcpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 30), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmTcpReleaseText.setStatus('mandatory')
wtWebioEA12x12AlarmSyslogReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 31), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmSyslogReleaseText.setStatus('mandatory')
wtWebioEA12x12AlarmFtpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 32), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12AlarmFtpReleaseText.setStatus('mandatory')
wtWebioEA12x12LoadControlView = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x12LoadControlView.setStatus('mandatory')
wtWebioEA12x12LCShutDownView = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12LCShutDownView.setStatus('mandatory')
wtWebioEA12x12InputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 1), )
if mibBuilder.loadTexts: wtWebioEA12x12InputPortTable.setStatus('mandatory')
wtWebioEA12x12InputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x12InputNo"))
if mibBuilder.loadTexts: wtWebioEA12x12InputPortEntry.setStatus('mandatory')
wtWebioEA12x12PortInputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12PortInputName.setStatus('mandatory')
wtWebioEA12x12PortInputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12PortInputText.setStatus('mandatory')
wtWebioEA12x12PortInputMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12PortInputMode.setStatus('mandatory')
wtWebioEA12x12PortInputFilter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12PortInputFilter.setStatus('mandatory')
wtWebioEA12x12PortInputBicountPulsePolarity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12PortInputBicountPulsePolarity.setStatus('mandatory')
wtWebioEA12x12PortInputBicountInactivTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 1, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12PortInputBicountInactivTimeout.setStatus('mandatory')
wtWebioEA12x12OutputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2), )
if mibBuilder.loadTexts: wtWebioEA12x12OutputPortTable.setStatus('mandatory')
wtWebioEA12x12OutputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x12OutputNo"))
if mibBuilder.loadTexts: wtWebioEA12x12OutputPortEntry.setStatus('mandatory')
wtWebioEA12x12PortOutputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12PortOutputName.setStatus('mandatory')
wtWebioEA12x12PortOutputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12PortOutputText.setStatus('mandatory')
wtWebioEA12x12PortOutputGroupMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12PortOutputGroupMode.setStatus('mandatory')
wtWebioEA12x12PortOutputSafetyState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12PortOutputSafetyState.setStatus('mandatory')
wtWebioEA12x12PortLogicInputMask = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12PortLogicInputMask.setStatus('mandatory')
wtWebioEA12x12PortLogicInputInverter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12PortLogicInputInverter.setStatus('mandatory')
wtWebioEA12x12PortLogicFunction = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12PortLogicFunction.setStatus('mandatory')
wtWebioEA12x12PortLogicOutputInverter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2, 1, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12PortLogicOutputInverter.setStatus('mandatory')
wtWebioEA12x12PortPulseDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12PortPulseDuration.setStatus('mandatory')
wtWebioEA12x12PortPulsePolarity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12PortPulsePolarity.setStatus('mandatory')
wtWebioEA12x12MfName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12MfName.setStatus('mandatory')
wtWebioEA12x12MfAddr = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12MfAddr.setStatus('mandatory')
wtWebioEA12x12MfHotline = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12MfHotline.setStatus('mandatory')
wtWebioEA12x12MfInternet = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12MfInternet.setStatus('mandatory')
wtWebioEA12x12MfDeviceTyp = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 3, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12MfDeviceTyp.setStatus('mandatory')
wtWebioEA12x12DiagErrorCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x12DiagErrorCount.setStatus('mandatory')
wtWebioEA12x12DiagBinaryError = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 4, 2), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x12DiagBinaryError.setStatus('mandatory')
wtWebioEA12x12DiagErrorIndex = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 4, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x12DiagErrorIndex.setStatus('mandatory')
wtWebioEA12x12DiagErrorMessage = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 4, 4), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x12DiagErrorMessage.setStatus('mandatory')
wtWebioEA12x12DiagErrorClear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 4, 5), Integer32()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: wtWebioEA12x12DiagErrorClear.setStatus('mandatory')
wtWebioEA12x12Alert1 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,41)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapText"))
wtWebioEA12x12Alert2 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,42)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapText"))
wtWebioEA12x12Alert3 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,43)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapText"))
wtWebioEA12x12Alert4 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,44)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapText"))
wtWebioEA12x12Alert5 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,45)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapText"))
wtWebioEA12x12Alert6 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,46)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapText"))
wtWebioEA12x12Alert7 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,47)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapText"))
wtWebioEA12x12Alert8 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,48)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapText"))
wtWebioEA12x12Alert9 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,49)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapText"))
wtWebioEA12x12Alert10 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,50)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapText"))
wtWebioEA12x12Alert11 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,51)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapText"))
wtWebioEA12x12Alert12 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,52)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapText"))
wtWebioEA12x12Alert13 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,71)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapReleaseText"))
wtWebioEA12x12Alert14 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,72)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapReleaseText"))
wtWebioEA12x12Alert15 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,73)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapReleaseText"))
wtWebioEA12x12Alert16 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,74)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapReleaseText"))
wtWebioEA12x12Alert17 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,75)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapReleaseText"))
wtWebioEA12x12Alert18 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,76)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapReleaseText"))
wtWebioEA12x12Alert19 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,77)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapReleaseText"))
wtWebioEA12x12Alert20 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,78)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapReleaseText"))
wtWebioEA12x12Alert21 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,79)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapReleaseText"))
wtWebioEA12x12Alert22 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,80)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapReleaseText"))
wtWebioEA12x12Alert23 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,81)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapReleaseText"))
wtWebioEA12x12Alert24 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,82)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12AlarmSnmpTrapReleaseText"))
wtWebioEA12x12AlertDiag = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0,110)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x12DiagErrorIndex"), ("Webio-Digital-MIB-US", "wtWebioEA12x12DiagErrorMessage"))
wtWebioEA24oemInputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 24))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA24oemInputs.setStatus('mandatory')
wtWebioEA24oemOutputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 24))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA24oemOutputs.setStatus('mandatory')
wtWebioEA24oemInputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 3), )
if mibBuilder.loadTexts: wtWebioEA24oemInputTable.setStatus('mandatory')
wtWebioEA24oemInputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA24oemInputNo"))
if mibBuilder.loadTexts: wtWebioEA24oemInputEntry.setStatus('mandatory')
wtWebioEA24oemInputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA24oemInputNo.setStatus('mandatory')
wtWebioEA24oemInputCounter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 3, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA24oemInputCounter.setStatus('mandatory')
wtWebioEA24oemInputCounterClear = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA24oemInputCounterClear.setStatus('mandatory')
wtWebioEA24oemInputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA24oemInputState-OFF", 0), ("wtWebioEA24oemInputState-ON", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA24oemInputState.setStatus('mandatory')
wtWebioEA24oemInputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA24oemInputValue.setStatus('mandatory')
wtWebioEA24oemOutputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 5), )
if mibBuilder.loadTexts: wtWebioEA24oemOutputTable.setStatus('mandatory')
wtWebioEA24oemOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 5, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA24oemOutputNo"))
if mibBuilder.loadTexts: wtWebioEA24oemOutputEntry.setStatus('mandatory')
wtWebioEA24oemOutputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 24))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA24oemOutputNo.setStatus('mandatory')
wtWebioEA24oemOutputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 5, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA24oemOutputState-OFF", 0), ("wtWebioEA24oemOutputState-ON", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemOutputState.setStatus('mandatory')
wtWebioEA24oemOutputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemOutputValue.setStatus('mandatory')
wtWebioEA24oemSetOutput = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemSetOutput.setStatus('mandatory')
wtWebioEA24oemSessCntrlPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemSessCntrlPassword.setStatus('mandatory')
wtWebioEA24oemSessCntrlConfigMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA24oemSessCntrl-NoSession", 0), ("wtWebioEA24oemSessCntrl-Session", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA24oemSessCntrlConfigMode.setStatus('mandatory')
wtWebioEA24oemSessCntrlLogout = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 2, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemSessCntrlLogout.setStatus('mandatory')
wtWebioEA24oemSessCntrlAdminPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 2, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemSessCntrlAdminPassword.setStatus('mandatory')
wtWebioEA24oemSessCntrlConfigPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 2, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemSessCntrlConfigPassword.setStatus('mandatory')
wtWebioEA24oemDeviceName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemDeviceName.setStatus('mandatory')
wtWebioEA24oemDeviceText = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemDeviceText.setStatus('mandatory')
wtWebioEA24oemDeviceLocation = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemDeviceLocation.setStatus('mandatory')
wtWebioEA24oemDeviceContact = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemDeviceContact.setStatus('mandatory')
wtWebioEA24oemTzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemTzOffsetHrs.setStatus('mandatory')
wtWebioEA24oemTzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemTzOffsetMin.setStatus('mandatory')
wtWebioEA24oemTzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemTzEnable.setStatus('mandatory')
wtWebioEA24oemStTzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemStTzOffsetHrs.setStatus('mandatory')
wtWebioEA24oemStTzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemStTzOffsetMin.setStatus('mandatory')
wtWebioEA24oemStTzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemStTzEnable.setStatus('mandatory')
wtWebioEA24oemStTzStartMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA24oemStartMonth-January", 1), ("wtWebioEA24oemStartMonth-February", 2), ("wtWebioEA24oemStartMonth-March", 3), ("wtWebioEA24oemStartMonth-April", 4), ("wtWebioEA24oemStartMonth-May", 5), ("wtWebioEA24oemStartMonth-June", 6), ("wtWebioEA24oemStartMonth-July", 7), ("wtWebioEA24oemStartMonth-August", 8), ("wtWebioEA24oemStartMonth-September", 9), ("wtWebioEA24oemStartMonth-October", 10), ("wtWebioEA24oemStartMonth-November", 11), ("wtWebioEA24oemStartMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemStTzStartMonth.setStatus('mandatory')
wtWebioEA24oemStTzStartMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtWebioEA24oemStartMode-first", 1), ("wtWebioEA24oemStartMode-second", 2), ("wtWebioEA24oemStartMode-third", 3), ("wtWebioEA24oemStartMode-fourth", 4), ("wtWebioEA24oemStartMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemStTzStartMode.setStatus('mandatory')
wtWebioEA24oemStTzStartWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtWebioEA24oemStartWday-Sunday", 1), ("wtWebioEA24oemStartWday-Monday", 2), ("wtWebioEA24oemStartWday-Tuesday", 3), ("wtWebioEA24oemStartWday-Thursday", 4), ("wtWebioEA24oemStartWday-Wednesday", 5), ("wtWebioEA24oemStartWday-Friday", 6), ("wtWebioEA24oemStartWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemStTzStartWday.setStatus('mandatory')
wtWebioEA24oemStTzStartHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemStTzStartHrs.setStatus('mandatory')
wtWebioEA24oemStTzStartMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemStTzStartMin.setStatus('mandatory')
wtWebioEA24oemStTzStopMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA24oemStopMonth-January", 1), ("wtWebioEA24oemStopMonth-February", 2), ("wtWebioEA24oemStopMonth-March", 3), ("wtWebioEA24oemStopMonth-April", 4), ("wtWebioEA24oemStopMonth-May", 5), ("wtWebioEA24oemStopMonth-June", 6), ("wtWebioEA24oemStopMonth-July", 7), ("wtWebioEA24oemStopMonth-August", 8), ("wtWebioEA24oemStopMonth-September", 9), ("wtWebioEA24oemStopMonth-October", 10), ("wtWebioEA24oemStopMonth-November", 11), ("wtWebioEA24oemStopMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemStTzStopMonth.setStatus('mandatory')
wtWebioEA24oemStTzStopMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtWebioEA24oemStopMode-first", 1), ("wtWebioEA24oemStopMode-second", 2), ("wtWebioEA24oemStopMode-third", 3), ("wtWebioEA24oemStopMode-fourth", 4), ("wtWebioEA24oemStopMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemStTzStopMode.setStatus('mandatory')
wtWebioEA24oemStTzStopWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtWebioEA24oemStopWday-Sunday", 1), ("wtWebioEA24oemStopWday-Monday", 2), ("wtWebioEA24oemStopWday-Tuesday", 3), ("wtWebioEA24oemStopWday-Thursday", 4), ("wtWebioEA24oemStopWday-Wednesday", 5), ("wtWebioEA24oemStopWday-Friday", 6), ("wtWebioEA24oemStopWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemStTzStopWday.setStatus('mandatory')
wtWebioEA24oemStTzStopHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 15), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemStTzStopHrs.setStatus('mandatory')
wtWebioEA24oemStTzStopMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 16), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemStTzStopMin.setStatus('mandatory')
wtWebioEA24oemTimeServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemTimeServer1.setStatus('mandatory')
wtWebioEA24oemTimeServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 2, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemTimeServer2.setStatus('mandatory')
wtWebioEA24oemTsEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 2, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemTsEnable.setStatus('mandatory')
wtWebioEA24oemTsSyncTime = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 2, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemTsSyncTime.setStatus('mandatory')
wtWebioEA24oemClockHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 3, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 23))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemClockHrs.setStatus('mandatory')
wtWebioEA24oemClockMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 3, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 59))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemClockMin.setStatus('mandatory')
wtWebioEA24oemClockDay = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 3, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemClockDay.setStatus('mandatory')
wtWebioEA24oemClockMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 3, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA24oemClockMonth-January", 1), ("wtWebioEA24oemClockMonth-February", 2), ("wtWebioEA24oemClockMonth-March", 3), ("wtWebioEA24oemClockMonth-April", 4), ("wtWebioEA24oemClockMonth-May", 5), ("wtWebioEA24oemClockMonth-June", 6), ("wtWebioEA24oemClockMonth-July", 7), ("wtWebioEA24oemClockMonth-August", 8), ("wtWebioEA24oemClockMonth-September", 9), ("wtWebioEA24oemClockMonth-October", 10), ("wtWebioEA24oemClockMonth-November", 11), ("wtWebioEA24oemClockMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemClockMonth.setStatus('mandatory')
wtWebioEA24oemClockYear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 3, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemClockYear.setStatus('mandatory')
wtWebioEA24oemIpAddress = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemIpAddress.setStatus('mandatory')
wtWebioEA24oemSubnetMask = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemSubnetMask.setStatus('mandatory')
wtWebioEA24oemGateway = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemGateway.setStatus('mandatory')
wtWebioEA24oemDnsServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemDnsServer1.setStatus('mandatory')
wtWebioEA24oemDnsServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemDnsServer2.setStatus('mandatory')
wtWebioEA24oemAddConfig = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 1, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAddConfig.setStatus('mandatory')
wtWebioEA24oemStartup = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemStartup.setStatus('mandatory')
wtWebioEA24oemGetHeaderEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 2, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemGetHeaderEnable.setStatus('mandatory')
wtWebioEA24oemHttpInputTrigger = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 2, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemHttpInputTrigger.setStatus('mandatory')
wtWebioEA24oemHttpPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 2, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemHttpPort.setStatus('mandatory')
wtWebioEA24oemMailAdName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemMailAdName.setStatus('mandatory')
wtWebioEA24oemMailReply = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemMailReply.setStatus('mandatory')
wtWebioEA24oemMailServer = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemMailServer.setStatus('mandatory')
wtWebioEA24oemMailEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemMailEnable.setStatus('mandatory')
wtWebioEA24oemMailAuthentication = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 3, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemMailAuthentication.setStatus('mandatory')
wtWebioEA24oemMailAuthUser = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 3, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemMailAuthUser.setStatus('mandatory')
wtWebioEA24oemMailAuthPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 3, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemMailAuthPassword.setStatus('mandatory')
wtWebioEA24oemMailPop3Server = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 3, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemMailPop3Server.setStatus('mandatory')
wtWebioEA24oemSnmpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 4, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemSnmpEnable.setStatus('mandatory')
wtWebioEA24oemSnmpCommunityStringRead = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 4, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemSnmpCommunityStringRead.setStatus('mandatory')
wtWebioEA24oemSnmpCommunityStringReadWrite = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 4, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemSnmpCommunityStringReadWrite.setStatus('mandatory')
wtWebioEA24oemSnmpSystemTrapManagerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 4, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemSnmpSystemTrapManagerIP.setStatus('mandatory')
wtWebioEA24oemSnmpSystemTrapEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 4, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemSnmpSystemTrapEnable.setStatus('mandatory')
wtWebioEA24oemUdpAdminPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 5, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemUdpAdminPort.setStatus('mandatory')
wtWebioEA24oemUdpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 5, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemUdpEnable.setStatus('mandatory')
wtWebioEA24oemUdpRemotePort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 5, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemUdpRemotePort.setStatus('mandatory')
wtWebioEA24oemBinaryModeCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryModeCount.setStatus('mandatory')
wtWebioEA24oemBinaryIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 2), )
if mibBuilder.loadTexts: wtWebioEA24oemBinaryIfTable.setStatus('mandatory')
wtWebioEA24oemBinaryIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA24oemBinaryModeNo"))
if mibBuilder.loadTexts: wtWebioEA24oemBinaryIfEntry.setStatus('mandatory')
wtWebioEA24oemBinaryModeNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryModeNo.setStatus('mandatory')
wtWebioEA24oemBinaryTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3), )
if mibBuilder.loadTexts: wtWebioEA24oemBinaryTable.setStatus('mandatory')
wtWebioEA24oemBinaryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA24oemBinaryModeNo"))
if mibBuilder.loadTexts: wtWebioEA24oemBinaryEntry.setStatus('mandatory')
wtWebioEA24oemBinaryOperationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryOperationMode.setStatus('mandatory')
wtWebioEA24oemBinaryTcpServerLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryTcpServerLocalPort.setStatus('mandatory')
wtWebioEA24oemBinaryTcpServerInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryTcpServerInputTrigger.setStatus('mandatory')
wtWebioEA24oemBinaryTcpServerApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryTcpServerApplicationMode.setStatus('mandatory')
wtWebioEA24oemBinaryTcpClientLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryTcpClientLocalPort.setStatus('mandatory')
wtWebioEA24oemBinaryTcpClientServerPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryTcpClientServerPort.setStatus('mandatory')
wtWebioEA24oemBinaryTcpClientServerIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryTcpClientServerIpAddr.setStatus('mandatory')
wtWebioEA24oemBinaryTcpClientServerPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryTcpClientServerPassword.setStatus('mandatory')
wtWebioEA24oemBinaryTcpClientInactivity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryTcpClientInactivity.setStatus('mandatory')
wtWebioEA24oemBinaryTcpClientInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryTcpClientInputTrigger.setStatus('mandatory')
wtWebioEA24oemBinaryTcpClientInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryTcpClientInterval.setStatus('mandatory')
wtWebioEA24oemBinaryTcpClientApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 12), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryTcpClientApplicationMode.setStatus('mandatory')
wtWebioEA24oemBinaryUdpPeerLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryUdpPeerLocalPort.setStatus('mandatory')
wtWebioEA24oemBinaryUdpPeerRemotePort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryUdpPeerRemotePort.setStatus('mandatory')
wtWebioEA24oemBinaryUdpPeerRemoteIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 15), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryUdpPeerRemoteIpAddr.setStatus('mandatory')
wtWebioEA24oemBinaryUdpPeerInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 16), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryUdpPeerInputTrigger.setStatus('mandatory')
wtWebioEA24oemBinaryUdpPeerInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryUdpPeerInterval.setStatus('mandatory')
wtWebioEA24oemBinaryUdpPeerApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 18), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryUdpPeerApplicationMode.setStatus('mandatory')
wtWebioEA24oemBinaryConnectedPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryConnectedPort.setStatus('mandatory')
wtWebioEA24oemBinaryConnectedIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 20), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryConnectedIpAddr.setStatus('mandatory')
wtWebioEA24oemBinaryTcpServerClientHttpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryTcpServerClientHttpPort.setStatus('mandatory')
wtWebioEA24oemBinaryTcpClientServerHttpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemBinaryTcpClientServerHttpPort.setStatus('mandatory')
wtWebioEA24oemSyslogServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 7, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemSyslogServerIP.setStatus('mandatory')
wtWebioEA24oemSyslogServerPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 7, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemSyslogServerPort.setStatus('mandatory')
wtWebioEA24oemSyslogSystemMessagesEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 7, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemSyslogSystemMessagesEnable.setStatus('mandatory')
wtWebioEA24oemSyslogEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 7, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemSyslogEnable.setStatus('mandatory')
wtWebioEA24oemFTPServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 8, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemFTPServerIP.setStatus('mandatory')
wtWebioEA24oemFTPServerControlPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 8, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemFTPServerControlPort.setStatus('mandatory')
wtWebioEA24oemFTPUserName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 8, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemFTPUserName.setStatus('mandatory')
wtWebioEA24oemFTPPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 8, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemFTPPassword.setStatus('mandatory')
wtWebioEA24oemFTPAccount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 8, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemFTPAccount.setStatus('mandatory')
wtWebioEA24oemFTPOption = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 8, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemFTPOption.setStatus('mandatory')
wtWebioEA24oemFTPEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 8, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemFTPEnable.setStatus('mandatory')
wtWebioEA24oemOutputModeTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 4, 1), )
if mibBuilder.loadTexts: wtWebioEA24oemOutputModeTable.setStatus('mandatory')
wtWebioEA24oemOutputModeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 4, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA24oemOutputNo"))
if mibBuilder.loadTexts: wtWebioEA24oemOutputModeEntry.setStatus('mandatory')
wtWebioEA24oemOutputModeBit = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 4, 1, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemOutputModeBit.setStatus('mandatory')
wtWebioEA24oemSafetyTimeout = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 4, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemSafetyTimeout.setStatus('mandatory')
wtWebioEA24oemLoadControlEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 4, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemLoadControlEnable.setStatus('mandatory')
wtWebioEA24oemAlarmCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmCount.setStatus('mandatory')
wtWebioEA24oemAlarmIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 2), )
if mibBuilder.loadTexts: wtWebioEA24oemAlarmIfTable.setStatus('mandatory')
wtWebioEA24oemAlarmIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA24oemAlarmNo"))
if mibBuilder.loadTexts: wtWebioEA24oemAlarmIfEntry.setStatus('mandatory')
wtWebioEA24oemAlarmNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmNo.setStatus('mandatory')
wtWebioEA24oemAlarmTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3), )
if mibBuilder.loadTexts: wtWebioEA24oemAlarmTable.setStatus('mandatory')
wtWebioEA24oemAlarmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA24oemAlarmNo"))
if mibBuilder.loadTexts: wtWebioEA24oemAlarmEntry.setStatus('mandatory')
wtWebioEA24oemAlarmInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(12, 12)).setFixedLength(12)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmInputTrigger.setStatus('mandatory')
wtWebioEA24oemAlarmOutputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(12, 12)).setFixedLength(12)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmOutputTrigger.setStatus('mandatory')
wtWebioEA24oemAlarmSystemTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmSystemTrigger.setStatus('mandatory')
wtWebioEA24oemAlarmMaxCounterValue = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmMaxCounterValue.setStatus('mandatory')
wtWebioEA24oemAlarmInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmInterval.setStatus('mandatory')
wtWebioEA24oemAlarmEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmEnable.setStatus('mandatory')
wtWebioEA24oemAlarmMailAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmMailAddr.setStatus('mandatory')
wtWebioEA24oemAlarmMailSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmMailSubject.setStatus('mandatory')
wtWebioEA24oemAlarmMailText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 9), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmMailText.setStatus('mandatory')
wtWebioEA24oemAlarmSnmpManagerIP = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 10), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmSnmpManagerIP.setStatus('mandatory')
wtWebioEA24oemAlarmSnmpTrapText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 11), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmSnmpTrapText.setStatus('mandatory')
wtWebioEA24oemAlarmUdpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 12), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmUdpIpAddr.setStatus('mandatory')
wtWebioEA24oemAlarmUdpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmUdpPort.setStatus('mandatory')
wtWebioEA24oemAlarmUdpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 14), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmUdpText.setStatus('mandatory')
wtWebioEA24oemAlarmTcpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 15), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmTcpIpAddr.setStatus('mandatory')
wtWebioEA24oemAlarmTcpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmTcpPort.setStatus('mandatory')
wtWebioEA24oemAlarmTcpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 17), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmTcpText.setStatus('mandatory')
wtWebioEA24oemAlarmSyslogIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 18), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmSyslogIpAddr.setStatus('mandatory')
wtWebioEA24oemAlarmSyslogPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmSyslogPort.setStatus('mandatory')
wtWebioEA24oemAlarmSyslogText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 20), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmSyslogText.setStatus('mandatory')
wtWebioEA24oemAlarmFtpDataPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 21), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmFtpDataPort.setStatus('mandatory')
wtWebioEA24oemAlarmFtpFileName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 22), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmFtpFileName.setStatus('mandatory')
wtWebioEA24oemAlarmFtpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 23), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmFtpText.setStatus('mandatory')
wtWebioEA24oemAlarmFtpOption = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 24), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmFtpOption.setStatus('mandatory')
wtWebioEA24oemAlarmTimerCron = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 25), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemAlarmTimerCron.setStatus('mandatory')
wtWebioEA24oemLoadControlView = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA24oemLoadControlView.setStatus('mandatory')
wtWebioEA24oemLCShutDownView = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemLCShutDownView.setStatus('mandatory')
wtWebioEA24oemInputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 1), )
if mibBuilder.loadTexts: wtWebioEA24oemInputPortTable.setStatus('mandatory')
wtWebioEA24oemInputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA24oemInputNo"))
if mibBuilder.loadTexts: wtWebioEA24oemInputPortEntry.setStatus('mandatory')
wtWebioEA24oemPortInputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemPortInputName.setStatus('mandatory')
wtWebioEA24oemPortInputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemPortInputText.setStatus('mandatory')
wtWebioEA24oemPortInputMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemPortInputMode.setStatus('mandatory')
wtWebioEA24oemPortInputFilter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemPortInputFilter.setStatus('mandatory')
wtWebioEA24oemOutputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2), )
if mibBuilder.loadTexts: wtWebioEA24oemOutputPortTable.setStatus('mandatory')
wtWebioEA24oemOutputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA24oemOutputNo"))
if mibBuilder.loadTexts: wtWebioEA24oemOutputPortEntry.setStatus('mandatory')
wtWebioEA24oemPortOutputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemPortOutputName.setStatus('mandatory')
wtWebioEA24oemPortOutputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemPortOutputText.setStatus('mandatory')
wtWebioEA24oemPortOutputGroupMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemPortOutputGroupMode.setStatus('mandatory')
wtWebioEA24oemPortOutputSafetyState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemPortOutputSafetyState.setStatus('mandatory')
wtWebioEA24oemPortLogicInputMask = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemPortLogicInputMask.setStatus('mandatory')
wtWebioEA24oemPortLogicInputInverter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemPortLogicInputInverter.setStatus('mandatory')
wtWebioEA24oemPortLogicFunction = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemPortLogicFunction.setStatus('mandatory')
wtWebioEA24oemPortLogicOutputInverter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2, 1, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemPortLogicOutputInverter.setStatus('mandatory')
wtWebioEA24oemPortPulseDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemPortPulseDuration.setStatus('mandatory')
wtWebioEA24oemPortPulsePolarity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemPortPulsePolarity.setStatus('mandatory')
wtWebioEA24oemMfName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemMfName.setStatus('mandatory')
wtWebioEA24oemMfAddr = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemMfAddr.setStatus('mandatory')
wtWebioEA24oemMfHotline = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemMfHotline.setStatus('mandatory')
wtWebioEA24oemMfInternet = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemMfInternet.setStatus('mandatory')
wtWebioEA24oemMfDeviceTyp = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 3, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemMfDeviceTyp.setStatus('mandatory')
wtWebioEA24oemDiagErrorCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA24oemDiagErrorCount.setStatus('mandatory')
wtWebioEA24oemDiagBinaryError = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 4, 2), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA24oemDiagBinaryError.setStatus('mandatory')
wtWebioEA24oemDiagErrorIndex = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 4, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA24oemDiagErrorIndex.setStatus('mandatory')
wtWebioEA24oemDiagErrorMessage = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 4, 4), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA24oemDiagErrorMessage.setStatus('mandatory')
wtWebioEA24oemDiagErrorClear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 4, 5), Integer32()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: wtWebioEA24oemDiagErrorClear.setStatus('mandatory')
wtWebioEA24oemAlert1 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,53)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert2 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,54)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert3 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,55)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert4 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,56)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert5 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,57)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert6 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,58)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert7 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,59)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert8 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,60)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert9 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,61)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert10 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,62)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert11 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,63)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert12 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,64)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert13 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,65)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert14 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,66)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert15 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,67)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert16 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,68)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert17 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,71)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert18 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,72)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert19 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,73)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert20 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,74)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert21 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,75)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert22 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,76)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert23 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,77)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert24 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,78)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert25 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,79)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert26 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,80)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert27 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,81)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert28 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,82)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert29 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,83)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert30 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,84)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert31 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,85)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlert32 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,86)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemAlarmSnmpTrapText"))
wtWebioEA24oemAlertDiag = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0,110)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA24oemDiagErrorIndex"), ("Webio-Digital-MIB-US", "wtWebioEA24oemDiagErrorMessage"))
wtWebioEA12x6RelInputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelInputs.setStatus('mandatory')
wtWebioEA12x6RelOutputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 6))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelOutputs.setStatus('mandatory')
wtWebioEA12x6RelInputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 3), )
if mibBuilder.loadTexts: wtWebioEA12x6RelInputTable.setStatus('mandatory')
wtWebioEA12x6RelInputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x6RelInputNo"))
if mibBuilder.loadTexts: wtWebioEA12x6RelInputEntry.setStatus('mandatory')
wtWebioEA12x6RelInputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelInputNo.setStatus('mandatory')
wtWebioEA12x6RelInputCounter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelInputCounter.setStatus('mandatory')
wtWebioEA12x6RelInputCounterClear = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelInputCounterClear.setStatus('mandatory')
wtWebioEA12x6RelInputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelInputValue.setStatus('mandatory')
wtWebioEA12x6RelOutputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 5), )
if mibBuilder.loadTexts: wtWebioEA12x6RelOutputTable.setStatus('mandatory')
wtWebioEA12x6RelOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 5, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x6RelOutputNo"))
if mibBuilder.loadTexts: wtWebioEA12x6RelOutputEntry.setStatus('mandatory')
wtWebioEA12x6RelOutputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelOutputNo.setStatus('mandatory')
wtWebioEA12x6RelOutputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 5, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA12x6RelOutputState-OFF", 0), ("wtWebioEA12x6OutputState-ON", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelOutputState.setStatus('mandatory')
wtWebioEA12x6RelOutputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelOutputValue.setStatus('mandatory')
wtWebioEA12x6RelSetOutput = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelSetOutput.setStatus('mandatory')
wtWebioEA12x6RelSessCntrlPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelSessCntrlPassword.setStatus('mandatory')
wtWebioEA12x6RelSessCntrlConfigMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA12x6RelSessCntrl-NoSession", 0), ("wtWebioEA12x6RelSessCntrl-Session", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelSessCntrlConfigMode.setStatus('mandatory')
wtWebioEA12x6RelSessCntrlLogout = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 2, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelSessCntrlLogout.setStatus('mandatory')
wtWebioEA12x6RelSessCntrlAdminPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 2, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelSessCntrlAdminPassword.setStatus('mandatory')
wtWebioEA12x6RelSessCntrlConfigPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 2, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelSessCntrlConfigPassword.setStatus('mandatory')
wtWebioEA12x6RelDeviceName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelDeviceName.setStatus('mandatory')
wtWebioEA12x6RelDeviceText = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelDeviceText.setStatus('mandatory')
wtWebioEA12x6RelDeviceLocation = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelDeviceLocation.setStatus('mandatory')
wtWebioEA12x6RelDeviceContact = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelDeviceContact.setStatus('mandatory')
wtWebioEA12x6RelTzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelTzOffsetHrs.setStatus('mandatory')
wtWebioEA12x6RelTzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelTzOffsetMin.setStatus('mandatory')
wtWebioEA12x6RelTzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelTzEnable.setStatus('mandatory')
wtWebioEA12x6RelStTzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelStTzOffsetHrs.setStatus('mandatory')
wtWebioEA12x6RelStTzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelStTzOffsetMin.setStatus('mandatory')
wtWebioEA12x6RelStTzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelStTzEnable.setStatus('mandatory')
wtWebioEA12x6RelStTzStartMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA12x6RelStartMonth-January", 1), ("wtWebioEA12x6RelStartMonth-February", 2), ("wtWebioEA12x6RelStartMonth-March", 3), ("wtWebioEA12x6RelStartMonth-April", 4), ("wtWebioEA12x6RelStartMonth-May", 5), ("wtWebioEA12x6RelStartMonth-June", 6), ("wtWebioEA12x6RelStartMonth-July", 7), ("wtWebioEA12x6RelStartMonth-August", 8), ("wtWebioEA12x6RelStartMonth-September", 9), ("wtWebioEA12x6RelStartMonth-October", 10), ("wtWebioEA12x6RelStartMonth-November", 11), ("wtWebioEA12x6RelStartMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelStTzStartMonth.setStatus('mandatory')
wtWebioEA12x6RelStTzStartMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtWebioEA12x6RelStartMode-first", 1), ("wtWebioEA12x6RelStartMode-second", 2), ("wtWebioEA12x6RelStartMode-third", 3), ("wtWebioEA12x6RelStartMode-fourth", 4), ("wtWebioEA12x6RelStartMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelStTzStartMode.setStatus('mandatory')
wtWebioEA12x6RelStTzStartWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtWebioEA12x6RelStartWday-Sunday", 1), ("wtWebioEA12x6RelStartWday-Monday", 2), ("wtWebioEA12x6RelStartWday-Tuesday", 3), ("wtWebioEA12x6RelStartWday-Thursday", 4), ("wtWebioEA12x6RelStartWday-Wednesday", 5), ("wtWebioEA12x6RelStartWday-Friday", 6), ("wtWebioEA12x6RelStartWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelStTzStartWday.setStatus('mandatory')
wtWebioEA12x6RelStTzStartHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelStTzStartHrs.setStatus('mandatory')
wtWebioEA12x6RelStTzStartMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelStTzStartMin.setStatus('mandatory')
wtWebioEA12x6RelStTzStopMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA12x6RelStopMonth-January", 1), ("wtWebioEA12x6RelStopMonth-February", 2), ("wtWebioEA12x6RelStopMonth-March", 3), ("wtWebioEA12x6RelStopMonth-April", 4), ("wtWebioEA12x6RelStopMonth-May", 5), ("wtWebioEA12x6RelStopMonth-June", 6), ("wtWebioEA12x6RelStopMonth-July", 7), ("wtWebioEA12x6RelStopMonth-August", 8), ("wtWebioEA12x6RelStopMonth-September", 9), ("wtWebioEA12x6RelStopMonth-October", 10), ("wtWebioEA12x6RelStopMonth-November", 11), ("wtWebioEA12x6RelStopMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelStTzStopMonth.setStatus('mandatory')
wtWebioEA12x6RelStTzStopMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtWebioEA12x6RelStopMode-first", 1), ("wtWebioEA12x6RelStopMode-second", 2), ("wtWebioEA12x6RelStopMode-third", 3), ("wtWebioEA12x6RelStopMode-fourth", 4), ("wtWebioEA12x6RelStopMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelStTzStopMode.setStatus('mandatory')
wtWebioEA12x6RelStTzStopWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtWebioEA12x6RelStopWday-Sunday", 1), ("wtWebioEA12x6RelStopWday-Monday", 2), ("wtWebioEA12x6RelStopWday-Tuesday", 3), ("wtWebioEA12x6RelStopWday-Thursday", 4), ("wtWebioEA12x6RelStopWday-Wednesday", 5), ("wtWebioEA12x6RelStopWday-Friday", 6), ("wtWebioEA12x6RelStopWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelStTzStopWday.setStatus('mandatory')
wtWebioEA12x6RelStTzStopHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 15), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelStTzStopHrs.setStatus('mandatory')
wtWebioEA12x6RelStTzStopMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 16), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelStTzStopMin.setStatus('mandatory')
wtWebioEA12x6RelTimeServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelTimeServer1.setStatus('mandatory')
wtWebioEA12x6RelTimeServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 2, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelTimeServer2.setStatus('mandatory')
wtWebioEA12x6RelTsEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 2, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelTsEnable.setStatus('mandatory')
wtWebioEA12x6RelTsSyncTime = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 2, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelTsSyncTime.setStatus('mandatory')
wtWebioEA12x6RelClockHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 3, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 23))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelClockHrs.setStatus('mandatory')
wtWebioEA12x6RelClockMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 3, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 59))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelClockMin.setStatus('mandatory')
wtWebioEA12x6RelClockDay = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 3, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelClockDay.setStatus('mandatory')
wtWebioEA12x6RelClockMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 3, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA12x6RelClockMonth-January", 1), ("wtWebioEA12x6RelClockMonth-February", 2), ("wtWebioEA12x6RelClockMonth-March", 3), ("wtWebioEA12x6RelClockMonth-April", 4), ("wtWebioEA12x6RelClockMonth-May", 5), ("wtWebioEA12x6RelClockMonth-June", 6), ("wtWebioEA12x6RelClockMonth-July", 7), ("wtWebioEA12x6RelClockMonth-August", 8), ("wtWebioEA12x6RelClockMonth-September", 9), ("wtWebioEA12x6RelClockMonth-October", 10), ("wtWebioEA12x6RelClockMonth-November", 11), ("wtWebioEA12x6RelClockMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelClockMonth.setStatus('mandatory')
wtWebioEA12x6RelClockYear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 3, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelClockYear.setStatus('mandatory')
wtWebioEA12x6RelIpAddress = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelIpAddress.setStatus('mandatory')
wtWebioEA12x6RelSubnetMask = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelSubnetMask.setStatus('mandatory')
wtWebioEA12x6RelGateway = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelGateway.setStatus('mandatory')
wtWebioEA12x6RelDnsServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelDnsServer1.setStatus('mandatory')
wtWebioEA12x6RelDnsServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelDnsServer2.setStatus('mandatory')
wtWebioEA12x6RelAddConfig = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 1, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAddConfig.setStatus('mandatory')
wtWebioEA12x6RelStartup = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelStartup.setStatus('mandatory')
wtWebioEA12x6RelGetHeaderEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 2, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelGetHeaderEnable.setStatus('mandatory')
wtWebioEA12x6RelHttpInputTrigger = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 2, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelHttpInputTrigger.setStatus('mandatory')
wtWebioEA12x6RelHttpPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 2, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelHttpPort.setStatus('mandatory')
wtWebioEA12x6RelMailAdName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelMailAdName.setStatus('mandatory')
wtWebioEA12x6RelMailReply = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelMailReply.setStatus('mandatory')
wtWebioEA12x6RelMailServer = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelMailServer.setStatus('mandatory')
wtWebioEA12x6RelMailEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelMailEnable.setStatus('mandatory')
wtWebioEA12x6RelMailAuthentication = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 3, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelMailAuthentication.setStatus('mandatory')
wtWebioEA12x6RelMailAuthUser = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 3, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelMailAuthUser.setStatus('mandatory')
wtWebioEA12x6RelMailAuthPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 3, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelMailAuthPassword.setStatus('mandatory')
wtWebioEA12x6RelMailPop3Server = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 3, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelMailPop3Server.setStatus('mandatory')
wtWebioEA12x6RelSnmpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 4, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelSnmpEnable.setStatus('mandatory')
wtWebioEA12x6RelSnmpCommunityStringRead = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 4, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelSnmpCommunityStringRead.setStatus('mandatory')
wtWebioEA12x6RelSnmpCommunityStringReadWrite = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 4, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelSnmpCommunityStringReadWrite.setStatus('mandatory')
wtWebioEA12x6RelSnmpSystemTrapManagerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 4, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelSnmpSystemTrapManagerIP.setStatus('mandatory')
wtWebioEA12x6RelSnmpSystemTrapEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 4, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelSnmpSystemTrapEnable.setStatus('mandatory')
wtWebioEA12x6RelUdpAdminPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 5, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelUdpAdminPort.setStatus('mandatory')
wtWebioEA12x6RelUdpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 5, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelUdpEnable.setStatus('mandatory')
wtWebioEA12x6RelUdpRemotePort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 5, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelUdpRemotePort.setStatus('mandatory')
wtWebioEA12x6RelBinaryModeCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryModeCount.setStatus('mandatory')
wtWebioEA12x6RelBinaryIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 2), )
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryIfTable.setStatus('mandatory')
wtWebioEA12x6RelBinaryIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x6RelBinaryModeNo"))
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryIfEntry.setStatus('mandatory')
wtWebioEA12x6RelBinaryModeNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryModeNo.setStatus('mandatory')
wtWebioEA12x6RelBinaryTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3), )
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryTable.setStatus('mandatory')
wtWebioEA12x6RelBinaryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x6RelBinaryModeNo"))
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryEntry.setStatus('mandatory')
wtWebioEA12x6RelBinaryOperationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryOperationMode.setStatus('mandatory')
wtWebioEA12x6RelBinaryTcpServerLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryTcpServerLocalPort.setStatus('mandatory')
wtWebioEA12x6RelBinaryTcpServerInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryTcpServerInputTrigger.setStatus('mandatory')
wtWebioEA12x6RelBinaryTcpServerApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryTcpServerApplicationMode.setStatus('mandatory')
wtWebioEA12x6RelBinaryTcpClientLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryTcpClientLocalPort.setStatus('mandatory')
wtWebioEA12x6RelBinaryTcpClientServerPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryTcpClientServerPort.setStatus('mandatory')
wtWebioEA12x6RelBinaryTcpClientServerIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryTcpClientServerIpAddr.setStatus('mandatory')
wtWebioEA12x6RelBinaryTcpClientServerPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryTcpClientServerPassword.setStatus('mandatory')
wtWebioEA12x6RelBinaryTcpClientInactivity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryTcpClientInactivity.setStatus('mandatory')
wtWebioEA12x6RelBinaryTcpClientInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryTcpClientInputTrigger.setStatus('mandatory')
wtWebioEA12x6RelBinaryTcpClientInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryTcpClientInterval.setStatus('mandatory')
wtWebioEA12x6RelBinaryTcpClientApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 12), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryTcpClientApplicationMode.setStatus('mandatory')
wtWebioEA12x6RelBinaryUdpPeerLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryUdpPeerLocalPort.setStatus('mandatory')
wtWebioEA12x6RelBinaryUdpPeerRemotePort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryUdpPeerRemotePort.setStatus('mandatory')
wtWebioEA12x6RelBinaryUdpPeerRemoteIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 15), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryUdpPeerRemoteIpAddr.setStatus('mandatory')
wtWebioEA12x6RelBinaryUdpPeerInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 16), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryUdpPeerInputTrigger.setStatus('mandatory')
wtWebioEA12x6RelBinaryUdpPeerInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryUdpPeerInterval.setStatus('mandatory')
wtWebioEA12x6RelBinaryUdpPeerApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 18), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryUdpPeerApplicationMode.setStatus('mandatory')
wtWebioEA12x6RelBinaryConnectedPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryConnectedPort.setStatus('mandatory')
wtWebioEA12x6RelBinaryConnectedIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 20), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryConnectedIpAddr.setStatus('mandatory')
wtWebioEA12x6RelBinaryTcpServerClientHttpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryTcpServerClientHttpPort.setStatus('mandatory')
wtWebioEA12x6RelBinaryTcpClientServerHttpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelBinaryTcpClientServerHttpPort.setStatus('mandatory')
wtWebioEA12x6RelSyslogServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 7, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelSyslogServerIP.setStatus('mandatory')
wtWebioEA12x6RelSyslogServerPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 7, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelSyslogServerPort.setStatus('mandatory')
wtWebioEA12x6RelSyslogSystemMessagesEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 7, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelSyslogSystemMessagesEnable.setStatus('mandatory')
wtWebioEA12x6RelSyslogEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 7, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelSyslogEnable.setStatus('mandatory')
wtWebioEA12x6RelFTPServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 8, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelFTPServerIP.setStatus('mandatory')
wtWebioEA12x6RelFTPServerControlPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 8, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelFTPServerControlPort.setStatus('mandatory')
wtWebioEA12x6RelFTPUserName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 8, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelFTPUserName.setStatus('mandatory')
wtWebioEA12x6RelFTPPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 8, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelFTPPassword.setStatus('mandatory')
wtWebioEA12x6RelFTPAccount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 8, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelFTPAccount.setStatus('mandatory')
wtWebioEA12x6RelFTPOption = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 8, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelFTPOption.setStatus('mandatory')
wtWebioEA12x6RelFTPEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 8, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelFTPEnable.setStatus('mandatory')
wtWebioEA12x6RelOutputModeTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 4, 1), )
if mibBuilder.loadTexts: wtWebioEA12x6RelOutputModeTable.setStatus('mandatory')
wtWebioEA12x6RelOutputModeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 4, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x6RelOutputNo"))
if mibBuilder.loadTexts: wtWebioEA12x6RelOutputModeEntry.setStatus('mandatory')
wtWebioEA12x6RelOutputModeBit = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 4, 1, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelOutputModeBit.setStatus('mandatory')
wtWebioEA12x6RelSafetyTimeout = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 4, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelSafetyTimeout.setStatus('mandatory')
wtWebioEA12x6RelAlarmCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmCount.setStatus('mandatory')
wtWebioEA12x6RelAlarmIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 2), )
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmIfTable.setStatus('mandatory')
wtWebioEA12x6RelAlarmIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmNo"))
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmIfEntry.setStatus('mandatory')
wtWebioEA12x6RelAlarmNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmNo.setStatus('mandatory')
wtWebioEA12x6RelAlarmTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3), )
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmTable.setStatus('mandatory')
wtWebioEA12x6RelAlarmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmNo"))
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmEntry.setStatus('mandatory')
wtWebioEA12x6RelAlarmInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(12, 12)).setFixedLength(12)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmInputTrigger.setStatus('mandatory')
wtWebioEA12x6RelAlarmOutputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(12, 12)).setFixedLength(12)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmOutputTrigger.setStatus('mandatory')
wtWebioEA12x6RelAlarmSystemTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmSystemTrigger.setStatus('mandatory')
wtWebioEA12x6RelAlarmMaxCounterValue = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmMaxCounterValue.setStatus('mandatory')
wtWebioEA12x6RelAlarmInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmInterval.setStatus('mandatory')
wtWebioEA12x6RelAlarmEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmEnable.setStatus('mandatory')
wtWebioEA12x6RelAlarmMailAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmMailAddr.setStatus('mandatory')
wtWebioEA12x6RelAlarmMailSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmMailSubject.setStatus('mandatory')
wtWebioEA12x6RelAlarmMailText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 9), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmMailText.setStatus('mandatory')
wtWebioEA12x6RelAlarmSnmpManagerIP = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 10), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmSnmpManagerIP.setStatus('mandatory')
wtWebioEA12x6RelAlarmSnmpTrapText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 11), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmSnmpTrapText.setStatus('mandatory')
wtWebioEA12x6RelAlarmUdpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 12), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmUdpIpAddr.setStatus('mandatory')
wtWebioEA12x6RelAlarmUdpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmUdpPort.setStatus('mandatory')
wtWebioEA12x6RelAlarmUdpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 14), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmUdpText.setStatus('mandatory')
wtWebioEA12x6RelAlarmTcpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 15), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmTcpIpAddr.setStatus('mandatory')
wtWebioEA12x6RelAlarmTcpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmTcpPort.setStatus('mandatory')
wtWebioEA12x6RelAlarmTcpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 17), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmTcpText.setStatus('mandatory')
wtWebioEA12x6RelAlarmSyslogIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 18), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmSyslogIpAddr.setStatus('mandatory')
wtWebioEA12x6RelAlarmSyslogPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmSyslogPort.setStatus('mandatory')
wtWebioEA12x6RelAlarmSyslogText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 20), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmSyslogText.setStatus('mandatory')
wtWebioEA12x6RelAlarmFtpDataPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 21), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmFtpDataPort.setStatus('mandatory')
wtWebioEA12x6RelAlarmFtpFileName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 22), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmFtpFileName.setStatus('mandatory')
wtWebioEA12x6RelAlarmFtpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 23), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmFtpText.setStatus('mandatory')
wtWebioEA12x6RelAlarmFtpOption = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 24), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmFtpOption.setStatus('mandatory')
wtWebioEA12x6RelAlarmTimerCron = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 25), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmTimerCron.setStatus('mandatory')
wtWebioEA12x6RelAlarmMailReleaseSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 26), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmMailReleaseSubject.setStatus('mandatory')
wtWebioEA12x6RelAlarmMailReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 27), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmMailReleaseText.setStatus('mandatory')
wtWebioEA12x6RelAlarmSnmpTrapReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 28), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmSnmpTrapReleaseText.setStatus('mandatory')
wtWebioEA12x6RelAlarmUdpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 29), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmUdpReleaseText.setStatus('mandatory')
wtWebioEA12x6RelAlarmTcpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 30), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmTcpReleaseText.setStatus('mandatory')
wtWebioEA12x6RelAlarmSyslogReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 31), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmSyslogReleaseText.setStatus('mandatory')
wtWebioEA12x6RelAlarmFtpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 32), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelAlarmFtpReleaseText.setStatus('mandatory')
wtWebioEA12x6RelInputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 1), )
if mibBuilder.loadTexts: wtWebioEA12x6RelInputPortTable.setStatus('mandatory')
wtWebioEA12x6RelInputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x6RelInputNo"))
if mibBuilder.loadTexts: wtWebioEA12x6RelInputPortEntry.setStatus('mandatory')
wtWebioEA12x6RelPortInputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelPortInputName.setStatus('mandatory')
wtWebioEA12x6RelPortInputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelPortInputText.setStatus('mandatory')
wtWebioEA12x6RelPortInputMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelPortInputMode.setStatus('mandatory')
wtWebioEA12x6RelPortInputFilter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelPortInputFilter.setStatus('mandatory')
wtWebioEA12x6RelPortInputBicountPulsePolarity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelPortInputBicountPulsePolarity.setStatus('mandatory')
wtWebioEA12x6RelPortInputBicountInactivTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 1, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelPortInputBicountInactivTimeout.setStatus('mandatory')
wtWebioEA12x6RelOutputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2), )
if mibBuilder.loadTexts: wtWebioEA12x6RelOutputPortTable.setStatus('mandatory')
wtWebioEA12x6RelOutputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x6RelOutputNo"))
if mibBuilder.loadTexts: wtWebioEA12x6RelOutputPortEntry.setStatus('mandatory')
wtWebioEA12x6RelPortOutputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelPortOutputName.setStatus('mandatory')
wtWebioEA12x6RelPortOutputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelPortOutputText.setStatus('mandatory')
wtWebioEA12x6RelPortOutputGroupMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelPortOutputGroupMode.setStatus('mandatory')
wtWebioEA12x6RelPortOutputSafetyState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelPortOutputSafetyState.setStatus('mandatory')
wtWebioEA12x6RelPortLogicInputMask = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelPortLogicInputMask.setStatus('mandatory')
wtWebioEA12x6RelPortLogicInputInverter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelPortLogicInputInverter.setStatus('mandatory')
wtWebioEA12x6RelPortLogicFunction = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelPortLogicFunction.setStatus('mandatory')
wtWebioEA12x6RelPortLogicOutputInverter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2, 1, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelPortLogicOutputInverter.setStatus('mandatory')
wtWebioEA12x6RelPortPulseDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelPortPulseDuration.setStatus('mandatory')
wtWebioEA12x6RelPortPulsePolarity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelPortPulsePolarity.setStatus('mandatory')
wtWebioEA12x6RelMfName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelMfName.setStatus('mandatory')
wtWebioEA12x6RelMfAddr = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelMfAddr.setStatus('mandatory')
wtWebioEA12x6RelMfHotline = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelMfHotline.setStatus('mandatory')
wtWebioEA12x6RelMfInternet = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelMfInternet.setStatus('mandatory')
wtWebioEA12x6RelMfDeviceTyp = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 3, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelMfDeviceTyp.setStatus('mandatory')
wtWebioEA12x6RelMfOrderNo = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 3, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelMfOrderNo.setStatus('mandatory')
wtWebioEA12x6RelDiagErrorCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelDiagErrorCount.setStatus('mandatory')
wtWebioEA12x6RelDiagBinaryError = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 4, 2), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelDiagBinaryError.setStatus('mandatory')
wtWebioEA12x6RelDiagErrorIndex = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 4, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelDiagErrorIndex.setStatus('mandatory')
wtWebioEA12x6RelDiagErrorMessage = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 4, 4), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelDiagErrorMessage.setStatus('mandatory')
wtWebioEA12x6RelDiagErrorClear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 4, 5), Integer32()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelDiagErrorClear.setStatus('mandatory')
wtWebioEA12x6RelAlert1 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,41)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapText"))
wtWebioEA12x6RelAlert2 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,42)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapText"))
wtWebioEA12x6RelAlert3 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,43)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapText"))
wtWebioEA12x6RelAlert4 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,44)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapText"))
wtWebioEA12x6RelAlert5 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,45)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapText"))
wtWebioEA12x6RelAlert6 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,46)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapText"))
wtWebioEA12x6RelAlert7 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,47)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapText"))
wtWebioEA12x6RelAlert8 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,48)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapText"))
wtWebioEA12x6RelAlert9 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,49)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapText"))
wtWebioEA12x6RelAlert10 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,50)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapText"))
wtWebioEA12x6RelAlert11 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,51)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapText"))
wtWebioEA12x6RelAlert12 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,52)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapText"))
wtWebioEA12x6RelAlert13 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,71)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelAlert14 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,72)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelAlert15 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,73)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelAlert16 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,74)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelAlert17 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,75)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelAlert18 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,76)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelAlert19 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,77)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelAlert20 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,78)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelAlert21 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,79)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelAlert22 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,80)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelAlert23 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,81)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelAlert24 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,82)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelAlertDiag = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0,110)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelDiagErrorIndex"), ("Webio-Digital-MIB-US", "wtWebioEA12x6RelDiagErrorMessage"))
wtWebAlarm6x6Inputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 6))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebAlarm6x6Inputs.setStatus('mandatory')
wtWebAlarm6x6Outputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 6))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebAlarm6x6Outputs.setStatus('mandatory')
wtWebAlarm6x6InputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 3), )
if mibBuilder.loadTexts: wtWebAlarm6x6InputTable.setStatus('mandatory')
wtWebAlarm6x6InputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebAlarm6x6InputNo"))
if mibBuilder.loadTexts: wtWebAlarm6x6InputEntry.setStatus('mandatory')
wtWebAlarm6x6InputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebAlarm6x6InputNo.setStatus('mandatory')
wtWebAlarm6x6InputCounter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebAlarm6x6InputCounter.setStatus('mandatory')
wtWebAlarm6x6InputCounterClear = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebAlarm6x6InputCounterClear.setStatus('mandatory')
wtWebAlarm6x6InputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebAlarm6x6InputState-OFF", 0), ("wtWebAlarm6x6InputState-ON", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebAlarm6x6InputState.setStatus('mandatory')
wtWebAlarm6x6InputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebAlarm6x6InputValue.setStatus('mandatory')
wtWebAlarm6x6OutputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 5), )
if mibBuilder.loadTexts: wtWebAlarm6x6OutputTable.setStatus('mandatory')
wtWebAlarm6x6OutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 5, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebAlarm6x6OutputNo"))
if mibBuilder.loadTexts: wtWebAlarm6x6OutputEntry.setStatus('mandatory')
wtWebAlarm6x6OutputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebAlarm6x6OutputNo.setStatus('mandatory')
wtWebAlarm6x6OutputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 5, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebAlarm6x6OutputState-OFF", 0), ("wtWebAlarm6x6OutputState-ON", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6OutputState.setStatus('mandatory')
wtWebAlarm6x6OutputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebAlarm6x6OutputValue.setStatus('mandatory')
wtWebAlarm6x6AlarmOutputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 8), )
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmOutputTable.setStatus('mandatory')
wtWebAlarm6x6AlarmOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 8, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmNo"))
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmOutputEntry.setStatus('mandatory')
wtWebAlarm6x6AlarmOutputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 8, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebAlarm6x6AlarmOutputState-OFF", 0), ("wtWebAlarm6x6AlarmOutputState-ON", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmOutputState.setStatus('mandatory')
wtWebAlarm6x6AlarmTriggerState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 8, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebAlarm6x6AlarmTriggerState-OFF", 0), ("wtWebAlarm6x6AlarmTriggerState-ON", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmTriggerState.setStatus('mandatory')
wtWebAlarm6x6SessCntrlPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6SessCntrlPassword.setStatus('mandatory')
wtWebAlarm6x6SessCntrlConfigMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebAlarm6x6SessCntrl-NoSession", 0), ("wtWebAlarm6x6SessCntrl-Session", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebAlarm6x6SessCntrlConfigMode.setStatus('mandatory')
wtWebAlarm6x6SessCntrlLogout = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 2, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6SessCntrlLogout.setStatus('mandatory')
wtWebAlarm6x6SessCntrlAdminPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 2, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6SessCntrlAdminPassword.setStatus('mandatory')
wtWebAlarm6x6SessCntrlConfigPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 2, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6SessCntrlConfigPassword.setStatus('mandatory')
wtWebAlarm6x6DeviceName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6DeviceName.setStatus('mandatory')
wtWebAlarm6x6DeviceText = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6DeviceText.setStatus('mandatory')
wtWebAlarm6x6DeviceLocation = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6DeviceLocation.setStatus('mandatory')
wtWebAlarm6x6DeviceContact = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6DeviceContact.setStatus('mandatory')
wtWebAlarm6x6TzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6TzOffsetHrs.setStatus('mandatory')
wtWebAlarm6x6TzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6TzOffsetMin.setStatus('mandatory')
wtWebAlarm6x6TzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6TzEnable.setStatus('mandatory')
wtWebAlarm6x6StTzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6StTzOffsetHrs.setStatus('mandatory')
wtWebAlarm6x6StTzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6StTzOffsetMin.setStatus('mandatory')
wtWebAlarm6x6StTzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6StTzEnable.setStatus('mandatory')
wtWebAlarm6x6StTzStartMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebAlarm6x6StartMonth-January", 1), ("wtWebAlarm6x6StartMonth-February", 2), ("wtWebAlarm6x6StartMonth-March", 3), ("wtWebAlarm6x6StartMonth-April", 4), ("wtWebAlarm6x6StartMonth-May", 5), ("wtWebAlarm6x6StartMonth-June", 6), ("wtWebAlarm6x6StartMonth-July", 7), ("wtWebAlarm6x6StartMonth-August", 8), ("wtWebAlarm6x6StartMonth-September", 9), ("wtWebAlarm6x6StartMonth-October", 10), ("wtWebAlarm6x6StartMonth-November", 11), ("wtWebAlarm6x6StartMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6StTzStartMonth.setStatus('mandatory')
wtWebAlarm6x6StTzStartMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtWebAlarm6x6StartMode-first", 1), ("wtWebAlarm6x6StartMode-second", 2), ("wtWebAlarm6x6StartMode-third", 3), ("wtWebAlarm6x6StartMode-fourth", 4), ("wtWebAlarm6x6StartMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6StTzStartMode.setStatus('mandatory')
wtWebAlarm6x6StTzStartWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtWebAlarm6x6StartWday-Sunday", 1), ("wtWebAlarm6x6StartWday-Monday", 2), ("wtWebAlarm6x6StartWday-Tuesday", 3), ("wtWebAlarm6x6StartWday-Thursday", 4), ("wtWebAlarm6x6StartWday-Wednesday", 5), ("wtWebAlarm6x6StartWday-Friday", 6), ("wtWebAlarm6x6StartWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6StTzStartWday.setStatus('mandatory')
wtWebAlarm6x6StTzStartHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6StTzStartHrs.setStatus('mandatory')
wtWebAlarm6x6StTzStartMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6StTzStartMin.setStatus('mandatory')
wtWebAlarm6x6StTzStopMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebAlarm6x6StopMonth-January", 1), ("wtWebAlarm6x6StopMonth-February", 2), ("wtWebAlarm6x6StopMonth-March", 3), ("wtWebAlarm6x6StopMonth-April", 4), ("wtWebAlarm6x6StopMonth-May", 5), ("wtWebAlarm6x6StopMonth-June", 6), ("wtWebAlarm6x6StopMonth-July", 7), ("wtWebAlarm6x6StopMonth-August", 8), ("wtWebAlarm6x6StopMonth-September", 9), ("wtWebAlarm6x6StopMonth-October", 10), ("wtWebAlarm6x6StopMonth-November", 11), ("wtWebAlarm6x6StopMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6StTzStopMonth.setStatus('mandatory')
wtWebAlarm6x6StTzStopMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtWebAlarm6x6StopMode-first", 1), ("wtWebAlarm6x6StopMode-second", 2), ("wtWebAlarm6x6StopMode-third", 3), ("wtWebAlarm6x6StopMode-fourth", 4), ("wtWebAlarm6x6StopMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6StTzStopMode.setStatus('mandatory')
wtWebAlarm6x6StTzStopWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtWebAlarm6x6StopWday-Sunday", 1), ("wtWebAlarm6x6StopWday-Monday", 2), ("wtWebAlarm6x6StopWday-Tuesday", 3), ("wtWebAlarm6x6StopWday-Thursday", 4), ("wtWebAlarm6x6StopWday-Wednesday", 5), ("wtWebAlarm6x6StopWday-Friday", 6), ("wtWebAlarm6x6StopWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6StTzStopWday.setStatus('mandatory')
wtWebAlarm6x6StTzStopHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 15), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6StTzStopHrs.setStatus('mandatory')
wtWebAlarm6x6StTzStopMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 16), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6StTzStopMin.setStatus('mandatory')
wtWebAlarm6x6TimeServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6TimeServer1.setStatus('mandatory')
wtWebAlarm6x6TimeServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 2, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6TimeServer2.setStatus('mandatory')
wtWebAlarm6x6TsEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 2, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6TsEnable.setStatus('mandatory')
wtWebAlarm6x6TsSyncTime = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 2, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6TsSyncTime.setStatus('mandatory')
wtWebAlarm6x6ClockHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 3, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 23))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6ClockHrs.setStatus('mandatory')
wtWebAlarm6x6ClockMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 3, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 59))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6ClockMin.setStatus('mandatory')
wtWebAlarm6x6ClockDay = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 3, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6ClockDay.setStatus('mandatory')
wtWebAlarm6x6ClockMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 3, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebAlarm6x6ClockMonth-January", 1), ("wtWebAlarm6x6ClockMonth-February", 2), ("wtWebAlarm6x6ClockMonth-March", 3), ("wtWebAlarm6x6ClockMonth-April", 4), ("wtWebAlarm6x6ClockMonth-May", 5), ("wtWebAlarm6x6ClockMonth-June", 6), ("wtWebAlarm6x6ClockMonth-July", 7), ("wtWebAlarm6x6ClockMonth-August", 8), ("wtWebAlarm6x6ClockMonth-September", 9), ("wtWebAlarm6x6ClockMonth-October", 10), ("wtWebAlarm6x6ClockMonth-November", 11), ("wtWebAlarm6x6ClockMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6ClockMonth.setStatus('mandatory')
wtWebAlarm6x6ClockYear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 3, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6ClockYear.setStatus('mandatory')
wtWebAlarm6x6IpAddress = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6IpAddress.setStatus('mandatory')
wtWebAlarm6x6SubnetMask = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6SubnetMask.setStatus('mandatory')
wtWebAlarm6x6Gateway = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6Gateway.setStatus('mandatory')
wtWebAlarm6x6DnsServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6DnsServer1.setStatus('mandatory')
wtWebAlarm6x6DnsServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6DnsServer2.setStatus('mandatory')
wtWebAlarm6x6AddConfig = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 1, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AddConfig.setStatus('mandatory')
wtWebAlarm6x6HttpPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 2, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6HttpPort.setStatus('mandatory')
wtWebAlarm6x6MailAdName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6MailAdName.setStatus('mandatory')
wtWebAlarm6x6MailReply = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6MailReply.setStatus('mandatory')
wtWebAlarm6x6MailServer = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6MailServer.setStatus('mandatory')
wtWebAlarm6x6MailEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6MailEnable.setStatus('mandatory')
wtWebAlarm6x6MailAuthentication = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 3, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6MailAuthentication.setStatus('mandatory')
wtWebAlarm6x6MailAuthUser = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 3, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6MailAuthUser.setStatus('mandatory')
wtWebAlarm6x6MailAuthPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 3, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6MailAuthPassword.setStatus('mandatory')
wtWebAlarm6x6MailPop3Server = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 3, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6MailPop3Server.setStatus('mandatory')
wtWebAlarm6x6SnmpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 4, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6SnmpEnable.setStatus('mandatory')
wtWebAlarm6x6SnmpCommunityStringRead = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 4, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6SnmpCommunityStringRead.setStatus('mandatory')
wtWebAlarm6x6SnmpCommunityStringReadWrite = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 4, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6SnmpCommunityStringReadWrite.setStatus('mandatory')
wtWebAlarm6x6SnmpSystemTrapManagerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 4, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6SnmpSystemTrapManagerIP.setStatus('mandatory')
wtWebAlarm6x6SnmpSystemTrapEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 4, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6SnmpSystemTrapEnable.setStatus('mandatory')
wtWebAlarm6x6UdpAdminPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 5, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6UdpAdminPort.setStatus('mandatory')
wtWebAlarm6x6UdpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 5, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6UdpEnable.setStatus('mandatory')
wtWebAlarm6x6UdpRemotePort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 5, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6UdpRemotePort.setStatus('mandatory')
wtWebAlarm6x6SyslogServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 7, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6SyslogServerIP.setStatus('mandatory')
wtWebAlarm6x6SyslogServerPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 7, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6SyslogServerPort.setStatus('mandatory')
wtWebAlarm6x6SyslogSystemMessagesEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 7, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6SyslogSystemMessagesEnable.setStatus('mandatory')
wtWebAlarm6x6SyslogEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 7, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6SyslogEnable.setStatus('mandatory')
wtWebAlarm6x6FTPServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 8, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6FTPServerIP.setStatus('mandatory')
wtWebAlarm6x6FTPServerControlPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 8, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6FTPServerControlPort.setStatus('mandatory')
wtWebAlarm6x6FTPUserName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 8, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6FTPUserName.setStatus('mandatory')
wtWebAlarm6x6FTPPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 8, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6FTPPassword.setStatus('mandatory')
wtWebAlarm6x6FTPAccount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 8, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6FTPAccount.setStatus('mandatory')
wtWebAlarm6x6FTPOption = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 8, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6FTPOption.setStatus('mandatory')
wtWebAlarm6x6FTPEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 8, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6FTPEnable.setStatus('mandatory')
wtWebAlarm6x6AlarmCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmCount.setStatus('mandatory')
wtWebAlarm6x6AlarmIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 2), )
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmIfTable.setStatus('mandatory')
wtWebAlarm6x6AlarmIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmNo"))
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmIfEntry.setStatus('mandatory')
wtWebAlarm6x6AlarmNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmNo.setStatus('mandatory')
wtWebAlarm6x6AlarmTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3), )
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmTable.setStatus('mandatory')
wtWebAlarm6x6AlarmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmNo"))
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmEntry.setStatus('mandatory')
wtWebAlarm6x6AlarmInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(12, 12)).setFixedLength(12)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmInputTrigger.setStatus('mandatory')
wtWebAlarm6x6AlarmMaxCounterValue = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmMaxCounterValue.setStatus('mandatory')
wtWebAlarm6x6AlarmInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmInterval.setStatus('mandatory')
wtWebAlarm6x6AlarmEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmEnable.setStatus('mandatory')
wtWebAlarm6x6AlarmMailAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmMailAddr.setStatus('mandatory')
wtWebAlarm6x6AlarmMailSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmMailSubject.setStatus('mandatory')
wtWebAlarm6x6AlarmMailText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 9), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmMailText.setStatus('mandatory')
wtWebAlarm6x6AlarmSnmpManagerIP = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 10), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmSnmpManagerIP.setStatus('mandatory')
wtWebAlarm6x6AlarmSnmpTrapText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 11), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmSnmpTrapText.setStatus('mandatory')
wtWebAlarm6x6AlarmUdpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 12), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmUdpIpAddr.setStatus('mandatory')
wtWebAlarm6x6AlarmUdpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmUdpPort.setStatus('mandatory')
wtWebAlarm6x6AlarmUdpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 14), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmUdpText.setStatus('mandatory')
wtWebAlarm6x6AlarmTcpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 15), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmTcpIpAddr.setStatus('mandatory')
wtWebAlarm6x6AlarmTcpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmTcpPort.setStatus('mandatory')
wtWebAlarm6x6AlarmTcpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 17), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmTcpText.setStatus('mandatory')
wtWebAlarm6x6AlarmSyslogIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 18), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmSyslogIpAddr.setStatus('mandatory')
wtWebAlarm6x6AlarmSyslogPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmSyslogPort.setStatus('mandatory')
wtWebAlarm6x6AlarmSyslogText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 20), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmSyslogText.setStatus('mandatory')
wtWebAlarm6x6AlarmFtpDataPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 21), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmFtpDataPort.setStatus('mandatory')
wtWebAlarm6x6AlarmFtpFileName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 22), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmFtpFileName.setStatus('mandatory')
wtWebAlarm6x6AlarmFtpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 23), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmFtpText.setStatus('mandatory')
wtWebAlarm6x6AlarmFtpOption = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 24), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmFtpOption.setStatus('mandatory')
wtWebAlarm6x6AlarmMailReleaseSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 26), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmMailReleaseSubject.setStatus('mandatory')
wtWebAlarm6x6AlarmMailReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 27), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmMailReleaseText.setStatus('mandatory')
wtWebAlarm6x6AlarmSnmpTrapReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 28), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmSnmpTrapReleaseText.setStatus('mandatory')
wtWebAlarm6x6AlarmUdpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 29), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmUdpReleaseText.setStatus('mandatory')
wtWebAlarm6x6AlarmTcpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 30), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmTcpReleaseText.setStatus('mandatory')
wtWebAlarm6x6AlarmSyslogReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 31), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmSyslogReleaseText.setStatus('mandatory')
wtWebAlarm6x6AlarmFtpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 32), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmFtpReleaseText.setStatus('mandatory')
wtWebAlarm6x6AlarmName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 33), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmName.setStatus('mandatory')
wtWebAlarm6x6AlarmGlobalEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 34), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmGlobalEnable.setStatus('mandatory')
wtWebAlarm6x6AlarmCounterClear = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 35), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmCounterClear.setStatus('mandatory')
wtWebAlarm6x6AlarmAckEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 36), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmAckEnable.setStatus('mandatory')
wtWebAlarm6x6AlarmAckPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 37), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmAckPort.setStatus('mandatory')
wtWebAlarm6x6AlarmSetPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 38), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmSetPort.setStatus('mandatory')
wtWebAlarm6x6AlarmMailTrgClearSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 39), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmMailTrgClearSubject.setStatus('mandatory')
wtWebAlarm6x6AlarmMailTrgClearText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 40), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmMailTrgClearText.setStatus('mandatory')
wtWebAlarm6x6AlarmSnmpTrapTrgClearText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 41), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmSnmpTrapTrgClearText.setStatus('mandatory')
wtWebAlarm6x6AlarmUdpTrgClearText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 42), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmUdpTrgClearText.setStatus('mandatory')
wtWebAlarm6x6AlarmTcpTrgClearText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 43), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmTcpTrgClearText.setStatus('mandatory')
wtWebAlarm6x6AlarmSyslogTrgClearText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 44), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmSyslogTrgClearText.setStatus('mandatory')
wtWebAlarm6x6AlarmFtpTrgClearText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 45), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmFtpTrgClearText.setStatus('mandatory')
wtWebAlarm6x6AlarmMailTrapTxEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 46), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmMailTrapTxEnable.setStatus('mandatory')
wtWebAlarm6x6AlarmSnmpTrapTrapTxEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 47), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmSnmpTrapTrapTxEnable.setStatus('mandatory')
wtWebAlarm6x6AlarmUdpTrapTxEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 48), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmUdpTrapTxEnable.setStatus('mandatory')
wtWebAlarm6x6AlarmTcpTrapTxEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 49), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmTcpTrapTxEnable.setStatus('mandatory')
wtWebAlarm6x6AlarmSyslogTrapTxEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 50), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmSyslogTrapTxEnable.setStatus('mandatory')
wtWebAlarm6x6AlarmFtpTrapTxEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 51), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6AlarmFtpTrapTxEnable.setStatus('mandatory')
wtWebAlarm6x6InputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 1), )
if mibBuilder.loadTexts: wtWebAlarm6x6InputPortTable.setStatus('mandatory')
wtWebAlarm6x6InputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebAlarm6x6InputNo"))
if mibBuilder.loadTexts: wtWebAlarm6x6InputPortEntry.setStatus('mandatory')
wtWebAlarm6x6PortInputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6PortInputName.setStatus('mandatory')
wtWebAlarm6x6PortInputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6PortInputText.setStatus('mandatory')
wtWebAlarm6x6PortInputFilter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6PortInputFilter.setStatus('mandatory')
wtWebAlarm6x6PortInputPulsePolarity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6PortInputPulsePolarity.setStatus('mandatory')
wtWebAlarm6x6PortInputCounterSet = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 1, 1, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6PortInputCounterSet.setStatus('mandatory')
wtWebAlarm6x6OutputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 2), )
if mibBuilder.loadTexts: wtWebAlarm6x6OutputPortTable.setStatus('mandatory')
wtWebAlarm6x6OutputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebAlarm6x6OutputNo"))
if mibBuilder.loadTexts: wtWebAlarm6x6OutputPortEntry.setStatus('mandatory')
wtWebAlarm6x6PortOutputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 2, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6PortOutputName.setStatus('mandatory')
wtWebAlarm6x6PortOutputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 2, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6PortOutputText.setStatus('mandatory')
wtWebAlarm6x6PortPulseDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 2, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6PortPulseDuration.setStatus('mandatory')
wtWebAlarm6x6PortPulsePolarity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 2, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6PortPulsePolarity.setStatus('mandatory')
wtWebAlarm6x6MfName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6MfName.setStatus('mandatory')
wtWebAlarm6x6MfAddr = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6MfAddr.setStatus('mandatory')
wtWebAlarm6x6MfHotline = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6MfHotline.setStatus('mandatory')
wtWebAlarm6x6MfInternet = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6MfInternet.setStatus('mandatory')
wtWebAlarm6x6MfDeviceTyp = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 3, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6MfDeviceTyp.setStatus('mandatory')
wtWebAlarm6x6MfOrderNo = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 3, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6MfOrderNo.setStatus('mandatory')
wtWebAlarm6x6DiagErrorCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebAlarm6x6DiagErrorCount.setStatus('mandatory')
wtWebAlarm6x6DiagBinaryError = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 4, 2), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebAlarm6x6DiagBinaryError.setStatus('mandatory')
wtWebAlarm6x6DiagErrorIndex = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 4, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebAlarm6x6DiagErrorIndex.setStatus('mandatory')
wtWebAlarm6x6DiagErrorMessage = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 4, 4), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebAlarm6x6DiagErrorMessage.setStatus('mandatory')
wtWebAlarm6x6DiagErrorClear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 4, 5), Integer32()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: wtWebAlarm6x6DiagErrorClear.setStatus('mandatory')
wtWebAlarm6x6Alert1 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,41)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapText"))
wtWebAlarm6x6Alert2 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,42)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapText"))
wtWebAlarm6x6Alert3 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,43)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapText"))
wtWebAlarm6x6Alert4 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,44)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapText"))
wtWebAlarm6x6Alert5 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,45)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapText"))
wtWebAlarm6x6Alert6 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,46)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapText"))
wtWebAlarm6x6Alert7 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,47)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapText"))
wtWebAlarm6x6Alert8 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,48)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapText"))
wtWebAlarm6x6Alert9 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,49)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapText"))
wtWebAlarm6x6Alert10 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,50)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapText"))
wtWebAlarm6x6Alert11 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,51)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapText"))
wtWebAlarm6x6Alert12 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,52)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapText"))
wtWebAlarm6x6Alert13 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,71)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapReleaseText"))
wtWebAlarm6x6Alert14 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,72)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapReleaseText"))
wtWebAlarm6x6Alert15 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,73)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapReleaseText"))
wtWebAlarm6x6Alert16 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,74)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapReleaseText"))
wtWebAlarm6x6Alert17 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,75)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapReleaseText"))
wtWebAlarm6x6Alert18 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,76)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapReleaseText"))
wtWebAlarm6x6Alert19 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,77)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapReleaseText"))
wtWebAlarm6x6Alert20 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,78)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapReleaseText"))
wtWebAlarm6x6Alert21 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,79)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapReleaseText"))
wtWebAlarm6x6Alert22 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,80)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapReleaseText"))
wtWebAlarm6x6Alert23 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,81)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapReleaseText"))
wtWebAlarm6x6Alert24 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,82)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapReleaseText"))
wtWebAlarm6x6Alert25 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,91)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapTrgClearText"))
wtWebAlarm6x6Alert26 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,92)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapTrgClearText"))
wtWebAlarm6x6Alert27 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,93)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapTrgClearText"))
wtWebAlarm6x6Alert28 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,94)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapTrgClearText"))
wtWebAlarm6x6Alert29 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,95)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapTrgClearText"))
wtWebAlarm6x6Alert30 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,96)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapTrgClearText"))
wtWebAlarm6x6Alert31 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,97)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapTrgClearText"))
wtWebAlarm6x6Alert32 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,98)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapTrgClearText"))
wtWebAlarm6x6Alert33 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,99)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapTrgClearText"))
wtWebAlarm6x6Alert34 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,100)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapTrgClearText"))
wtWebAlarm6x6Alert35 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,101)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapTrgClearText"))
wtWebAlarm6x6Alert36 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,102)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6AlarmSnmpTrapTrgClearText"))
wtWebAlarm6x6AlertDiag = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0,110)).setObjects(("Webio-Digital-MIB-US", "wtWebAlarm6x6DiagErrorIndex"), ("Webio-Digital-MIB-US", "wtWebAlarm6x6DiagErrorMessage"))
wtWebCount6Inputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 6))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebCount6Inputs.setStatus('mandatory')
wtWebCount6Outputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 6))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebCount6Outputs.setStatus('mandatory')
wtWebCount6InputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 3), )
if mibBuilder.loadTexts: wtWebCount6InputTable.setStatus('mandatory')
wtWebCount6InputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebCount6InputNo"))
if mibBuilder.loadTexts: wtWebCount6InputEntry.setStatus('mandatory')
wtWebCount6InputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebCount6InputNo.setStatus('mandatory')
wtWebCount6InputCounter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebCount6InputCounter.setStatus('mandatory')
wtWebCount6InputCounterClear = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebCount6InputCounterClear.setStatus('mandatory')
wtWebCount6InputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebCount6InputState-OFF", 0), ("wtWebCount6InputState-ON", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebCount6InputState.setStatus('mandatory')
wtWebCount6InputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebCount6InputValue.setStatus('mandatory')
wtWebCount6ReportOutputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 8), )
if mibBuilder.loadTexts: wtWebCount6ReportOutputTable.setStatus('mandatory')
wtWebCount6ReportOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 8, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebCount6ReportNo"))
if mibBuilder.loadTexts: wtWebCount6ReportOutputEntry.setStatus('mandatory')
wtWebCount6ReportOutputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 8, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebCount6ReportOutputState-OFF", 0), ("wtWebCount6ReportOutputState-ON", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportOutputState.setStatus('mandatory')
wtWebCount6ReportTriggerState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 8, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebCount6ReportTriggerState-OFF", 0), ("wtWebCount6ReportTriggerState-ON", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebCount6ReportTriggerState.setStatus('mandatory')
wtWebCount6SessCntrlPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6SessCntrlPassword.setStatus('mandatory')
wtWebCount6SessCntrlConfigMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebCount6SessCntrl-NoSession", 0), ("wtWebCount6SessCntrl-Session", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebCount6SessCntrlConfigMode.setStatus('mandatory')
wtWebCount6SessCntrlLogout = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 2, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6SessCntrlLogout.setStatus('mandatory')
wtWebCount6SessCntrlAdminPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 2, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6SessCntrlAdminPassword.setStatus('mandatory')
wtWebCount6SessCntrlConfigPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 2, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6SessCntrlConfigPassword.setStatus('mandatory')
wtWebCount6DeviceName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6DeviceName.setStatus('mandatory')
wtWebCount6DeviceText = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6DeviceText.setStatus('mandatory')
wtWebCount6DeviceLocation = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6DeviceLocation.setStatus('mandatory')
wtWebCount6DeviceContact = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6DeviceContact.setStatus('mandatory')
wtWebCount6TzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6TzOffsetHrs.setStatus('mandatory')
wtWebCount6TzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6TzOffsetMin.setStatus('mandatory')
wtWebCount6TzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6TzEnable.setStatus('mandatory')
wtWebCount6StTzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6StTzOffsetHrs.setStatus('mandatory')
wtWebCount6StTzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6StTzOffsetMin.setStatus('mandatory')
wtWebCount6StTzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6StTzEnable.setStatus('mandatory')
wtWebCount6StTzStartMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebCount6StartMonth-January", 1), ("wtWebCount6StartMonth-February", 2), ("wtWebCount6StartMonth-March", 3), ("wtWebCount6StartMonth-April", 4), ("wtWebCount6StartMonth-May", 5), ("wtWebCount6StartMonth-June", 6), ("wtWebCount6StartMonth-July", 7), ("wtWebCount6StartMonth-August", 8), ("wtWebCount6StartMonth-September", 9), ("wtWebCount6StartMonth-October", 10), ("wtWebCount6StartMonth-November", 11), ("wtWebCount6StartMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6StTzStartMonth.setStatus('mandatory')
wtWebCount6StTzStartMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtWebCount6StartMode-first", 1), ("wtWebCount6StartMode-second", 2), ("wtWebCount6StartMode-third", 3), ("wtWebCount6StartMode-fourth", 4), ("wtWebCount6StartMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6StTzStartMode.setStatus('mandatory')
wtWebCount6StTzStartWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtWebCount6StartWday-Sunday", 1), ("wtWebCount6StartWday-Monday", 2), ("wtWebCount6StartWday-Tuesday", 3), ("wtWebCount6StartWday-Thursday", 4), ("wtWebCount6StartWday-Wednesday", 5), ("wtWebCount6StartWday-Friday", 6), ("wtWebCount6StartWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6StTzStartWday.setStatus('mandatory')
wtWebCount6StTzStartHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6StTzStartHrs.setStatus('mandatory')
wtWebCount6StTzStartMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6StTzStartMin.setStatus('mandatory')
wtWebCount6StTzStopMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebCount6StopMonth-January", 1), ("wtWebCount6StopMonth-February", 2), ("wtWebCount6StopMonth-March", 3), ("wtWebCount6StopMonth-April", 4), ("wtWebCount6StopMonth-May", 5), ("wtWebCount6StopMonth-June", 6), ("wtWebCount6StopMonth-July", 7), ("wtWebCount6StopMonth-August", 8), ("wtWebCount6StopMonth-September", 9), ("wtWebCount6StopMonth-October", 10), ("wtWebCount6StopMonth-November", 11), ("wtWebCount6StopMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6StTzStopMonth.setStatus('mandatory')
wtWebCount6StTzStopMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtWebCount6StopMode-first", 1), ("wtWebCount6StopMode-second", 2), ("wtWebCount6StopMode-third", 3), ("wtWebCount6StopMode-fourth", 4), ("wtWebCount6StopMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6StTzStopMode.setStatus('mandatory')
wtWebCount6StTzStopWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtWebCount6StopWday-Sunday", 1), ("wtWebCount6StopWday-Monday", 2), ("wtWebCount6StopWday-Tuesday", 3), ("wtWebCount6StopWday-Thursday", 4), ("wtWebCount6StopWday-Wednesday", 5), ("wtWebCount6StopWday-Friday", 6), ("wtWebCount6StopWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6StTzStopWday.setStatus('mandatory')
wtWebCount6StTzStopHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 15), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6StTzStopHrs.setStatus('mandatory')
wtWebCount6StTzStopMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 16), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6StTzStopMin.setStatus('mandatory')
wtWebCount6TimeServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6TimeServer1.setStatus('mandatory')
wtWebCount6TimeServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 2, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6TimeServer2.setStatus('mandatory')
wtWebCount6TsEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 2, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6TsEnable.setStatus('mandatory')
wtWebCount6TsSyncTime = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 2, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6TsSyncTime.setStatus('mandatory')
wtWebCount6ClockHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 3, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 23))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ClockHrs.setStatus('mandatory')
wtWebCount6ClockMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 3, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 59))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ClockMin.setStatus('mandatory')
wtWebCount6ClockDay = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 3, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ClockDay.setStatus('mandatory')
wtWebCount6ClockMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 3, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebCount6ClockMonth-January", 1), ("wtWebCount6ClockMonth-February", 2), ("wtWebCount6ClockMonth-March", 3), ("wtWebCount6ClockMonth-April", 4), ("wtWebCount6ClockMonth-May", 5), ("wtWebCount6ClockMonth-June", 6), ("wtWebCount6ClockMonth-July", 7), ("wtWebCount6ClockMonth-August", 8), ("wtWebCount6ClockMonth-September", 9), ("wtWebCount6ClockMonth-October", 10), ("wtWebCount6ClockMonth-November", 11), ("wtWebCount6ClockMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ClockMonth.setStatus('mandatory')
wtWebCount6ClockYear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 3, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ClockYear.setStatus('mandatory')
wtWebCount6IpAddress = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6IpAddress.setStatus('mandatory')
wtWebCount6SubnetMask = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6SubnetMask.setStatus('mandatory')
wtWebCount6Gateway = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6Gateway.setStatus('mandatory')
wtWebCount6DnsServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6DnsServer1.setStatus('mandatory')
wtWebCount6DnsServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6DnsServer2.setStatus('mandatory')
wtWebCount6AddConfig = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 1, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6AddConfig.setStatus('mandatory')
wtWebCount6HttpPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 2, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6HttpPort.setStatus('mandatory')
wtWebCount6MailAdName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6MailAdName.setStatus('mandatory')
wtWebCount6MailReply = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6MailReply.setStatus('mandatory')
wtWebCount6MailServer = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6MailServer.setStatus('mandatory')
wtWebCount6MailEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6MailEnable.setStatus('mandatory')
wtWebCount6MailAuthentication = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 3, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6MailAuthentication.setStatus('mandatory')
wtWebCount6MailAuthUser = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 3, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6MailAuthUser.setStatus('mandatory')
wtWebCount6MailAuthPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 3, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6MailAuthPassword.setStatus('mandatory')
wtWebCount6MailPop3Server = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 3, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6MailPop3Server.setStatus('mandatory')
wtWebCount6SnmpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 4, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6SnmpEnable.setStatus('mandatory')
wtWebCount6SnmpCommunityStringRead = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 4, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6SnmpCommunityStringRead.setStatus('mandatory')
wtWebCount6SnmpCommunityStringReadWrite = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 4, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6SnmpCommunityStringReadWrite.setStatus('mandatory')
wtWebCount6SnmpSystemTrapManagerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 4, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6SnmpSystemTrapManagerIP.setStatus('mandatory')
wtWebCount6SnmpSystemTrapEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 4, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6SnmpSystemTrapEnable.setStatus('mandatory')
wtWebCount6UdpAdminPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 5, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6UdpAdminPort.setStatus('mandatory')
wtWebCount6UdpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 5, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6UdpEnable.setStatus('mandatory')
wtWebCount6UdpRemotePort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 5, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6UdpRemotePort.setStatus('mandatory')
wtWebCount6SyslogServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 7, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6SyslogServerIP.setStatus('mandatory')
wtWebCount6SyslogServerPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 7, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6SyslogServerPort.setStatus('mandatory')
wtWebCount6SyslogSystemMessagesEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 7, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6SyslogSystemMessagesEnable.setStatus('mandatory')
wtWebCount6SyslogEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 7, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6SyslogEnable.setStatus('mandatory')
wtWebCount6FTPServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 8, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6FTPServerIP.setStatus('mandatory')
wtWebCount6FTPServerControlPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 8, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6FTPServerControlPort.setStatus('mandatory')
wtWebCount6FTPUserName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 8, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6FTPUserName.setStatus('mandatory')
wtWebCount6FTPPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 8, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6FTPPassword.setStatus('mandatory')
wtWebCount6FTPAccount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 8, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6FTPAccount.setStatus('mandatory')
wtWebCount6FTPOption = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 8, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6FTPOption.setStatus('mandatory')
wtWebCount6FTPEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 8, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6FTPEnable.setStatus('mandatory')
wtWebCount6ReportCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebCount6ReportCount.setStatus('mandatory')
wtWebCount6ReportIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 2), )
if mibBuilder.loadTexts: wtWebCount6ReportIfTable.setStatus('mandatory')
wtWebCount6ReportIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebCount6ReportNo"))
if mibBuilder.loadTexts: wtWebCount6ReportIfEntry.setStatus('mandatory')
wtWebCount6ReportNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebCount6ReportNo.setStatus('mandatory')
wtWebCount6ReportTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3), )
if mibBuilder.loadTexts: wtWebCount6ReportTable.setStatus('mandatory')
wtWebCount6ReportEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebCount6ReportNo"))
if mibBuilder.loadTexts: wtWebCount6ReportEntry.setStatus('mandatory')
wtWebCount6ReportInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(12, 12)).setFixedLength(12)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportInputTrigger.setStatus('mandatory')
wtWebCount6ReportSystemTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportSystemTrigger.setStatus('mandatory')
wtWebCount6ReportMaxCounterValue = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportMaxCounterValue.setStatus('mandatory')
wtWebCount6ReportInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportInterval.setStatus('mandatory')
wtWebCount6ReportEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportEnable.setStatus('mandatory')
wtWebCount6ReportMailAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportMailAddr.setStatus('mandatory')
wtWebCount6ReportMailSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportMailSubject.setStatus('mandatory')
wtWebCount6ReportMailText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 9), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportMailText.setStatus('mandatory')
wtWebCount6ReportSnmpManagerIP = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 10), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportSnmpManagerIP.setStatus('mandatory')
wtWebCount6ReportSnmpTrapText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 11), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportSnmpTrapText.setStatus('mandatory')
wtWebCount6ReportUdpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 12), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportUdpIpAddr.setStatus('mandatory')
wtWebCount6ReportUdpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportUdpPort.setStatus('mandatory')
wtWebCount6ReportUdpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 14), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportUdpText.setStatus('mandatory')
wtWebCount6ReportTcpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 15), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportTcpIpAddr.setStatus('mandatory')
wtWebCount6ReportTcpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportTcpPort.setStatus('mandatory')
wtWebCount6ReportTcpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 17), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportTcpText.setStatus('mandatory')
wtWebCount6ReportSyslogIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 18), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportSyslogIpAddr.setStatus('mandatory')
wtWebCount6ReportSyslogPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportSyslogPort.setStatus('mandatory')
wtWebCount6ReportSyslogText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 20), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportSyslogText.setStatus('mandatory')
wtWebCount6ReportFtpDataPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 21), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportFtpDataPort.setStatus('mandatory')
wtWebCount6ReportFtpFileName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 22), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportFtpFileName.setStatus('mandatory')
wtWebCount6ReportFtpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 23), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportFtpText.setStatus('mandatory')
wtWebCount6ReportFtpOption = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 24), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportFtpOption.setStatus('mandatory')
wtWebCount6ReportTimerCron = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 25), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportTimerCron.setStatus('mandatory')
wtWebCount6ReportName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 33), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportName.setStatus('mandatory')
wtWebCount6ReportGlobalEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 34), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportGlobalEnable.setStatus('mandatory')
wtWebCount6ReportCounterClear = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 35), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportCounterClear.setStatus('mandatory')
wtWebCount6ReportRateOfChange = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 52), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportRateOfChange.setStatus('mandatory')
wtWebCount6ReportRateOfChangeWindow = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 53), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportRateOfChangeWindow.setStatus('mandatory')
wtWebCount6ReportRateOfChangeMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 54), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6ReportRateOfChangeMode.setStatus('mandatory')
wtWebCount6InputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2, 1), )
if mibBuilder.loadTexts: wtWebCount6InputPortTable.setStatus('mandatory')
wtWebCount6InputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebCount6InputNo"))
if mibBuilder.loadTexts: wtWebCount6InputPortEntry.setStatus('mandatory')
wtWebCount6PortInputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6PortInputName.setStatus('mandatory')
wtWebCount6PortInputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6PortInputText.setStatus('mandatory')
wtWebCount6PortInputMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6PortInputMode.setStatus('mandatory')
wtWebCount6PortInputFilter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6PortInputFilter.setStatus('mandatory')
wtWebCount6PortInputPulsePolarity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6PortInputPulsePolarity.setStatus('mandatory')
wtWebCount6PortInputBicountInactivTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2, 1, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6PortInputBicountInactivTimeout.setStatus('mandatory')
wtWebCount6PortInputCounterSet = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2, 1, 1, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6PortInputCounterSet.setStatus('mandatory')
wtWebCount6PortInputCounterScale = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2, 1, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6PortInputCounterScale.setStatus('mandatory')
wtWebCount6PortInputCounterUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2, 1, 1, 9), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6PortInputCounterUnit.setStatus('mandatory')
wtWebCount6MfName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6MfName.setStatus('mandatory')
wtWebCount6MfAddr = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6MfAddr.setStatus('mandatory')
wtWebCount6MfHotline = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6MfHotline.setStatus('mandatory')
wtWebCount6MfInternet = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6MfInternet.setStatus('mandatory')
wtWebCount6MfDeviceTyp = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 3, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6MfDeviceTyp.setStatus('mandatory')
wtWebCount6MfOrderNo = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 3, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6MfOrderNo.setStatus('mandatory')
wtWebCount6DiagErrorCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebCount6DiagErrorCount.setStatus('mandatory')
wtWebCount6DiagBinaryError = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 4, 2), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebCount6DiagBinaryError.setStatus('mandatory')
wtWebCount6DiagErrorIndex = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 4, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebCount6DiagErrorIndex.setStatus('mandatory')
wtWebCount6DiagErrorMessage = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 4, 4), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebCount6DiagErrorMessage.setStatus('mandatory')
wtWebCount6DiagErrorClear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 4, 5), Integer32()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: wtWebCount6DiagErrorClear.setStatus('mandatory')
wtWebCount6Alert1 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0,41)).setObjects(("Webio-Digital-MIB-US", "wtWebCount6ReportSnmpTrapText"))
wtWebCount6Alert2 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0,42)).setObjects(("Webio-Digital-MIB-US", "wtWebCount6ReportSnmpTrapText"))
wtWebCount6Alert3 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0,43)).setObjects(("Webio-Digital-MIB-US", "wtWebCount6ReportSnmpTrapText"))
wtWebCount6Alert4 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0,44)).setObjects(("Webio-Digital-MIB-US", "wtWebCount6ReportSnmpTrapText"))
wtWebCount6Alert5 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0,45)).setObjects(("Webio-Digital-MIB-US", "wtWebCount6ReportSnmpTrapText"))
wtWebCount6Alert6 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0,46)).setObjects(("Webio-Digital-MIB-US", "wtWebCount6ReportSnmpTrapText"))
wtWebCount6Alert7 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0,47)).setObjects(("Webio-Digital-MIB-US", "wtWebCount6ReportSnmpTrapText"))
wtWebCount6Alert8 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0,48)).setObjects(("Webio-Digital-MIB-US", "wtWebCount6ReportSnmpTrapText"))
wtWebCount6Alert9 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0,49)).setObjects(("Webio-Digital-MIB-US", "wtWebCount6ReportSnmpTrapText"))
wtWebCount6Alert10 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0,50)).setObjects(("Webio-Digital-MIB-US", "wtWebCount6ReportSnmpTrapText"))
wtWebCount6Alert11 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0,51)).setObjects(("Webio-Digital-MIB-US", "wtWebCount6ReportSnmpTrapText"))
wtWebCount6Alert12 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0,52)).setObjects(("Webio-Digital-MIB-US", "wtWebCount6ReportSnmpTrapText"))
wtWebCount6AlertDiag = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0,110)).setObjects(("Webio-Digital-MIB-US", "wtWebCount6DiagErrorIndex"), ("Webio-Digital-MIB-US", "wtWebCount6DiagErrorMessage"))
wtWebioEA6x6Inputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 6))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA6x6Inputs.setStatus('mandatory')
wtWebioEA6x6Outputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 6))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA6x6Outputs.setStatus('mandatory')
wtWebioEA6x6InputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 3), )
if mibBuilder.loadTexts: wtWebioEA6x6InputTable.setStatus('mandatory')
wtWebioEA6x6InputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA6x6InputNo"))
if mibBuilder.loadTexts: wtWebioEA6x6InputEntry.setStatus('mandatory')
wtWebioEA6x6InputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA6x6InputNo.setStatus('mandatory')
wtWebioEA6x6InputCounter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA6x6InputCounter.setStatus('mandatory')
wtWebioEA6x6InputCounterClear = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA6x6InputCounterClear.setStatus('mandatory')
wtWebioEA6x6InputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA6x6InputState-OFF", 0), ("wtWebioEA6x6InputState-ON", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA6x6InputState.setStatus('mandatory')
wtWebioEA6x6InputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA6x6InputValue.setStatus('mandatory')
wtWebioEA6x6OutputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 5), )
if mibBuilder.loadTexts: wtWebioEA6x6OutputTable.setStatus('mandatory')
wtWebioEA6x6OutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 5, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA6x6OutputNo"))
if mibBuilder.loadTexts: wtWebioEA6x6OutputEntry.setStatus('mandatory')
wtWebioEA6x6OutputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA6x6OutputNo.setStatus('mandatory')
wtWebioEA6x6OutputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 5, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA6x6OutputState-OFF", 0), ("wtWebioEA6x6OutputState-ON", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6OutputState.setStatus('mandatory')
wtWebioEA6x6OutputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6OutputValue.setStatus('mandatory')
wtWebioEA6x6SetOutput = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6SetOutput.setStatus('mandatory')
wtWebioEA6x6SessCntrlPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6SessCntrlPassword.setStatus('mandatory')
wtWebioEA6x6SessCntrlConfigMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA6x6SessCntrl-NoSession", 0), ("wtWebioEA6x6SessCntrl-Session", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA6x6SessCntrlConfigMode.setStatus('mandatory')
wtWebioEA6x6SessCntrlLogout = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 2, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6SessCntrlLogout.setStatus('mandatory')
wtWebioEA6x6SessCntrlAdminPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 2, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6SessCntrlAdminPassword.setStatus('mandatory')
wtWebioEA6x6SessCntrlConfigPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 2, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6SessCntrlConfigPassword.setStatus('mandatory')
wtWebioEA6x6DeviceName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6DeviceName.setStatus('mandatory')
wtWebioEA6x6DeviceText = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6DeviceText.setStatus('mandatory')
wtWebioEA6x6DeviceLocation = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6DeviceLocation.setStatus('mandatory')
wtWebioEA6x6DeviceContact = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6DeviceContact.setStatus('mandatory')
wtWebioEA6x6TzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6TzOffsetHrs.setStatus('mandatory')
wtWebioEA6x6TzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6TzOffsetMin.setStatus('mandatory')
wtWebioEA6x6TzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6TzEnable.setStatus('mandatory')
wtWebioEA6x6StTzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6StTzOffsetHrs.setStatus('mandatory')
wtWebioEA6x6StTzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6StTzOffsetMin.setStatus('mandatory')
wtWebioEA6x6StTzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6StTzEnable.setStatus('mandatory')
wtWebioEA6x6StTzStartMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA6x6StartMonth-January", 1), ("wtWebioEA6x6StartMonth-February", 2), ("wtWebioEA6x6StartMonth-March", 3), ("wtWebioEA6x6StartMonth-April", 4), ("wtWebioEA6x6StartMonth-May", 5), ("wtWebioEA6x6StartMonth-June", 6), ("wtWebioEA6x6StartMonth-July", 7), ("wtWebioEA6x6StartMonth-August", 8), ("wtWebioEA6x6StartMonth-September", 9), ("wtWebioEA6x6StartMonth-October", 10), ("wtWebioEA6x6StartMonth-November", 11), ("wtWebioEA6x6StartMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6StTzStartMonth.setStatus('mandatory')
wtWebioEA6x6StTzStartMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtWebioEA6x6StartMode-first", 1), ("wtWebioEA6x6StartMode-second", 2), ("wtWebioEA6x6StartMode-third", 3), ("wtWebioEA6x6StartMode-fourth", 4), ("wtWebioEA6x6StartMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6StTzStartMode.setStatus('mandatory')
wtWebioEA6x6StTzStartWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtWebioEA6x6StartWday-Sunday", 1), ("wtWebioEA6x6StartWday-Monday", 2), ("wtWebioEA6x6StartWday-Tuesday", 3), ("wtWebioEA6x6StartWday-Thursday", 4), ("wtWebioEA6x6StartWday-Wednesday", 5), ("wtWebioEA6x6StartWday-Friday", 6), ("wtWebioEA6x6StartWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6StTzStartWday.setStatus('mandatory')
wtWebioEA6x6StTzStartHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6StTzStartHrs.setStatus('mandatory')
wtWebioEA6x6StTzStartMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6StTzStartMin.setStatus('mandatory')
wtWebioEA6x6StTzStopMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA6x6StopMonth-January", 1), ("wtWebioEA6x6StopMonth-February", 2), ("wtWebioEA6x6StopMonth-March", 3), ("wtWebioEA6x6StopMonth-April", 4), ("wtWebioEA6x6StopMonth-May", 5), ("wtWebioEA6x6StopMonth-June", 6), ("wtWebioEA6x6StopMonth-July", 7), ("wtWebioEA6x6StopMonth-August", 8), ("wtWebioEA6x6StopMonth-September", 9), ("wtWebioEA6x6StopMonth-October", 10), ("wtWebioEA6x6StopMonth-November", 11), ("wtWebioEA6x6StopMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6StTzStopMonth.setStatus('mandatory')
wtWebioEA6x6StTzStopMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtWebioEA6x6StopMode-first", 1), ("wtWebioEA6x6StopMode-second", 2), ("wtWebioEA6x6StopMode-third", 3), ("wtWebioEA6x6StopMode-fourth", 4), ("wtWebioEA6x6StopMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6StTzStopMode.setStatus('mandatory')
wtWebioEA6x6StTzStopWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtWebioEA6x6StopWday-Sunday", 1), ("wtWebioEA6x6StopWday-Monday", 2), ("wtWebioEA6x6StopWday-Tuesday", 3), ("wtWebioEA6x6StopWday-Thursday", 4), ("wtWebioEA6x6StopWday-Wednesday", 5), ("wtWebioEA6x6StopWday-Friday", 6), ("wtWebioEA6x6StopWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6StTzStopWday.setStatus('mandatory')
wtWebioEA6x6StTzStopHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 15), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6StTzStopHrs.setStatus('mandatory')
wtWebioEA6x6StTzStopMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 16), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6StTzStopMin.setStatus('mandatory')
wtWebioEA6x6TimeServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6TimeServer1.setStatus('mandatory')
wtWebioEA6x6TimeServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 2, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6TimeServer2.setStatus('mandatory')
wtWebioEA6x6TsEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 2, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6TsEnable.setStatus('mandatory')
wtWebioEA6x6TsSyncTime = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 2, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6TsSyncTime.setStatus('mandatory')
wtWebioEA6x6ClockHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 3, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 23))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6ClockHrs.setStatus('mandatory')
wtWebioEA6x6ClockMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 3, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 59))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6ClockMin.setStatus('mandatory')
wtWebioEA6x6ClockDay = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 3, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6ClockDay.setStatus('mandatory')
wtWebioEA6x6ClockMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 3, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA6x6ClockMonth-January", 1), ("wtWebioEA6x6ClockMonth-February", 2), ("wtWebioEA6x6ClockMonth-March", 3), ("wtWebioEA6x6ClockMonth-April", 4), ("wtWebioEA6x6ClockMonth-May", 5), ("wtWebioEA6x6ClockMonth-June", 6), ("wtWebioEA6x6ClockMonth-July", 7), ("wtWebioEA6x6ClockMonth-August", 8), ("wtWebioEA6x6ClockMonth-September", 9), ("wtWebioEA6x6ClockMonth-October", 10), ("wtWebioEA6x6ClockMonth-November", 11), ("wtWebioEA6x6ClockMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6ClockMonth.setStatus('mandatory')
wtWebioEA6x6ClockYear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 3, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6ClockYear.setStatus('mandatory')
wtWebioEA6x6IpAddress = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6IpAddress.setStatus('mandatory')
wtWebioEA6x6SubnetMask = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6SubnetMask.setStatus('mandatory')
wtWebioEA6x6Gateway = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6Gateway.setStatus('mandatory')
wtWebioEA6x6DnsServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6DnsServer1.setStatus('mandatory')
wtWebioEA6x6DnsServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6DnsServer2.setStatus('mandatory')
wtWebioEA6x6AddConfig = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 1, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AddConfig.setStatus('mandatory')
wtWebioEA6x6Startup = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6Startup.setStatus('mandatory')
wtWebioEA6x6GetHeaderEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 2, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6GetHeaderEnable.setStatus('mandatory')
wtWebioEA6x6HttpInputTrigger = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 2, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6HttpInputTrigger.setStatus('mandatory')
wtWebioEA6x6HttpPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 2, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6HttpPort.setStatus('mandatory')
wtWebioEA6x6MailAdName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6MailAdName.setStatus('mandatory')
wtWebioEA6x6MailReply = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6MailReply.setStatus('mandatory')
wtWebioEA6x6MailServer = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6MailServer.setStatus('mandatory')
wtWebioEA6x6MailEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6MailEnable.setStatus('mandatory')
wtWebioEA6x6MailAuthentication = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 3, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6MailAuthentication.setStatus('mandatory')
wtWebioEA6x6MailAuthUser = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 3, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6MailAuthUser.setStatus('mandatory')
wtWebioEA6x6MailAuthPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 3, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6MailAuthPassword.setStatus('mandatory')
wtWebioEA6x6MailPop3Server = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 3, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6MailPop3Server.setStatus('mandatory')
wtWebioEA6x6SnmpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 4, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6SnmpEnable.setStatus('mandatory')
wtWebioEA6x6SnmpCommunityStringRead = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 4, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6SnmpCommunityStringRead.setStatus('mandatory')
wtWebioEA6x6SnmpCommunityStringReadWrite = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 4, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6SnmpCommunityStringReadWrite.setStatus('mandatory')
wtWebioEA6x6SnmpSystemTrapManagerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 4, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6SnmpSystemTrapManagerIP.setStatus('mandatory')
wtWebioEA6x6SnmpSystemTrapEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 4, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6SnmpSystemTrapEnable.setStatus('mandatory')
wtWebioEA6x6UdpAdminPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 5, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6UdpAdminPort.setStatus('mandatory')
wtWebioEA6x6UdpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 5, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6UdpEnable.setStatus('mandatory')
wtWebioEA6x6UdpRemotePort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 5, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6UdpRemotePort.setStatus('mandatory')
wtWebioEA6x6BinaryModeCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryModeCount.setStatus('mandatory')
wtWebioEA6x6BinaryIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 2), )
if mibBuilder.loadTexts: wtWebioEA6x6BinaryIfTable.setStatus('mandatory')
wtWebioEA6x6BinaryIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA6x6BinaryModeNo"))
if mibBuilder.loadTexts: wtWebioEA6x6BinaryIfEntry.setStatus('mandatory')
wtWebioEA6x6BinaryModeNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryModeNo.setStatus('mandatory')
wtWebioEA6x6BinaryTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3), )
if mibBuilder.loadTexts: wtWebioEA6x6BinaryTable.setStatus('mandatory')
wtWebioEA6x6BinaryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA6x6BinaryModeNo"))
if mibBuilder.loadTexts: wtWebioEA6x6BinaryEntry.setStatus('mandatory')
wtWebioEA6x6BinaryOperationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryOperationMode.setStatus('mandatory')
wtWebioEA6x6BinaryTcpServerLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryTcpServerLocalPort.setStatus('mandatory')
wtWebioEA6x6BinaryTcpServerInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryTcpServerInputTrigger.setStatus('mandatory')
wtWebioEA6x6BinaryTcpServerApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryTcpServerApplicationMode.setStatus('mandatory')
wtWebioEA6x6BinaryTcpClientLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryTcpClientLocalPort.setStatus('mandatory')
wtWebioEA6x6BinaryTcpClientServerPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryTcpClientServerPort.setStatus('mandatory')
wtWebioEA6x6BinaryTcpClientServerIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryTcpClientServerIpAddr.setStatus('mandatory')
wtWebioEA6x6BinaryTcpClientServerPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryTcpClientServerPassword.setStatus('mandatory')
wtWebioEA6x6BinaryTcpClientInactivity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryTcpClientInactivity.setStatus('mandatory')
wtWebioEA6x6BinaryTcpClientInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryTcpClientInputTrigger.setStatus('mandatory')
wtWebioEA6x6BinaryTcpClientInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryTcpClientInterval.setStatus('mandatory')
wtWebioEA6x6BinaryTcpClientApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 12), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryTcpClientApplicationMode.setStatus('mandatory')
wtWebioEA6x6BinaryUdpPeerLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryUdpPeerLocalPort.setStatus('mandatory')
wtWebioEA6x6BinaryUdpPeerRemotePort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryUdpPeerRemotePort.setStatus('mandatory')
wtWebioEA6x6BinaryUdpPeerRemoteIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 15), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryUdpPeerRemoteIpAddr.setStatus('mandatory')
wtWebioEA6x6BinaryUdpPeerInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 16), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryUdpPeerInputTrigger.setStatus('mandatory')
wtWebioEA6x6BinaryUdpPeerInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryUdpPeerInterval.setStatus('mandatory')
wtWebioEA6x6BinaryUdpPeerApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 18), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryUdpPeerApplicationMode.setStatus('mandatory')
wtWebioEA6x6BinaryConnectedPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryConnectedPort.setStatus('mandatory')
wtWebioEA6x6BinaryConnectedIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 20), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryConnectedIpAddr.setStatus('mandatory')
wtWebioEA6x6BinaryTcpServerClientHttpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryTcpServerClientHttpPort.setStatus('mandatory')
wtWebioEA6x6BinaryTcpClientServerHttpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6BinaryTcpClientServerHttpPort.setStatus('mandatory')
wtWebioEA6x6SyslogServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 7, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6SyslogServerIP.setStatus('mandatory')
wtWebioEA6x6SyslogServerPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 7, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6SyslogServerPort.setStatus('mandatory')
wtWebioEA6x6SyslogSystemMessagesEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 7, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6SyslogSystemMessagesEnable.setStatus('mandatory')
wtWebioEA6x6SyslogEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 7, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6SyslogEnable.setStatus('mandatory')
wtWebioEA6x6FTPServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 8, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6FTPServerIP.setStatus('mandatory')
wtWebioEA6x6FTPServerControlPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 8, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6FTPServerControlPort.setStatus('mandatory')
wtWebioEA6x6FTPUserName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 8, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6FTPUserName.setStatus('mandatory')
wtWebioEA6x6FTPPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 8, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6FTPPassword.setStatus('mandatory')
wtWebioEA6x6FTPAccount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 8, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6FTPAccount.setStatus('mandatory')
wtWebioEA6x6FTPOption = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 8, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6FTPOption.setStatus('mandatory')
wtWebioEA6x6FTPEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 8, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6FTPEnable.setStatus('mandatory')
wtWebioEA6x6OutputModeTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 4, 1), )
if mibBuilder.loadTexts: wtWebioEA6x6OutputModeTable.setStatus('mandatory')
wtWebioEA6x6OutputModeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 4, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA6x6OutputNo"))
if mibBuilder.loadTexts: wtWebioEA6x6OutputModeEntry.setStatus('mandatory')
wtWebioEA6x6OutputModeBit = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 4, 1, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6OutputModeBit.setStatus('mandatory')
wtWebioEA6x6SafetyTimeout = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 4, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6SafetyTimeout.setStatus('mandatory')
wtWebioEA6x6AlarmCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmCount.setStatus('mandatory')
wtWebioEA6x6AlarmIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 2), )
if mibBuilder.loadTexts: wtWebioEA6x6AlarmIfTable.setStatus('mandatory')
wtWebioEA6x6AlarmIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA6x6AlarmNo"))
if mibBuilder.loadTexts: wtWebioEA6x6AlarmIfEntry.setStatus('mandatory')
wtWebioEA6x6AlarmNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmNo.setStatus('mandatory')
wtWebioEA6x6AlarmTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3), )
if mibBuilder.loadTexts: wtWebioEA6x6AlarmTable.setStatus('mandatory')
wtWebioEA6x6AlarmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA6x6AlarmNo"))
if mibBuilder.loadTexts: wtWebioEA6x6AlarmEntry.setStatus('mandatory')
wtWebioEA6x6AlarmInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(12, 12)).setFixedLength(12)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmInputTrigger.setStatus('mandatory')
wtWebioEA6x6AlarmOutputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(12, 12)).setFixedLength(12)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmOutputTrigger.setStatus('mandatory')
wtWebioEA6x6AlarmSystemTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmSystemTrigger.setStatus('mandatory')
wtWebioEA6x6AlarmMaxCounterValue = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmMaxCounterValue.setStatus('mandatory')
wtWebioEA6x6AlarmInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmInterval.setStatus('mandatory')
wtWebioEA6x6AlarmEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmEnable.setStatus('mandatory')
wtWebioEA6x6AlarmMailAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmMailAddr.setStatus('mandatory')
wtWebioEA6x6AlarmMailSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmMailSubject.setStatus('mandatory')
wtWebioEA6x6AlarmMailText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 9), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmMailText.setStatus('mandatory')
wtWebioEA6x6AlarmSnmpManagerIP = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 10), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmSnmpManagerIP.setStatus('mandatory')
wtWebioEA6x6AlarmSnmpTrapText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 11), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmSnmpTrapText.setStatus('mandatory')
wtWebioEA6x6AlarmUdpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 12), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmUdpIpAddr.setStatus('mandatory')
wtWebioEA6x6AlarmUdpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmUdpPort.setStatus('mandatory')
wtWebioEA6x6AlarmUdpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 14), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmUdpText.setStatus('mandatory')
wtWebioEA6x6AlarmTcpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 15), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmTcpIpAddr.setStatus('mandatory')
wtWebioEA6x6AlarmTcpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmTcpPort.setStatus('mandatory')
wtWebioEA6x6AlarmTcpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 17), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmTcpText.setStatus('mandatory')
wtWebioEA6x6AlarmSyslogIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 18), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmSyslogIpAddr.setStatus('mandatory')
wtWebioEA6x6AlarmSyslogPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmSyslogPort.setStatus('mandatory')
wtWebioEA6x6AlarmSyslogText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 20), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmSyslogText.setStatus('mandatory')
wtWebioEA6x6AlarmFtpDataPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 21), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmFtpDataPort.setStatus('mandatory')
wtWebioEA6x6AlarmFtpFileName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 22), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmFtpFileName.setStatus('mandatory')
wtWebioEA6x6AlarmFtpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 23), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmFtpText.setStatus('mandatory')
wtWebioEA6x6AlarmFtpOption = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 24), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmFtpOption.setStatus('mandatory')
wtWebioEA6x6AlarmTimerCron = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 25), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmTimerCron.setStatus('mandatory')
wtWebioEA6x6AlarmMailReleaseSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 26), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmMailReleaseSubject.setStatus('mandatory')
wtWebioEA6x6AlarmMailReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 27), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmMailReleaseText.setStatus('mandatory')
wtWebioEA6x6AlarmSnmpTrapReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 28), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmSnmpTrapReleaseText.setStatus('mandatory')
wtWebioEA6x6AlarmUdpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 29), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmUdpReleaseText.setStatus('mandatory')
wtWebioEA6x6AlarmTcpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 30), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmTcpReleaseText.setStatus('mandatory')
wtWebioEA6x6AlarmSyslogReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 31), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmSyslogReleaseText.setStatus('mandatory')
wtWebioEA6x6AlarmFtpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 32), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6AlarmFtpReleaseText.setStatus('mandatory')
wtWebioEA6x6InputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 1), )
if mibBuilder.loadTexts: wtWebioEA6x6InputPortTable.setStatus('mandatory')
wtWebioEA6x6InputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA6x6InputNo"))
if mibBuilder.loadTexts: wtWebioEA6x6InputPortEntry.setStatus('mandatory')
wtWebioEA6x6PortInputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6PortInputName.setStatus('mandatory')
wtWebioEA6x6PortInputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6PortInputText.setStatus('mandatory')
wtWebioEA6x6PortInputMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6PortInputMode.setStatus('mandatory')
wtWebioEA6x6PortInputFilter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6PortInputFilter.setStatus('mandatory')
wtWebioEA6x6PortInputBicountPulsePolarity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6PortInputBicountPulsePolarity.setStatus('mandatory')
wtWebioEA6x6PortInputBicountInactivTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 1, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6PortInputBicountInactivTimeout.setStatus('mandatory')
wtWebioEA6x6OutputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2), )
if mibBuilder.loadTexts: wtWebioEA6x6OutputPortTable.setStatus('mandatory')
wtWebioEA6x6OutputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA6x6OutputNo"))
if mibBuilder.loadTexts: wtWebioEA6x6OutputPortEntry.setStatus('mandatory')
wtWebioEA6x6PortOutputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6PortOutputName.setStatus('mandatory')
wtWebioEA6x6PortOutputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6PortOutputText.setStatus('mandatory')
wtWebioEA6x6PortOutputGroupMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6PortOutputGroupMode.setStatus('mandatory')
wtWebioEA6x6PortOutputSafetyState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6PortOutputSafetyState.setStatus('mandatory')
wtWebioEA6x6PortLogicInputMask = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6PortLogicInputMask.setStatus('mandatory')
wtWebioEA6x6PortLogicInputInverter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6PortLogicInputInverter.setStatus('mandatory')
wtWebioEA6x6PortLogicFunction = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6PortLogicFunction.setStatus('mandatory')
wtWebioEA6x6PortLogicOutputInverter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2, 1, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6PortLogicOutputInverter.setStatus('mandatory')
wtWebioEA6x6PortPulseDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6PortPulseDuration.setStatus('mandatory')
wtWebioEA6x6PortPulsePolarity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6PortPulsePolarity.setStatus('mandatory')
wtWebioEA6x6MfName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6MfName.setStatus('mandatory')
wtWebioEA6x6MfAddr = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6MfAddr.setStatus('mandatory')
wtWebioEA6x6MfHotline = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6MfHotline.setStatus('mandatory')
wtWebioEA6x6MfInternet = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6MfInternet.setStatus('mandatory')
wtWebioEA6x6MfDeviceTyp = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 3, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6MfDeviceTyp.setStatus('mandatory')
wtWebioEA6x6DiagErrorCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA6x6DiagErrorCount.setStatus('mandatory')
wtWebioEA6x6DiagBinaryError = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 4, 2), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA6x6DiagBinaryError.setStatus('mandatory')
wtWebioEA6x6DiagErrorIndex = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 4, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA6x6DiagErrorIndex.setStatus('mandatory')
wtWebioEA6x6DiagErrorMessage = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 4, 4), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA6x6DiagErrorMessage.setStatus('mandatory')
wtWebioEA6x6DiagErrorClear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 4, 5), Integer32()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: wtWebioEA6x6DiagErrorClear.setStatus('mandatory')
wtWebioEA6x6Alert1 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,41)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapText"))
wtWebioEA6x6Alert2 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,42)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapText"))
wtWebioEA6x6Alert3 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,43)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapText"))
wtWebioEA6x6Alert4 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,44)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapText"))
wtWebioEA6x6Alert5 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,45)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapText"))
wtWebioEA6x6Alert6 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,46)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapText"))
wtWebioEA6x6Alert7 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,47)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapText"))
wtWebioEA6x6Alert8 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,48)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapText"))
wtWebioEA6x6Alert9 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,49)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapText"))
wtWebioEA6x6Alert10 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,50)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapText"))
wtWebioEA6x6Alert11 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,51)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapText"))
wtWebioEA6x6Alert12 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,52)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapText"))
wtWebioEA6x6Alert13 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,71)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapReleaseText"))
wtWebioEA6x6Alert14 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,72)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapReleaseText"))
wtWebioEA6x6Alert15 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,73)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapReleaseText"))
wtWebioEA6x6Alert16 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,74)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapReleaseText"))
wtWebioEA6x6Alert17 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,75)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapReleaseText"))
wtWebioEA6x6Alert18 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,76)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapReleaseText"))
wtWebioEA6x6Alert19 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,77)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapReleaseText"))
wtWebioEA6x6Alert20 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,78)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapReleaseText"))
wtWebioEA6x6Alert21 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,79)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapReleaseText"))
wtWebioEA6x6Alert22 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,80)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapReleaseText"))
wtWebioEA6x6Alert23 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,81)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapReleaseText"))
wtWebioEA6x6Alert24 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,82)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6AlarmSnmpTrapReleaseText"))
wtWebioEA6x6AlertDiag = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0,110)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA6x6DiagErrorIndex"), ("Webio-Digital-MIB-US", "wtWebioEA6x6DiagErrorMessage"))
wtWebioEA2x2ERPInputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERPInputs.setStatus('mandatory')
wtWebioEA2x2ERPOutputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERPOutputs.setStatus('mandatory')
wtWebioEA2x2ERPInputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 3), )
if mibBuilder.loadTexts: wtWebioEA2x2ERPInputTable.setStatus('mandatory')
wtWebioEA2x2ERPInputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2ERPInputNo"))
if mibBuilder.loadTexts: wtWebioEA2x2ERPInputEntry.setStatus('mandatory')
wtWebioEA2x2ERPInputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERPInputNo.setStatus('mandatory')
wtWebioEA2x2ERPInputCounter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERPInputCounter.setStatus('mandatory')
wtWebioEA2x2ERPInputCounterClear = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERPInputCounterClear.setStatus('mandatory')
wtWebioEA2x2ERPInputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA2x2ERPInputState-OFF", 0), ("wtWebioEA2x2ERPInputState-ON", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERPInputState.setStatus('mandatory')
wtWebioEA2x2ERPInputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERPInputValue.setStatus('mandatory')
wtWebioEA2x2ERPOutputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 5), )
if mibBuilder.loadTexts: wtWebioEA2x2ERPOutputTable.setStatus('mandatory')
wtWebioEA2x2ERPOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 5, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2ERPOutputNo"))
if mibBuilder.loadTexts: wtWebioEA2x2ERPOutputEntry.setStatus('mandatory')
wtWebioEA2x2ERPOutputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERPOutputNo.setStatus('mandatory')
wtWebioEA2x2ERPOutputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 5, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA2x2ERPOutputState-OFF", 0), ("wtWebioEA2x2ERPOutputState-ON", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPOutputState.setStatus('mandatory')
wtWebioEA2x2ERPOutputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPOutputValue.setStatus('mandatory')
wtWebioEA2x2ERPSetOutput = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPSetOutput.setStatus('mandatory')
wtWebioEA2x2ERPSessCntrlPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPSessCntrlPassword.setStatus('mandatory')
wtWebioEA2x2ERPSessCntrlConfigMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA2x2ERPSessCntrl-NoSession", 0), ("wtWebioEA2x2ERPSessCntrl-Session", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERPSessCntrlConfigMode.setStatus('mandatory')
wtWebioEA2x2ERPSessCntrlLogout = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 2, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPSessCntrlLogout.setStatus('mandatory')
wtWebioEA2x2ERPSessCntrlAdminPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 2, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPSessCntrlAdminPassword.setStatus('mandatory')
wtWebioEA2x2ERPSessCntrlConfigPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 2, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPSessCntrlConfigPassword.setStatus('mandatory')
wtWebioEA2x2ERPDeviceName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPDeviceName.setStatus('mandatory')
wtWebioEA2x2ERPDeviceText = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPDeviceText.setStatus('mandatory')
wtWebioEA2x2ERPDeviceLocation = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPDeviceLocation.setStatus('mandatory')
wtWebioEA2x2ERPDeviceContact = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPDeviceContact.setStatus('mandatory')
wtWebioEA2x2ERPTzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPTzOffsetHrs.setStatus('mandatory')
wtWebioEA2x2ERPTzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPTzOffsetMin.setStatus('mandatory')
wtWebioEA2x2ERPTzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPTzEnable.setStatus('mandatory')
wtWebioEA2x2ERPStTzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPStTzOffsetHrs.setStatus('mandatory')
wtWebioEA2x2ERPStTzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPStTzOffsetMin.setStatus('mandatory')
wtWebioEA2x2ERPStTzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPStTzEnable.setStatus('mandatory')
wtWebioEA2x2ERPStTzStartMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA2x2ERPStartMonth-January", 1), ("wtWebioEA2x2ERPStartMonth-February", 2), ("wtWebioEA2x2ERPStartMonth-March", 3), ("wtWebioEA2x2ERPStartMonth-April", 4), ("wtWebioEA2x2ERPStartMonth-May", 5), ("wtWebioEA2x2ERPStartMonth-June", 6), ("wtWebioEA2x2ERPStartMonth-July", 7), ("wtWebioEA2x2ERPStartMonth-August", 8), ("wtWebioEA2x2ERPStartMonth-September", 9), ("wtWebioEA2x2ERPStartMonth-October", 10), ("wtWebioEA2x2ERPStartMonth-November", 11), ("wtWebioEA2x2ERPStartMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPStTzStartMonth.setStatus('mandatory')
wtWebioEA2x2ERPStTzStartMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtWebioEA2x2ERPStartMode-first", 1), ("wtWebioEA2x2ERPStartMode-second", 2), ("wtWebioEA2x2ERPStartMode-third", 3), ("wtWebioEA2x2ERPStartMode-fourth", 4), ("wtWebioEA2x2ERPStartMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPStTzStartMode.setStatus('mandatory')
wtWebioEA2x2ERPStTzStartWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtWebioEA2x2ERPStartWday-Sunday", 1), ("wtWebioEA2x2ERPStartWday-Monday", 2), ("wtWebioEA2x2ERPStartWday-Tuesday", 3), ("wtWebioEA2x2ERPStartWday-Thursday", 4), ("wtWebioEA2x2ERPStartWday-Wednesday", 5), ("wtWebioEA2x2ERPStartWday-Friday", 6), ("wtWebioEA2x2ERPStartWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPStTzStartWday.setStatus('mandatory')
wtWebioEA2x2ERPStTzStartHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPStTzStartHrs.setStatus('mandatory')
wtWebioEA2x2ERPStTzStartMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPStTzStartMin.setStatus('mandatory')
wtWebioEA2x2ERPStTzStopMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA2x2ERPStopMonth-January", 1), ("wtWebioEA2x2ERPStopMonth-February", 2), ("wtWebioEA2x2ERPStopMonth-March", 3), ("wtWebioEA2x2ERPStopMonth-April", 4), ("wtWebioEA2x2ERPStopMonth-May", 5), ("wtWebioEA2x2ERPStopMonth-June", 6), ("wtWebioEA2x2ERPStopMonth-July", 7), ("wtWebioEA2x2ERPStopMonth-August", 8), ("wtWebioEA2x2ERPStopMonth-September", 9), ("wtWebioEA2x2ERPStopMonth-October", 10), ("wtWebioEA2x2ERPStopMonth-November", 11), ("wtWebioEA2x2ERPStopMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPStTzStopMonth.setStatus('mandatory')
wtWebioEA2x2ERPStTzStopMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtWebioEA2x2ERPStopMode-first", 1), ("wtWebioEA2x2ERPStopMode-second", 2), ("wtWebioEA2x2ERPStopMode-third", 3), ("wtWebioEA2x2ERPStopMode-fourth", 4), ("wtWebioEA2x2ERPStopMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPStTzStopMode.setStatus('mandatory')
wtWebioEA2x2ERPStTzStopWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtWebioEA2x2ERPStopWday-Sunday", 1), ("wtWebioEA2x2ERPStopWday-Monday", 2), ("wtWebioEA2x2ERPStopWday-Tuesday", 3), ("wtWebioEA2x2ERPStopWday-Thursday", 4), ("wtWebioEA2x2ERPStopWday-Wednesday", 5), ("wtWebioEA2x2ERPStopWday-Friday", 6), ("wtWebioEA2x2ERPStopWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPStTzStopWday.setStatus('mandatory')
wtWebioEA2x2ERPStTzStopHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 15), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPStTzStopHrs.setStatus('mandatory')
wtWebioEA2x2ERPStTzStopMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 16), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPStTzStopMin.setStatus('mandatory')
wtWebioEA2x2ERPTimeServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPTimeServer1.setStatus('mandatory')
wtWebioEA2x2ERPTimeServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 2, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPTimeServer2.setStatus('mandatory')
wtWebioEA2x2ERPTsEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 2, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPTsEnable.setStatus('mandatory')
wtWebioEA2x2ERPTsSyncTime = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 2, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPTsSyncTime.setStatus('mandatory')
wtWebioEA2x2ERPClockHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 3, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 23))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPClockHrs.setStatus('mandatory')
wtWebioEA2x2ERPClockMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 3, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 59))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPClockMin.setStatus('mandatory')
wtWebioEA2x2ERPClockDay = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 3, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPClockDay.setStatus('mandatory')
wtWebioEA2x2ERPClockMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 3, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA2x2ERPClockMonth-January", 1), ("wtWebioEA2x2ERPClockMonth-February", 2), ("wtWebioEA2x2ERPClockMonth-March", 3), ("wtWebioEA2x2ERPClockMonth-April", 4), ("wtWebioEA2x2ERPClockMonth-May", 5), ("wtWebioEA2x2ERPClockMonth-June", 6), ("wtWebioEA2x2ERPClockMonth-July", 7), ("wtWebioEA2x2ERPClockMonth-August", 8), ("wtWebioEA2x2ERPClockMonth-September", 9), ("wtWebioEA2x2ERPClockMonth-October", 10), ("wtWebioEA2x2ERPClockMonth-November", 11), ("wtWebioEA2x2ERPClockMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPClockMonth.setStatus('mandatory')
wtWebioEA2x2ERPClockYear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 3, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPClockYear.setStatus('mandatory')
wtWebioEA2x2ERPIpAddress = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPIpAddress.setStatus('mandatory')
wtWebioEA2x2ERPSubnetMask = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPSubnetMask.setStatus('mandatory')
wtWebioEA2x2ERPGateway = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPGateway.setStatus('mandatory')
wtWebioEA2x2ERPDnsServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPDnsServer1.setStatus('mandatory')
wtWebioEA2x2ERPDnsServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPDnsServer2.setStatus('mandatory')
wtWebioEA2x2ERPAddConfig = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 1, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAddConfig.setStatus('mandatory')
wtWebioEA2x2ERPStartup = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPStartup.setStatus('mandatory')
wtWebioEA2x2ERPGetHeaderEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 2, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPGetHeaderEnable.setStatus('mandatory')
wtWebioEA2x2ERPHttpInputTrigger = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 2, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPHttpInputTrigger.setStatus('mandatory')
wtWebioEA2x2ERPHttpPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 2, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPHttpPort.setStatus('mandatory')
wtWebioEA2x2ERPMailAdName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPMailAdName.setStatus('mandatory')
wtWebioEA2x2ERPMailReply = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPMailReply.setStatus('mandatory')
wtWebioEA2x2ERPMailServer = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPMailServer.setStatus('mandatory')
wtWebioEA2x2ERPMailEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPMailEnable.setStatus('mandatory')
wtWebioEA2x2ERPMailAuthentication = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 3, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPMailAuthentication.setStatus('mandatory')
wtWebioEA2x2ERPMailAuthUser = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 3, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPMailAuthUser.setStatus('mandatory')
wtWebioEA2x2ERPMailAuthPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 3, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPMailAuthPassword.setStatus('mandatory')
wtWebioEA2x2ERPMailPop3Server = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 3, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPMailPop3Server.setStatus('mandatory')
wtWebioEA2x2ERPSnmpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 4, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPSnmpEnable.setStatus('mandatory')
wtWebioEA2x2ERPSnmpCommunityStringRead = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 4, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPSnmpCommunityStringRead.setStatus('mandatory')
wtWebioEA2x2ERPSnmpCommunityStringReadWrite = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 4, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPSnmpCommunityStringReadWrite.setStatus('mandatory')
wtWebioEA2x2ERPSnmpSystemTrapManagerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 4, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPSnmpSystemTrapManagerIP.setStatus('mandatory')
wtWebioEA2x2ERPSnmpSystemTrapEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 4, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPSnmpSystemTrapEnable.setStatus('mandatory')
wtWebioEA2x2ERPUdpAdminPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 5, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPUdpAdminPort.setStatus('mandatory')
wtWebioEA2x2ERPUdpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 5, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPUdpEnable.setStatus('mandatory')
wtWebioEA2x2ERPUdpRemotePort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 5, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPUdpRemotePort.setStatus('mandatory')
wtWebioEA2x2ERPBinaryModeCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryModeCount.setStatus('mandatory')
wtWebioEA2x2ERPBinaryIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 2), )
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryIfTable.setStatus('mandatory')
wtWebioEA2x2ERPBinaryIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2ERPBinaryModeNo"))
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryIfEntry.setStatus('mandatory')
wtWebioEA2x2ERPBinaryModeNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryModeNo.setStatus('mandatory')
wtWebioEA2x2ERPBinaryTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3), )
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryTable.setStatus('mandatory')
wtWebioEA2x2ERPBinaryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2ERPBinaryModeNo"))
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryEntry.setStatus('mandatory')
wtWebioEA2x2ERPBinaryOperationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryOperationMode.setStatus('mandatory')
wtWebioEA2x2ERPBinaryTcpServerLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryTcpServerLocalPort.setStatus('mandatory')
wtWebioEA2x2ERPBinaryTcpServerInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryTcpServerInputTrigger.setStatus('mandatory')
wtWebioEA2x2ERPBinaryTcpServerApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryTcpServerApplicationMode.setStatus('mandatory')
wtWebioEA2x2ERPBinaryTcpClientLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryTcpClientLocalPort.setStatus('mandatory')
wtWebioEA2x2ERPBinaryTcpClientServerPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryTcpClientServerPort.setStatus('mandatory')
wtWebioEA2x2ERPBinaryTcpClientServerIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryTcpClientServerIpAddr.setStatus('mandatory')
wtWebioEA2x2ERPBinaryTcpClientServerPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryTcpClientServerPassword.setStatus('mandatory')
wtWebioEA2x2ERPBinaryTcpClientInactivity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryTcpClientInactivity.setStatus('mandatory')
wtWebioEA2x2ERPBinaryTcpClientInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryTcpClientInputTrigger.setStatus('mandatory')
wtWebioEA2x2ERPBinaryTcpClientInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryTcpClientInterval.setStatus('mandatory')
wtWebioEA2x2ERPBinaryTcpClientApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 12), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryTcpClientApplicationMode.setStatus('mandatory')
wtWebioEA2x2ERPBinaryUdpPeerLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryUdpPeerLocalPort.setStatus('mandatory')
wtWebioEA2x2ERPBinaryUdpPeerRemotePort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryUdpPeerRemotePort.setStatus('mandatory')
wtWebioEA2x2ERPBinaryUdpPeerRemoteIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 15), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryUdpPeerRemoteIpAddr.setStatus('mandatory')
wtWebioEA2x2ERPBinaryUdpPeerInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 16), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryUdpPeerInputTrigger.setStatus('mandatory')
wtWebioEA2x2ERPBinaryUdpPeerInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryUdpPeerInterval.setStatus('mandatory')
wtWebioEA2x2ERPBinaryUdpPeerApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 18), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryUdpPeerApplicationMode.setStatus('mandatory')
wtWebioEA2x2ERPBinaryConnectedPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryConnectedPort.setStatus('mandatory')
wtWebioEA2x2ERPBinaryConnectedIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 20), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryConnectedIpAddr.setStatus('mandatory')
wtWebioEA2x2ERPBinaryTcpServerClientHttpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryTcpServerClientHttpPort.setStatus('mandatory')
wtWebioEA2x2ERPBinaryTcpClientServerHttpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPBinaryTcpClientServerHttpPort.setStatus('mandatory')
wtWebioEA2x2ERPSyslogServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 7, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPSyslogServerIP.setStatus('mandatory')
wtWebioEA2x2ERPSyslogServerPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 7, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPSyslogServerPort.setStatus('mandatory')
wtWebioEA2x2ERPSyslogSystemMessagesEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 7, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPSyslogSystemMessagesEnable.setStatus('mandatory')
wtWebioEA2x2ERPSyslogEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 7, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPSyslogEnable.setStatus('mandatory')
wtWebioEA2x2ERPFTPServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 8, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPFTPServerIP.setStatus('mandatory')
wtWebioEA2x2ERPFTPServerControlPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 8, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPFTPServerControlPort.setStatus('mandatory')
wtWebioEA2x2ERPFTPUserName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 8, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPFTPUserName.setStatus('mandatory')
wtWebioEA2x2ERPFTPPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 8, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPFTPPassword.setStatus('mandatory')
wtWebioEA2x2ERPFTPAccount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 8, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPFTPAccount.setStatus('mandatory')
wtWebioEA2x2ERPFTPOption = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 8, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPFTPOption.setStatus('mandatory')
wtWebioEA2x2ERPFTPEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 8, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPFTPEnable.setStatus('mandatory')
wtWebioEA2x2ERPWayBackEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 10, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPWayBackEnable.setStatus('mandatory')
wtWebioEA2x2ERPWayBackServerControlPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 10, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPWayBackServerControlPort.setStatus('mandatory')
wtWebioEA2x2ERPWayBackFTPPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 10, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPWayBackFTPPassword.setStatus('mandatory')
wtWebioEA2x2ERPWayBackFTPResponse = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 10, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPWayBackFTPResponse.setStatus('mandatory')
wtWebioEA2x2ERPWayBackFTPTimeOut = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 10, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPWayBackFTPTimeOut.setStatus('mandatory')
wtWebioEA2x2ERPOutputModeTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 4, 1), )
if mibBuilder.loadTexts: wtWebioEA2x2ERPOutputModeTable.setStatus('mandatory')
wtWebioEA2x2ERPOutputModeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 4, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2ERPOutputNo"))
if mibBuilder.loadTexts: wtWebioEA2x2ERPOutputModeEntry.setStatus('mandatory')
wtWebioEA2x2ERPOutputModeBit = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 4, 1, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPOutputModeBit.setStatus('mandatory')
wtWebioEA2x2ERPSafetyTimeout = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 4, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPSafetyTimeout.setStatus('mandatory')
wtWebioEA2x2ERPLoadControlEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 4, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPLoadControlEnable.setStatus('mandatory')
wtWebioEA2x2ERPAlarmCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmCount.setStatus('mandatory')
wtWebioEA2x2ERPAlarmIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 2), )
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmIfTable.setStatus('mandatory')
wtWebioEA2x2ERPAlarmIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmNo"))
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmIfEntry.setStatus('mandatory')
wtWebioEA2x2ERPAlarmNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmNo.setStatus('mandatory')
wtWebioEA2x2ERPAlarmTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3), )
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmTable.setStatus('mandatory')
wtWebioEA2x2ERPAlarmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmNo"))
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmEntry.setStatus('mandatory')
wtWebioEA2x2ERPAlarmInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(12, 12)).setFixedLength(12)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmInputTrigger.setStatus('mandatory')
wtWebioEA2x2ERPAlarmOutputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(12, 12)).setFixedLength(12)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmOutputTrigger.setStatus('mandatory')
wtWebioEA2x2ERPAlarmSystemTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmSystemTrigger.setStatus('mandatory')
wtWebioEA2x2ERPAlarmMaxCounterValue = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmMaxCounterValue.setStatus('mandatory')
wtWebioEA2x2ERPAlarmInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmInterval.setStatus('mandatory')
wtWebioEA2x2ERPAlarmEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmEnable.setStatus('mandatory')
wtWebioEA2x2ERPAlarmMailAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmMailAddr.setStatus('mandatory')
wtWebioEA2x2ERPAlarmMailSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmMailSubject.setStatus('mandatory')
wtWebioEA2x2ERPAlarmMailText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 9), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmMailText.setStatus('mandatory')
wtWebioEA2x2ERPAlarmSnmpManagerIP = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 10), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmSnmpManagerIP.setStatus('mandatory')
wtWebioEA2x2ERPAlarmSnmpTrapText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 11), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmSnmpTrapText.setStatus('mandatory')
wtWebioEA2x2ERPAlarmUdpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 12), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmUdpIpAddr.setStatus('mandatory')
wtWebioEA2x2ERPAlarmUdpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmUdpPort.setStatus('mandatory')
wtWebioEA2x2ERPAlarmUdpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 14), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmUdpText.setStatus('mandatory')
wtWebioEA2x2ERPAlarmTcpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 15), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmTcpIpAddr.setStatus('mandatory')
wtWebioEA2x2ERPAlarmTcpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmTcpPort.setStatus('mandatory')
wtWebioEA2x2ERPAlarmTcpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 17), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmTcpText.setStatus('mandatory')
wtWebioEA2x2ERPAlarmSyslogIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 18), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmSyslogIpAddr.setStatus('mandatory')
wtWebioEA2x2ERPAlarmSyslogPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmSyslogPort.setStatus('mandatory')
wtWebioEA2x2ERPAlarmSyslogText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 20), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmSyslogText.setStatus('mandatory')
wtWebioEA2x2ERPAlarmFtpDataPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 21), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmFtpDataPort.setStatus('mandatory')
wtWebioEA2x2ERPAlarmFtpFileName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 22), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmFtpFileName.setStatus('mandatory')
wtWebioEA2x2ERPAlarmFtpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 23), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmFtpText.setStatus('mandatory')
wtWebioEA2x2ERPAlarmFtpOption = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 24), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmFtpOption.setStatus('mandatory')
wtWebioEA2x2ERPAlarmTimerCron = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 25), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmTimerCron.setStatus('mandatory')
wtWebioEA2x2ERPAlarmMailReleaseSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 26), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmMailReleaseSubject.setStatus('mandatory')
wtWebioEA2x2ERPAlarmMailReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 27), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmMailReleaseText.setStatus('mandatory')
wtWebioEA2x2ERPAlarmSnmpTrapReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 28), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmSnmpTrapReleaseText.setStatus('mandatory')
wtWebioEA2x2ERPAlarmUdpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 29), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmUdpReleaseText.setStatus('mandatory')
wtWebioEA2x2ERPAlarmTcpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 30), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmTcpReleaseText.setStatus('mandatory')
wtWebioEA2x2ERPAlarmSyslogReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 31), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmSyslogReleaseText.setStatus('mandatory')
wtWebioEA2x2ERPAlarmFtpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 32), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPAlarmFtpReleaseText.setStatus('mandatory')
wtWebioEA2x2ERPLoadControlView = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERPLoadControlView.setStatus('mandatory')
wtWebioEA2x2ERPLCShutDownView = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPLCShutDownView.setStatus('mandatory')
wtWebioEA2x2ERPInputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 1), )
if mibBuilder.loadTexts: wtWebioEA2x2ERPInputPortTable.setStatus('mandatory')
wtWebioEA2x2ERPInputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2ERPInputNo"))
if mibBuilder.loadTexts: wtWebioEA2x2ERPInputPortEntry.setStatus('mandatory')
wtWebioEA2x2ERPPortInputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPPortInputName.setStatus('mandatory')
wtWebioEA2x2ERPPortInputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPPortInputText.setStatus('mandatory')
wtWebioEA2x2ERPPortInputMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPPortInputMode.setStatus('mandatory')
wtWebioEA2x2ERPPortInputFilter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPPortInputFilter.setStatus('mandatory')
wtWebioEA2x2ERPPortInputBicountPulsePolarity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPPortInputBicountPulsePolarity.setStatus('mandatory')
wtWebioEA2x2ERPPortInputBicountInactivTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 1, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPPortInputBicountInactivTimeout.setStatus('mandatory')
wtWebioEA2x2ERPOutputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2), )
if mibBuilder.loadTexts: wtWebioEA2x2ERPOutputPortTable.setStatus('mandatory')
wtWebioEA2x2ERPOutputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2ERPOutputNo"))
if mibBuilder.loadTexts: wtWebioEA2x2ERPOutputPortEntry.setStatus('mandatory')
wtWebioEA2x2ERPPortOutputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPPortOutputName.setStatus('mandatory')
wtWebioEA2x2ERPPortOutputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPPortOutputText.setStatus('mandatory')
wtWebioEA2x2ERPPortOutputGroupMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPPortOutputGroupMode.setStatus('mandatory')
wtWebioEA2x2ERPPortOutputSafetyState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPPortOutputSafetyState.setStatus('mandatory')
wtWebioEA2x2ERPPortLogicInputMask = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPPortLogicInputMask.setStatus('mandatory')
wtWebioEA2x2ERPPortLogicInputInverter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPPortLogicInputInverter.setStatus('mandatory')
wtWebioEA2x2ERPPortLogicFunction = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPPortLogicFunction.setStatus('mandatory')
wtWebioEA2x2ERPPortLogicOutputInverter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2, 1, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPPortLogicOutputInverter.setStatus('mandatory')
wtWebioEA2x2ERPPortPulseDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPPortPulseDuration.setStatus('mandatory')
wtWebioEA2x2ERPPortPulsePolarity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPPortPulsePolarity.setStatus('mandatory')
wtWebioEA2x2ERPMfName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPMfName.setStatus('mandatory')
wtWebioEA2x2ERPMfAddr = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPMfAddr.setStatus('mandatory')
wtWebioEA2x2ERPMfHotline = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPMfHotline.setStatus('mandatory')
wtWebioEA2x2ERPMfInternet = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPMfInternet.setStatus('mandatory')
wtWebioEA2x2ERPMfDeviceTyp = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 3, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPMfDeviceTyp.setStatus('mandatory')
wtWebioEA2x2ERPDiagErrorCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERPDiagErrorCount.setStatus('mandatory')
wtWebioEA2x2ERPDiagBinaryError = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 4, 2), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERPDiagBinaryError.setStatus('mandatory')
wtWebioEA2x2ERPDiagErrorIndex = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 4, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERPDiagErrorIndex.setStatus('mandatory')
wtWebioEA2x2ERPDiagErrorMessage = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 4, 4), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERPDiagErrorMessage.setStatus('mandatory')
wtWebioEA2x2ERPDiagErrorClear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 4, 5), Integer32()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERPDiagErrorClear.setStatus('mandatory')
wtWebioEA2x2ERPAlert1 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,41)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapText"))
wtWebioEA2x2ERPAlert2 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,42)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapText"))
wtWebioEA2x2ERPAlert3 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,43)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapText"))
wtWebioEA2x2ERPAlert4 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,44)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapText"))
wtWebioEA2x2ERPAlert5 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,45)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapText"))
wtWebioEA2x2ERPAlert6 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,46)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapText"))
wtWebioEA2x2ERPAlert7 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,47)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapText"))
wtWebioEA2x2ERPAlert8 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,48)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapText"))
wtWebioEA2x2ERPAlert9 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,49)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapText"))
wtWebioEA2x2ERPAlert10 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,50)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapText"))
wtWebioEA2x2ERPAlert11 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,51)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapText"))
wtWebioEA2x2ERPAlert12 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,52)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapText"))
wtWebioEA2x2ERPAlert13 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,71)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERPAlert14 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,72)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERPAlert15 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,73)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERPAlert16 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,74)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERPAlert17 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,75)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERPAlert18 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,76)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERPAlert19 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,77)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERPAlert20 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,78)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERPAlert21 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,79)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERPAlert22 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,80)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERPAlert23 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,81)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERPAlert24 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,82)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERPAlertDiag = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0,110)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERPDiagErrorIndex"), ("Webio-Digital-MIB-US", "wtWebioEA2x2ERPDiagErrorMessage"))
wtWebioEA12x6RelERPInputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPInputs.setStatus('mandatory')
wtWebioEA12x6RelERPOutputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 6))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPOutputs.setStatus('mandatory')
wtWebioEA12x6RelERPInputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 3), )
if mibBuilder.loadTexts: wtWebioEA12x6RelERPInputTable.setStatus('mandatory')
wtWebioEA12x6RelERPInputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x6RelERPInputNo"))
if mibBuilder.loadTexts: wtWebioEA12x6RelERPInputEntry.setStatus('mandatory')
wtWebioEA12x6RelERPInputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPInputNo.setStatus('mandatory')
wtWebioEA12x6RelERPInputCounter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPInputCounter.setStatus('mandatory')
wtWebioEA12x6RelERPInputCounterClear = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPInputCounterClear.setStatus('mandatory')
wtWebioEA12x6RelERPInputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPInputValue.setStatus('mandatory')
wtWebioEA12x6RelERPOutputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 5), )
if mibBuilder.loadTexts: wtWebioEA12x6RelERPOutputTable.setStatus('mandatory')
wtWebioEA12x6RelERPOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 5, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x6RelERPOutputNo"))
if mibBuilder.loadTexts: wtWebioEA12x6RelERPOutputEntry.setStatus('mandatory')
wtWebioEA12x6RelERPOutputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPOutputNo.setStatus('mandatory')
wtWebioEA12x6RelERPOutputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 5, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA12x6RelERPOutputState-OFF", 0), ("wtWebioEA12x6OutputState-ON", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPOutputState.setStatus('mandatory')
wtWebioEA12x6RelERPOutputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPOutputValue.setStatus('mandatory')
wtWebioEA12x6RelERPSetOutput = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPSetOutput.setStatus('mandatory')
wtWebioEA12x6RelERPSessCntrlPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPSessCntrlPassword.setStatus('mandatory')
wtWebioEA12x6RelERPSessCntrlConfigMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA12x6RelERPSessCntrl-NoSession", 0), ("wtWebioEA12x6RelERPSessCntrl-Session", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPSessCntrlConfigMode.setStatus('mandatory')
wtWebioEA12x6RelERPSessCntrlLogout = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 2, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPSessCntrlLogout.setStatus('mandatory')
wtWebioEA12x6RelERPSessCntrlAdminPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 2, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPSessCntrlAdminPassword.setStatus('mandatory')
wtWebioEA12x6RelERPSessCntrlConfigPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 2, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPSessCntrlConfigPassword.setStatus('mandatory')
wtWebioEA12x6RelERPDeviceName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPDeviceName.setStatus('mandatory')
wtWebioEA12x6RelERPDeviceText = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPDeviceText.setStatus('mandatory')
wtWebioEA12x6RelERPDeviceLocation = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPDeviceLocation.setStatus('mandatory')
wtWebioEA12x6RelERPDeviceContact = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPDeviceContact.setStatus('mandatory')
wtWebioEA12x6RelERPTzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPTzOffsetHrs.setStatus('mandatory')
wtWebioEA12x6RelERPTzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPTzOffsetMin.setStatus('mandatory')
wtWebioEA12x6RelERPTzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPTzEnable.setStatus('mandatory')
wtWebioEA12x6RelERPStTzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPStTzOffsetHrs.setStatus('mandatory')
wtWebioEA12x6RelERPStTzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPStTzOffsetMin.setStatus('mandatory')
wtWebioEA12x6RelERPStTzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPStTzEnable.setStatus('mandatory')
wtWebioEA12x6RelERPStTzStartMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA12x6RelERPStartMonth-January", 1), ("wtWebioEA12x6RelERPStartMonth-February", 2), ("wtWebioEA12x6RelERPStartMonth-March", 3), ("wtWebioEA12x6RelERPStartMonth-April", 4), ("wtWebioEA12x6RelERPStartMonth-May", 5), ("wtWebioEA12x6RelERPStartMonth-June", 6), ("wtWebioEA12x6RelERPStartMonth-July", 7), ("wtWebioEA12x6RelERPStartMonth-August", 8), ("wtWebioEA12x6RelERPStartMonth-September", 9), ("wtWebioEA12x6RelERPStartMonth-October", 10), ("wtWebioEA12x6RelERPStartMonth-November", 11), ("wtWebioEA12x6RelERPStartMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPStTzStartMonth.setStatus('mandatory')
wtWebioEA12x6RelERPStTzStartMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtWebioEA12x6RelERPStartMode-first", 1), ("wtWebioEA12x6RelERPStartMode-second", 2), ("wtWebioEA12x6RelERPStartMode-third", 3), ("wtWebioEA12x6RelERPStartMode-fourth", 4), ("wtWebioEA12x6RelERPStartMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPStTzStartMode.setStatus('mandatory')
wtWebioEA12x6RelERPStTzStartWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtWebioEA12x6RelERPStartWday-Sunday", 1), ("wtWebioEA12x6RelERPStartWday-Monday", 2), ("wtWebioEA12x6RelERPStartWday-Tuesday", 3), ("wtWebioEA12x6RelERPStartWday-Thursday", 4), ("wtWebioEA12x6RelERPStartWday-Wednesday", 5), ("wtWebioEA12x6RelERPStartWday-Friday", 6), ("wtWebioEA12x6RelERPStartWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPStTzStartWday.setStatus('mandatory')
wtWebioEA12x6RelERPStTzStartHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPStTzStartHrs.setStatus('mandatory')
wtWebioEA12x6RelERPStTzStartMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPStTzStartMin.setStatus('mandatory')
wtWebioEA12x6RelERPStTzStopMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA12x6RelERPStopMonth-January", 1), ("wtWebioEA12x6RelERPStopMonth-February", 2), ("wtWebioEA12x6RelERPStopMonth-March", 3), ("wtWebioEA12x6RelERPStopMonth-April", 4), ("wtWebioEA12x6RelERPStopMonth-May", 5), ("wtWebioEA12x6RelERPStopMonth-June", 6), ("wtWebioEA12x6RelERPStopMonth-July", 7), ("wtWebioEA12x6RelERPStopMonth-August", 8), ("wtWebioEA12x6RelERPStopMonth-September", 9), ("wtWebioEA12x6RelERPStopMonth-October", 10), ("wtWebioEA12x6RelERPStopMonth-November", 11), ("wtWebioEA12x6RelERPStopMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPStTzStopMonth.setStatus('mandatory')
wtWebioEA12x6RelERPStTzStopMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtWebioEA12x6RelERPStopMode-first", 1), ("wtWebioEA12x6RelERPStopMode-second", 2), ("wtWebioEA12x6RelERPStopMode-third", 3), ("wtWebioEA12x6RelERPStopMode-fourth", 4), ("wtWebioEA12x6RelERPStopMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPStTzStopMode.setStatus('mandatory')
wtWebioEA12x6RelERPStTzStopWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtWebioEA12x6RelERPStopWday-Sunday", 1), ("wtWebioEA12x6RelERPStopWday-Monday", 2), ("wtWebioEA12x6RelERPStopWday-Tuesday", 3), ("wtWebioEA12x6RelERPStopWday-Thursday", 4), ("wtWebioEA12x6RelERPStopWday-Wednesday", 5), ("wtWebioEA12x6RelERPStopWday-Friday", 6), ("wtWebioEA12x6RelERPStopWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPStTzStopWday.setStatus('mandatory')
wtWebioEA12x6RelERPStTzStopHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 15), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPStTzStopHrs.setStatus('mandatory')
wtWebioEA12x6RelERPStTzStopMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 16), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPStTzStopMin.setStatus('mandatory')
wtWebioEA12x6RelERPTimeServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPTimeServer1.setStatus('mandatory')
wtWebioEA12x6RelERPTimeServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 2, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPTimeServer2.setStatus('mandatory')
wtWebioEA12x6RelERPTsEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 2, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPTsEnable.setStatus('mandatory')
wtWebioEA12x6RelERPTsSyncTime = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 2, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPTsSyncTime.setStatus('mandatory')
wtWebioEA12x6RelERPClockHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 3, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 23))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPClockHrs.setStatus('mandatory')
wtWebioEA12x6RelERPClockMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 3, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 59))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPClockMin.setStatus('mandatory')
wtWebioEA12x6RelERPClockDay = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 3, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPClockDay.setStatus('mandatory')
wtWebioEA12x6RelERPClockMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 3, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA12x6RelERPClockMonth-January", 1), ("wtWebioEA12x6RelERPClockMonth-February", 2), ("wtWebioEA12x6RelERPClockMonth-March", 3), ("wtWebioEA12x6RelERPClockMonth-April", 4), ("wtWebioEA12x6RelERPClockMonth-May", 5), ("wtWebioEA12x6RelERPClockMonth-June", 6), ("wtWebioEA12x6RelERPClockMonth-July", 7), ("wtWebioEA12x6RelERPClockMonth-August", 8), ("wtWebioEA12x6RelERPClockMonth-September", 9), ("wtWebioEA12x6RelERPClockMonth-October", 10), ("wtWebioEA12x6RelERPClockMonth-November", 11), ("wtWebioEA12x6RelERPClockMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPClockMonth.setStatus('mandatory')
wtWebioEA12x6RelERPClockYear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 3, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPClockYear.setStatus('mandatory')
wtWebioEA12x6RelERPIpAddress = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPIpAddress.setStatus('mandatory')
wtWebioEA12x6RelERPSubnetMask = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPSubnetMask.setStatus('mandatory')
wtWebioEA12x6RelERPGateway = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPGateway.setStatus('mandatory')
wtWebioEA12x6RelERPDnsServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPDnsServer1.setStatus('mandatory')
wtWebioEA12x6RelERPDnsServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPDnsServer2.setStatus('mandatory')
wtWebioEA12x6RelERPAddConfig = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 1, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAddConfig.setStatus('mandatory')
wtWebioEA12x6RelERPStartup = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPStartup.setStatus('mandatory')
wtWebioEA12x6RelERPGetHeaderEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 2, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPGetHeaderEnable.setStatus('mandatory')
wtWebioEA12x6RelERPHttpInputTrigger = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 2, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPHttpInputTrigger.setStatus('mandatory')
wtWebioEA12x6RelERPHttpPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 2, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPHttpPort.setStatus('mandatory')
wtWebioEA12x6RelERPMailAdName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPMailAdName.setStatus('mandatory')
wtWebioEA12x6RelERPMailReply = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPMailReply.setStatus('mandatory')
wtWebioEA12x6RelERPMailServer = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPMailServer.setStatus('mandatory')
wtWebioEA12x6RelERPMailEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPMailEnable.setStatus('mandatory')
wtWebioEA12x6RelERPMailAuthentication = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 3, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPMailAuthentication.setStatus('mandatory')
wtWebioEA12x6RelERPMailAuthUser = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 3, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPMailAuthUser.setStatus('mandatory')
wtWebioEA12x6RelERPMailAuthPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 3, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPMailAuthPassword.setStatus('mandatory')
wtWebioEA12x6RelERPMailPop3Server = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 3, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPMailPop3Server.setStatus('mandatory')
wtWebioEA12x6RelERPSnmpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 4, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPSnmpEnable.setStatus('mandatory')
wtWebioEA12x6RelERPSnmpCommunityStringRead = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 4, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPSnmpCommunityStringRead.setStatus('mandatory')
wtWebioEA12x6RelERPSnmpCommunityStringReadWrite = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 4, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPSnmpCommunityStringReadWrite.setStatus('mandatory')
wtWebioEA12x6RelERPSnmpSystemTrapManagerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 4, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPSnmpSystemTrapManagerIP.setStatus('mandatory')
wtWebioEA12x6RelERPSnmpSystemTrapEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 4, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPSnmpSystemTrapEnable.setStatus('mandatory')
wtWebioEA12x6RelERPUdpAdminPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 5, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPUdpAdminPort.setStatus('mandatory')
wtWebioEA12x6RelERPUdpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 5, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPUdpEnable.setStatus('mandatory')
wtWebioEA12x6RelERPUdpRemotePort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 5, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPUdpRemotePort.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryModeCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryModeCount.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 2), )
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryIfTable.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x6RelERPBinaryModeNo"))
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryIfEntry.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryModeNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryModeNo.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3), )
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryTable.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x6RelERPBinaryModeNo"))
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryEntry.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryOperationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryOperationMode.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryTcpServerLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryTcpServerLocalPort.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryTcpServerInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryTcpServerInputTrigger.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryTcpServerApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryTcpServerApplicationMode.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryTcpClientLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryTcpClientLocalPort.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryTcpClientServerPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryTcpClientServerPort.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryTcpClientServerIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryTcpClientServerIpAddr.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryTcpClientServerPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryTcpClientServerPassword.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryTcpClientInactivity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryTcpClientInactivity.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryTcpClientInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryTcpClientInputTrigger.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryTcpClientInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryTcpClientInterval.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryTcpClientApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 12), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryTcpClientApplicationMode.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryUdpPeerLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryUdpPeerLocalPort.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryUdpPeerRemotePort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryUdpPeerRemotePort.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryUdpPeerRemoteIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 15), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryUdpPeerRemoteIpAddr.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryUdpPeerInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 16), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryUdpPeerInputTrigger.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryUdpPeerInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryUdpPeerInterval.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryUdpPeerApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 18), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryUdpPeerApplicationMode.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryConnectedPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryConnectedPort.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryConnectedIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 20), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryConnectedIpAddr.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryTcpServerClientHttpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryTcpServerClientHttpPort.setStatus('mandatory')
wtWebioEA12x6RelERPBinaryTcpClientServerHttpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPBinaryTcpClientServerHttpPort.setStatus('mandatory')
wtWebioEA12x6RelERPSyslogServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 7, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPSyslogServerIP.setStatus('mandatory')
wtWebioEA12x6RelERPSyslogServerPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 7, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPSyslogServerPort.setStatus('mandatory')
wtWebioEA12x6RelERPSyslogSystemMessagesEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 7, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPSyslogSystemMessagesEnable.setStatus('mandatory')
wtWebioEA12x6RelERPSyslogEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 7, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPSyslogEnable.setStatus('mandatory')
wtWebioEA12x6RelERPFTPServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 8, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPFTPServerIP.setStatus('mandatory')
wtWebioEA12x6RelERPFTPServerControlPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 8, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPFTPServerControlPort.setStatus('mandatory')
wtWebioEA12x6RelERPFTPUserName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 8, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPFTPUserName.setStatus('mandatory')
wtWebioEA12x6RelERPFTPPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 8, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPFTPPassword.setStatus('mandatory')
wtWebioEA12x6RelERPFTPAccount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 8, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPFTPAccount.setStatus('mandatory')
wtWebioEA12x6RelERPFTPOption = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 8, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPFTPOption.setStatus('mandatory')
wtWebioEA12x6RelERPFTPEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 8, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPFTPEnable.setStatus('mandatory')
wtWebioEA12x6RelERPWayBackEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 10, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPWayBackEnable.setStatus('mandatory')
wtWebioEA12x6RelERPWayBackServerControlPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 10, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPWayBackServerControlPort.setStatus('mandatory')
wtWebioEA12x6RelERPWayBackFTPPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 10, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPWayBackFTPPassword.setStatus('mandatory')
wtWebioEA12x6RelERPWayBackFTPResponse = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 10, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPWayBackFTPResponse.setStatus('mandatory')
wtWebioEA12x6RelERPWayBackFTPTimeOut = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 10, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPWayBackFTPTimeOut.setStatus('mandatory')
wtWebioEA12x6RelERPOutputModeTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 4, 1), )
if mibBuilder.loadTexts: wtWebioEA12x6RelERPOutputModeTable.setStatus('mandatory')
wtWebioEA12x6RelERPOutputModeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 4, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x6RelERPOutputNo"))
if mibBuilder.loadTexts: wtWebioEA12x6RelERPOutputModeEntry.setStatus('mandatory')
wtWebioEA12x6RelERPOutputModeBit = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 4, 1, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPOutputModeBit.setStatus('mandatory')
wtWebioEA12x6RelERPSafetyTimeout = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 4, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPSafetyTimeout.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmCount.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 2), )
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmIfTable.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmNo"))
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmIfEntry.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 12))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmNo.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3), )
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmTable.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmNo"))
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmEntry.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(12, 12)).setFixedLength(12)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmInputTrigger.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmOutputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(12, 12)).setFixedLength(12)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmOutputTrigger.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmSystemTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmSystemTrigger.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmMaxCounterValue = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmMaxCounterValue.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmInterval.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmEnable.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmMailAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmMailAddr.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmMailSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmMailSubject.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmMailText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 9), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmMailText.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmSnmpManagerIP = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 10), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmSnmpManagerIP.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmSnmpTrapText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 11), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmSnmpTrapText.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmUdpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 12), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmUdpIpAddr.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmUdpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmUdpPort.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmUdpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 14), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmUdpText.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmTcpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 15), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmTcpIpAddr.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmTcpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmTcpPort.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmTcpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 17), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmTcpText.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmSyslogIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 18), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmSyslogIpAddr.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmSyslogPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmSyslogPort.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmSyslogText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 20), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmSyslogText.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmFtpDataPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 21), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmFtpDataPort.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmFtpFileName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 22), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmFtpFileName.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmFtpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 23), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmFtpText.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmFtpOption = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 24), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmFtpOption.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmTimerCron = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 25), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmTimerCron.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmMailReleaseSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 26), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmMailReleaseSubject.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmMailReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 27), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmMailReleaseText.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 28), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmUdpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 29), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmUdpReleaseText.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmTcpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 30), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmTcpReleaseText.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmSyslogReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 31), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmSyslogReleaseText.setStatus('mandatory')
wtWebioEA12x6RelERPAlarmFtpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 32), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPAlarmFtpReleaseText.setStatus('mandatory')
wtWebioEA12x6RelERPInputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 1), )
if mibBuilder.loadTexts: wtWebioEA12x6RelERPInputPortTable.setStatus('mandatory')
wtWebioEA12x6RelERPInputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x6RelERPInputNo"))
if mibBuilder.loadTexts: wtWebioEA12x6RelERPInputPortEntry.setStatus('mandatory')
wtWebioEA12x6RelERPPortInputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPPortInputName.setStatus('mandatory')
wtWebioEA12x6RelERPPortInputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPPortInputText.setStatus('mandatory')
wtWebioEA12x6RelERPPortInputMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPPortInputMode.setStatus('mandatory')
wtWebioEA12x6RelERPPortInputFilter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPPortInputFilter.setStatus('mandatory')
wtWebioEA12x6RelERPPortInputBicountPulsePolarity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPPortInputBicountPulsePolarity.setStatus('mandatory')
wtWebioEA12x6RelERPPortInputBicountInactivTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 1, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPPortInputBicountInactivTimeout.setStatus('mandatory')
wtWebioEA12x6RelERPOutputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2), )
if mibBuilder.loadTexts: wtWebioEA12x6RelERPOutputPortTable.setStatus('mandatory')
wtWebioEA12x6RelERPOutputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA12x6RelERPOutputNo"))
if mibBuilder.loadTexts: wtWebioEA12x6RelERPOutputPortEntry.setStatus('mandatory')
wtWebioEA12x6RelERPPortOutputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPPortOutputName.setStatus('mandatory')
wtWebioEA12x6RelERPPortOutputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPPortOutputText.setStatus('mandatory')
wtWebioEA12x6RelERPPortOutputGroupMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPPortOutputGroupMode.setStatus('mandatory')
wtWebioEA12x6RelERPPortOutputSafetyState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPPortOutputSafetyState.setStatus('mandatory')
wtWebioEA12x6RelERPPortLogicInputMask = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPPortLogicInputMask.setStatus('mandatory')
wtWebioEA12x6RelERPPortLogicInputInverter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPPortLogicInputInverter.setStatus('mandatory')
wtWebioEA12x6RelERPPortLogicFunction = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPPortLogicFunction.setStatus('mandatory')
wtWebioEA12x6RelERPPortLogicOutputInverter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2, 1, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPPortLogicOutputInverter.setStatus('mandatory')
wtWebioEA12x6RelERPPortPulseDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPPortPulseDuration.setStatus('mandatory')
wtWebioEA12x6RelERPPortPulsePolarity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPPortPulsePolarity.setStatus('mandatory')
wtWebioEA12x6RelERPMfName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPMfName.setStatus('mandatory')
wtWebioEA12x6RelERPMfAddr = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPMfAddr.setStatus('mandatory')
wtWebioEA12x6RelERPMfHotline = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPMfHotline.setStatus('mandatory')
wtWebioEA12x6RelERPMfInternet = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPMfInternet.setStatus('mandatory')
wtWebioEA12x6RelERPMfDeviceTyp = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 3, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPMfDeviceTyp.setStatus('mandatory')
wtWebioEA12x6RelERPMfOrderNo = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 3, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPMfOrderNo.setStatus('mandatory')
wtWebioEA12x6RelERPDiagErrorCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPDiagErrorCount.setStatus('mandatory')
wtWebioEA12x6RelERPDiagBinaryError = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 4, 2), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPDiagBinaryError.setStatus('mandatory')
wtWebioEA12x6RelERPDiagErrorIndex = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 4, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPDiagErrorIndex.setStatus('mandatory')
wtWebioEA12x6RelERPDiagErrorMessage = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 4, 4), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPDiagErrorMessage.setStatus('mandatory')
wtWebioEA12x6RelERPDiagErrorClear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 4, 5), Integer32()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: wtWebioEA12x6RelERPDiagErrorClear.setStatus('mandatory')
wtWebioEA12x6RelERPAlert1 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,41)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapText"))
wtWebioEA12x6RelERPAlert2 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,42)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapText"))
wtWebioEA12x6RelERPAlert3 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,43)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapText"))
wtWebioEA12x6RelERPAlert4 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,44)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapText"))
wtWebioEA12x6RelERPAlert5 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,45)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapText"))
wtWebioEA12x6RelERPAlert6 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,46)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapText"))
wtWebioEA12x6RelERPAlert7 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,47)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapText"))
wtWebioEA12x6RelERPAlert8 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,48)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapText"))
wtWebioEA12x6RelERPAlert9 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,49)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapText"))
wtWebioEA12x6RelERPAlert10 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,50)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapText"))
wtWebioEA12x6RelERPAlert11 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,51)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapText"))
wtWebioEA12x6RelERPAlert12 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,52)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapText"))
wtWebioEA12x6RelERPAlert13 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,71)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelERPAlert14 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,72)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelERPAlert15 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,73)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelERPAlert16 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,74)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelERPAlert17 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,75)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelERPAlert18 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,76)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelERPAlert19 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,77)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelERPAlert20 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,78)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelERPAlert21 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,79)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelERPAlert22 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,80)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelERPAlert23 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,81)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelERPAlert24 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,82)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText"))
wtWebioEA12x6RelERPAlertDiag = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0,110)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPDiagErrorIndex"), ("Webio-Digital-MIB-US", "wtWebioEA12x6RelERPDiagErrorMessage"))
wtIpWatcherInputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcherInputs.setStatus('mandatory')
wtIpWatcherOutputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcherOutputs.setStatus('mandatory')
wtIpWatcherInputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 3), )
if mibBuilder.loadTexts: wtIpWatcherInputTable.setStatus('mandatory')
wtIpWatcherInputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtIpWatcherInputNo"))
if mibBuilder.loadTexts: wtIpWatcherInputEntry.setStatus('mandatory')
wtIpWatcherInputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcherInputNo.setStatus('mandatory')
wtIpWatcherInputCounter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcherInputCounter.setStatus('mandatory')
wtIpWatcherInputCounterClear = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcherInputCounterClear.setStatus('mandatory')
wtIpWatcherInputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtIpWatcherInputState-OFF", 0), ("wtIpWatcherInputState-ON", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcherInputState.setStatus('mandatory')
wtIpWatcherInputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcherInputValue.setStatus('mandatory')
wtIpWatcherOutputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 5), )
if mibBuilder.loadTexts: wtIpWatcherOutputTable.setStatus('mandatory')
wtIpWatcherOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 5, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtIpWatcherOutputNo"))
if mibBuilder.loadTexts: wtIpWatcherOutputEntry.setStatus('mandatory')
wtIpWatcherOutputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcherOutputNo.setStatus('mandatory')
wtIpWatcherOutputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 5, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtIpWatcherOutputState-OFF", 0), ("wtIpWatcherOutputState-ON", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherOutputState.setStatus('mandatory')
wtIpWatcherOutputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherOutputValue.setStatus('mandatory')
wtIpWatcherSetOutput = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherSetOutput.setStatus('mandatory')
wtIpWatcherAlarmOutputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 8), )
if mibBuilder.loadTexts: wtIpWatcherAlarmOutputTable.setStatus('mandatory')
wtIpWatcherAlarmOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 8, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtIpWatcherAlarmNo"))
if mibBuilder.loadTexts: wtIpWatcherAlarmOutputEntry.setStatus('mandatory')
wtIpWatcherAlarmOutputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 8, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtIpWatcherAlarmOutputState-OFF", 0), ("wtIpWatcherAlarmOutputState-ON", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmOutputState.setStatus('mandatory')
wtIpWatcherAlarmTriggerState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 8, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtIpWatcherAlarmTriggerState-OFF", 0), ("wtIpWatcherAlarmTriggerState-ON", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcherAlarmTriggerState.setStatus('mandatory')
wtIpWatcherSessCntrlPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherSessCntrlPassword.setStatus('mandatory')
wtIpWatcherSessCntrlConfigMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtIpWatcherSessCntrl-NoSession", 0), ("wtIpWatcherSessCntrl-Session", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcherSessCntrlConfigMode.setStatus('mandatory')
wtIpWatcherSessCntrlLogout = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 2, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherSessCntrlLogout.setStatus('mandatory')
wtIpWatcherSessCntrlAdminPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 2, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherSessCntrlAdminPassword.setStatus('mandatory')
wtIpWatcherSessCntrlConfigPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 2, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherSessCntrlConfigPassword.setStatus('mandatory')
wtIpWatcherDeviceName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherDeviceName.setStatus('mandatory')
wtIpWatcherDeviceText = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherDeviceText.setStatus('mandatory')
wtIpWatcherDeviceLocation = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherDeviceLocation.setStatus('mandatory')
wtIpWatcherDeviceContact = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherDeviceContact.setStatus('mandatory')
wtIpWatcherTzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherTzOffsetHrs.setStatus('mandatory')
wtIpWatcherTzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherTzOffsetMin.setStatus('mandatory')
wtIpWatcherTzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherTzEnable.setStatus('mandatory')
wtIpWatcherStTzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherStTzOffsetHrs.setStatus('mandatory')
wtIpWatcherStTzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherStTzOffsetMin.setStatus('mandatory')
wtIpWatcherStTzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherStTzEnable.setStatus('mandatory')
wtIpWatcherStTzStartMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtIpWatcherStartMonth-January", 1), ("wtIpWatcherStartMonth-February", 2), ("wtIpWatcherStartMonth-March", 3), ("wtIpWatcherStartMonth-April", 4), ("wtIpWatcherStartMonth-May", 5), ("wtIpWatcherStartMonth-June", 6), ("wtIpWatcherStartMonth-July", 7), ("wtIpWatcherStartMonth-August", 8), ("wtIpWatcherStartMonth-September", 9), ("wtIpWatcherStartMonth-October", 10), ("wtIpWatcherStartMonth-November", 11), ("wtIpWatcherStartMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherStTzStartMonth.setStatus('mandatory')
wtIpWatcherStTzStartMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtIpWatcherStartMode-first", 1), ("wtIpWatcherStartMode-second", 2), ("wtIpWatcherStartMode-third", 3), ("wtIpWatcherStartMode-fourth", 4), ("wtIpWatcherStartMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherStTzStartMode.setStatus('mandatory')
wtIpWatcherStTzStartWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtIpWatcherStartWday-Sunday", 1), ("wtIpWatcherStartWday-Monday", 2), ("wtIpWatcherStartWday-Tuesday", 3), ("wtIpWatcherStartWday-Thursday", 4), ("wtIpWatcherStartWday-Wednesday", 5), ("wtIpWatcherStartWday-Friday", 6), ("wtIpWatcherStartWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherStTzStartWday.setStatus('mandatory')
wtIpWatcherStTzStartHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherStTzStartHrs.setStatus('mandatory')
wtIpWatcherStTzStartMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherStTzStartMin.setStatus('mandatory')
wtIpWatcherStTzStopMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtIpWatcherStopMonth-January", 1), ("wtIpWatcherStopMonth-February", 2), ("wtIpWatcherStopMonth-March", 3), ("wtIpWatcherStopMonth-April", 4), ("wtIpWatcherStopMonth-May", 5), ("wtIpWatcherStopMonth-June", 6), ("wtIpWatcherStopMonth-July", 7), ("wtIpWatcherStopMonth-August", 8), ("wtIpWatcherStopMonth-September", 9), ("wtIpWatcherStopMonth-October", 10), ("wtIpWatcherStopMonth-November", 11), ("wtIpWatcherStopMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherStTzStopMonth.setStatus('mandatory')
wtIpWatcherStTzStopMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtIpWatcherStopMode-first", 1), ("wtIpWatcherStopMode-second", 2), ("wtIpWatcherStopMode-third", 3), ("wtIpWatcherStopMode-fourth", 4), ("wtIpWatcherStopMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherStTzStopMode.setStatus('mandatory')
wtIpWatcherStTzStopWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtIpWatcherStopWday-Sunday", 1), ("wtIpWatcherStopWday-Monday", 2), ("wtIpWatcherStopWday-Tuesday", 3), ("wtIpWatcherStopWday-Thursday", 4), ("wtIpWatcherStopWday-Wednesday", 5), ("wtIpWatcherStopWday-Friday", 6), ("wtIpWatcherStopWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherStTzStopWday.setStatus('mandatory')
wtIpWatcherStTzStopHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 15), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherStTzStopHrs.setStatus('mandatory')
wtIpWatcherStTzStopMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 16), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherStTzStopMin.setStatus('mandatory')
wtIpWatcherTimeServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherTimeServer1.setStatus('mandatory')
wtIpWatcherTimeServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 2, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherTimeServer2.setStatus('mandatory')
wtIpWatcherTsEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 2, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherTsEnable.setStatus('mandatory')
wtIpWatcherTsSyncTime = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 2, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherTsSyncTime.setStatus('mandatory')
wtIpWatcherClockHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 3, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 23))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherClockHrs.setStatus('mandatory')
wtIpWatcherClockMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 3, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 59))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherClockMin.setStatus('mandatory')
wtIpWatcherClockDay = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 3, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherClockDay.setStatus('mandatory')
wtIpWatcherClockMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 3, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtIpWatcherClockMonth-January", 1), ("wtIpWatcherClockMonth-February", 2), ("wtIpWatcherClockMonth-March", 3), ("wtIpWatcherClockMonth-April", 4), ("wtIpWatcherClockMonth-May", 5), ("wtIpWatcherClockMonth-June", 6), ("wtIpWatcherClockMonth-July", 7), ("wtIpWatcherClockMonth-August", 8), ("wtIpWatcherClockMonth-September", 9), ("wtIpWatcherClockMonth-October", 10), ("wtIpWatcherClockMonth-November", 11), ("wtIpWatcherClockMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherClockMonth.setStatus('mandatory')
wtIpWatcherClockYear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 3, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherClockYear.setStatus('mandatory')
wtIpWatcherIpAddress = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherIpAddress.setStatus('mandatory')
wtIpWatcherSubnetMask = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherSubnetMask.setStatus('mandatory')
wtIpWatcherGateway = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherGateway.setStatus('mandatory')
wtIpWatcherDnsServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherDnsServer1.setStatus('mandatory')
wtIpWatcherDnsServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherDnsServer2.setStatus('mandatory')
wtIpWatcherAddConfig = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 1, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAddConfig.setStatus('mandatory')
wtIpWatcherHttpPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 2, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherHttpPort.setStatus('mandatory')
wtIpWatcherMailAdName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherMailAdName.setStatus('mandatory')
wtIpWatcherMailReply = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherMailReply.setStatus('mandatory')
wtIpWatcherMailServer = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherMailServer.setStatus('mandatory')
wtIpWatcherMailEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherMailEnable.setStatus('mandatory')
wtIpWatcherMailAuthentication = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 3, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherMailAuthentication.setStatus('mandatory')
wtIpWatcherMailAuthUser = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 3, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherMailAuthUser.setStatus('mandatory')
wtIpWatcherMailAuthPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 3, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherMailAuthPassword.setStatus('mandatory')
wtIpWatcherMailPop3Server = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 3, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherMailPop3Server.setStatus('mandatory')
wtIpWatcherSnmpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 4, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherSnmpEnable.setStatus('mandatory')
wtIpWatcherSnmpCommunityStringRead = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 4, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherSnmpCommunityStringRead.setStatus('mandatory')
wtIpWatcherSnmpCommunityStringReadWrite = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 4, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherSnmpCommunityStringReadWrite.setStatus('mandatory')
wtIpWatcherSnmpSystemTrapManagerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 4, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherSnmpSystemTrapManagerIP.setStatus('mandatory')
wtIpWatcherSnmpSystemTrapEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 4, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherSnmpSystemTrapEnable.setStatus('mandatory')
wtIpWatcherUdpAdminPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 5, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherUdpAdminPort.setStatus('mandatory')
wtIpWatcherUdpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 5, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherUdpEnable.setStatus('mandatory')
wtIpWatcherUdpRemotePort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 5, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherUdpRemotePort.setStatus('mandatory')
wtIpWatcherSyslogServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 7, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherSyslogServerIP.setStatus('mandatory')
wtIpWatcherSyslogServerPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 7, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherSyslogServerPort.setStatus('mandatory')
wtIpWatcherSyslogSystemMessagesEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 7, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherSyslogSystemMessagesEnable.setStatus('mandatory')
wtIpWatcherSyslogEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 7, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherSyslogEnable.setStatus('mandatory')
wtIpWatcherFTPServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 8, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherFTPServerIP.setStatus('mandatory')
wtIpWatcherFTPServerControlPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 8, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherFTPServerControlPort.setStatus('mandatory')
wtIpWatcherFTPUserName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 8, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherFTPUserName.setStatus('mandatory')
wtIpWatcherFTPPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 8, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherFTPPassword.setStatus('mandatory')
wtIpWatcherFTPAccount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 8, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherFTPAccount.setStatus('mandatory')
wtIpWatcherFTPOption = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 8, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherFTPOption.setStatus('mandatory')
wtIpWatcherFTPEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 8, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherFTPEnable.setStatus('mandatory')
wtIpWatcherIpListCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcherIpListCount.setStatus('mandatory')
wtIpWatcherIpListIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11, 2), )
if mibBuilder.loadTexts: wtIpWatcherIpListIfTable.setStatus('mandatory')
wtIpWatcherIpListIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtIpWatcherIpListNo"))
if mibBuilder.loadTexts: wtIpWatcherIpListIfEntry.setStatus('mandatory')
wtIpWatcherIpListNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 999))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcherIpListNo.setStatus('mandatory')
wtIpWatcherIpListTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11, 3), )
if mibBuilder.loadTexts: wtIpWatcherIpListTable.setStatus('mandatory')
wtIpWatcherIpListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtIpWatcherIpListNo"))
if mibBuilder.loadTexts: wtIpWatcherIpListEntry.setStatus('mandatory')
wtIpWatcherIpListName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11, 3, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherIpListName.setStatus('mandatory')
wtIpWatcherIpListPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11, 3, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherIpListPort.setStatus('mandatory')
wtIpWatcherIpListService = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11, 3, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherIpListService.setStatus('mandatory')
wtIpWatcherIpListEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherIpListEnable.setStatus('mandatory')
wtIpWatcherIpListAlias = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherIpListAlias.setStatus('mandatory')
wtIpWatcherAlarmCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcherAlarmCount.setStatus('mandatory')
wtIpWatcherAlarmIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 2), )
if mibBuilder.loadTexts: wtIpWatcherAlarmIfTable.setStatus('mandatory')
wtIpWatcherAlarmIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtIpWatcherAlarmNo"))
if mibBuilder.loadTexts: wtIpWatcherAlarmIfEntry.setStatus('mandatory')
wtIpWatcherAlarmNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcherAlarmNo.setStatus('mandatory')
wtIpWatcherAlarmTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3), )
if mibBuilder.loadTexts: wtIpWatcherAlarmTable.setStatus('mandatory')
wtIpWatcherAlarmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtIpWatcherAlarmNo"))
if mibBuilder.loadTexts: wtIpWatcherAlarmEntry.setStatus('mandatory')
wtIpWatcherAlarmInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmInterval.setStatus('mandatory')
wtIpWatcherAlarmEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmEnable.setStatus('mandatory')
wtIpWatcherAlarmMailAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmMailAddr.setStatus('mandatory')
wtIpWatcherAlarmMailSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmMailSubject.setStatus('mandatory')
wtIpWatcherAlarmMailText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 9), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmMailText.setStatus('mandatory')
wtIpWatcherAlarmSnmpManagerIP = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 10), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmSnmpManagerIP.setStatus('mandatory')
wtIpWatcherAlarmSnmpTrapText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 11), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmSnmpTrapText.setStatus('mandatory')
wtIpWatcherAlarmUdpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 12), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmUdpIpAddr.setStatus('mandatory')
wtIpWatcherAlarmUdpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmUdpPort.setStatus('mandatory')
wtIpWatcherAlarmUdpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 14), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmUdpText.setStatus('mandatory')
wtIpWatcherAlarmTcpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 15), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmTcpIpAddr.setStatus('mandatory')
wtIpWatcherAlarmTcpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmTcpPort.setStatus('mandatory')
wtIpWatcherAlarmTcpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 17), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmTcpText.setStatus('mandatory')
wtIpWatcherAlarmSyslogIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 18), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmSyslogIpAddr.setStatus('mandatory')
wtIpWatcherAlarmSyslogPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmSyslogPort.setStatus('mandatory')
wtIpWatcherAlarmSyslogText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 20), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmSyslogText.setStatus('mandatory')
wtIpWatcherAlarmFtpDataPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 21), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmFtpDataPort.setStatus('mandatory')
wtIpWatcherAlarmFtpFileName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 22), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmFtpFileName.setStatus('mandatory')
wtIpWatcherAlarmFtpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 23), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmFtpText.setStatus('mandatory')
wtIpWatcherAlarmFtpOption = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 24), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmFtpOption.setStatus('mandatory')
wtIpWatcherAlarmTimerCron = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 25), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmTimerCron.setStatus('mandatory')
wtIpWatcherAlarmMailReleaseSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 26), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmMailReleaseSubject.setStatus('mandatory')
wtIpWatcherAlarmMailReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 27), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmMailReleaseText.setStatus('mandatory')
wtIpWatcherAlarmSnmpTrapReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 28), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmSnmpTrapReleaseText.setStatus('mandatory')
wtIpWatcherAlarmUdpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 29), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmUdpReleaseText.setStatus('mandatory')
wtIpWatcherAlarmTcpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 30), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmTcpReleaseText.setStatus('mandatory')
wtIpWatcherAlarmSyslogReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 31), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmSyslogReleaseText.setStatus('mandatory')
wtIpWatcherAlarmFtpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 32), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmFtpReleaseText.setStatus('mandatory')
wtIpWatcherAlarmName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 33), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmName.setStatus('mandatory')
wtIpWatcherAlarmGlobalEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 34), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmGlobalEnable.setStatus('mandatory')
wtIpWatcherAlarmCounterClear = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 35), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmCounterClear.setStatus('mandatory')
wtIpWatcherAlarmAckEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 36), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmAckEnable.setStatus('mandatory')
wtIpWatcherAlarmAckPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 37), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmAckPort.setStatus('mandatory')
wtIpWatcherAlarmSetPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 38), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmSetPort.setStatus('mandatory')
wtIpWatcherAlarmMailTrgClearSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 39), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmMailTrgClearSubject.setStatus('mandatory')
wtIpWatcherAlarmMailTrgClearText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 40), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmMailTrgClearText.setStatus('mandatory')
wtIpWatcherAlarmSnmpTrapTrgClearText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 41), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmSnmpTrapTrgClearText.setStatus('mandatory')
wtIpWatcherAlarmUdpTrgClearText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 42), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmUdpTrgClearText.setStatus('mandatory')
wtIpWatcherAlarmTcpTrgClearText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 43), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmTcpTrgClearText.setStatus('mandatory')
wtIpWatcherAlarmSyslogTrgClearText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 44), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmSyslogTrgClearText.setStatus('mandatory')
wtIpWatcherAlarmFtpTrgClearText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 45), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmFtpTrgClearText.setStatus('mandatory')
wtIpWatcherAlarmMailTrapTxEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 46), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmMailTrapTxEnable.setStatus('mandatory')
wtIpWatcherAlarmSnmpTrapTrapTxEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 47), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmSnmpTrapTrapTxEnable.setStatus('mandatory')
wtIpWatcherAlarmUdpTrapTxEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 48), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmUdpTrapTxEnable.setStatus('mandatory')
wtIpWatcherAlarmTcpTrapTxEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 49), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmTcpTrapTxEnable.setStatus('mandatory')
wtIpWatcherAlarmSyslogTrapTxEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 50), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmSyslogTrapTxEnable.setStatus('mandatory')
wtIpWatcherAlarmFtpTrapTxEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 51), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmFtpTrapTxEnable.setStatus('mandatory')
wtIpWatcherAlarmTriggerCount = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 52), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmTriggerCount.setStatus('mandatory')
wtIpWatcherAlarmPollingRate = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 53), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherAlarmPollingRate.setStatus('mandatory')
wtIpWatcherInputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2, 1), )
if mibBuilder.loadTexts: wtIpWatcherInputPortTable.setStatus('mandatory')
wtIpWatcherInputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtIpWatcherInputNo"))
if mibBuilder.loadTexts: wtIpWatcherInputPortEntry.setStatus('mandatory')
wtIpWatcherPortInputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherPortInputName.setStatus('mandatory')
wtIpWatcherPortInputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherPortInputText.setStatus('mandatory')
wtIpWatcherPortInputFilter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherPortInputFilter.setStatus('mandatory')
wtIpWatcherOutputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2, 2), )
if mibBuilder.loadTexts: wtIpWatcherOutputPortTable.setStatus('mandatory')
wtIpWatcherOutputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtIpWatcherOutputNo"))
if mibBuilder.loadTexts: wtIpWatcherOutputPortEntry.setStatus('mandatory')
wtIpWatcherPortOutputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2, 2, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherPortOutputName.setStatus('mandatory')
wtIpWatcherPortOutputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2, 2, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherPortOutputText.setStatus('mandatory')
wtIpWatcherPortPulseDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2, 2, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherPortPulseDuration.setStatus('mandatory')
wtIpWatcherPortPulsePolarity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2, 2, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherPortPulsePolarity.setStatus('mandatory')
wtIpWatcherMfName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherMfName.setStatus('mandatory')
wtIpWatcherMfAddr = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherMfAddr.setStatus('mandatory')
wtIpWatcherMfHotline = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherMfHotline.setStatus('mandatory')
wtIpWatcherMfInternet = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherMfInternet.setStatus('mandatory')
wtIpWatcherMfDeviceTyp = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 3, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherMfDeviceTyp.setStatus('mandatory')
wtIpWatcherDiagErrorCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcherDiagErrorCount.setStatus('mandatory')
wtIpWatcherDiagBinaryError = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 4, 2), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcherDiagBinaryError.setStatus('mandatory')
wtIpWatcherDiagErrorIndex = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 4, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcherDiagErrorIndex.setStatus('mandatory')
wtIpWatcherDiagErrorMessage = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 4, 4), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcherDiagErrorMessage.setStatus('mandatory')
wtIpWatcherDiagErrorClear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 4, 5), Integer32()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: wtIpWatcherDiagErrorClear.setStatus('mandatory')
wtIpWatcherAlert1 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,41)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapText"))
wtIpWatcherAlert2 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,42)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapText"))
wtIpWatcherAlert3 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,43)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapText"))
wtIpWatcherAlert4 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,44)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapText"))
wtIpWatcherAlert5 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,45)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapText"))
wtIpWatcherAlert6 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,46)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapText"))
wtIpWatcherAlert7 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,47)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapText"))
wtIpWatcherAlert8 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,48)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapText"))
wtIpWatcherAlert9 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,49)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapText"))
wtIpWatcherAlert10 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,50)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapText"))
wtIpWatcherAlert11 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,51)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapText"))
wtIpWatcherAlert12 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,52)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapText"))
wtIpWatcherAlert13 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,71)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapReleaseText"))
wtIpWatcherAlert14 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,72)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapReleaseText"))
wtIpWatcherAlert15 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,73)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapReleaseText"))
wtIpWatcherAlert16 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,74)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapReleaseText"))
wtIpWatcherAlert17 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,75)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapReleaseText"))
wtIpWatcherAlert18 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,76)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapReleaseText"))
wtIpWatcherAlert19 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,77)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapReleaseText"))
wtIpWatcherAlert20 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,78)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapReleaseText"))
wtIpWatcherAlert21 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,79)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapReleaseText"))
wtIpWatcherAlert22 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,80)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapReleaseText"))
wtIpWatcherAlert23 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,81)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapReleaseText"))
wtIpWatcherAlert24 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,82)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapReleaseText"))
wtIpWatcherAlert25 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,91)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapTrgClearText"))
wtIpWatcherAlert26 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,92)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapTrgClearText"))
wtIpWatcherAlert27 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,93)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapTrgClearText"))
wtIpWatcherAlert28 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,94)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapTrgClearText"))
wtIpWatcherAlert29 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,95)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapTrgClearText"))
wtIpWatcherAlert30 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,96)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapTrgClearText"))
wtIpWatcherAlert31 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,97)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapTrgClearText"))
wtIpWatcherAlert32 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,98)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapTrgClearText"))
wtIpWatcherAlert33 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,99)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapTrgClearText"))
wtIpWatcherAlert34 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,100)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapTrgClearText"))
wtIpWatcherAlert35 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,101)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapTrgClearText"))
wtIpWatcherAlert36 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,102)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherAlarmSnmpTrapTrgClearText"))
wtIpWatcherAlertDiag = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0,110)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcherDiagErrorIndex"), ("Webio-Digital-MIB-US", "wtIpWatcherDiagErrorMessage"))
wtWebioEA2x2_24VInputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2_24VInputs.setStatus('mandatory')
wtWebioEA2x2_24VOutputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2_24VOutputs.setStatus('mandatory')
wtWebioEA2x2_24VInputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 3), )
if mibBuilder.loadTexts: wtWebioEA2x2_24VInputTable.setStatus('mandatory')
wtWebioEA2x2_24VInputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2_24VInputNo"))
if mibBuilder.loadTexts: wtWebioEA2x2_24VInputEntry.setStatus('mandatory')
wtWebioEA2x2_24VInputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2_24VInputNo.setStatus('mandatory')
wtWebioEA2x2_24VInputCounter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2_24VInputCounter.setStatus('mandatory')
wtWebioEA2x2_24VInputCounterClear = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2_24VInputCounterClear.setStatus('mandatory')
wtWebioEA2x2_24VInputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA2x2_24VInputState-OFF", 0), ("wtWebioEA2x2_24VInputState-ON", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2_24VInputState.setStatus('mandatory')
wtWebioEA2x2_24VInputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2_24VInputValue.setStatus('mandatory')
wtWebioEA2x2_24VOutputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 5), )
if mibBuilder.loadTexts: wtWebioEA2x2_24VOutputTable.setStatus('mandatory')
wtWebioEA2x2_24VOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 5, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2_24VOutputNo"))
if mibBuilder.loadTexts: wtWebioEA2x2_24VOutputEntry.setStatus('mandatory')
wtWebioEA2x2_24VOutputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2_24VOutputNo.setStatus('mandatory')
wtWebioEA2x2_24VOutputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 5, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA2x2_24VOutputState-OFF", 0), ("wtWebioEA2x2_24VOutputState-ON", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VOutputState.setStatus('mandatory')
wtWebioEA2x2_24VOutputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VOutputValue.setStatus('mandatory')
wtWebioEA2x2_24VSetOutput = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VSetOutput.setStatus('mandatory')
wtWebioEA2x2_24VSessCntrlPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VSessCntrlPassword.setStatus('mandatory')
wtWebioEA2x2_24VSessCntrlConfigMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA2x2_24VSessCntrl-NoSession", 0), ("wtWebioEA2x2_24VSessCntrl-Session", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2_24VSessCntrlConfigMode.setStatus('mandatory')
wtWebioEA2x2_24VSessCntrlLogout = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 2, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VSessCntrlLogout.setStatus('mandatory')
wtWebioEA2x2_24VSessCntrlAdminPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 2, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VSessCntrlAdminPassword.setStatus('mandatory')
wtWebioEA2x2_24VSessCntrlConfigPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 2, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VSessCntrlConfigPassword.setStatus('mandatory')
wtWebioEA2x2_24VDeviceName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VDeviceName.setStatus('mandatory')
wtWebioEA2x2_24VDeviceText = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VDeviceText.setStatus('mandatory')
wtWebioEA2x2_24VDeviceLocation = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VDeviceLocation.setStatus('mandatory')
wtWebioEA2x2_24VDeviceContact = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VDeviceContact.setStatus('mandatory')
wtWebioEA2x2_24VTzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VTzOffsetHrs.setStatus('mandatory')
wtWebioEA2x2_24VTzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VTzOffsetMin.setStatus('mandatory')
wtWebioEA2x2_24VTzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VTzEnable.setStatus('mandatory')
wtWebioEA2x2_24VStTzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VStTzOffsetHrs.setStatus('mandatory')
wtWebioEA2x2_24VStTzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VStTzOffsetMin.setStatus('mandatory')
wtWebioEA2x2_24VStTzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VStTzEnable.setStatus('mandatory')
wtWebioEA2x2_24VStTzStartMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA2x2_24VStartMonth-January", 1), ("wtWebioEA2x2_24VStartMonth-February", 2), ("wtWebioEA2x2_24VStartMonth-March", 3), ("wtWebioEA2x2_24VStartMonth-April", 4), ("wtWebioEA2x2_24VStartMonth-May", 5), ("wtWebioEA2x2_24VStartMonth-June", 6), ("wtWebioEA2x2_24VStartMonth-July", 7), ("wtWebioEA2x2_24VStartMonth-August", 8), ("wtWebioEA2x2_24VStartMonth-September", 9), ("wtWebioEA2x2_24VStartMonth-October", 10), ("wtWebioEA2x2_24VStartMonth-November", 11), ("wtWebioEA2x2_24VStartMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VStTzStartMonth.setStatus('mandatory')
wtWebioEA2x2_24VStTzStartMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtWebioEA2x2_24VStartMode-first", 1), ("wtWebioEA2x2_24VStartMode-second", 2), ("wtWebioEA2x2_24VStartMode-third", 3), ("wtWebioEA2x2_24VStartMode-fourth", 4), ("wtWebioEA2x2_24VStartMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VStTzStartMode.setStatus('mandatory')
wtWebioEA2x2_24VStTzStartWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtWebioEA2x2_24VStartWday-Sunday", 1), ("wtWebioEA2x2_24VStartWday-Monday", 2), ("wtWebioEA2x2_24VStartWday-Tuesday", 3), ("wtWebioEA2x2_24VStartWday-Thursday", 4), ("wtWebioEA2x2_24VStartWday-Wednesday", 5), ("wtWebioEA2x2_24VStartWday-Friday", 6), ("wtWebioEA2x2_24VStartWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VStTzStartWday.setStatus('mandatory')
wtWebioEA2x2_24VStTzStartHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VStTzStartHrs.setStatus('mandatory')
wtWebioEA2x2_24VStTzStartMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VStTzStartMin.setStatus('mandatory')
wtWebioEA2x2_24VStTzStopMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA2x2_24VStopMonth-January", 1), ("wtWebioEA2x2_24VStopMonth-February", 2), ("wtWebioEA2x2_24VStopMonth-March", 3), ("wtWebioEA2x2_24VStopMonth-April", 4), ("wtWebioEA2x2_24VStopMonth-May", 5), ("wtWebioEA2x2_24VStopMonth-June", 6), ("wtWebioEA2x2_24VStopMonth-July", 7), ("wtWebioEA2x2_24VStopMonth-August", 8), ("wtWebioEA2x2_24VStopMonth-September", 9), ("wtWebioEA2x2_24VStopMonth-October", 10), ("wtWebioEA2x2_24VStopMonth-November", 11), ("wtWebioEA2x2_24VStopMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VStTzStopMonth.setStatus('mandatory')
wtWebioEA2x2_24VStTzStopMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtWebioEA2x2_24VStopMode-first", 1), ("wtWebioEA2x2_24VStopMode-second", 2), ("wtWebioEA2x2_24VStopMode-third", 3), ("wtWebioEA2x2_24VStopMode-fourth", 4), ("wtWebioEA2x2_24VStopMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VStTzStopMode.setStatus('mandatory')
wtWebioEA2x2_24VStTzStopWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtWebioEA2x2_24VStopWday-Sunday", 1), ("wtWebioEA2x2_24VStopWday-Monday", 2), ("wtWebioEA2x2_24VStopWday-Tuesday", 3), ("wtWebioEA2x2_24VStopWday-Thursday", 4), ("wtWebioEA2x2_24VStopWday-Wednesday", 5), ("wtWebioEA2x2_24VStopWday-Friday", 6), ("wtWebioEA2x2_24VStopWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VStTzStopWday.setStatus('mandatory')
wtWebioEA2x2_24VStTzStopHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 15), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VStTzStopHrs.setStatus('mandatory')
wtWebioEA2x2_24VStTzStopMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 16), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VStTzStopMin.setStatus('mandatory')
wtWebioEA2x2_24VTimeServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VTimeServer1.setStatus('mandatory')
wtWebioEA2x2_24VTimeServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 2, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VTimeServer2.setStatus('mandatory')
wtWebioEA2x2_24VTsEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 2, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VTsEnable.setStatus('mandatory')
wtWebioEA2x2_24VTsSyncTime = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 2, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VTsSyncTime.setStatus('mandatory')
wtWebioEA2x2_24VClockHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 3, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 23))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VClockHrs.setStatus('mandatory')
wtWebioEA2x2_24VClockMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 3, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 59))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VClockMin.setStatus('mandatory')
wtWebioEA2x2_24VClockDay = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 3, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VClockDay.setStatus('mandatory')
wtWebioEA2x2_24VClockMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 3, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA2x2_24VClockMonth-January", 1), ("wtWebioEA2x2_24VClockMonth-February", 2), ("wtWebioEA2x2_24VClockMonth-March", 3), ("wtWebioEA2x2_24VClockMonth-April", 4), ("wtWebioEA2x2_24VClockMonth-May", 5), ("wtWebioEA2x2_24VClockMonth-June", 6), ("wtWebioEA2x2_24VClockMonth-July", 7), ("wtWebioEA2x2_24VClockMonth-August", 8), ("wtWebioEA2x2_24VClockMonth-September", 9), ("wtWebioEA2x2_24VClockMonth-October", 10), ("wtWebioEA2x2_24VClockMonth-November", 11), ("wtWebioEA2x2_24VClockMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VClockMonth.setStatus('mandatory')
wtWebioEA2x2_24VClockYear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 3, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VClockYear.setStatus('mandatory')
wtWebioEA2x2_24VIpAddress = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VIpAddress.setStatus('mandatory')
wtWebioEA2x2_24VSubnetMask = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VSubnetMask.setStatus('mandatory')
wtWebioEA2x2_24VGateway = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VGateway.setStatus('mandatory')
wtWebioEA2x2_24VDnsServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VDnsServer1.setStatus('mandatory')
wtWebioEA2x2_24VDnsServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VDnsServer2.setStatus('mandatory')
wtWebioEA2x2_24VAddConfig = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 1, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAddConfig.setStatus('mandatory')
wtWebioEA2x2_24VStartup = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VStartup.setStatus('mandatory')
wtWebioEA2x2_24VGetHeaderEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 2, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VGetHeaderEnable.setStatus('mandatory')
wtWebioEA2x2_24VHttpInputTrigger = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 2, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VHttpInputTrigger.setStatus('mandatory')
wtWebioEA2x2_24VHttpPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 2, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VHttpPort.setStatus('mandatory')
wtWebioEA2x2_24VMailAdName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VMailAdName.setStatus('mandatory')
wtWebioEA2x2_24VMailReply = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VMailReply.setStatus('mandatory')
wtWebioEA2x2_24VMailServer = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VMailServer.setStatus('mandatory')
wtWebioEA2x2_24VMailEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VMailEnable.setStatus('mandatory')
wtWebioEA2x2_24VMailAuthentication = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 3, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VMailAuthentication.setStatus('mandatory')
wtWebioEA2x2_24VMailAuthUser = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 3, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VMailAuthUser.setStatus('mandatory')
wtWebioEA2x2_24VMailAuthPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 3, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VMailAuthPassword.setStatus('mandatory')
wtWebioEA2x2_24VMailPop3Server = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 3, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VMailPop3Server.setStatus('mandatory')
wtWebioEA2x2_24VSnmpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 4, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VSnmpEnable.setStatus('mandatory')
wtWebioEA2x2_24VSnmpCommunityStringRead = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 4, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VSnmpCommunityStringRead.setStatus('mandatory')
wtWebioEA2x2_24VSnmpCommunityStringReadWrite = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 4, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VSnmpCommunityStringReadWrite.setStatus('mandatory')
wtWebioEA2x2_24VSnmpSystemTrapManagerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 4, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VSnmpSystemTrapManagerIP.setStatus('mandatory')
wtWebioEA2x2_24VSnmpSystemTrapEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 4, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VSnmpSystemTrapEnable.setStatus('mandatory')
wtWebioEA2x2_24VUdpAdminPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 5, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VUdpAdminPort.setStatus('mandatory')
wtWebioEA2x2_24VUdpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 5, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VUdpEnable.setStatus('mandatory')
wtWebioEA2x2_24VUdpRemotePort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 5, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VUdpRemotePort.setStatus('mandatory')
wtWebioEA2x2_24VBinaryModeCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryModeCount.setStatus('mandatory')
wtWebioEA2x2_24VBinaryIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 2), )
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryIfTable.setStatus('mandatory')
wtWebioEA2x2_24VBinaryIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2_24VBinaryModeNo"))
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryIfEntry.setStatus('mandatory')
wtWebioEA2x2_24VBinaryModeNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryModeNo.setStatus('mandatory')
wtWebioEA2x2_24VBinaryTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3), )
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryTable.setStatus('mandatory')
wtWebioEA2x2_24VBinaryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2_24VBinaryModeNo"))
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryEntry.setStatus('mandatory')
wtWebioEA2x2_24VBinaryOperationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryOperationMode.setStatus('mandatory')
wtWebioEA2x2_24VBinaryTcpServerLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryTcpServerLocalPort.setStatus('mandatory')
wtWebioEA2x2_24VBinaryTcpServerInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryTcpServerInputTrigger.setStatus('mandatory')
wtWebioEA2x2_24VBinaryTcpServerApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryTcpServerApplicationMode.setStatus('mandatory')
wtWebioEA2x2_24VBinaryTcpClientLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryTcpClientLocalPort.setStatus('mandatory')
wtWebioEA2x2_24VBinaryTcpClientServerPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryTcpClientServerPort.setStatus('mandatory')
wtWebioEA2x2_24VBinaryTcpClientServerIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryTcpClientServerIpAddr.setStatus('mandatory')
wtWebioEA2x2_24VBinaryTcpClientServerPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryTcpClientServerPassword.setStatus('mandatory')
wtWebioEA2x2_24VBinaryTcpClientInactivity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryTcpClientInactivity.setStatus('mandatory')
wtWebioEA2x2_24VBinaryTcpClientInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryTcpClientInputTrigger.setStatus('mandatory')
wtWebioEA2x2_24VBinaryTcpClientInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryTcpClientInterval.setStatus('mandatory')
wtWebioEA2x2_24VBinaryTcpClientApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 12), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryTcpClientApplicationMode.setStatus('mandatory')
wtWebioEA2x2_24VBinaryUdpPeerLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryUdpPeerLocalPort.setStatus('mandatory')
wtWebioEA2x2_24VBinaryUdpPeerRemotePort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryUdpPeerRemotePort.setStatus('mandatory')
wtWebioEA2x2_24VBinaryUdpPeerRemoteIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 15), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryUdpPeerRemoteIpAddr.setStatus('mandatory')
wtWebioEA2x2_24VBinaryUdpPeerInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 16), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryUdpPeerInputTrigger.setStatus('mandatory')
wtWebioEA2x2_24VBinaryUdpPeerInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryUdpPeerInterval.setStatus('mandatory')
wtWebioEA2x2_24VBinaryUdpPeerApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 18), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryUdpPeerApplicationMode.setStatus('mandatory')
wtWebioEA2x2_24VBinaryConnectedPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryConnectedPort.setStatus('mandatory')
wtWebioEA2x2_24VBinaryConnectedIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 20), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryConnectedIpAddr.setStatus('mandatory')
wtWebioEA2x2_24VBinaryTcpServerClientHttpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryTcpServerClientHttpPort.setStatus('mandatory')
wtWebioEA2x2_24VBinaryTcpClientServerHttpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VBinaryTcpClientServerHttpPort.setStatus('mandatory')
wtWebioEA2x2_24VSyslogServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 7, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VSyslogServerIP.setStatus('mandatory')
wtWebioEA2x2_24VSyslogServerPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 7, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VSyslogServerPort.setStatus('mandatory')
wtWebioEA2x2_24VSyslogSystemMessagesEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 7, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VSyslogSystemMessagesEnable.setStatus('mandatory')
wtWebioEA2x2_24VSyslogEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 7, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VSyslogEnable.setStatus('mandatory')
wtWebioEA2x2_24VFTPServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 8, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VFTPServerIP.setStatus('mandatory')
wtWebioEA2x2_24VFTPServerControlPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 8, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VFTPServerControlPort.setStatus('mandatory')
wtWebioEA2x2_24VFTPUserName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 8, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VFTPUserName.setStatus('mandatory')
wtWebioEA2x2_24VFTPPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 8, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VFTPPassword.setStatus('mandatory')
wtWebioEA2x2_24VFTPAccount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 8, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VFTPAccount.setStatus('mandatory')
wtWebioEA2x2_24VFTPOption = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 8, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VFTPOption.setStatus('mandatory')
wtWebioEA2x2_24VFTPEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 8, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VFTPEnable.setStatus('mandatory')
wtWebioEA2x2_24VOutputModeTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 4, 1), )
if mibBuilder.loadTexts: wtWebioEA2x2_24VOutputModeTable.setStatus('mandatory')
wtWebioEA2x2_24VOutputModeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 4, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2_24VOutputNo"))
if mibBuilder.loadTexts: wtWebioEA2x2_24VOutputModeEntry.setStatus('mandatory')
wtWebioEA2x2_24VOutputModeBit = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 4, 1, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VOutputModeBit.setStatus('mandatory')
wtWebioEA2x2_24VSafetyTimeout = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 4, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VSafetyTimeout.setStatus('mandatory')
wtWebioEA2x2_24VPowerSupplyEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 4, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VPowerSupplyEnable.setStatus('mandatory')
wtWebioEA2x2_24VAlarmCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmCount.setStatus('mandatory')
wtWebioEA2x2_24VAlarmIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 2), )
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmIfTable.setStatus('mandatory')
wtWebioEA2x2_24VAlarmIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmNo"))
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmIfEntry.setStatus('mandatory')
wtWebioEA2x2_24VAlarmNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmNo.setStatus('mandatory')
wtWebioEA2x2_24VAlarmTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3), )
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmTable.setStatus('mandatory')
wtWebioEA2x2_24VAlarmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmNo"))
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmEntry.setStatus('mandatory')
wtWebioEA2x2_24VAlarmInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(12, 12)).setFixedLength(12)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmInputTrigger.setStatus('mandatory')
wtWebioEA2x2_24VAlarmOutputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(12, 12)).setFixedLength(12)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmOutputTrigger.setStatus('mandatory')
wtWebioEA2x2_24VAlarmSystemTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmSystemTrigger.setStatus('mandatory')
wtWebioEA2x2_24VAlarmMaxCounterValue = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmMaxCounterValue.setStatus('mandatory')
wtWebioEA2x2_24VAlarmInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmInterval.setStatus('mandatory')
wtWebioEA2x2_24VAlarmEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmEnable.setStatus('mandatory')
wtWebioEA2x2_24VAlarmMailAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmMailAddr.setStatus('mandatory')
wtWebioEA2x2_24VAlarmMailSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmMailSubject.setStatus('mandatory')
wtWebioEA2x2_24VAlarmMailText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 9), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmMailText.setStatus('mandatory')
wtWebioEA2x2_24VAlarmSnmpManagerIP = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 10), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmSnmpManagerIP.setStatus('mandatory')
wtWebioEA2x2_24VAlarmSnmpTrapText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 11), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmSnmpTrapText.setStatus('mandatory')
wtWebioEA2x2_24VAlarmUdpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 12), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmUdpIpAddr.setStatus('mandatory')
wtWebioEA2x2_24VAlarmUdpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmUdpPort.setStatus('mandatory')
wtWebioEA2x2_24VAlarmUdpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 14), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmUdpText.setStatus('mandatory')
wtWebioEA2x2_24VAlarmTcpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 15), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmTcpIpAddr.setStatus('mandatory')
wtWebioEA2x2_24VAlarmTcpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmTcpPort.setStatus('mandatory')
wtWebioEA2x2_24VAlarmTcpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 17), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmTcpText.setStatus('mandatory')
wtWebioEA2x2_24VAlarmSyslogIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 18), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmSyslogIpAddr.setStatus('mandatory')
wtWebioEA2x2_24VAlarmSyslogPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmSyslogPort.setStatus('mandatory')
wtWebioEA2x2_24VAlarmSyslogText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 20), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmSyslogText.setStatus('mandatory')
wtWebioEA2x2_24VAlarmFtpDataPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 21), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmFtpDataPort.setStatus('mandatory')
wtWebioEA2x2_24VAlarmFtpFileName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 22), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmFtpFileName.setStatus('mandatory')
wtWebioEA2x2_24VAlarmFtpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 23), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmFtpText.setStatus('mandatory')
wtWebioEA2x2_24VAlarmFtpOption = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 24), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmFtpOption.setStatus('mandatory')
wtWebioEA2x2_24VAlarmTimerCron = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 25), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmTimerCron.setStatus('mandatory')
wtWebioEA2x2_24VAlarmMailReleaseSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 26), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmMailReleaseSubject.setStatus('mandatory')
wtWebioEA2x2_24VAlarmMailReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 27), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmMailReleaseText.setStatus('mandatory')
wtWebioEA2x2_24VAlarmSnmpTrapReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 28), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmSnmpTrapReleaseText.setStatus('mandatory')
wtWebioEA2x2_24VAlarmUdpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 29), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmUdpReleaseText.setStatus('mandatory')
wtWebioEA2x2_24VAlarmTcpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 30), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmTcpReleaseText.setStatus('mandatory')
wtWebioEA2x2_24VAlarmSyslogReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 31), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmSyslogReleaseText.setStatus('mandatory')
wtWebioEA2x2_24VAlarmFtpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 32), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VAlarmFtpReleaseText.setStatus('mandatory')
wtWebioEA2x2_24VInputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 1), )
if mibBuilder.loadTexts: wtWebioEA2x2_24VInputPortTable.setStatus('mandatory')
wtWebioEA2x2_24VInputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2_24VInputNo"))
if mibBuilder.loadTexts: wtWebioEA2x2_24VInputPortEntry.setStatus('mandatory')
wtWebioEA2x2_24VPortInputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VPortInputName.setStatus('mandatory')
wtWebioEA2x2_24VPortInputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VPortInputText.setStatus('mandatory')
wtWebioEA2x2_24VPortInputMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VPortInputMode.setStatus('mandatory')
wtWebioEA2x2_24VPortInputFilter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VPortInputFilter.setStatus('mandatory')
wtWebioEA2x2_24VPortInputBicountPulsePolarity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VPortInputBicountPulsePolarity.setStatus('mandatory')
wtWebioEA2x2_24VPortInputBicountInactivTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 1, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VPortInputBicountInactivTimeout.setStatus('mandatory')
wtWebioEA2x2_24VOutputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2), )
if mibBuilder.loadTexts: wtWebioEA2x2_24VOutputPortTable.setStatus('mandatory')
wtWebioEA2x2_24VOutputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2_24VOutputNo"))
if mibBuilder.loadTexts: wtWebioEA2x2_24VOutputPortEntry.setStatus('mandatory')
wtWebioEA2x2_24VPortOutputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VPortOutputName.setStatus('mandatory')
wtWebioEA2x2_24VPortOutputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VPortOutputText.setStatus('mandatory')
wtWebioEA2x2_24VPortOutputGroupMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VPortOutputGroupMode.setStatus('mandatory')
wtWebioEA2x2_24VPortOutputSafetyState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VPortOutputSafetyState.setStatus('mandatory')
wtWebioEA2x2_24VPortLogicInputMask = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VPortLogicInputMask.setStatus('mandatory')
wtWebioEA2x2_24VPortLogicInputInverter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VPortLogicInputInverter.setStatus('mandatory')
wtWebioEA2x2_24VPortLogicFunction = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VPortLogicFunction.setStatus('mandatory')
wtWebioEA2x2_24VPortLogicOutputInverter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2, 1, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VPortLogicOutputInverter.setStatus('mandatory')
wtWebioEA2x2_24VPortPulseDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VPortPulseDuration.setStatus('mandatory')
wtWebioEA2x2_24VPortPulsePolarity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VPortPulsePolarity.setStatus('mandatory')
wtWebioEA2x2_24VMfName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VMfName.setStatus('mandatory')
wtWebioEA2x2_24VMfAddr = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VMfAddr.setStatus('mandatory')
wtWebioEA2x2_24VMfHotline = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VMfHotline.setStatus('mandatory')
wtWebioEA2x2_24VMfInternet = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VMfInternet.setStatus('mandatory')
wtWebioEA2x2_24VMfDeviceTyp = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 3, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VMfDeviceTyp.setStatus('mandatory')
wtWebioEA2x2_24VDiagErrorCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2_24VDiagErrorCount.setStatus('mandatory')
wtWebioEA2x2_24VDiagBinaryError = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 4, 2), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2_24VDiagBinaryError.setStatus('mandatory')
wtWebioEA2x2_24VDiagErrorIndex = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 4, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2_24VDiagErrorIndex.setStatus('mandatory')
wtWebioEA2x2_24VDiagErrorMessage = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 4, 4), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2_24VDiagErrorMessage.setStatus('mandatory')
wtWebioEA2x2_24VDiagErrorClear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 4, 5), Integer32()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: wtWebioEA2x2_24VDiagErrorClear.setStatus('mandatory')
wtWebioEA2x2_24VAlert1 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,41)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapText"))
wtWebioEA2x2_24VAlert2 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,42)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapText"))
wtWebioEA2x2_24VAlert3 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,43)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapText"))
wtWebioEA2x2_24VAlert4 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,44)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapText"))
wtWebioEA2x2_24VAlert5 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,45)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapText"))
wtWebioEA2x2_24VAlert6 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,46)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapText"))
wtWebioEA2x2_24VAlert7 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,47)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapText"))
wtWebioEA2x2_24VAlert8 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,48)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapText"))
wtWebioEA2x2_24VAlert9 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,49)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapText"))
wtWebioEA2x2_24VAlert10 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,50)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapText"))
wtWebioEA2x2_24VAlert11 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,51)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapText"))
wtWebioEA2x2_24VAlert12 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,52)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapText"))
wtWebioEA2x2_24VAlert13 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,71)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2_24VAlert14 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,72)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2_24VAlert15 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,73)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2_24VAlert16 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,74)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2_24VAlert17 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,75)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2_24VAlert18 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,76)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2_24VAlert19 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,77)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2_24VAlert20 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,78)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2_24VAlert21 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,79)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2_24VAlert22 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,80)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2_24VAlert23 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,81)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2_24VAlert24 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,82)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2_24VAlertDiag = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0,110)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2_24VDiagErrorIndex"), ("Webio-Digital-MIB-US", "wtWebioEA2x2_24VDiagErrorMessage"))
wtWebioEA2x2ERP_24VInputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VInputs.setStatus('mandatory')
wtWebioEA2x2ERP_24VOutputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VOutputs.setStatus('mandatory')
wtWebioEA2x2ERP_24VInputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 3), )
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VInputTable.setStatus('mandatory')
wtWebioEA2x2ERP_24VInputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VInputNo"))
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VInputEntry.setStatus('mandatory')
wtWebioEA2x2ERP_24VInputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VInputNo.setStatus('mandatory')
wtWebioEA2x2ERP_24VInputCounter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VInputCounter.setStatus('mandatory')
wtWebioEA2x2ERP_24VInputCounterClear = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VInputCounterClear.setStatus('mandatory')
wtWebioEA2x2ERP_24VInputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA2x2ERP_24VInputState-OFF", 0), ("wtWebioEA2x2ERP_24VInputState-ON", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VInputState.setStatus('mandatory')
wtWebioEA2x2ERP_24VInputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VInputValue.setStatus('mandatory')
wtWebioEA2x2ERP_24VOutputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 5), )
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VOutputTable.setStatus('mandatory')
wtWebioEA2x2ERP_24VOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 5, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VOutputNo"))
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VOutputEntry.setStatus('mandatory')
wtWebioEA2x2ERP_24VOutputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VOutputNo.setStatus('mandatory')
wtWebioEA2x2ERP_24VOutputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 5, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA2x2ERP_24VOutputState-OFF", 0), ("wtWebioEA2x2ERP_24VOutputState-ON", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VOutputState.setStatus('mandatory')
wtWebioEA2x2ERP_24VOutputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VOutputValue.setStatus('mandatory')
wtWebioEA2x2ERP_24VSetOutput = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VSetOutput.setStatus('mandatory')
wtWebioEA2x2ERP_24VSessCntrlPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VSessCntrlPassword.setStatus('mandatory')
wtWebioEA2x2ERP_24VSessCntrlConfigMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtWebioEA2x2ERP_24VSessCntrl-NoSession", 0), ("wtWebioEA2x2ERP_24VSessCntrl-Session", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VSessCntrlConfigMode.setStatus('mandatory')
wtWebioEA2x2ERP_24VSessCntrlLogout = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 2, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VSessCntrlLogout.setStatus('mandatory')
wtWebioEA2x2ERP_24VSessCntrlAdminPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 2, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VSessCntrlAdminPassword.setStatus('mandatory')
wtWebioEA2x2ERP_24VSessCntrlConfigPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 2, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VSessCntrlConfigPassword.setStatus('mandatory')
wtWebioEA2x2ERP_24VDeviceName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VDeviceName.setStatus('mandatory')
wtWebioEA2x2ERP_24VDeviceText = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VDeviceText.setStatus('mandatory')
wtWebioEA2x2ERP_24VDeviceLocation = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VDeviceLocation.setStatus('mandatory')
wtWebioEA2x2ERP_24VDeviceContact = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VDeviceContact.setStatus('mandatory')
wtWebioEA2x2ERP_24VTzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VTzOffsetHrs.setStatus('mandatory')
wtWebioEA2x2ERP_24VTzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VTzOffsetMin.setStatus('mandatory')
wtWebioEA2x2ERP_24VTzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VTzEnable.setStatus('mandatory')
wtWebioEA2x2ERP_24VStTzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VStTzOffsetHrs.setStatus('mandatory')
wtWebioEA2x2ERP_24VStTzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VStTzOffsetMin.setStatus('mandatory')
wtWebioEA2x2ERP_24VStTzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VStTzEnable.setStatus('mandatory')
wtWebioEA2x2ERP_24VStTzStartMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA2x2ERP_24VStartMonth-January", 1), ("wtWebioEA2x2ERP_24VStartMonth-February", 2), ("wtWebioEA2x2ERP_24VStartMonth-March", 3), ("wtWebioEA2x2ERP_24VStartMonth-April", 4), ("wtWebioEA2x2ERP_24VStartMonth-May", 5), ("wtWebioEA2x2ERP_24VStartMonth-June", 6), ("wtWebioEA2x2ERP_24VStartMonth-July", 7), ("wtWebioEA2x2ERP_24VStartMonth-August", 8), ("wtWebioEA2x2ERP_24VStartMonth-September", 9), ("wtWebioEA2x2ERP_24VStartMonth-October", 10), ("wtWebioEA2x2ERP_24VStartMonth-November", 11), ("wtWebioEA2x2ERP_24VStartMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VStTzStartMonth.setStatus('mandatory')
wtWebioEA2x2ERP_24VStTzStartMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtWebioEA2x2ERP_24VStartMode-first", 1), ("wtWebioEA2x2ERP_24VStartMode-second", 2), ("wtWebioEA2x2ERP_24VStartMode-third", 3), ("wtWebioEA2x2ERP_24VStartMode-fourth", 4), ("wtWebioEA2x2ERP_24VStartMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VStTzStartMode.setStatus('mandatory')
wtWebioEA2x2ERP_24VStTzStartWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtWebioEA2x2ERP_24VStartWday-Sunday", 1), ("wtWebioEA2x2ERP_24VStartWday-Monday", 2), ("wtWebioEA2x2ERP_24VStartWday-Tuesday", 3), ("wtWebioEA2x2ERP_24VStartWday-Thursday", 4), ("wtWebioEA2x2ERP_24VStartWday-Wednesday", 5), ("wtWebioEA2x2ERP_24VStartWday-Friday", 6), ("wtWebioEA2x2ERP_24VStartWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VStTzStartWday.setStatus('mandatory')
wtWebioEA2x2ERP_24VStTzStartHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VStTzStartHrs.setStatus('mandatory')
wtWebioEA2x2ERP_24VStTzStartMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VStTzStartMin.setStatus('mandatory')
wtWebioEA2x2ERP_24VStTzStopMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA2x2ERP_24VStopMonth-January", 1), ("wtWebioEA2x2ERP_24VStopMonth-February", 2), ("wtWebioEA2x2ERP_24VStopMonth-March", 3), ("wtWebioEA2x2ERP_24VStopMonth-April", 4), ("wtWebioEA2x2ERP_24VStopMonth-May", 5), ("wtWebioEA2x2ERP_24VStopMonth-June", 6), ("wtWebioEA2x2ERP_24VStopMonth-July", 7), ("wtWebioEA2x2ERP_24VStopMonth-August", 8), ("wtWebioEA2x2ERP_24VStopMonth-September", 9), ("wtWebioEA2x2ERP_24VStopMonth-October", 10), ("wtWebioEA2x2ERP_24VStopMonth-November", 11), ("wtWebioEA2x2ERP_24VStopMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VStTzStopMonth.setStatus('mandatory')
wtWebioEA2x2ERP_24VStTzStopMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtWebioEA2x2ERP_24VStopMode-first", 1), ("wtWebioEA2x2ERP_24VStopMode-second", 2), ("wtWebioEA2x2ERP_24VStopMode-third", 3), ("wtWebioEA2x2ERP_24VStopMode-fourth", 4), ("wtWebioEA2x2ERP_24VStopMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VStTzStopMode.setStatus('mandatory')
wtWebioEA2x2ERP_24VStTzStopWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtWebioEA2x2ERP_24VStopWday-Sunday", 1), ("wtWebioEA2x2ERP_24VStopWday-Monday", 2), ("wtWebioEA2x2ERP_24VStopWday-Tuesday", 3), ("wtWebioEA2x2ERP_24VStopWday-Thursday", 4), ("wtWebioEA2x2ERP_24VStopWday-Wednesday", 5), ("wtWebioEA2x2ERP_24VStopWday-Friday", 6), ("wtWebioEA2x2ERP_24VStopWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VStTzStopWday.setStatus('mandatory')
wtWebioEA2x2ERP_24VStTzStopHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 15), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VStTzStopHrs.setStatus('mandatory')
wtWebioEA2x2ERP_24VStTzStopMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 16), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VStTzStopMin.setStatus('mandatory')
wtWebioEA2x2ERP_24VTimeServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VTimeServer1.setStatus('mandatory')
wtWebioEA2x2ERP_24VTimeServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 2, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VTimeServer2.setStatus('mandatory')
wtWebioEA2x2ERP_24VTsEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 2, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VTsEnable.setStatus('mandatory')
wtWebioEA2x2ERP_24VTsSyncTime = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 2, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VTsSyncTime.setStatus('mandatory')
wtWebioEA2x2ERP_24VClockHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 3, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 23))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VClockHrs.setStatus('mandatory')
wtWebioEA2x2ERP_24VClockMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 3, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 59))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VClockMin.setStatus('mandatory')
wtWebioEA2x2ERP_24VClockDay = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 3, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VClockDay.setStatus('mandatory')
wtWebioEA2x2ERP_24VClockMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 3, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtWebioEA2x2ERP_24VClockMonth-January", 1), ("wtWebioEA2x2ERP_24VClockMonth-February", 2), ("wtWebioEA2x2ERP_24VClockMonth-March", 3), ("wtWebioEA2x2ERP_24VClockMonth-April", 4), ("wtWebioEA2x2ERP_24VClockMonth-May", 5), ("wtWebioEA2x2ERP_24VClockMonth-June", 6), ("wtWebioEA2x2ERP_24VClockMonth-July", 7), ("wtWebioEA2x2ERP_24VClockMonth-August", 8), ("wtWebioEA2x2ERP_24VClockMonth-September", 9), ("wtWebioEA2x2ERP_24VClockMonth-October", 10), ("wtWebioEA2x2ERP_24VClockMonth-November", 11), ("wtWebioEA2x2ERP_24VClockMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VClockMonth.setStatus('mandatory')
wtWebioEA2x2ERP_24VClockYear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 3, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VClockYear.setStatus('mandatory')
wtWebioEA2x2ERP_24VIpAddress = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VIpAddress.setStatus('mandatory')
wtWebioEA2x2ERP_24VSubnetMask = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VSubnetMask.setStatus('mandatory')
wtWebioEA2x2ERP_24VGateway = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VGateway.setStatus('mandatory')
wtWebioEA2x2ERP_24VDnsServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VDnsServer1.setStatus('mandatory')
wtWebioEA2x2ERP_24VDnsServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VDnsServer2.setStatus('mandatory')
wtWebioEA2x2ERP_24VAddConfig = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 1, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAddConfig.setStatus('mandatory')
wtWebioEA2x2ERP_24VStartup = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VStartup.setStatus('mandatory')
wtWebioEA2x2ERP_24VGetHeaderEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 2, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VGetHeaderEnable.setStatus('mandatory')
wtWebioEA2x2ERP_24VHttpInputTrigger = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 2, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VHttpInputTrigger.setStatus('mandatory')
wtWebioEA2x2ERP_24VHttpPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 2, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VHttpPort.setStatus('mandatory')
wtWebioEA2x2ERP_24VMailAdName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VMailAdName.setStatus('mandatory')
wtWebioEA2x2ERP_24VMailReply = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VMailReply.setStatus('mandatory')
wtWebioEA2x2ERP_24VMailServer = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VMailServer.setStatus('mandatory')
wtWebioEA2x2ERP_24VMailEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VMailEnable.setStatus('mandatory')
wtWebioEA2x2ERP_24VMailAuthentication = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 3, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VMailAuthentication.setStatus('mandatory')
wtWebioEA2x2ERP_24VMailAuthUser = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 3, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VMailAuthUser.setStatus('mandatory')
wtWebioEA2x2ERP_24VMailAuthPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 3, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VMailAuthPassword.setStatus('mandatory')
wtWebioEA2x2ERP_24VMailPop3Server = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 3, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VMailPop3Server.setStatus('mandatory')
wtWebioEA2x2ERP_24VSnmpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 4, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VSnmpEnable.setStatus('mandatory')
wtWebioEA2x2ERP_24VSnmpCommunityStringRead = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 4, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VSnmpCommunityStringRead.setStatus('mandatory')
wtWebioEA2x2ERP_24VSnmpCommunityStringReadWrite = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 4, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VSnmpCommunityStringReadWrite.setStatus('mandatory')
wtWebioEA2x2ERP_24VSnmpSystemTrapManagerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 4, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VSnmpSystemTrapManagerIP.setStatus('mandatory')
wtWebioEA2x2ERP_24VSnmpSystemTrapEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 4, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VSnmpSystemTrapEnable.setStatus('mandatory')
wtWebioEA2x2ERP_24VUdpAdminPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 5, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VUdpAdminPort.setStatus('mandatory')
wtWebioEA2x2ERP_24VUdpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 5, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VUdpEnable.setStatus('mandatory')
wtWebioEA2x2ERP_24VUdpRemotePort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 5, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VUdpRemotePort.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryModeCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryModeCount.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 2), )
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryIfTable.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VBinaryModeNo"))
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryIfEntry.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryModeNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryModeNo.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3), )
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryTable.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VBinaryModeNo"))
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryEntry.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryOperationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryOperationMode.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryTcpServerLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryTcpServerLocalPort.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryTcpServerInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryTcpServerInputTrigger.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryTcpServerApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryTcpServerApplicationMode.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryTcpClientLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryTcpClientLocalPort.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryTcpClientServerPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryTcpClientServerPort.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryTcpClientServerIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryTcpClientServerIpAddr.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryTcpClientServerPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryTcpClientServerPassword.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryTcpClientInactivity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryTcpClientInactivity.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryTcpClientInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryTcpClientInputTrigger.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryTcpClientInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryTcpClientInterval.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryTcpClientApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 12), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryTcpClientApplicationMode.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryUdpPeerLocalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryUdpPeerLocalPort.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryUdpPeerRemotePort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryUdpPeerRemotePort.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryUdpPeerRemoteIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 15), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryUdpPeerRemoteIpAddr.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryUdpPeerInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 16), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryUdpPeerInputTrigger.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryUdpPeerInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryUdpPeerInterval.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryUdpPeerApplicationMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 18), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryUdpPeerApplicationMode.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryConnectedPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryConnectedPort.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryConnectedIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 20), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryConnectedIpAddr.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryTcpServerClientHttpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryTcpServerClientHttpPort.setStatus('mandatory')
wtWebioEA2x2ERP_24VBinaryTcpClientServerHttpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VBinaryTcpClientServerHttpPort.setStatus('mandatory')
wtWebioEA2x2ERP_24VSyslogServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 7, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VSyslogServerIP.setStatus('mandatory')
wtWebioEA2x2ERP_24VSyslogServerPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 7, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VSyslogServerPort.setStatus('mandatory')
wtWebioEA2x2ERP_24VSyslogSystemMessagesEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 7, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VSyslogSystemMessagesEnable.setStatus('mandatory')
wtWebioEA2x2ERP_24VSyslogEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 7, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VSyslogEnable.setStatus('mandatory')
wtWebioEA2x2ERP_24VFTPServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 8, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VFTPServerIP.setStatus('mandatory')
wtWebioEA2x2ERP_24VFTPServerControlPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 8, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VFTPServerControlPort.setStatus('mandatory')
wtWebioEA2x2ERP_24VFTPUserName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 8, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VFTPUserName.setStatus('mandatory')
wtWebioEA2x2ERP_24VFTPPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 8, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VFTPPassword.setStatus('mandatory')
wtWebioEA2x2ERP_24VFTPAccount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 8, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VFTPAccount.setStatus('mandatory')
wtWebioEA2x2ERP_24VFTPOption = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 8, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VFTPOption.setStatus('mandatory')
wtWebioEA2x2ERP_24VFTPEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 8, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VFTPEnable.setStatus('mandatory')
wtWebioEA2x2ERP_24VWayBackEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 10, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VWayBackEnable.setStatus('mandatory')
wtWebioEA2x2ERP_24VWayBackServerControlPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 10, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VWayBackServerControlPort.setStatus('mandatory')
wtWebioEA2x2ERP_24VWayBackFTPPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 10, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VWayBackFTPPassword.setStatus('mandatory')
wtWebioEA2x2ERP_24VWayBackFTPResponse = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 10, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VWayBackFTPResponse.setStatus('mandatory')
wtWebioEA2x2ERP_24VWayBackFTPTimeOut = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 10, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VWayBackFTPTimeOut.setStatus('mandatory')
wtWebioEA2x2ERP_24VOutputModeTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 4, 1), )
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VOutputModeTable.setStatus('mandatory')
wtWebioEA2x2ERP_24VOutputModeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 4, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VOutputNo"))
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VOutputModeEntry.setStatus('mandatory')
wtWebioEA2x2ERP_24VOutputModeBit = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 4, 1, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VOutputModeBit.setStatus('mandatory')
wtWebioEA2x2ERP_24VSafetyTimeout = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 4, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VSafetyTimeout.setStatus('mandatory')
wtWebioEA2x2ERP_24VLoadControlEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 4, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VLoadControlEnable.setStatus('mandatory')
wtWebioEA2x2ERP_24VPowerSupplyEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 4, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VPowerSupplyEnable.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmCount.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 2), )
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmIfTable.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmNo"))
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmIfEntry.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmNo.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3), )
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmTable.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmNo"))
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmEntry.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(12, 12)).setFixedLength(12)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmInputTrigger.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmOutputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(12, 12)).setFixedLength(12)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmOutputTrigger.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmSystemTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmSystemTrigger.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmMaxCounterValue = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmMaxCounterValue.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmInterval.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmEnable.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmMailAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmMailAddr.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmMailSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmMailSubject.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmMailText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 9), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmMailText.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmSnmpManagerIP = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 10), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmSnmpManagerIP.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmSnmpTrapText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 11), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmSnmpTrapText.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmUdpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 12), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmUdpIpAddr.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmUdpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmUdpPort.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmUdpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 14), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmUdpText.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmTcpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 15), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmTcpIpAddr.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmTcpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmTcpPort.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmTcpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 17), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmTcpText.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmSyslogIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 18), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmSyslogIpAddr.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmSyslogPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmSyslogPort.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmSyslogText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 20), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmSyslogText.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmFtpDataPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 21), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmFtpDataPort.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmFtpFileName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 22), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmFtpFileName.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmFtpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 23), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmFtpText.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmFtpOption = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 24), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmFtpOption.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmTimerCron = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 25), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmTimerCron.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmMailReleaseSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 26), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmMailReleaseSubject.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmMailReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 27), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmMailReleaseText.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 28), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmUdpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 29), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmUdpReleaseText.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmTcpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 30), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmTcpReleaseText.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmSyslogReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 31), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmSyslogReleaseText.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlarmFtpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 32), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VAlarmFtpReleaseText.setStatus('mandatory')
wtWebioEA2x2ERP_24VLoadControlView = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VLoadControlView.setStatus('mandatory')
wtWebioEA2x2ERP_24VLCShutDownView = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VLCShutDownView.setStatus('mandatory')
wtWebioEA2x2ERP_24VInputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 1), )
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VInputPortTable.setStatus('mandatory')
wtWebioEA2x2ERP_24VInputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VInputNo"))
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VInputPortEntry.setStatus('mandatory')
wtWebioEA2x2ERP_24VPortInputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VPortInputName.setStatus('mandatory')
wtWebioEA2x2ERP_24VPortInputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VPortInputText.setStatus('mandatory')
wtWebioEA2x2ERP_24VPortInputMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VPortInputMode.setStatus('mandatory')
wtWebioEA2x2ERP_24VPortInputFilter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VPortInputFilter.setStatus('mandatory')
wtWebioEA2x2ERP_24VPortInputBicountPulsePolarity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VPortInputBicountPulsePolarity.setStatus('mandatory')
wtWebioEA2x2ERP_24VPortInputBicountInactivTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 1, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VPortInputBicountInactivTimeout.setStatus('mandatory')
wtWebioEA2x2ERP_24VOutputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2), )
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VOutputPortTable.setStatus('mandatory')
wtWebioEA2x2ERP_24VOutputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VOutputNo"))
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VOutputPortEntry.setStatus('mandatory')
wtWebioEA2x2ERP_24VPortOutputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VPortOutputName.setStatus('mandatory')
wtWebioEA2x2ERP_24VPortOutputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VPortOutputText.setStatus('mandatory')
wtWebioEA2x2ERP_24VPortOutputGroupMode = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VPortOutputGroupMode.setStatus('mandatory')
wtWebioEA2x2ERP_24VPortOutputSafetyState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VPortOutputSafetyState.setStatus('mandatory')
wtWebioEA2x2ERP_24VPortLogicInputMask = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VPortLogicInputMask.setStatus('mandatory')
wtWebioEA2x2ERP_24VPortLogicInputInverter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VPortLogicInputInverter.setStatus('mandatory')
wtWebioEA2x2ERP_24VPortLogicFunction = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VPortLogicFunction.setStatus('mandatory')
wtWebioEA2x2ERP_24VPortLogicOutputInverter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2, 1, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VPortLogicOutputInverter.setStatus('mandatory')
wtWebioEA2x2ERP_24VPortPulseDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VPortPulseDuration.setStatus('mandatory')
wtWebioEA2x2ERP_24VPortPulsePolarity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VPortPulsePolarity.setStatus('mandatory')
wtWebioEA2x2ERP_24VMfName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VMfName.setStatus('mandatory')
wtWebioEA2x2ERP_24VMfAddr = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VMfAddr.setStatus('mandatory')
wtWebioEA2x2ERP_24VMfHotline = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VMfHotline.setStatus('mandatory')
wtWebioEA2x2ERP_24VMfInternet = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VMfInternet.setStatus('mandatory')
wtWebioEA2x2ERP_24VMfDeviceTyp = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 3, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VMfDeviceTyp.setStatus('mandatory')
wtWebioEA2x2ERP_24VDiagErrorCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VDiagErrorCount.setStatus('mandatory')
wtWebioEA2x2ERP_24VDiagBinaryError = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 4, 2), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VDiagBinaryError.setStatus('mandatory')
wtWebioEA2x2ERP_24VDiagErrorIndex = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 4, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VDiagErrorIndex.setStatus('mandatory')
wtWebioEA2x2ERP_24VDiagErrorMessage = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 4, 4), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VDiagErrorMessage.setStatus('mandatory')
wtWebioEA2x2ERP_24VDiagErrorClear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 4, 5), Integer32()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: wtWebioEA2x2ERP_24VDiagErrorClear.setStatus('mandatory')
wtWebioEA2x2ERP_24VAlert1 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,41)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapText"))
wtWebioEA2x2ERP_24VAlert2 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,42)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapText"))
wtWebioEA2x2ERP_24VAlert3 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,43)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapText"))
wtWebioEA2x2ERP_24VAlert4 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,44)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapText"))
wtWebioEA2x2ERP_24VAlert5 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,45)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapText"))
wtWebioEA2x2ERP_24VAlert6 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,46)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapText"))
wtWebioEA2x2ERP_24VAlert7 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,47)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapText"))
wtWebioEA2x2ERP_24VAlert8 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,48)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapText"))
wtWebioEA2x2ERP_24VAlert9 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,49)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapText"))
wtWebioEA2x2ERP_24VAlert10 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,50)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapText"))
wtWebioEA2x2ERP_24VAlert11 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,51)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapText"))
wtWebioEA2x2ERP_24VAlert12 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,52)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapText"))
wtWebioEA2x2ERP_24VAlert13 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,71)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERP_24VAlert14 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,72)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERP_24VAlert15 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,73)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERP_24VAlert16 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,74)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERP_24VAlert17 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,75)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERP_24VAlert18 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,76)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERP_24VAlert19 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,77)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERP_24VAlert20 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,78)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERP_24VAlert21 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,79)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERP_24VAlert22 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,80)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERP_24VAlert23 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,81)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERP_24VAlert24 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,82)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText"))
wtWebioEA2x2ERP_24VAlertDiag = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0,110)).setObjects(("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VDiagErrorIndex"), ("Webio-Digital-MIB-US", "wtWebioEA2x2ERP_24VDiagErrorMessage"))
wtIpWatcher_24VInputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcher_24VInputs.setStatus('mandatory')
wtIpWatcher_24VOutputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcher_24VOutputs.setStatus('mandatory')
wtIpWatcher_24VInputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 3), )
if mibBuilder.loadTexts: wtIpWatcher_24VInputTable.setStatus('mandatory')
wtIpWatcher_24VInputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtIpWatcher_24VInputNo"))
if mibBuilder.loadTexts: wtIpWatcher_24VInputEntry.setStatus('mandatory')
wtIpWatcher_24VInputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcher_24VInputNo.setStatus('mandatory')
wtIpWatcher_24VInputCounter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcher_24VInputCounter.setStatus('mandatory')
wtIpWatcher_24VInputCounterClear = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcher_24VInputCounterClear.setStatus('mandatory')
wtIpWatcher_24VInputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtIpWatcher_24VInputState-OFF", 0), ("wtIpWatcher_24VInputState-ON", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcher_24VInputState.setStatus('mandatory')
wtIpWatcher_24VInputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcher_24VInputValue.setStatus('mandatory')
wtIpWatcher_24VOutputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 5), )
if mibBuilder.loadTexts: wtIpWatcher_24VOutputTable.setStatus('mandatory')
wtIpWatcher_24VOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 5, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtIpWatcher_24VOutputNo"))
if mibBuilder.loadTexts: wtIpWatcher_24VOutputEntry.setStatus('mandatory')
wtIpWatcher_24VOutputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcher_24VOutputNo.setStatus('mandatory')
wtIpWatcher_24VOutputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 5, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtIpWatcher_24VOutputState-OFF", 0), ("wtIpWatcher_24VOutputState-ON", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VOutputState.setStatus('mandatory')
wtIpWatcher_24VOutputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VOutputValue.setStatus('mandatory')
wtIpWatcher_24VSetOutput = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VSetOutput.setStatus('mandatory')
wtIpWatcher_24VAlarmOutputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 8), )
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmOutputTable.setStatus('mandatory')
wtIpWatcher_24VAlarmOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 8, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmNo"))
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmOutputEntry.setStatus('mandatory')
wtIpWatcher_24VAlarmOutputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 8, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtIpWatcher_24VAlarmOutputState-OFF", 0), ("wtIpWatcher_24VAlarmOutputState-ON", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmOutputState.setStatus('mandatory')
wtIpWatcher_24VAlarmTriggerState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 8, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtIpWatcher_24VAlarmTriggerState-OFF", 0), ("wtIpWatcher_24VAlarmTriggerState-ON", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmTriggerState.setStatus('mandatory')
wtIpWatcher_24VSessCntrlPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VSessCntrlPassword.setStatus('mandatory')
wtIpWatcher_24VSessCntrlConfigMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtIpWatcher_24VSessCntrl-NoSession", 0), ("wtIpWatcher_24VSessCntrl-Session", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcher_24VSessCntrlConfigMode.setStatus('mandatory')
wtIpWatcher_24VSessCntrlLogout = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 2, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VSessCntrlLogout.setStatus('mandatory')
wtIpWatcher_24VSessCntrlAdminPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 2, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VSessCntrlAdminPassword.setStatus('mandatory')
wtIpWatcher_24VSessCntrlConfigPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 2, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VSessCntrlConfigPassword.setStatus('mandatory')
wtIpWatcher_24VDeviceName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VDeviceName.setStatus('mandatory')
wtIpWatcher_24VDeviceText = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VDeviceText.setStatus('mandatory')
wtIpWatcher_24VDeviceLocation = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VDeviceLocation.setStatus('mandatory')
wtIpWatcher_24VDeviceContact = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VDeviceContact.setStatus('mandatory')
wtIpWatcher_24VTzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VTzOffsetHrs.setStatus('mandatory')
wtIpWatcher_24VTzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VTzOffsetMin.setStatus('mandatory')
wtIpWatcher_24VTzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VTzEnable.setStatus('mandatory')
wtIpWatcher_24VStTzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VStTzOffsetHrs.setStatus('mandatory')
wtIpWatcher_24VStTzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VStTzOffsetMin.setStatus('mandatory')
wtIpWatcher_24VStTzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VStTzEnable.setStatus('mandatory')
wtIpWatcher_24VStTzStartMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtIpWatcher_24VStartMonth-January", 1), ("wtIpWatcher_24VStartMonth-February", 2), ("wtIpWatcher_24VStartMonth-March", 3), ("wtIpWatcher_24VStartMonth-April", 4), ("wtIpWatcher_24VStartMonth-May", 5), ("wtIpWatcher_24VStartMonth-June", 6), ("wtIpWatcher_24VStartMonth-July", 7), ("wtIpWatcher_24VStartMonth-August", 8), ("wtIpWatcher_24VStartMonth-September", 9), ("wtIpWatcher_24VStartMonth-October", 10), ("wtIpWatcher_24VStartMonth-November", 11), ("wtIpWatcher_24VStartMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VStTzStartMonth.setStatus('mandatory')
wtIpWatcher_24VStTzStartMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtIpWatcher_24VStartMode-first", 1), ("wtIpWatcher_24VStartMode-second", 2), ("wtIpWatcher_24VStartMode-third", 3), ("wtIpWatcher_24VStartMode-fourth", 4), ("wtIpWatcher_24VStartMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VStTzStartMode.setStatus('mandatory')
wtIpWatcher_24VStTzStartWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtIpWatcher_24VStartWday-Sunday", 1), ("wtIpWatcher_24VStartWday-Monday", 2), ("wtIpWatcher_24VStartWday-Tuesday", 3), ("wtIpWatcher_24VStartWday-Thursday", 4), ("wtIpWatcher_24VStartWday-Wednesday", 5), ("wtIpWatcher_24VStartWday-Friday", 6), ("wtIpWatcher_24VStartWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VStTzStartWday.setStatus('mandatory')
wtIpWatcher_24VStTzStartHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VStTzStartHrs.setStatus('mandatory')
wtIpWatcher_24VStTzStartMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VStTzStartMin.setStatus('mandatory')
wtIpWatcher_24VStTzStopMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtIpWatcher_24VStopMonth-January", 1), ("wtIpWatcher_24VStopMonth-February", 2), ("wtIpWatcher_24VStopMonth-March", 3), ("wtIpWatcher_24VStopMonth-April", 4), ("wtIpWatcher_24VStopMonth-May", 5), ("wtIpWatcher_24VStopMonth-June", 6), ("wtIpWatcher_24VStopMonth-July", 7), ("wtIpWatcher_24VStopMonth-August", 8), ("wtIpWatcher_24VStopMonth-September", 9), ("wtIpWatcher_24VStopMonth-October", 10), ("wtIpWatcher_24VStopMonth-November", 11), ("wtIpWatcher_24VStopMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VStTzStopMonth.setStatus('mandatory')
wtIpWatcher_24VStTzStopMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtIpWatcher_24VStopMode-first", 1), ("wtIpWatcher_24VStopMode-second", 2), ("wtIpWatcher_24VStopMode-third", 3), ("wtIpWatcher_24VStopMode-fourth", 4), ("wtIpWatcher_24VStopMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VStTzStopMode.setStatus('mandatory')
wtIpWatcher_24VStTzStopWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtIpWatcher_24VStopWday-Sunday", 1), ("wtIpWatcher_24VStopWday-Monday", 2), ("wtIpWatcher_24VStopWday-Tuesday", 3), ("wtIpWatcher_24VStopWday-Thursday", 4), ("wtIpWatcher_24VStopWday-Wednesday", 5), ("wtIpWatcher_24VStopWday-Friday", 6), ("wtIpWatcher_24VStopWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VStTzStopWday.setStatus('mandatory')
wtIpWatcher_24VStTzStopHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 15), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VStTzStopHrs.setStatus('mandatory')
wtIpWatcher_24VStTzStopMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 16), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VStTzStopMin.setStatus('mandatory')
wtIpWatcher_24VTimeServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VTimeServer1.setStatus('mandatory')
wtIpWatcher_24VTimeServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 2, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VTimeServer2.setStatus('mandatory')
wtIpWatcher_24VTsEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 2, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VTsEnable.setStatus('mandatory')
wtIpWatcher_24VTsSyncTime = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 2, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VTsSyncTime.setStatus('mandatory')
wtIpWatcher_24VClockHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 3, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 23))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VClockHrs.setStatus('mandatory')
wtIpWatcher_24VClockMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 3, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 59))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VClockMin.setStatus('mandatory')
wtIpWatcher_24VClockDay = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 3, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VClockDay.setStatus('mandatory')
wtIpWatcher_24VClockMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 3, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtIpWatcher_24VClockMonth-January", 1), ("wtIpWatcher_24VClockMonth-February", 2), ("wtIpWatcher_24VClockMonth-March", 3), ("wtIpWatcher_24VClockMonth-April", 4), ("wtIpWatcher_24VClockMonth-May", 5), ("wtIpWatcher_24VClockMonth-June", 6), ("wtIpWatcher_24VClockMonth-July", 7), ("wtIpWatcher_24VClockMonth-August", 8), ("wtIpWatcher_24VClockMonth-September", 9), ("wtIpWatcher_24VClockMonth-October", 10), ("wtIpWatcher_24VClockMonth-November", 11), ("wtIpWatcher_24VClockMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VClockMonth.setStatus('mandatory')
wtIpWatcher_24VClockYear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 3, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VClockYear.setStatus('mandatory')
wtIpWatcher_24VIpAddress = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VIpAddress.setStatus('mandatory')
wtIpWatcher_24VSubnetMask = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VSubnetMask.setStatus('mandatory')
wtIpWatcher_24VGateway = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VGateway.setStatus('mandatory')
wtIpWatcher_24VDnsServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VDnsServer1.setStatus('mandatory')
wtIpWatcher_24VDnsServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VDnsServer2.setStatus('mandatory')
wtIpWatcher_24VAddConfig = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 1, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAddConfig.setStatus('mandatory')
wtIpWatcher_24VHttpPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 2, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VHttpPort.setStatus('mandatory')
wtIpWatcher_24VMailAdName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VMailAdName.setStatus('mandatory')
wtIpWatcher_24VMailReply = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VMailReply.setStatus('mandatory')
wtIpWatcher_24VMailServer = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VMailServer.setStatus('mandatory')
wtIpWatcher_24VMailEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VMailEnable.setStatus('mandatory')
wtIpWatcher_24VMailAuthentication = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 3, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VMailAuthentication.setStatus('mandatory')
wtIpWatcher_24VMailAuthUser = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 3, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VMailAuthUser.setStatus('mandatory')
wtIpWatcher_24VMailAuthPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 3, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VMailAuthPassword.setStatus('mandatory')
wtIpWatcher_24VMailPop3Server = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 3, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VMailPop3Server.setStatus('mandatory')
wtIpWatcher_24VSnmpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 4, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VSnmpEnable.setStatus('mandatory')
wtIpWatcher_24VSnmpCommunityStringRead = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 4, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VSnmpCommunityStringRead.setStatus('mandatory')
wtIpWatcher_24VSnmpCommunityStringReadWrite = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 4, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VSnmpCommunityStringReadWrite.setStatus('mandatory')
wtIpWatcher_24VSnmpSystemTrapManagerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 4, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VSnmpSystemTrapManagerIP.setStatus('mandatory')
wtIpWatcher_24VSnmpSystemTrapEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 4, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VSnmpSystemTrapEnable.setStatus('mandatory')
wtIpWatcher_24VUdpAdminPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 5, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VUdpAdminPort.setStatus('mandatory')
wtIpWatcher_24VUdpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 5, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VUdpEnable.setStatus('mandatory')
wtIpWatcher_24VUdpRemotePort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 5, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VUdpRemotePort.setStatus('mandatory')
wtIpWatcher_24VSyslogServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 7, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VSyslogServerIP.setStatus('mandatory')
wtIpWatcher_24VSyslogServerPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 7, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VSyslogServerPort.setStatus('mandatory')
wtIpWatcher_24VSyslogSystemMessagesEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 7, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VSyslogSystemMessagesEnable.setStatus('mandatory')
wtIpWatcher_24VSyslogEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 7, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VSyslogEnable.setStatus('mandatory')
wtIpWatcher_24VFTPServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 8, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VFTPServerIP.setStatus('mandatory')
wtIpWatcher_24VFTPServerControlPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 8, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VFTPServerControlPort.setStatus('mandatory')
wtIpWatcher_24VFTPUserName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 8, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VFTPUserName.setStatus('mandatory')
wtIpWatcher_24VFTPPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 8, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VFTPPassword.setStatus('mandatory')
wtIpWatcher_24VFTPAccount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 8, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VFTPAccount.setStatus('mandatory')
wtIpWatcher_24VFTPOption = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 8, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VFTPOption.setStatus('mandatory')
wtIpWatcher_24VFTPEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 8, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VFTPEnable.setStatus('mandatory')
wtIpWatcher_24VIpListCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcher_24VIpListCount.setStatus('mandatory')
wtIpWatcher_24VIpListIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11, 2), )
if mibBuilder.loadTexts: wtIpWatcher_24VIpListIfTable.setStatus('mandatory')
wtIpWatcher_24VIpListIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtIpWatcher_24VIpListNo"))
if mibBuilder.loadTexts: wtIpWatcher_24VIpListIfEntry.setStatus('mandatory')
wtIpWatcher_24VIpListNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 999))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcher_24VIpListNo.setStatus('mandatory')
wtIpWatcher_24VIpListTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11, 3), )
if mibBuilder.loadTexts: wtIpWatcher_24VIpListTable.setStatus('mandatory')
wtIpWatcher_24VIpListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtIpWatcher_24VIpListNo"))
if mibBuilder.loadTexts: wtIpWatcher_24VIpListEntry.setStatus('mandatory')
wtIpWatcher_24VIpListName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11, 3, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VIpListName.setStatus('mandatory')
wtIpWatcher_24VIpListPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11, 3, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VIpListPort.setStatus('mandatory')
wtIpWatcher_24VIpListService = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11, 3, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VIpListService.setStatus('mandatory')
wtIpWatcher_24VIpListEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VIpListEnable.setStatus('mandatory')
wtIpWatcher_24VIpListAlias = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VIpListAlias.setStatus('mandatory')
wtIpWatcher_24VPowerSupplyEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 4, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VPowerSupplyEnable.setStatus('mandatory')
wtIpWatcher_24VAlarmCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmCount.setStatus('mandatory')
wtIpWatcher_24VAlarmIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 2), )
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmIfTable.setStatus('mandatory')
wtIpWatcher_24VAlarmIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmNo"))
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmIfEntry.setStatus('mandatory')
wtIpWatcher_24VAlarmNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmNo.setStatus('mandatory')
wtIpWatcher_24VAlarmTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3), )
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmTable.setStatus('mandatory')
wtIpWatcher_24VAlarmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmNo"))
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmEntry.setStatus('mandatory')
wtIpWatcher_24VAlarmInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmInterval.setStatus('mandatory')
wtIpWatcher_24VAlarmEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmEnable.setStatus('mandatory')
wtIpWatcher_24VAlarmMailAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmMailAddr.setStatus('mandatory')
wtIpWatcher_24VAlarmMailSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmMailSubject.setStatus('mandatory')
wtIpWatcher_24VAlarmMailText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 9), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmMailText.setStatus('mandatory')
wtIpWatcher_24VAlarmSnmpManagerIP = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 10), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmSnmpManagerIP.setStatus('mandatory')
wtIpWatcher_24VAlarmSnmpTrapText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 11), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmSnmpTrapText.setStatus('mandatory')
wtIpWatcher_24VAlarmUdpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 12), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmUdpIpAddr.setStatus('mandatory')
wtIpWatcher_24VAlarmUdpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmUdpPort.setStatus('mandatory')
wtIpWatcher_24VAlarmUdpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 14), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmUdpText.setStatus('mandatory')
wtIpWatcher_24VAlarmTcpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 15), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmTcpIpAddr.setStatus('mandatory')
wtIpWatcher_24VAlarmTcpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmTcpPort.setStatus('mandatory')
wtIpWatcher_24VAlarmTcpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 17), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmTcpText.setStatus('mandatory')
wtIpWatcher_24VAlarmSyslogIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 18), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmSyslogIpAddr.setStatus('mandatory')
wtIpWatcher_24VAlarmSyslogPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmSyslogPort.setStatus('mandatory')
wtIpWatcher_24VAlarmSyslogText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 20), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmSyslogText.setStatus('mandatory')
wtIpWatcher_24VAlarmFtpDataPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 21), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmFtpDataPort.setStatus('mandatory')
wtIpWatcher_24VAlarmFtpFileName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 22), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmFtpFileName.setStatus('mandatory')
wtIpWatcher_24VAlarmFtpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 23), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmFtpText.setStatus('mandatory')
wtIpWatcher_24VAlarmFtpOption = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 24), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmFtpOption.setStatus('mandatory')
wtIpWatcher_24VAlarmTimerCron = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 25), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmTimerCron.setStatus('mandatory')
wtIpWatcher_24VAlarmMailReleaseSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 26), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmMailReleaseSubject.setStatus('mandatory')
wtIpWatcher_24VAlarmMailReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 27), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmMailReleaseText.setStatus('mandatory')
wtIpWatcher_24VAlarmSnmpTrapReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 28), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmSnmpTrapReleaseText.setStatus('mandatory')
wtIpWatcher_24VAlarmUdpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 29), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmUdpReleaseText.setStatus('mandatory')
wtIpWatcher_24VAlarmTcpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 30), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmTcpReleaseText.setStatus('mandatory')
wtIpWatcher_24VAlarmSyslogReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 31), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmSyslogReleaseText.setStatus('mandatory')
wtIpWatcher_24VAlarmFtpReleaseText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 32), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmFtpReleaseText.setStatus('mandatory')
wtIpWatcher_24VAlarmName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 33), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmName.setStatus('mandatory')
wtIpWatcher_24VAlarmGlobalEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 34), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmGlobalEnable.setStatus('mandatory')
wtIpWatcher_24VAlarmCounterClear = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 35), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmCounterClear.setStatus('mandatory')
wtIpWatcher_24VAlarmAckEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 36), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmAckEnable.setStatus('mandatory')
wtIpWatcher_24VAlarmAckPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 37), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmAckPort.setStatus('mandatory')
wtIpWatcher_24VAlarmSetPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 38), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmSetPort.setStatus('mandatory')
wtIpWatcher_24VAlarmMailTrgClearSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 39), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmMailTrgClearSubject.setStatus('mandatory')
wtIpWatcher_24VAlarmMailTrgClearText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 40), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmMailTrgClearText.setStatus('mandatory')
wtIpWatcher_24VAlarmSnmpTrapTrgClearText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 41), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmSnmpTrapTrgClearText.setStatus('mandatory')
wtIpWatcher_24VAlarmUdpTrgClearText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 42), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmUdpTrgClearText.setStatus('mandatory')
wtIpWatcher_24VAlarmTcpTrgClearText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 43), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmTcpTrgClearText.setStatus('mandatory')
wtIpWatcher_24VAlarmSyslogTrgClearText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 44), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmSyslogTrgClearText.setStatus('mandatory')
wtIpWatcher_24VAlarmFtpTrgClearText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 45), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmFtpTrgClearText.setStatus('mandatory')
wtIpWatcher_24VAlarmMailTrapTxEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 46), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmMailTrapTxEnable.setStatus('mandatory')
wtIpWatcher_24VAlarmSnmpTrapTrapTxEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 47), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmSnmpTrapTrapTxEnable.setStatus('mandatory')
wtIpWatcher_24VAlarmUdpTrapTxEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 48), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmUdpTrapTxEnable.setStatus('mandatory')
wtIpWatcher_24VAlarmTcpTrapTxEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 49), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmTcpTrapTxEnable.setStatus('mandatory')
wtIpWatcher_24VAlarmSyslogTrapTxEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 50), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmSyslogTrapTxEnable.setStatus('mandatory')
wtIpWatcher_24VAlarmFtpTrapTxEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 51), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmFtpTrapTxEnable.setStatus('mandatory')
wtIpWatcher_24VAlarmTriggerCount = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 52), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmTriggerCount.setStatus('mandatory')
wtIpWatcher_24VAlarmPollingRate = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 53), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VAlarmPollingRate.setStatus('mandatory')
wtIpWatcher_24VInputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2, 1), )
if mibBuilder.loadTexts: wtIpWatcher_24VInputPortTable.setStatus('mandatory')
wtIpWatcher_24VInputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtIpWatcher_24VInputNo"))
if mibBuilder.loadTexts: wtIpWatcher_24VInputPortEntry.setStatus('mandatory')
wtIpWatcher_24VPortInputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VPortInputName.setStatus('mandatory')
wtIpWatcher_24VPortInputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VPortInputText.setStatus('mandatory')
wtIpWatcher_24VPortInputFilter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VPortInputFilter.setStatus('mandatory')
wtIpWatcher_24VOutputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2, 2), )
if mibBuilder.loadTexts: wtIpWatcher_24VOutputPortTable.setStatus('mandatory')
wtIpWatcher_24VOutputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtIpWatcher_24VOutputNo"))
if mibBuilder.loadTexts: wtIpWatcher_24VOutputPortEntry.setStatus('mandatory')
wtIpWatcher_24VPortOutputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2, 2, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VPortOutputName.setStatus('mandatory')
wtIpWatcher_24VPortOutputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2, 2, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VPortOutputText.setStatus('mandatory')
wtIpWatcher_24VPortPulseDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2, 2, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VPortPulseDuration.setStatus('mandatory')
wtIpWatcher_24VPortPulsePolarity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2, 2, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VPortPulsePolarity.setStatus('mandatory')
wtIpWatcher_24VMfName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VMfName.setStatus('mandatory')
wtIpWatcher_24VMfAddr = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VMfAddr.setStatus('mandatory')
wtIpWatcher_24VMfHotline = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VMfHotline.setStatus('mandatory')
wtIpWatcher_24VMfInternet = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VMfInternet.setStatus('mandatory')
wtIpWatcher_24VMfDeviceTyp = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 3, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VMfDeviceTyp.setStatus('mandatory')
wtIpWatcher_24VDiagErrorCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcher_24VDiagErrorCount.setStatus('mandatory')
wtIpWatcher_24VDiagBinaryError = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 4, 2), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcher_24VDiagBinaryError.setStatus('mandatory')
wtIpWatcher_24VDiagErrorIndex = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 4, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtIpWatcher_24VDiagErrorIndex.setStatus('mandatory')
wtIpWatcher_24VDiagErrorMessage = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 4, 4), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtIpWatcher_24VDiagErrorMessage.setStatus('mandatory')
wtIpWatcher_24VDiagErrorClear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 4, 5), Integer32()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: wtIpWatcher_24VDiagErrorClear.setStatus('mandatory')
wtIpWatcher_24VAlert1 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,41)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapText"))
wtIpWatcher_24VAlert2 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,42)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapText"))
wtIpWatcher_24VAlert3 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,43)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapText"))
wtIpWatcher_24VAlert4 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,44)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapText"))
wtIpWatcher_24VAlert5 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,45)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapText"))
wtIpWatcher_24VAlert6 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,46)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapText"))
wtIpWatcher_24VAlert7 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,47)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapText"))
wtIpWatcher_24VAlert8 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,48)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapText"))
wtIpWatcher_24VAlert9 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,49)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapText"))
wtIpWatcher_24VAlert10 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,50)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapText"))
wtIpWatcher_24VAlert11 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,51)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapText"))
wtIpWatcher_24VAlert12 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,52)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapText"))
wtIpWatcher_24VAlert13 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,71)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapReleaseText"))
wtIpWatcher_24VAlert14 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,72)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapReleaseText"))
wtIpWatcher_24VAlert15 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,73)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapReleaseText"))
wtIpWatcher_24VAlert16 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,74)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapReleaseText"))
wtIpWatcher_24VAlert17 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,75)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapReleaseText"))
wtIpWatcher_24VAlert18 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,76)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapReleaseText"))
wtIpWatcher_24VAlert19 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,77)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapReleaseText"))
wtIpWatcher_24VAlert20 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,78)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapReleaseText"))
wtIpWatcher_24VAlert21 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,79)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapReleaseText"))
wtIpWatcher_24VAlert22 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,80)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapReleaseText"))
wtIpWatcher_24VAlert23 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,81)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapReleaseText"))
wtIpWatcher_24VAlert24 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,82)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapReleaseText"))
wtIpWatcher_24VAlert25 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,91)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapTrgClearText"))
wtIpWatcher_24VAlert26 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,92)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapTrgClearText"))
wtIpWatcher_24VAlert27 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,93)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapTrgClearText"))
wtIpWatcher_24VAlert28 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,94)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapTrgClearText"))
wtIpWatcher_24VAlert29 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,95)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapTrgClearText"))
wtIpWatcher_24VAlert30 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,96)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapTrgClearText"))
wtIpWatcher_24VAlert31 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,97)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapTrgClearText"))
wtIpWatcher_24VAlert32 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,98)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapTrgClearText"))
wtIpWatcher_24VAlert33 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,99)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapTrgClearText"))
wtIpWatcher_24VAlert34 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,100)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapTrgClearText"))
wtIpWatcher_24VAlert35 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,101)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapTrgClearText"))
wtIpWatcher_24VAlert36 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,102)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VAlarmSnmpTrapTrgClearText"))
wtIpWatcher_24VAlertDiag = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0,110)).setObjects(("Webio-Digital-MIB-US", "wtIpWatcher_24VDiagErrorIndex"), ("Webio-Digital-MIB-US", "wtIpWatcher_24VDiagErrorMessage"))
wtTrapReceiver2x2Inputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtTrapReceiver2x2Inputs.setStatus('mandatory')
wtTrapReceiver2x2Outputs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtTrapReceiver2x2Outputs.setStatus('mandatory')
wtTrapReceiver2x2InputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 3), )
if mibBuilder.loadTexts: wtTrapReceiver2x2InputTable.setStatus('mandatory')
wtTrapReceiver2x2InputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtTrapReceiver2x2InputNo"))
if mibBuilder.loadTexts: wtTrapReceiver2x2InputEntry.setStatus('mandatory')
wtTrapReceiver2x2InputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtTrapReceiver2x2InputNo.setStatus('mandatory')
wtTrapReceiver2x2InputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtTrapReceiver2x2InputState-OFF", 0), ("wtTrapReceiver2x2InputState-ON", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtTrapReceiver2x2InputState.setStatus('mandatory')
wtTrapReceiver2x2InputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtTrapReceiver2x2InputValue.setStatus('mandatory')
wtTrapReceiver2x2OutputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 5), )
if mibBuilder.loadTexts: wtTrapReceiver2x2OutputTable.setStatus('mandatory')
wtTrapReceiver2x2OutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 5, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtTrapReceiver2x2OutputNo"))
if mibBuilder.loadTexts: wtTrapReceiver2x2OutputEntry.setStatus('mandatory')
wtTrapReceiver2x2OutputNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtTrapReceiver2x2OutputNo.setStatus('mandatory')
wtTrapReceiver2x2OutputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 5, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtTrapReceiver2x2OutputState-OFF", 0), ("wtTrapReceiver2x2OutputState-ON", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2OutputState.setStatus('mandatory')
wtTrapReceiver2x2OutputValue = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtTrapReceiver2x2OutputValue.setStatus('mandatory')
wtTrapReceiver2x2ActionOutputTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 8), )
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionOutputTable.setStatus('mandatory')
wtTrapReceiver2x2ActionOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 8, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtTrapReceiver2x2ActionNo"))
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionOutputEntry.setStatus('mandatory')
wtTrapReceiver2x2ActionOutputState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 8, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtTrapReceiver2x2ActionOutputState-OFF", 0), ("wtTrapReceiver2x2ActionOutputState-ON", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionOutputState.setStatus('mandatory')
wtTrapReceiver2x2ActionTriggerState = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 8, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtTrapReceiver2x2ActionTriggerState-OFF", 0), ("wtTrapReceiver2x2ActionTriggerState-ON", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionTriggerState.setStatus('mandatory')
wtTrapReceiver2x2SystemTimerTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 9), )
if mibBuilder.loadTexts: wtTrapReceiver2x2SystemTimerTable.setStatus('mandatory')
wtTrapReceiver2x2SystemTimerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 9, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtTrapReceiver2x2SystemTimerNo"))
if mibBuilder.loadTexts: wtTrapReceiver2x2SystemTimerEntry.setStatus('mandatory')
wtTrapReceiver2x2SystemTimerNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 9, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtTrapReceiver2x2SystemTimerNo.setStatus('mandatory')
wtTrapReceiver2x2ButtonTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 10), )
if mibBuilder.loadTexts: wtTrapReceiver2x2ButtonTable.setStatus('mandatory')
wtTrapReceiver2x2ButtonEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 10, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtTrapReceiver2x2ButtonNo"))
if mibBuilder.loadTexts: wtTrapReceiver2x2ButtonEntry.setStatus('mandatory')
wtTrapReceiver2x2ButtonNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 10, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtTrapReceiver2x2ButtonNo.setStatus('mandatory')
wtTrapReceiver2x2SessCntrlPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2SessCntrlPassword.setStatus('mandatory')
wtTrapReceiver2x2SessCntrlConfigMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("wtTrapReceiver2x2SessCntrl-NoSession", 0), ("wtTrapReceiver2x2SessCntrl-Session", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtTrapReceiver2x2SessCntrlConfigMode.setStatus('mandatory')
wtTrapReceiver2x2SessCntrlLogout = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 2, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2SessCntrlLogout.setStatus('mandatory')
wtTrapReceiver2x2SessCntrlAdminPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 2, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2SessCntrlAdminPassword.setStatus('mandatory')
wtTrapReceiver2x2SessCntrlConfigPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 2, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2SessCntrlConfigPassword.setStatus('mandatory')
wtTrapReceiver2x2DeviceName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2DeviceName.setStatus('mandatory')
wtTrapReceiver2x2DeviceText = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2DeviceText.setStatus('mandatory')
wtTrapReceiver2x2DeviceLocation = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2DeviceLocation.setStatus('mandatory')
wtTrapReceiver2x2DeviceContact = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2DeviceContact.setStatus('mandatory')
wtTrapReceiver2x2TzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2TzOffsetHrs.setStatus('mandatory')
wtTrapReceiver2x2TzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2TzOffsetMin.setStatus('mandatory')
wtTrapReceiver2x2TzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2TzEnable.setStatus('mandatory')
wtTrapReceiver2x2StTzOffsetHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2StTzOffsetHrs.setStatus('mandatory')
wtTrapReceiver2x2StTzOffsetMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2StTzOffsetMin.setStatus('mandatory')
wtTrapReceiver2x2StTzEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2StTzEnable.setStatus('mandatory')
wtTrapReceiver2x2StTzStartMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtTrapReceiver2x2StartMonth-January", 1), ("wtTrapReceiver2x2StartMonth-February", 2), ("wtTrapReceiver2x2StartMonth-March", 3), ("wtTrapReceiver2x2StartMonth-April", 4), ("wtTrapReceiver2x2StartMonth-May", 5), ("wtTrapReceiver2x2StartMonth-June", 6), ("wtTrapReceiver2x2StartMonth-July", 7), ("wtTrapReceiver2x2StartMonth-August", 8), ("wtTrapReceiver2x2StartMonth-September", 9), ("wtTrapReceiver2x2StartMonth-October", 10), ("wtTrapReceiver2x2StartMonth-November", 11), ("wtTrapReceiver2x2StartMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2StTzStartMonth.setStatus('mandatory')
wtTrapReceiver2x2StTzStartMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtTrapReceiver2x2StartMode-first", 1), ("wtTrapReceiver2x2StartMode-second", 2), ("wtTrapReceiver2x2StartMode-third", 3), ("wtTrapReceiver2x2StartMode-fourth", 4), ("wtTrapReceiver2x2StartMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2StTzStartMode.setStatus('mandatory')
wtTrapReceiver2x2StTzStartWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtTrapReceiver2x2StartWday-Sunday", 1), ("wtTrapReceiver2x2StartWday-Monday", 2), ("wtTrapReceiver2x2StartWday-Tuesday", 3), ("wtTrapReceiver2x2StartWday-Thursday", 4), ("wtTrapReceiver2x2StartWday-Wednesday", 5), ("wtTrapReceiver2x2StartWday-Friday", 6), ("wtTrapReceiver2x2StartWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2StTzStartWday.setStatus('mandatory')
wtTrapReceiver2x2StTzStartHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2StTzStartHrs.setStatus('mandatory')
wtTrapReceiver2x2StTzStartMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2StTzStartMin.setStatus('mandatory')
wtTrapReceiver2x2StTzStopMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtTrapReceiver2x2StopMonth-January", 1), ("wtTrapReceiver2x2StopMonth-February", 2), ("wtTrapReceiver2x2StopMonth-March", 3), ("wtTrapReceiver2x2StopMonth-April", 4), ("wtTrapReceiver2x2StopMonth-May", 5), ("wtTrapReceiver2x2StopMonth-June", 6), ("wtTrapReceiver2x2StopMonth-July", 7), ("wtTrapReceiver2x2StopMonth-August", 8), ("wtTrapReceiver2x2StopMonth-September", 9), ("wtTrapReceiver2x2StopMonth-October", 10), ("wtTrapReceiver2x2StopMonth-November", 11), ("wtTrapReceiver2x2StopMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2StTzStopMonth.setStatus('mandatory')
wtTrapReceiver2x2StTzStopMode = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("wtTrapReceiver2x2StopMode-first", 1), ("wtTrapReceiver2x2StopMode-second", 2), ("wtTrapReceiver2x2StopMode-third", 3), ("wtTrapReceiver2x2StopMode-fourth", 4), ("wtTrapReceiver2x2StopMode-last", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2StTzStopMode.setStatus('mandatory')
wtTrapReceiver2x2StTzStopWday = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtTrapReceiver2x2StopWday-Sunday", 1), ("wtTrapReceiver2x2StopWday-Monday", 2), ("wtTrapReceiver2x2StopWday-Tuesday", 3), ("wtTrapReceiver2x2StopWday-Thursday", 4), ("wtTrapReceiver2x2StopWday-Wednesday", 5), ("wtTrapReceiver2x2StopWday-Friday", 6), ("wtTrapReceiver2x2StopWday-Saturday", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2StTzStopWday.setStatus('mandatory')
wtTrapReceiver2x2StTzStopHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 15), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2StTzStopHrs.setStatus('mandatory')
wtTrapReceiver2x2StTzStopMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 16), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2StTzStopMin.setStatus('mandatory')
wtTrapReceiver2x2TimeServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 2, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2TimeServer1.setStatus('mandatory')
wtTrapReceiver2x2TimeServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 2, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2TimeServer2.setStatus('mandatory')
wtTrapReceiver2x2TsEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 2, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2TsEnable.setStatus('mandatory')
wtTrapReceiver2x2TsSyncTime = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 2, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2TsSyncTime.setStatus('mandatory')
wtTrapReceiver2x2ClockHrs = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 3, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 23))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ClockHrs.setStatus('mandatory')
wtTrapReceiver2x2ClockMin = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 3, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 59))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ClockMin.setStatus('mandatory')
wtTrapReceiver2x2ClockDay = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 3, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ClockDay.setStatus('mandatory')
wtTrapReceiver2x2ClockMonth = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 3, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("wtTrapReceiver2x2ClockMonth-January", 1), ("wtTrapReceiver2x2ClockMonth-February", 2), ("wtTrapReceiver2x2ClockMonth-March", 3), ("wtTrapReceiver2x2ClockMonth-April", 4), ("wtTrapReceiver2x2ClockMonth-May", 5), ("wtTrapReceiver2x2ClockMonth-June", 6), ("wtTrapReceiver2x2ClockMonth-July", 7), ("wtTrapReceiver2x2ClockMonth-August", 8), ("wtTrapReceiver2x2ClockMonth-September", 9), ("wtTrapReceiver2x2ClockMonth-October", 10), ("wtTrapReceiver2x2ClockMonth-November", 11), ("wtTrapReceiver2x2ClockMonth-December", 12)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ClockMonth.setStatus('mandatory')
wtTrapReceiver2x2ClockYear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 3, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ClockYear.setStatus('mandatory')
wtTrapReceiver2x2IpAddress = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2IpAddress.setStatus('mandatory')
wtTrapReceiver2x2SubnetMask = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2SubnetMask.setStatus('mandatory')
wtTrapReceiver2x2Gateway = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2Gateway.setStatus('mandatory')
wtTrapReceiver2x2DnsServer1 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2DnsServer1.setStatus('mandatory')
wtTrapReceiver2x2DnsServer2 = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2DnsServer2.setStatus('mandatory')
wtTrapReceiver2x2AddConfig = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 1, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2AddConfig.setStatus('mandatory')
wtTrapReceiver2x2HttpPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 2, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2HttpPort.setStatus('mandatory')
wtTrapReceiver2x2MailAdName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2MailAdName.setStatus('mandatory')
wtTrapReceiver2x2MailReply = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2MailReply.setStatus('mandatory')
wtTrapReceiver2x2MailServer = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2MailServer.setStatus('mandatory')
wtTrapReceiver2x2MailEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2MailEnable.setStatus('mandatory')
wtTrapReceiver2x2MailAuthentication = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 3, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2MailAuthentication.setStatus('mandatory')
wtTrapReceiver2x2MailAuthUser = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 3, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2MailAuthUser.setStatus('mandatory')
wtTrapReceiver2x2MailAuthPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 3, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2MailAuthPassword.setStatus('mandatory')
wtTrapReceiver2x2MailPop3Server = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 3, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2MailPop3Server.setStatus('mandatory')
wtTrapReceiver2x2SnmpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 4, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2SnmpEnable.setStatus('mandatory')
wtTrapReceiver2x2SnmpCommunityStringRead = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 4, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2SnmpCommunityStringRead.setStatus('mandatory')
wtTrapReceiver2x2SnmpCommunityStringReadWrite = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 4, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2SnmpCommunityStringReadWrite.setStatus('mandatory')
wtTrapReceiver2x2SnmpSystemTrapManagerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 4, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2SnmpSystemTrapManagerIP.setStatus('mandatory')
wtTrapReceiver2x2SnmpSystemTrapEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 4, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2SnmpSystemTrapEnable.setStatus('mandatory')
wtTrapReceiver2x2UdpAdminPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 5, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2UdpAdminPort.setStatus('mandatory')
wtTrapReceiver2x2UdpEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 5, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2UdpEnable.setStatus('mandatory')
wtTrapReceiver2x2UdpRemotePort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 5, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2UdpRemotePort.setStatus('mandatory')
wtTrapReceiver2x2SyslogServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 7, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2SyslogServerIP.setStatus('mandatory')
wtTrapReceiver2x2SyslogServerPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 7, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2SyslogServerPort.setStatus('mandatory')
wtTrapReceiver2x2SyslogSystemMessagesEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 7, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2SyslogSystemMessagesEnable.setStatus('mandatory')
wtTrapReceiver2x2SyslogEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 7, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2SyslogEnable.setStatus('mandatory')
wtTrapReceiver2x2FTPServerIP = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 8, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2FTPServerIP.setStatus('mandatory')
wtTrapReceiver2x2FTPServerControlPort = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 8, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2FTPServerControlPort.setStatus('mandatory')
wtTrapReceiver2x2FTPUserName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 8, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2FTPUserName.setStatus('mandatory')
wtTrapReceiver2x2FTPPassword = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 8, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2FTPPassword.setStatus('mandatory')
wtTrapReceiver2x2FTPAccount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 8, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2FTPAccount.setStatus('mandatory')
wtTrapReceiver2x2FTPOption = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 8, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2FTPOption.setStatus('mandatory')
wtTrapReceiver2x2FTPEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 8, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2FTPEnable.setStatus('mandatory')
wtTrapReceiver2x2WatchListCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtTrapReceiver2x2WatchListCount.setStatus('mandatory')
wtTrapReceiver2x2WatchListIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 2), )
if mibBuilder.loadTexts: wtTrapReceiver2x2WatchListIfTable.setStatus('mandatory')
wtTrapReceiver2x2WatchListIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtTrapReceiver2x2WatchListNo"))
if mibBuilder.loadTexts: wtTrapReceiver2x2WatchListIfEntry.setStatus('mandatory')
wtTrapReceiver2x2WatchListNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 999))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtTrapReceiver2x2WatchListNo.setStatus('mandatory')
wtTrapReceiver2x2WatchListTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 3), )
if mibBuilder.loadTexts: wtTrapReceiver2x2WatchListTable.setStatus('mandatory')
wtTrapReceiver2x2WatchListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtTrapReceiver2x2WatchListNo"))
if mibBuilder.loadTexts: wtTrapReceiver2x2WatchListEntry.setStatus('mandatory')
wtTrapReceiver2x2WatchListName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 3, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2WatchListName.setStatus('mandatory')
wtTrapReceiver2x2WatchListPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 3, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2WatchListPort.setStatus('mandatory')
wtTrapReceiver2x2WatchListService = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 3, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2WatchListService.setStatus('mandatory')
wtTrapReceiver2x2WatchListEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 3, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2WatchListEnable.setStatus('mandatory')
wtTrapReceiver2x2WatchListAlias = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2WatchListAlias.setStatus('mandatory')
wtTrapReceiver2x2WatchListTrapNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 3, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("wtTrapReceiver2x2WatchListTrapNo-ColdStart", 0), ("wtTrapReceiver2x2WatchListTrapNo-WarmStart", 1), ("wtTrapReceiver2x2WatchListTrapNo-LinkDown", 2), ("wtTrapReceiver2x2WatchListTrapNo-LinkUp", 3), ("wtTrapReceiver2x2WatchListTrapNo-AuthFailure", 4), ("wtTrapReceiver2x2WatchListTrapNo-EPGneighborLoss", 5), ("wtTrapReceiver2x2WatchListTrapNo-EnterpriseSpecific", 6), ("wtTrapReceiver2x2WatchListTrapNo-WildCard", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2WatchListTrapNo.setStatus('mandatory')
wtTrapReceiver2x2WatchListSpecificNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 3, 1, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2WatchListSpecificNo.setStatus('mandatory')
wtTrapReceiver2x2WatchListFacility = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 3, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("wtTrapReceiver2x2WatchListFacility-Emergency", 0), ("wtTrapReceiver2x2WatchListFacility-Alert", 1), ("wtTrapReceiver2x2WatchListFacility-Critical", 2), ("wtTrapReceiver2x2WatchListFacility-Error", 3), ("wtTrapReceiver2x2WatchListFacility-Warning", 4), ("wtTrapReceiver2x2WatchListFacility-Notice", 5), ("wtTrapReceiver2x2WatchListFacility-Informational", 6), ("wtTrapReceiver2x2WatchListFacility-Debug", 7), ("wtTrapReceiver2x2WatchListFacility-WildCard", 8)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2WatchListFacility.setStatus('mandatory')
wtTrapReceiver2x2WatchListSeverity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 3, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24))).clone(namedValues=NamedValues(("wtTrapReceiver2x2WatchListSeverity-kernel_messages", 0), ("wtTrapReceiver2x2WatchListSeverity-user_level_messages", 1), ("wtTrapReceiver2x2WatchListSeverity-mail_system", 2), ("wtTrapReceiver2x2WatchListSeverity-system_daemons", 3), ("wtTrapReceiver2x2WatchListSeverity-security_authorization_messages", 4), ("wtTrapReceiver2x2WatchListSeverity-messages_generated_internaly_by_syslogd", 5), ("wtTrapReceiver2x2WatchListSeverity-line_printer_subsystem", 6), ("wtTrapReceiver2x2WatchListSeverity-network_news_subsystem", 7), ("wtTrapReceiver2x2WatchListSeverity-UUCP_subsystem", 8), ("wtTrapReceiver2x2WatchListSeverity-clock_daemon", 9), ("wtTrapReceiver2x2WatchListSeverity-security_authorization_messages_private", 10), ("wtTrapReceiver2x2WatchListSeverity-FTP_daemon", 11), ("wtTrapReceiver2x2WatchListSeverity-NTP_subsystem", 12), ("wtTrapReceiver2x2WatchListSeverity-log_audit", 13), ("wtTrapReceiver2x2WatchListSeverity-log_alert", 14), ("wtTrapReceiver2x2WatchListSeverity-clock_daemon_15", 15), ("wtTrapReceiver2x2WatchListSeverity-local0", 16), ("wtTrapReceiver2x2WatchListSeverity-local1", 17), ("wtTrapReceiver2x2WatchListSeverity-local2", 18), ("wtTrapReceiver2x2WatchListSeverity-local3", 19), ("wtTrapReceiver2x2WatchListSeverity-local4", 20), ("wtTrapReceiver2x2WatchListSeverity-local5", 21), ("wtTrapReceiver2x2WatchListSeverity-local6", 22), ("wtTrapReceiver2x2WatchListSeverity-local7", 23), ("wtTrapReceiver2x2WatchListSeverity-WildCard", 24)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2WatchListSeverity.setStatus('mandatory')
wtTrapReceiver2x2PowerSupplyEnable = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 4, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2PowerSupplyEnable.setStatus('mandatory')
wtTrapReceiver2x2ActionCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionCount.setStatus('mandatory')
wtTrapReceiver2x2ActionIfTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 2), )
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionIfTable.setStatus('mandatory')
wtTrapReceiver2x2ActionIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 2, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtTrapReceiver2x2ActionNo"))
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionIfEntry.setStatus('mandatory')
wtTrapReceiver2x2ActionNo = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionNo.setStatus('mandatory')
wtTrapReceiver2x2ActionTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3), )
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionTable.setStatus('mandatory')
wtTrapReceiver2x2ActionEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtTrapReceiver2x2ActionNo"))
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionEntry.setStatus('mandatory')
wtTrapReceiver2x2ActionInputTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(12, 12)).setFixedLength(12)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionInputTrigger.setStatus('mandatory')
wtTrapReceiver2x2ActionInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionInterval.setStatus('mandatory')
wtTrapReceiver2x2ActionEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionEnable.setStatus('mandatory')
wtTrapReceiver2x2ActionMailAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionMailAddr.setStatus('mandatory')
wtTrapReceiver2x2ActionMailSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 8), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionMailSubject.setStatus('mandatory')
wtTrapReceiver2x2ActionMailText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 9), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionMailText.setStatus('mandatory')
wtTrapReceiver2x2ActionSnmpManagerIP = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 10), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionSnmpManagerIP.setStatus('mandatory')
wtTrapReceiver2x2ActionSnmpTrapText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 11), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionSnmpTrapText.setStatus('mandatory')
wtTrapReceiver2x2ActionUdpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 12), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionUdpIpAddr.setStatus('mandatory')
wtTrapReceiver2x2ActionUdpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionUdpPort.setStatus('mandatory')
wtTrapReceiver2x2ActionUdpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 14), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionUdpText.setStatus('mandatory')
wtTrapReceiver2x2ActionTcpIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 15), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionTcpIpAddr.setStatus('mandatory')
wtTrapReceiver2x2ActionTcpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionTcpPort.setStatus('mandatory')
wtTrapReceiver2x2ActionTcpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 17), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionTcpText.setStatus('mandatory')
wtTrapReceiver2x2ActionSyslogIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 18), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionSyslogIpAddr.setStatus('mandatory')
wtTrapReceiver2x2ActionSyslogPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionSyslogPort.setStatus('mandatory')
wtTrapReceiver2x2ActionSyslogText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 20), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionSyslogText.setStatus('mandatory')
wtTrapReceiver2x2ActionFtpDataPort = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 21), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionFtpDataPort.setStatus('mandatory')
wtTrapReceiver2x2ActionFtpFileName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 22), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionFtpFileName.setStatus('mandatory')
wtTrapReceiver2x2ActionFtpText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 23), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionFtpText.setStatus('mandatory')
wtTrapReceiver2x2ActionFtpOption = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 24), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionFtpOption.setStatus('mandatory')
wtTrapReceiver2x2ActionTimerCron = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 25), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionTimerCron.setStatus('mandatory')
wtTrapReceiver2x2ActionName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 33), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionName.setStatus('mandatory')
wtTrapReceiver2x2ActionGlobalEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 34), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionGlobalEnable.setStatus('mandatory')
wtTrapReceiver2x2ActionSystemTimerTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 55), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionSystemTimerTrigger.setStatus('mandatory')
wtTrapReceiver2x2ActionSystemButtonTrigger = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 56), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionSystemButtonTrigger.setStatus('mandatory')
wtTrapReceiver2x2ActionOutputAction = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 57), OctetString().subtype(subtypeSpec=ValueSizeConstraint(12, 12)).setFixedLength(12)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2ActionOutputAction.setStatus('mandatory')
wtTrapReceiver2x2SystemTimerPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 2, 1), )
if mibBuilder.loadTexts: wtTrapReceiver2x2SystemTimerPortTable.setStatus('mandatory')
wtTrapReceiver2x2SystemTimerPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 2, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtTrapReceiver2x2SystemTimerNo"))
if mibBuilder.loadTexts: wtTrapReceiver2x2SystemTimerPortEntry.setStatus('mandatory')
wtTrapReceiver2x2PortSystemTimerEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 2, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2PortSystemTimerEnable.setStatus('mandatory')
wtTrapReceiver2x2PortSystemTimerName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 2, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2PortSystemTimerName.setStatus('mandatory')
wtTrapReceiver2x2PortSystemTimerCron = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 2, 1, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2PortSystemTimerCron.setStatus('mandatory')
wtTrapReceiver2x2ButtonPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 3, 1), )
if mibBuilder.loadTexts: wtTrapReceiver2x2ButtonPortTable.setStatus('mandatory')
wtTrapReceiver2x2ButtonPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 3, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtTrapReceiver2x2ButtonNo"))
if mibBuilder.loadTexts: wtTrapReceiver2x2ButtonPortEntry.setStatus('mandatory')
wtTrapReceiver2x2PortButtonEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 3, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2PortButtonEnable.setStatus('mandatory')
wtTrapReceiver2x2PortButtonName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 3, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2PortButtonName.setStatus('mandatory')
wtTrapReceiver2x2PortButtonText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 3, 1, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2PortButtonText.setStatus('mandatory')
wtTrapReceiver2x2PortButtonAccess = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 3, 1, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2PortButtonAccess.setStatus('mandatory')
wtTrapReceiver2x2InputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 4, 1), )
if mibBuilder.loadTexts: wtTrapReceiver2x2InputPortTable.setStatus('mandatory')
wtTrapReceiver2x2InputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 4, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtTrapReceiver2x2InputNo"))
if mibBuilder.loadTexts: wtTrapReceiver2x2InputPortEntry.setStatus('mandatory')
wtTrapReceiver2x2PortInputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 4, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2PortInputName.setStatus('mandatory')
wtTrapReceiver2x2PortInputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 4, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2PortInputText.setStatus('mandatory')
wtTrapReceiver2x2PortInputFilter = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 4, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2PortInputFilter.setStatus('mandatory')
wtTrapReceiver2x2OutputPortTable = MibTable((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 7, 1, 1), )
if mibBuilder.loadTexts: wtTrapReceiver2x2OutputPortTable.setStatus('mandatory')
wtTrapReceiver2x2OutputPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 7, 1, 1, 1), ).setIndexNames((0, "Webio-Digital-MIB-US", "wtTrapReceiver2x2OutputNo"))
if mibBuilder.loadTexts: wtTrapReceiver2x2OutputPortEntry.setStatus('mandatory')
wtTrapReceiver2x2PortOutputName = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 7, 1, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2PortOutputName.setStatus('mandatory')
wtTrapReceiver2x2PortOutputText = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 7, 1, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2PortOutputText.setStatus('mandatory')
wtTrapReceiver2x2PortPulseDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 7, 1, 1, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2PortPulseDuration.setStatus('mandatory')
wtTrapReceiver2x2PortPulsePolarity = MibTableColumn((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 7, 1, 1, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2PortPulsePolarity.setStatus('mandatory')
wtTrapReceiver2x2MfName = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 3, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2MfName.setStatus('mandatory')
wtTrapReceiver2x2MfAddr = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 3, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2MfAddr.setStatus('mandatory')
wtTrapReceiver2x2MfHotline = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 3, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2MfHotline.setStatus('mandatory')
wtTrapReceiver2x2MfInternet = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 3, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2MfInternet.setStatus('mandatory')
wtTrapReceiver2x2MfDeviceTyp = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 3, 5), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2MfDeviceTyp.setStatus('mandatory')
wtTrapReceiver2x2DiagErrorCount = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtTrapReceiver2x2DiagErrorCount.setStatus('mandatory')
wtTrapReceiver2x2DiagBinaryError = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 4, 2), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtTrapReceiver2x2DiagBinaryError.setStatus('mandatory')
wtTrapReceiver2x2DiagErrorIndex = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 4, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wtTrapReceiver2x2DiagErrorIndex.setStatus('mandatory')
wtTrapReceiver2x2DiagErrorMessage = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 4, 4), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wtTrapReceiver2x2DiagErrorMessage.setStatus('mandatory')
wtTrapReceiver2x2DiagErrorClear = MibScalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 4, 5), Integer32()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: wtTrapReceiver2x2DiagErrorClear.setStatus('mandatory')
wtTrapReceiver2x2Alert1 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0,41)).setObjects(("Webio-Digital-MIB-US", "wtTrapReceiver2x2ReportSnmpTrapText"))
wtTrapReceiver2x2Alert2 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0,42)).setObjects(("Webio-Digital-MIB-US", "wtTrapReceiver2x2ActionSnmpTrapText"))
wtTrapReceiver2x2Alert3 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0,43)).setObjects(("Webio-Digital-MIB-US", "wtTrapReceiver2x2ActionSnmpTrapText"))
wtTrapReceiver2x2Alert4 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0,44)).setObjects(("Webio-Digital-MIB-US", "wtTrapReceiver2x2ActionSnmpTrapText"))
wtTrapReceiver2x2Alert5 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0,45)).setObjects(("Webio-Digital-MIB-US", "wtTrapReceiver2x2ActionSnmpTrapText"))
wtTrapReceiver2x2Alert6 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0,46)).setObjects(("Webio-Digital-MIB-US", "wtTrapReceiver2x2ActionSnmpTrapText"))
wtTrapReceiver2x2Alert7 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0,47)).setObjects(("Webio-Digital-MIB-US", "wtTrapReceiver2x2ActionSnmpTrapText"))
wtTrapReceiver2x2Alert8 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0,48)).setObjects(("Webio-Digital-MIB-US", "wtTrapReceiver2x2ActionSnmpTrapText"))
wtTrapReceiver2x2Alert9 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0,49)).setObjects(("Webio-Digital-MIB-US", "wtTrapReceiver2x2ActionSnmpTrapText"))
wtTrapReceiver2x2Alert10 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0,50)).setObjects(("Webio-Digital-MIB-US", "wtTrapReceiver2x2ActionSnmpTrapText"))
wtTrapReceiver2x2Alert11 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0,51)).setObjects(("Webio-Digital-MIB-US", "wtTrapReceiver2x2ActionSnmpTrapText"))
wtTrapReceiver2x2Alert12 = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0,52)).setObjects(("Webio-Digital-MIB-US", "wtTrapReceiver2x2ActionSnmpTrapText"))
wtTrapReceiver2x2AlertDiag = NotificationType((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0,110)).setObjects(("Webio-Digital-MIB-US", "wtTrapReceiver2x2DiagErrorIndex"), ("Webio-Digital-MIB-US", "wtTrapReceiver2x2DiagErrorMessage"))
mibBuilder.exportSymbols("Webio-Digital-MIB-US", wtWebioEA12x12SnmpCommunityStringReadWrite=wtWebioEA12x12SnmpCommunityStringReadWrite, wtWebioEA24oemLCShutDownView=wtWebioEA24oemLCShutDownView, wtWebioEA12x6RelDiag=wtWebioEA12x6RelDiag, wtWebioEA2x2LoadControlView=wtWebioEA2x2LoadControlView, wtWebioEA24oemTimeServer=wtWebioEA24oemTimeServer, wtWebioEA12x6RelERPPortInputBicountPulsePolarity=wtWebioEA12x6RelERPPortInputBicountPulsePolarity, wtIpWatcher_24VAlarmSnmpTrapTrapTxEnable=wtIpWatcher_24VAlarmSnmpTrapTrapTxEnable, wtWebioEA2x2ERP_24VAlarmCount=wtWebioEA2x2ERP_24VAlarmCount, wtTrapReceiver2x2MailAdName=wtTrapReceiver2x2MailAdName, wtIpWatcher_24VTimeServer2=wtIpWatcher_24VTimeServer2, wtWebioEA2x2_24VPortPulseDuration=wtWebioEA2x2_24VPortPulseDuration, wtWebioEA12x12Alert5=wtWebioEA12x12Alert5, wtWebioEA12x6RelSyslogEnable=wtWebioEA12x6RelSyslogEnable, wtIpWatcherAlert15=wtIpWatcherAlert15, wtWebioEA2x2ERPAlert12=wtWebioEA2x2ERPAlert12, wtWebioEA2x2ERP_24VAlarmEntry=wtWebioEA2x2ERP_24VAlarmEntry, wtWebioEA12x6RelMail=wtWebioEA12x6RelMail, wtIpWatcher_24VMailAuthPassword=wtIpWatcher_24VMailAuthPassword, wtTrapReceiver2x2DiagErrorMessage=wtTrapReceiver2x2DiagErrorMessage, wtWebioEA12x12StTzStopMode=wtWebioEA12x12StTzStopMode, wtWebioEA24oemStTzEnable=wtWebioEA24oemStTzEnable, wtWebioEA12x6RelERPMfDeviceTyp=wtWebioEA12x6RelERPMfDeviceTyp, wtWebioEA24oemInputValue=wtWebioEA24oemInputValue, wtWebioEA2x2MailEnable=wtWebioEA2x2MailEnable, wtWebioEA2x2_24VBinaryTcpClientServerHttpPort=wtWebioEA2x2_24VBinaryTcpClientServerHttpPort, wtWebioEA2x2ERPOutputState=wtWebioEA2x2ERPOutputState, wtWebioEA12x6RelDeviceContact=wtWebioEA12x6RelDeviceContact, wtWebioEA2x2_24VStTzStopMonth=wtWebioEA2x2_24VStTzStopMonth, wtTrapReceiver2x2HttpPort=wtTrapReceiver2x2HttpPort, wtWebAlarm6x6UDP=wtWebAlarm6x6UDP, wtWebioEA2x2ERPManufact=wtWebioEA2x2ERPManufact, wtWebioEA2x2BinaryTcpClientInterval=wtWebioEA2x2BinaryTcpClientInterval, wtWebioEA2x2Alert8=wtWebioEA2x2Alert8, wtWebioEA12x12AlertDiag=wtWebioEA12x12AlertDiag, wtWebioEA24oemAlarmMaxCounterValue=wtWebioEA24oemAlarmMaxCounterValue, wtWebioEA12x6RelERPInputValue=wtWebioEA12x6RelERPInputValue, wtWebioEA2x2HttpInputTrigger=wtWebioEA2x2HttpInputTrigger, wtWebAlarm6x6ClockMonth=wtWebAlarm6x6ClockMonth, wtTrapReceiver2x2SyslogServerIP=wtTrapReceiver2x2SyslogServerIP, wtWebioEA2x2BinaryIfEntry=wtWebioEA2x2BinaryIfEntry, wtTrapReceiver2x2MailServer=wtTrapReceiver2x2MailServer, wtWebioEA2x2ClockDay=wtWebioEA2x2ClockDay, wtWebAlarm6x6ClockMin=wtWebAlarm6x6ClockMin, wtWebioEA12x6RelERPAlarm=wtWebioEA12x6RelERPAlarm, wtWebioEA2x2ERPOutputs=wtWebioEA2x2ERPOutputs, wtIpWatcherAlarmFtpFileName=wtIpWatcherAlarmFtpFileName, wtIpWatcher_24VUdpRemotePort=wtIpWatcher_24VUdpRemotePort, wtWebioEA2x2ERPLoadControlEnable=wtWebioEA2x2ERPLoadControlEnable, wtWebioEA12x12AlarmUdpReleaseText=wtWebioEA12x12AlarmUdpReleaseText, wtWebioEA12x6RelERPWayBack=wtWebioEA12x6RelERPWayBack, wtIpWatcher_24VOutputMode=wtIpWatcher_24VOutputMode, wtWebioEA12x6RelMailAuthUser=wtWebioEA12x6RelMailAuthUser, wtIpWatcherDiagErrorCount=wtIpWatcherDiagErrorCount, wtIpWatcherAlarmEntry=wtIpWatcherAlarmEntry, wtWebioEA2x2ERPOutputTable=wtWebioEA2x2ERPOutputTable, wtWebioEA6x6IpAddress=wtWebioEA6x6IpAddress, wtWebioEA2x2DiagErrorClear=wtWebioEA2x2DiagErrorClear, wtWebioEA12x12Inputs=wtWebioEA12x12Inputs, wtWebioEA2x2MailServer=wtWebioEA2x2MailServer, wtWebioEA12x6RelERPPorts=wtWebioEA12x6RelERPPorts, wtWebioEA2x2ERPAlarmTable=wtWebioEA2x2ERPAlarmTable, wtIpWatcher_24VAlert23=wtIpWatcher_24VAlert23, wtWebioEA2x2Basic=wtWebioEA2x2Basic, wtTrapReceiver2x2WatchListNo=wtTrapReceiver2x2WatchListNo, wtIpWatcher_24VInputCounterClear=wtIpWatcher_24VInputCounterClear, wtWebioEA24oemDiagErrorMessage=wtWebioEA24oemDiagErrorMessage, wtIpWatcherAlert33=wtIpWatcherAlert33, wtWebioEA12x12OutputModeTable=wtWebioEA12x12OutputModeTable, wtWebioEA2x2ERP_24VAlert19=wtWebioEA2x2ERP_24VAlert19, wtWebioEA6x6Alert11=wtWebioEA6x6Alert11, wtWebCount6TimeServer2=wtWebCount6TimeServer2, wtWebioEA12x6RelAlert16=wtWebioEA12x6RelAlert16, wtWebioEA12x12TzOffsetHrs=wtWebioEA12x12TzOffsetHrs, wtWebioEA2x2ERP_24VFTPServerIP=wtWebioEA2x2ERP_24VFTPServerIP, wtWebioEA2x2ERPAlarmFtpOption=wtWebioEA2x2ERPAlarmFtpOption, wtWebioEA2x2PortLogicInputMask=wtWebioEA2x2PortLogicInputMask, wtWebioEA12x12InputTable=wtWebioEA12x12InputTable, wtWebAlarm6x6InputTable=wtWebAlarm6x6InputTable, wtTrapReceiver2x2Basic=wtTrapReceiver2x2Basic, wtWebioEA2x2SetOutput=wtWebioEA2x2SetOutput, wtWebioEA24oemSessCntrlConfigMode=wtWebioEA24oemSessCntrlConfigMode, wtWebCount6PortInputCounterUnit=wtWebCount6PortInputCounterUnit, wtIpWatcher_24VConfig=wtIpWatcher_24VConfig, wtIpWatcher_24VAlarmFtpText=wtIpWatcher_24VAlarmFtpText, wtWebioEA2x2_24VClockDay=wtWebioEA2x2_24VClockDay, wtWebAlarm6x6TimeDate=wtWebAlarm6x6TimeDate, wtWebioEA12x6RelAlarmUdpPort=wtWebioEA12x6RelAlarmUdpPort, wut=wut, wtTrapReceiver2x2Syslog=wtTrapReceiver2x2Syslog, wtWebioEA2x2ERP_24VBinaryTcpServerLocalPort=wtWebioEA2x2ERP_24VBinaryTcpServerLocalPort, wtWebioEA2x2ERPOutputPortTable=wtWebioEA2x2ERPOutputPortTable, wtWebioEA12x6RelERPBinaryTcpClientServerPort=wtWebioEA12x6RelERPBinaryTcpClientServerPort, wtWebioEA2x2ERP_24VInputTable=wtWebioEA2x2ERP_24VInputTable, wtWebAlarm6x6DiagErrorMessage=wtWebAlarm6x6DiagErrorMessage, wtWebioEA2x2ERP_24VBinary=wtWebioEA2x2ERP_24VBinary, wtWebAlarm6x6SyslogEnable=wtWebAlarm6x6SyslogEnable, wtIpWatcherOutputPortEntry=wtIpWatcherOutputPortEntry, wtWebioEA12x6RelERPPortLogicInputInverter=wtWebioEA12x6RelERPPortLogicInputInverter, wtTrapReceiver2x2OutputPortEntry=wtTrapReceiver2x2OutputPortEntry, wtWebioEA2x2StTzStopMode=wtWebioEA2x2StTzStopMode, wtWebAlarm6x6AlarmSyslogReleaseText=wtWebAlarm6x6AlarmSyslogReleaseText, wtWebAlarm6x6AlarmUdpText=wtWebAlarm6x6AlarmUdpText, wtIpWatcher_24VPortInputName=wtIpWatcher_24VPortInputName, wtWebioEA6x6TzEnable=wtWebioEA6x6TzEnable, wtWebioEA6x6BinaryUdpPeerInterval=wtWebioEA6x6BinaryUdpPeerInterval, wtWebioEA2x2ERPHTTP=wtWebioEA2x2ERPHTTP, wtWebioEA2x2_24VBinaryTcpClientServerPassword=wtWebioEA2x2_24VBinaryTcpClientServerPassword, wtWebioEA24oemPortPulseDuration=wtWebioEA24oemPortPulseDuration, wtWebioEA2x2ERPBinaryUdpPeerLocalPort=wtWebioEA2x2ERPBinaryUdpPeerLocalPort, wtWebioEA12x12BinaryTcpClientServerHttpPort=wtWebioEA12x12BinaryTcpClientServerHttpPort, wtWebioEA12x6RelDeviceLocation=wtWebioEA12x6RelDeviceLocation, wtWebioEA2x2_24VDeviceName=wtWebioEA2x2_24VDeviceName, wtIpWatcher_24VAlarmTriggerCount=wtIpWatcher_24VAlarmTriggerCount, wtWebioEA12x6RelAlarmEntry=wtWebioEA12x6RelAlarmEntry, wtWebCount6HTTP=wtWebCount6HTTP, wtIpWatcher_24VSnmpSystemTrapEnable=wtIpWatcher_24VSnmpSystemTrapEnable, wtIpWatcherClockHrs=wtIpWatcherClockHrs, wtWebioEA2x2ERP_24VSNMP=wtWebioEA2x2ERP_24VSNMP, wtWebioEA12x6RelERPClockHrs=wtWebioEA12x6RelERPClockHrs, wtWebioEA2x2ERPStTzStartMin=wtWebioEA2x2ERPStTzStartMin, wtWebioEA12x6RelERPDiag=wtWebioEA12x6RelERPDiag, wtWebioEA2x2_24VPortLogicInputInverter=wtWebioEA2x2_24VPortLogicInputInverter, wtWebioEA12x12AlarmFtpText=wtWebioEA12x12AlarmFtpText, wtWebAlarm6x6DeviceName=wtWebAlarm6x6DeviceName, wtWebCount6SessCntrlAdminPassword=wtWebCount6SessCntrlAdminPassword, wtTrapReceiver2x2DeviceName=wtTrapReceiver2x2DeviceName, wtWebioEA2x2_24VAlarmUdpText=wtWebioEA2x2_24VAlarmUdpText, wtTrapReceiver2x2UdpAdminPort=wtTrapReceiver2x2UdpAdminPort, wtWebAlarm6x6AlarmAckEnable=wtWebAlarm6x6AlarmAckEnable, wtWebioEA12x12PortLogicOutputInverter=wtWebioEA12x12PortLogicOutputInverter, wtWebioEA2x2ERPSyslogSystemMessagesEnable=wtWebioEA2x2ERPSyslogSystemMessagesEnable, wtWebioEA6x6PortInputFilter=wtWebioEA6x6PortInputFilter, wtIpWatcherFTPUserName=wtIpWatcherFTPUserName, wtWebioEA2x2ERP_24VFTPOption=wtWebioEA2x2ERP_24VFTPOption, wtTrapReceiver2x2ActionInputTrigger=wtTrapReceiver2x2ActionInputTrigger, wtTrapReceiver2x2PortSystemTimerEnable=wtTrapReceiver2x2PortSystemTimerEnable, wtIpWatcher_24VDiag=wtIpWatcher_24VDiag, wtWebioEA12x6RelMailAuthPassword=wtWebioEA12x6RelMailAuthPassword, wtWebAlarm6x6AlarmInputTrigger=wtWebAlarm6x6AlarmInputTrigger, wtTrapReceiver2x2Gateway=wtTrapReceiver2x2Gateway, wtWebCount6MailPop3Server=wtWebCount6MailPop3Server, wtWebioEA12x6RelERPInputPortEntry=wtWebioEA12x6RelERPInputPortEntry, wtWebCount6StTzStartMonth=wtWebCount6StTzStartMonth, wtWebioEA24oemAlarmCount=wtWebioEA24oemAlarmCount, wtIpWatcherIpListEntry=wtIpWatcherIpListEntry, wtWebCount6StTzStartMin=wtWebCount6StTzStartMin, wtWebioEA6x6Alert19=wtWebioEA6x6Alert19, wtWebioEA2x2_24VSessCntrl=wtWebioEA2x2_24VSessCntrl, wtWebCount6PortInputFilter=wtWebCount6PortInputFilter, wtWebioEA12x6RelAlarmSnmpTrapText=wtWebioEA12x6RelAlarmSnmpTrapText, wtWebCount6Alert5=wtWebCount6Alert5, wtWebioEA12x6RelERPBinaryUdpPeerInputTrigger=wtWebioEA12x6RelERPBinaryUdpPeerInputTrigger, wtWebioEA12x6RelERPAlarmFtpDataPort=wtWebioEA12x6RelERPAlarmFtpDataPort, wtWebioEA24oemHttpInputTrigger=wtWebioEA24oemHttpInputTrigger, wtWebAlarm6x6FTPServerControlPort=wtWebAlarm6x6FTPServerControlPort, wtWebioEA12x12AlarmUdpText=wtWebioEA12x12AlarmUdpText, wtWebioEA2x2StTzOffsetMin=wtWebioEA2x2StTzOffsetMin, wtIpWatcherSessCntrlConfigMode=wtIpWatcherSessCntrlConfigMode, wtWebioEA2x2Alert23=wtWebioEA2x2Alert23, wtWebioEA2x2BinaryTcpClientServerPort=wtWebioEA2x2BinaryTcpClientServerPort, wtWebioEA6x6InputValue=wtWebioEA6x6InputValue, wtWebioEA2x2ERPLCShutDownView=wtWebioEA2x2ERPLCShutDownView, wtIpWatcherSnmpCommunityStringReadWrite=wtIpWatcherSnmpCommunityStringReadWrite, wtWebioEA2x2_24VStTzStartHrs=wtWebioEA2x2_24VStTzStartHrs, wtWebioEA24oemStTzStartHrs=wtWebioEA24oemStTzStartHrs, wtTrapReceiver2x2SessCntrlLogout=wtTrapReceiver2x2SessCntrlLogout, wtWebioEA24oemAlert10=wtWebioEA24oemAlert10, wtIpWatcher_24VOutputPortEntry=wtIpWatcher_24VOutputPortEntry, wtWebioEA24oemClockMin=wtWebioEA24oemClockMin, wtTrapReceiver2x2ActionFtpDataPort=wtTrapReceiver2x2ActionFtpDataPort, wtWebioEA12x12SnmpEnable=wtWebioEA12x12SnmpEnable, wtWebioEA12x6RelERPMfHotline=wtWebioEA12x6RelERPMfHotline, wtWebioEA24oemInputTable=wtWebioEA24oemInputTable, wtWebioEA6x6MailPop3Server=wtWebioEA6x6MailPop3Server, wtWebioEA6x6AlarmUdpPort=wtWebioEA6x6AlarmUdpPort, wtWebioEA12x6RelOutputPortEntry=wtWebioEA12x6RelOutputPortEntry, wtWebioEA12x6RelERPOutputValue=wtWebioEA12x6RelERPOutputValue, wtWebioEA12x12OutputNo=wtWebioEA12x12OutputNo, wtWebioEA12x6RelERPBinaryTcpClientInterval=wtWebioEA12x6RelERPBinaryTcpClientInterval, wtIpWatcherMfDeviceTyp=wtIpWatcherMfDeviceTyp, wtWebioEA24oemAlarmTcpPort=wtWebioEA24oemAlarmTcpPort, wtWebioEA6x6BinaryTcpClientServerPassword=wtWebioEA6x6BinaryTcpClientServerPassword, wtWebioEA2x2_24VTzEnable=wtWebioEA2x2_24VTzEnable, wtWebioEA12x6RelSessCntrlConfigPassword=wtWebioEA12x6RelSessCntrlConfigPassword, wtWebioEA12x6RelAlarmTcpText=wtWebioEA12x6RelAlarmTcpText, wtWebioEA24oemFTPOption=wtWebioEA24oemFTPOption, wtWebioEA12x12MailAuthPassword=wtWebioEA12x12MailAuthPassword, wtWebioEA2x2_24VAlarmTable=wtWebioEA2x2_24VAlarmTable, wtWebioEA12x12PortInputName=wtWebioEA12x12PortInputName, wtWebCount6PortInputCounterSet=wtWebCount6PortInputCounterSet, wtWebAlarm6x6Alert13=wtWebAlarm6x6Alert13, wtWebioEA12x6RelFTP=wtWebioEA12x6RelFTP, wtWebCount6SnmpSystemTrapManagerIP=wtWebCount6SnmpSystemTrapManagerIP, wtWebioEA6x6AlarmTcpIpAddr=wtWebioEA6x6AlarmTcpIpAddr, wtWebioEA12x12TimeServer=wtWebioEA12x12TimeServer, wtWebAlarm6x6AlarmCount=wtWebAlarm6x6AlarmCount, wtWebioEA24oemMailEnable=wtWebioEA24oemMailEnable, wtWebioEA24oemMailAuthPassword=wtWebioEA24oemMailAuthPassword, wtWebioEA12x6RelERPOutputModeBit=wtWebioEA12x6RelERPOutputModeBit, wtWebioEA12x12PortLogicFunction=wtWebioEA12x12PortLogicFunction, wtIpWatcherTimeZone=wtIpWatcherTimeZone, wtWebioEA12x12InputPortEntry=wtWebioEA12x12InputPortEntry, wtWebioEA2x2_24VBinaryOperationMode=wtWebioEA2x2_24VBinaryOperationMode, wtWebioEA2x2ERPSafetyTimeout=wtWebioEA2x2ERPSafetyTimeout, wtWebioEA24oemTsSyncTime=wtWebioEA24oemTsSyncTime, wtIpWatcher_24VMailAuthUser=wtIpWatcher_24VMailAuthUser, wtWebioEA2x2_24VGetHeaderEnable=wtWebioEA2x2_24VGetHeaderEnable, wtWebioEA12x12MfName=wtWebioEA12x12MfName, wtIpWatcher_24VAlarmUdpTrapTxEnable=wtIpWatcher_24VAlarmUdpTrapTxEnable, wtWebioEA2x2AlarmTcpReleaseText=wtWebioEA2x2AlarmTcpReleaseText, wtWebioEA12x6RelERPHttpInputTrigger=wtWebioEA12x6RelERPHttpInputTrigger, wtTrapReceiver2x2SessCntrl=wtTrapReceiver2x2SessCntrl, wtWebioEA6x6SyslogServerIP=wtWebioEA6x6SyslogServerIP, wtWebioEA12x12AlarmSyslogReleaseText=wtWebioEA12x12AlarmSyslogReleaseText, wtWebioEA2x2ERPMailReply=wtWebioEA2x2ERPMailReply, wtWebioEA12x6RelERPMfOrderNo=wtWebioEA12x6RelERPMfOrderNo, wtWebioEA24oemNetwork=wtWebioEA24oemNetwork, wtTrapReceiver2x2DeviceClock=wtTrapReceiver2x2DeviceClock, wtWebioEA2x2ERPStTzStartHrs=wtWebioEA2x2ERPStTzStartHrs, wtWebioEA12x6RelAlarmInputTrigger=wtWebioEA12x6RelAlarmInputTrigger, wtWebioEA2x2_24VAlarmFtpText=wtWebioEA2x2_24VAlarmFtpText, wtWebioEA24oemAlarmIfTable=wtWebioEA24oemAlarmIfTable, wtWebioEA2x2ERP_24VAlert12=wtWebioEA2x2ERP_24VAlert12, wtWebioEA12x12FTP=wtWebioEA12x12FTP, wtWebioEA2x2ERPDiagErrorCount=wtWebioEA2x2ERPDiagErrorCount, wtWebioEA2x2ERPAlert5=wtWebioEA2x2ERPAlert5, wtIpWatcherGateway=wtIpWatcherGateway, wtIpWatcher_24VStTzStartMonth=wtIpWatcher_24VStTzStartMonth, wtTrapReceiver2x2MailReply=wtTrapReceiver2x2MailReply, wtWebioEA2x2Alert7=wtWebioEA2x2Alert7, wtWebioEA2x2ERPInOut=wtWebioEA2x2ERPInOut, wtWebAlarm6x6TzOffsetHrs=wtWebAlarm6x6TzOffsetHrs, wtIpWatcher_24VIpListIfEntry=wtIpWatcher_24VIpListIfEntry, wtWebioEA12x12AlarmEntry=wtWebioEA12x12AlarmEntry, wtWebioEA12x6RelAlarmFtpDataPort=wtWebioEA12x6RelAlarmFtpDataPort, wtWebioEA24oemAlert7=wtWebioEA24oemAlert7, wtWebioEA12x6RelERPAlarmIfEntry=wtWebioEA12x6RelERPAlarmIfEntry, wtWebioEA12x6RelBinaryOperationMode=wtWebioEA12x6RelBinaryOperationMode, wtWebAlarm6x6Alert10=wtWebAlarm6x6Alert10, wtWebioEA2x2ERPMfAddr=wtWebioEA2x2ERPMfAddr, wtWebioEA12x12StTzOffsetHrs=wtWebioEA12x12StTzOffsetHrs, wtWebioEA12x6RelERPAlarmTcpPort=wtWebioEA12x6RelERPAlarmTcpPort, wtWebCount6SubnetMask=wtWebCount6SubnetMask, wtWebioEA12x12AlarmCount=wtWebioEA12x12AlarmCount, wtWebAlarm6x6IpAddress=wtWebAlarm6x6IpAddress, wtWebioEA2x2ERP_24VConfig=wtWebioEA2x2ERP_24VConfig, wtIpWatcherAlert26=wtIpWatcherAlert26, wtWebioEA6x6BinaryUdpPeerInputTrigger=wtWebioEA6x6BinaryUdpPeerInputTrigger, wtWebioEA12x6RelERPClockYear=wtWebioEA12x6RelERPClockYear, wtWebioEA2x2ERPAlarmSystemTrigger=wtWebioEA2x2ERPAlarmSystemTrigger, wtWebioEA12x12DnsServer2=wtWebioEA12x12DnsServer2, wtWebioEA12x6RelERPNetwork=wtWebioEA12x6RelERPNetwork, wtWebioEA2x2_24VAlarmMaxCounterValue=wtWebioEA2x2_24VAlarmMaxCounterValue, wtWebioEA2x2_24VAlert21=wtWebioEA2x2_24VAlert21)
mibBuilder.exportSymbols("Webio-Digital-MIB-US", wtWebioEA12x6RelBinaryTcpClientServerPassword=wtWebioEA12x6RelBinaryTcpClientServerPassword, wtWebioEA2x2ERPTimeServer2=wtWebioEA2x2ERPTimeServer2, wtTrapReceiver2x2MailAuthUser=wtTrapReceiver2x2MailAuthUser, wtWebCount6FTP=wtWebCount6FTP, wtWebioEA24oemAlert1=wtWebioEA24oemAlert1, wtWebioEA12x12SessCntrlPassword=wtWebioEA12x12SessCntrlPassword, wtWebioEA12x6RelERPBinaryConnectedIpAddr=wtWebioEA12x6RelERPBinaryConnectedIpAddr, wtWebioEA2x2SnmpSystemTrapEnable=wtWebioEA2x2SnmpSystemTrapEnable, wtWebioEA12x6RelUdpEnable=wtWebioEA12x6RelUdpEnable, wtWebioEA2x2ERPAlert8=wtWebioEA2x2ERPAlert8, wtIpWatcher_24VAlarmFtpFileName=wtIpWatcher_24VAlarmFtpFileName, wtWebioEA2x2HTTP=wtWebioEA2x2HTTP, wtIpWatcher_24VTzEnable=wtIpWatcher_24VTzEnable, wtWebioEA24oemDnsServer1=wtWebioEA24oemDnsServer1, wtWebCount6Config=wtWebCount6Config, wtWebioEA6x6Alarm=wtWebioEA6x6Alarm, wtWebioEA2x2ERPAlarmIfTable=wtWebioEA2x2ERPAlarmIfTable, wtWebioEA2x2ERPMailServer=wtWebioEA2x2ERPMailServer, wtWebioEA12x6RelERPText=wtWebioEA12x6RelERPText, wtWebioEA2x2_24VOutputNo=wtWebioEA2x2_24VOutputNo, wtIpWatcherNetwork=wtIpWatcherNetwork, wtWebioEA6x6AlarmIfEntry=wtWebioEA6x6AlarmIfEntry, wtTrapReceiver2x2SyslogServerPort=wtTrapReceiver2x2SyslogServerPort, wtWebioEA12x12TimeServer2=wtWebioEA12x12TimeServer2, wtIpWatcher_24VAlarmFtpDataPort=wtIpWatcher_24VAlarmFtpDataPort, wtWebioEA12x6RelERPDnsServer1=wtWebioEA12x6RelERPDnsServer1, wtWebAlarm6x6AlarmNo=wtWebAlarm6x6AlarmNo, wtWebioEA2x2InputPortEntry=wtWebioEA2x2InputPortEntry, wtWebioEA6x6AlarmCount=wtWebioEA6x6AlarmCount, wtWebioEA12x6RelERPBinaryIfEntry=wtWebioEA12x6RelERPBinaryIfEntry, wtTrapReceiver2x2TimeServer=wtTrapReceiver2x2TimeServer, wtWebioEA2x2_24VBinaryTcpServerLocalPort=wtWebioEA2x2_24VBinaryTcpServerLocalPort, wtIpWatcherStTzOffsetMin=wtIpWatcherStTzOffsetMin, wtWebioEA12x6RelBinaryTcpClientInterval=wtWebioEA12x6RelBinaryTcpClientInterval, wtWebioEA12x6RelERPAlert22=wtWebioEA12x6RelERPAlert22, wtTrapReceiver2x2SessCntrlAdminPassword=wtTrapReceiver2x2SessCntrlAdminPassword, wtIpWatcherAlarmUdpText=wtIpWatcherAlarmUdpText, wtWebioEA12x6RelERPAlert14=wtWebioEA12x6RelERPAlert14, wtIpWatcherAlarmPollingRate=wtIpWatcherAlarmPollingRate, wtIpWatcher_24VFTPServerIP=wtIpWatcher_24VFTPServerIP, wtIpWatcherStTzOffsetHrs=wtIpWatcherStTzOffsetHrs, wtWebioEA2x2ERP_24VAlert3=wtWebioEA2x2ERP_24VAlert3, wtIpWatcherMfHotline=wtIpWatcherMfHotline, wtWebioEA12x12BinaryUdpPeerApplicationMode=wtWebioEA12x12BinaryUdpPeerApplicationMode, wtWebioEA2x2ERPBasic=wtWebioEA2x2ERPBasic, wtIpWatcher_24VStTzStopWday=wtIpWatcher_24VStTzStopWday, wtWebioEA2x2ERPDiagErrorClear=wtWebioEA2x2ERPDiagErrorClear, wtTrapReceiver2x2ActionEntry=wtTrapReceiver2x2ActionEntry, wtTrapReceiver2x2FTPUserName=wtTrapReceiver2x2FTPUserName, wtWebioEA12x12ClockMin=wtWebioEA12x12ClockMin, wtTrapReceiver2x2Network=wtTrapReceiver2x2Network, wtWebioEA2x2ERP_24VInputNo=wtWebioEA2x2ERP_24VInputNo, wtWebioEA2x2ERPDiag=wtWebioEA2x2ERPDiag, wtWebioEA12x6RelSessCntrlPassword=wtWebioEA12x6RelSessCntrlPassword, wtWebioEA2x2ERPFTP=wtWebioEA2x2ERPFTP, wtIpWatcher_24VNetwork=wtIpWatcher_24VNetwork, wtWebAlarm6x6StTzStopMonth=wtWebAlarm6x6StTzStopMonth, wtWebCount6ReportFtpText=wtWebCount6ReportFtpText, wtWebioEA12x6RelERPPortPulseDuration=wtWebioEA12x6RelERPPortPulseDuration, wtIpWatcherDiagBinaryError=wtIpWatcherDiagBinaryError, wtWebioEA12x6RelAlarmMailSubject=wtWebioEA12x6RelAlarmMailSubject, wtWebioEA12x12BinaryOperationMode=wtWebioEA12x12BinaryOperationMode, wtWebioEA24oemText=wtWebioEA24oemText, wtWebCount6HttpPort=wtWebCount6HttpPort, wtWebioEA12x6RelERPFTPOption=wtWebioEA12x6RelERPFTPOption, wtWebioEA12x6RelAlarmSystemTrigger=wtWebioEA12x6RelAlarmSystemTrigger, wtWebioEA2x2ERP_24VWayBackFTPResponse=wtWebioEA2x2ERP_24VWayBackFTPResponse, wtWebioEA2x2MailReply=wtWebioEA2x2MailReply, wtWebioEA2x2BinaryIfTable=wtWebioEA2x2BinaryIfTable, wtWebioEA12x6RelBinaryTcpClientServerIpAddr=wtWebioEA12x6RelBinaryTcpClientServerIpAddr, wtWebioEA12x6RelERPInputPortTable=wtWebioEA12x6RelERPInputPortTable, wtTrapReceiver2x2DeviceLocation=wtTrapReceiver2x2DeviceLocation, wtWebioEA24oemStTzStartWday=wtWebioEA24oemStTzStartWday, wtWebioEA2x2ERPWayBack=wtWebioEA2x2ERPWayBack, wtIpWatcherAlarmTriggerState=wtIpWatcherAlarmTriggerState, wtWebioEA12x6RelClockMonth=wtWebioEA12x6RelClockMonth, wtWebioEA12x6RelSnmpEnable=wtWebioEA12x6RelSnmpEnable, wtIpWatcherMailAdName=wtIpWatcherMailAdName, wtWebioEA24oemDnsServer2=wtWebioEA24oemDnsServer2, wtWebioEA12x6RelERPOutputNo=wtWebioEA12x6RelERPOutputNo, wtWebioEA2x2AlarmSyslogText=wtWebioEA2x2AlarmSyslogText, wtWebioEA2x2ERP_24VAlert18=wtWebioEA2x2ERP_24VAlert18, wtWebioEA24oemSyslog=wtWebioEA24oemSyslog, wtTrapReceiver2x2ActionGlobalEnable=wtTrapReceiver2x2ActionGlobalEnable, wtWebAlarm6x6TsEnable=wtWebAlarm6x6TsEnable, wtWebioEA12x6RelERPMfName=wtWebioEA12x6RelERPMfName, wtWebioEA2x2ERPAlarmOutputTrigger=wtWebioEA2x2ERPAlarmOutputTrigger, wtWebioEA12x6RelERPWayBackEnable=wtWebioEA12x6RelERPWayBackEnable, wtWebioEA2x2ERP_24VDeviceText=wtWebioEA2x2ERP_24VDeviceText, wtWebioEA12x6RelERPFTPServerIP=wtWebioEA12x6RelERPFTPServerIP, wtWebioEA24oemMfName=wtWebioEA24oemMfName, wtWebioEA2x2ERP_24VBinaryIfEntry=wtWebioEA2x2ERP_24VBinaryIfEntry, wtWebioEA12x6RelDnsServer1=wtWebioEA12x6RelDnsServer1, wtWebioEA2x2ERPTsSyncTime=wtWebioEA2x2ERPTsSyncTime, wtWebioEA2x2_24VNetwork=wtWebioEA2x2_24VNetwork, wtWebioEA12x12BinaryConnectedIpAddr=wtWebioEA12x12BinaryConnectedIpAddr, wtWebAlarm6x6StTzStartWday=wtWebAlarm6x6StTzStartWday, wtWebioEA2x2ERP_24VIpAddress=wtWebioEA2x2ERP_24VIpAddress, wtWebioEA6x6AlarmOutputTrigger=wtWebioEA6x6AlarmOutputTrigger, wtWebioEA2x2_24VAlert10=wtWebioEA2x2_24VAlert10, wtWebioEA2x2ERPStTzEnable=wtWebioEA2x2ERPStTzEnable, wtWebioEA24oemStTzStartMin=wtWebioEA24oemStTzStartMin, wtWebioEA2x2FTPServerIP=wtWebioEA2x2FTPServerIP, wtWebioEA12x6RelOutputEntry=wtWebioEA12x6RelOutputEntry, wtWebioEA12x12MfInternet=wtWebioEA12x12MfInternet, wtWebioEA12x6RelERPInputNo=wtWebioEA12x6RelERPInputNo, wtWebioEA6x6AlarmTcpText=wtWebioEA6x6AlarmTcpText, wtWebioEA24oemDeviceClock=wtWebioEA24oemDeviceClock, wtWebAlarm6x6Alert26=wtWebAlarm6x6Alert26, wtWebCount6ReportSyslogIpAddr=wtWebCount6ReportSyslogIpAddr, wtIpWatcher_24VIpListNo=wtIpWatcher_24VIpListNo, wtWebioEA2x2_24VDeviceText=wtWebioEA2x2_24VDeviceText, wtIpWatcher_24VTimeServer1=wtIpWatcher_24VTimeServer1, wtWebioEA12x6RelHttpInputTrigger=wtWebioEA12x6RelHttpInputTrigger, wtWebioEA12x6RelERPFTPAccount=wtWebioEA12x6RelERPFTPAccount, wtWebAlarm6x6FTP=wtWebAlarm6x6FTP, wtWebioEA12x6RelERPBinaryConnectedPort=wtWebioEA12x6RelERPBinaryConnectedPort, wtWebioEA12x6RelERPAlarmSyslogReleaseText=wtWebioEA12x6RelERPAlarmSyslogReleaseText, wtWebioEA12x6RelBinaryUdpPeerInputTrigger=wtWebioEA12x6RelBinaryUdpPeerInputTrigger, wtWebioEA2x2_24VAlert23=wtWebioEA2x2_24VAlert23, wtWebCount6DiagBinaryError=wtWebCount6DiagBinaryError, wtWebioEA12x6RelERPSubnetMask=wtWebioEA12x6RelERPSubnetMask, wtIpWatcherAlert9=wtIpWatcherAlert9, wtWebioEA12x12MailServer=wtWebioEA12x12MailServer, wtWebCount6IpAddress=wtWebCount6IpAddress, wtWebioEA2x2_24V=wtWebioEA2x2_24V, wtIpWatcherAlarmFtpOption=wtIpWatcherAlarmFtpOption, wtWebioEA12x6RelAlarmTable=wtWebioEA12x6RelAlarmTable, wtWebioEA12x6RelERPSyslogServerPort=wtWebioEA12x6RelERPSyslogServerPort, wtIpWatcher_24VPortPulseDuration=wtIpWatcher_24VPortPulseDuration, wtWebioEA12x12Mail=wtWebioEA12x12Mail, wtWebioEA12x6RelAlarmCount=wtWebioEA12x6RelAlarmCount, wtTrapReceiver2x2OutputTable=wtTrapReceiver2x2OutputTable, wtWebioEA2x2_24VAlert19=wtWebioEA2x2_24VAlert19, wtWebCount6StTzStartHrs=wtWebCount6StTzStartHrs, wtWebioEA6x6OutputModeBit=wtWebioEA6x6OutputModeBit, wtIpWatcherAlarmSyslogText=wtIpWatcherAlarmSyslogText, wtWebioEA2x2ERPBinaryTcpClientInterval=wtWebioEA2x2ERPBinaryTcpClientInterval, wtTrapReceiver2x2InputValue=wtTrapReceiver2x2InputValue, wtTrapReceiver2x2MfName=wtTrapReceiver2x2MfName, wtWebioEA12x6RelERPPortPulsePolarity=wtWebioEA12x6RelERPPortPulsePolarity, wtWebioEA6x6AlarmFtpText=wtWebioEA6x6AlarmFtpText, wtWebioEA2x2ERP_24VInputCounterClear=wtWebioEA2x2ERP_24VInputCounterClear, wtTrapReceiver2x2WatchListAlias=wtTrapReceiver2x2WatchListAlias, wtWebioEA6x6PortPulsePolarity=wtWebioEA6x6PortPulsePolarity, wtWebioEA2x2Alert18=wtWebioEA2x2Alert18, wtWebAlarm6x6AlarmTcpPort=wtWebAlarm6x6AlarmTcpPort, wtWebioEA12x12ClockYear=wtWebioEA12x12ClockYear, wtWebioEA12x12Alert12=wtWebioEA12x12Alert12, wtWebioEA2x2AlarmTcpIpAddr=wtWebioEA2x2AlarmTcpIpAddr, wtWebioEA12x6RelERPAlarmFtpText=wtWebioEA12x6RelERPAlarmFtpText, wtIpWatcher_24VAlert35=wtIpWatcher_24VAlert35, wtWebioEA2x2ERPPortInputMode=wtWebioEA2x2ERPPortInputMode, wtWebAlarm6x6Alert21=wtWebAlarm6x6Alert21, wtWebioEA12x6RelERPAlert3=wtWebioEA12x6RelERPAlert3, wtIpWatcher_24VMail=wtIpWatcher_24VMail, wtWebioEA2x2_24VInputPortEntry=wtWebioEA2x2_24VInputPortEntry, wtTrapReceiver2x2ActionSyslogIpAddr=wtTrapReceiver2x2ActionSyslogIpAddr, wtWebioEA2x2_24VDeviceContact=wtWebioEA2x2_24VDeviceContact, wtWebioEA2x2ERPPortInputFilter=wtWebioEA2x2ERPPortInputFilter, wtWebioEA12x6RelBinaryTable=wtWebioEA12x6RelBinaryTable, wtIpWatcherAlert22=wtIpWatcherAlert22, wtWebioEA2x2ERP_24VAlarmTimerCron=wtWebioEA2x2ERP_24VAlarmTimerCron, wtWebioEA12x12AlarmIfEntry=wtWebioEA12x12AlarmIfEntry, wtWebioEA12x6RelAlert2=wtWebioEA12x6RelAlert2, wtWebioEA2x2_24VMfName=wtWebioEA2x2_24VMfName, wtIpWatcher_24VUDP=wtIpWatcher_24VUDP, wtWebAlarm6x6InputNo=wtWebAlarm6x6InputNo, wtTrapReceiver2x2Manufact=wtTrapReceiver2x2Manufact, wtWebCount6TimeDate=wtWebCount6TimeDate, wtWebioEA2x2StTzStartWday=wtWebioEA2x2StTzStartWday, wtWebioEA12x6RelERPInputCounter=wtWebioEA12x6RelERPInputCounter, wtIpWatcher_24VInputValue=wtIpWatcher_24VInputValue, wtIpWatcher_24VFTPEnable=wtIpWatcher_24VFTPEnable, wtIpWatcher_24VHttpPort=wtIpWatcher_24VHttpPort, wtWebioEA24oemPortLogicOutputInverter=wtWebioEA24oemPortLogicOutputInverter, wtWebioEA2x2StTzStopMin=wtWebioEA2x2StTzStopMin, wtIpWatcher_24VAlert18=wtIpWatcher_24VAlert18, wtWebioEA24oemFTPUserName=wtWebioEA24oemFTPUserName, wtIpWatcher_24VSyslogServerIP=wtIpWatcher_24VSyslogServerIP, wtWebCount6PortInputCounterScale=wtWebCount6PortInputCounterScale, wtWebioEA2x2_24VBinaryTcpClientInputTrigger=wtWebioEA2x2_24VBinaryTcpClientInputTrigger, wtIpWatcher_24VAlarmTable=wtIpWatcher_24VAlarmTable, wtWebioEA2x2ERPSnmpEnable=wtWebioEA2x2ERPSnmpEnable, wtWebioEA2x2ERP_24VBinaryIfTable=wtWebioEA2x2ERP_24VBinaryIfTable, wtWebioEA24oemUdpAdminPort=wtWebioEA24oemUdpAdminPort, wtWebioEA6x6=wtWebioEA6x6, wtWebioEA6x6Alert14=wtWebioEA6x6Alert14, wtWebioEA6x6MailAuthentication=wtWebioEA6x6MailAuthentication, wtWebioEA12x6RelERPFTPUserName=wtWebioEA12x6RelERPFTPUserName, wtIpWatcher_24VUdpEnable=wtIpWatcher_24VUdpEnable, wtTrapReceiver2x2ButtonEntry=wtTrapReceiver2x2ButtonEntry, wtWebioEA2x2ERP_24VBinaryTcpClientInputTrigger=wtWebioEA2x2ERP_24VBinaryTcpClientInputTrigger, wtWebioEA2x2_24VAlert11=wtWebioEA2x2_24VAlert11, wtWebioEA24oemClockHrs=wtWebioEA24oemClockHrs, wtWebioEA2x2TimeZone=wtWebioEA2x2TimeZone, wtWebioEA2x2AlarmFtpText=wtWebioEA2x2AlarmFtpText, wtIpWatcher_24VDiagErrorMessage=wtIpWatcher_24VDiagErrorMessage, wtIpWatcherAlert19=wtIpWatcherAlert19, wtWebioEA12x6RelERPAlert18=wtWebioEA12x6RelERPAlert18, wtWebCount6SessCntrl=wtWebCount6SessCntrl, wtTrapReceiver2x2StTzEnable=wtTrapReceiver2x2StTzEnable, wtIpWatcherIpListName=wtIpWatcherIpListName, wtTrapReceiver2x2FTPServerControlPort=wtTrapReceiver2x2FTPServerControlPort, wtWebioEA24oemStTzStartMonth=wtWebioEA24oemStTzStartMonth, wtWebioEA12x6RelERPTimeServer2=wtWebioEA12x6RelERPTimeServer2, wtWebioEA2x2ERPWayBackServerControlPort=wtWebioEA2x2ERPWayBackServerControlPort, wtWebioEA2x2ERP_24VClockMonth=wtWebioEA2x2ERP_24VClockMonth, wtWebioEA12x12SessCntrlConfigMode=wtWebioEA12x12SessCntrlConfigMode, wtIpWatcher_24VAlarmUdpIpAddr=wtIpWatcher_24VAlarmUdpIpAddr, wtWebioEA24oemStTzStopMode=wtWebioEA24oemStTzStopMode, wtWebioEA2x2ERP_24VMailAuthUser=wtWebioEA2x2ERP_24VMailAuthUser, wtWebioEA24oemAlert31=wtWebioEA24oemAlert31, wtWebCount6Mail=wtWebCount6Mail, wtWebioEA2x2_24VBinaryIfTable=wtWebioEA2x2_24VBinaryIfTable, wtWebCount6DnsServer1=wtWebCount6DnsServer1, wtTrapReceiver2x2OutEvOutputs=wtTrapReceiver2x2OutEvOutputs, wtWebioEA6x6SnmpCommunityStringReadWrite=wtWebioEA6x6SnmpCommunityStringReadWrite, wtIpWatcher_24VAlarmUdpTrgClearText=wtIpWatcher_24VAlarmUdpTrgClearText, wtWebAlarm6x6AlarmAckPort=wtWebAlarm6x6AlarmAckPort, wtWebioEA24oemAlert5=wtWebioEA24oemAlert5, wtWebioEA12x6RelAlert15=wtWebioEA12x6RelAlert15, wtWebioEA2x2BinaryUdpPeerInputTrigger=wtWebioEA2x2BinaryUdpPeerInputTrigger, wtWebioEA2x2Alert16=wtWebioEA2x2Alert16, wtWebioEA24oemBinaryUdpPeerLocalPort=wtWebioEA24oemBinaryUdpPeerLocalPort, wtIpWatcherIpListNo=wtIpWatcherIpListNo, wtIpWatcherAlarmSnmpTrapReleaseText=wtIpWatcherAlarmSnmpTrapReleaseText, wtWebioEA2x2ERPAlarmTcpIpAddr=wtWebioEA2x2ERPAlarmTcpIpAddr, wtWebioEA2x2_24VBinaryUdpPeerLocalPort=wtWebioEA2x2_24VBinaryUdpPeerLocalPort, wtWebioEA12x12DiagErrorClear=wtWebioEA12x12DiagErrorClear, wtIpWatcherSyslogServerIP=wtIpWatcherSyslogServerIP, wtTrapReceiver2x2Text=wtTrapReceiver2x2Text, wtWebioEA2x2ERP_24VPortOutputSafetyState=wtWebioEA2x2ERP_24VPortOutputSafetyState, wtWebioEA2x2_24VPortInputMode=wtWebioEA2x2_24VPortInputMode, wtWebioEA24oemAlarmUdpPort=wtWebioEA24oemAlarmUdpPort, wtWebAlarm6x6Alert7=wtWebAlarm6x6Alert7, wtIpWatcherDnsServer1=wtIpWatcherDnsServer1, wtIpWatcherPortPulsePolarity=wtIpWatcherPortPulsePolarity, wtWebioEA24oemAlert28=wtWebioEA24oemAlert28, wtWebioEA2x2ERPBinaryTcpClientServerIpAddr=wtWebioEA2x2ERPBinaryTcpClientServerIpAddr, wtWebioEA2x2_24VBinaryEntry=wtWebioEA2x2_24VBinaryEntry, wtWebioEA6x6Device=wtWebioEA6x6Device, wtWebioEA2x2ERPBinaryIfTable=wtWebioEA2x2ERPBinaryIfTable, wtWebioEA2x2_24VAlarmSystemTrigger=wtWebioEA2x2_24VAlarmSystemTrigger, wtWebioEA12x12SessCntrlLogout=wtWebioEA12x12SessCntrlLogout, wtWebioEA2x2_24VOutputValue=wtWebioEA2x2_24VOutputValue, wtWebioEA6x6BinaryTcpClientInterval=wtWebioEA6x6BinaryTcpClientInterval, wtWebioEA2x2ERP_24VAlarmIfTable=wtWebioEA2x2ERP_24VAlarmIfTable, wtWebioEA2x2BinaryConnectedPort=wtWebioEA2x2BinaryConnectedPort, wtIpWatcher_24VAlarmPollingRate=wtIpWatcher_24VAlarmPollingRate, wtWebioEA6x6InputPortEntry=wtWebioEA6x6InputPortEntry, wtWebioEA24oemTimeServer1=wtWebioEA24oemTimeServer1, wtWebCount6ReportUdpIpAddr=wtWebCount6ReportUdpIpAddr, wtWebioEA2x2ERPAlarmFtpDataPort=wtWebioEA2x2ERPAlarmFtpDataPort)
mibBuilder.exportSymbols("Webio-Digital-MIB-US", wtIpWatcher_24VGateway=wtIpWatcher_24VGateway, wtWebAlarm6x6Alert2=wtWebAlarm6x6Alert2, wtWebCount6AlertDiag=wtWebCount6AlertDiag, wtWebioEA24oemInputState=wtWebioEA24oemInputState, wtTrapReceiver2x2ActionTcpIpAddr=wtTrapReceiver2x2ActionTcpIpAddr, wtWebAlarm6x6TimeZone=wtWebAlarm6x6TimeZone, wtTrapReceiver2x2WatchListSeverity=wtTrapReceiver2x2WatchListSeverity, wtWebioEA12x12DeviceLocation=wtWebioEA12x12DeviceLocation, wtWebioEA2x2ERPBinaryTcpServerClientHttpPort=wtWebioEA2x2ERPBinaryTcpServerClientHttpPort, wtIpWatcher_24VOutputState=wtIpWatcher_24VOutputState, wtWebioEA6x6DeviceContact=wtWebioEA6x6DeviceContact, wtWebioEA2x2ERP_24VMailEnable=wtWebioEA2x2ERP_24VMailEnable, wtIpWatcherMailReply=wtIpWatcherMailReply, wtWebioEA6x6ClockMonth=wtWebioEA6x6ClockMonth, wtWebioEA6x6BinaryModeCount=wtWebioEA6x6BinaryModeCount, wtWebioEA12x12TimeServer1=wtWebioEA12x12TimeServer1, wtWebioEA12x6RelAlarmMailReleaseText=wtWebioEA12x6RelAlarmMailReleaseText, wtWebioEA6x6Alert23=wtWebioEA6x6Alert23, wtTrapReceiver2x2ActionInterval=wtTrapReceiver2x2ActionInterval, wtWebioEA12x6RelERPAlert16=wtWebioEA12x6RelERPAlert16, wtWebioEA12x12BinaryConnectedPort=wtWebioEA12x12BinaryConnectedPort, wtWebioEA2x2InputValue=wtWebioEA2x2InputValue, wtWebioEA2x2ERPAlarmSyslogIpAddr=wtWebioEA2x2ERPAlarmSyslogIpAddr, wtWebioEA2x2_24VMfHotline=wtWebioEA2x2_24VMfHotline, wtWebioEA2x2InputCounterClear=wtWebioEA2x2InputCounterClear, wtWebCount6MailAdName=wtWebCount6MailAdName, wtWebioEA12x6RelERPSyslogSystemMessagesEnable=wtWebioEA12x6RelERPSyslogSystemMessagesEnable, wtWebioEA12x6RelERPBinaryEntry=wtWebioEA12x6RelERPBinaryEntry, wtWebioEA2x2ERP_24VStTzStartMin=wtWebioEA2x2ERP_24VStTzStartMin, wtWebioEA12x6RelMfHotline=wtWebioEA12x6RelMfHotline, wtIpWatcherStTzStopMonth=wtIpWatcherStTzStopMonth, wtWebioEA6x6TzOffsetHrs=wtWebioEA6x6TzOffsetHrs, wtWebioEA12x12MailPop3Server=wtWebioEA12x12MailPop3Server, wtWebioEA12x6RelOutputTable=wtWebioEA12x6RelOutputTable, wtWebioEA2x2_24VBinaryUdpPeerInputTrigger=wtWebioEA2x2_24VBinaryUdpPeerInputTrigger, wtWebioEA2x2_24VPortOutputName=wtWebioEA2x2_24VPortOutputName, wtWebioEA2x2ERP_24VDeviceClock=wtWebioEA2x2ERP_24VDeviceClock, wtWebioEA2x2AlarmUdpReleaseText=wtWebioEA2x2AlarmUdpReleaseText, wtWebAlarm6x6SnmpSystemTrapEnable=wtWebAlarm6x6SnmpSystemTrapEnable, wtWebCount6UdpEnable=wtWebCount6UdpEnable, wtWebioEA6x6OutputValue=wtWebioEA6x6OutputValue, wtIpWatcherSubnetMask=wtIpWatcherSubnetMask, wtWebioEA2x2BinaryUdpPeerRemotePort=wtWebioEA2x2BinaryUdpPeerRemotePort, wtIpWatcher_24VAlarmCount=wtIpWatcher_24VAlarmCount, wtWebioEA12x12OutputEntry=wtWebioEA12x12OutputEntry, wtTrapReceiver2x2WatchListCount=wtTrapReceiver2x2WatchListCount, wtWebAlarm6x6Alert29=wtWebAlarm6x6Alert29, wtWebioEA2x2ERP_24VAlert5=wtWebioEA2x2ERP_24VAlert5, wtIpWatcher_24VAlarmSnmpTrapText=wtIpWatcher_24VAlarmSnmpTrapText, wtWebioEA2x2ERP_24VAlarmSnmpManagerIP=wtWebioEA2x2ERP_24VAlarmSnmpManagerIP, wtWebioEA12x6RelUDP=wtWebioEA12x6RelUDP, wtWebioEA2x2ERPSnmpCommunityStringRead=wtWebioEA2x2ERPSnmpCommunityStringRead, wtWebioEA2x2_24VAlert13=wtWebioEA2x2_24VAlert13, wtWebioEA12x6RelERPGateway=wtWebioEA12x6RelERPGateway, wtWebioEA2x2_24VBinaryTcpClientServerPort=wtWebioEA2x2_24VBinaryTcpClientServerPort, wtWebioEA2x2ERPDeviceContact=wtWebioEA2x2ERPDeviceContact, wtIpWatcher_24VAlert36=wtIpWatcher_24VAlert36, wtTrapReceiver2x2TimeServer2=wtTrapReceiver2x2TimeServer2, wtWebioEA2x2ERPUdpEnable=wtWebioEA2x2ERPUdpEnable, wtIpWatcherStTzStartMin=wtIpWatcherStTzStartMin, wtWebCount6Diag=wtWebCount6Diag, wtWebAlarm6x6Alert27=wtWebAlarm6x6Alert27, wtWebioEA6x6DiagErrorMessage=wtWebioEA6x6DiagErrorMessage, wtIpWatcherAlarmInterval=wtIpWatcherAlarmInterval, wtIpWatcherAlert5=wtIpWatcherAlert5, wtIpWatcher_24VDnsServer2=wtIpWatcher_24VDnsServer2, wtWebioEA2x2Alert15=wtWebioEA2x2Alert15, wtWebioEA2x2ERPAlarmMailAddr=wtWebioEA2x2ERPAlarmMailAddr, wtWebioEA2x2ERPDiagErrorIndex=wtWebioEA2x2ERPDiagErrorIndex, wtWebioEA24oemManufact=wtWebioEA24oemManufact, wtWebAlarm6x6StTzStartHrs=wtWebAlarm6x6StTzStartHrs, wtWebioEA2x2BinaryEntry=wtWebioEA2x2BinaryEntry, wtWebioEA2x2ERPPortOutputText=wtWebioEA2x2ERPPortOutputText, wtWebioEA12x12HttpInputTrigger=wtWebioEA12x12HttpInputTrigger, wtWebioEA24oemSnmpSystemTrapManagerIP=wtWebioEA24oemSnmpSystemTrapManagerIP, wtWebioEA2x2PortInputBicountInactivTimeout=wtWebioEA2x2PortInputBicountInactivTimeout, wtWebioEA2x2ERPAlert7=wtWebioEA2x2ERPAlert7, wtWebioEA6x6OutputModeEntry=wtWebioEA6x6OutputModeEntry, wtWebAlarm6x6AlarmMailAddr=wtWebAlarm6x6AlarmMailAddr, wtIpWatcher_24VAlarmEnable=wtIpWatcher_24VAlarmEnable, wtWebioEA12x6RelERPAlert10=wtWebioEA12x6RelERPAlert10, wtWebioEA2x2InputNo=wtWebioEA2x2InputNo, wtWebioEA12x6RelTimeServer=wtWebioEA12x6RelTimeServer, wtWebioEA12x6RelMailEnable=wtWebioEA12x6RelMailEnable, wtWebAlarm6x6MailAuthUser=wtWebAlarm6x6MailAuthUser, wtWebioEA12x12PortOutputName=wtWebioEA12x12PortOutputName, wtWebioEA12x12AlarmIfTable=wtWebioEA12x12AlarmIfTable, wtWebioEA2x2AlarmSystemTrigger=wtWebioEA2x2AlarmSystemTrigger, wtWebAlarm6x6FTPAccount=wtWebAlarm6x6FTPAccount, wtWebioEA2x2ERPSyslogEnable=wtWebioEA2x2ERPSyslogEnable, wtWebAlarm6x6OutputState=wtWebAlarm6x6OutputState, wtWebioEA2x2_24VTimeServer2=wtWebioEA2x2_24VTimeServer2, wtWebioEA2x2ERP_24VAlarmSyslogText=wtWebioEA2x2ERP_24VAlarmSyslogText, wtIpWatcherAlarmTcpTrgClearText=wtIpWatcherAlarmTcpTrgClearText, wtWebioEA2x2Diag=wtWebioEA2x2Diag, wtWebioEA24oemAlert24=wtWebioEA24oemAlert24, wtWebioEA24oemMfInternet=wtWebioEA24oemMfInternet, wtWebioEA12x12AlarmMaxCounterValue=wtWebioEA12x12AlarmMaxCounterValue, wtWebioEA12x6RelERPOutputModeTable=wtWebioEA12x6RelERPOutputModeTable, wtWebioEA2x2ERP_24VTzEnable=wtWebioEA2x2ERP_24VTzEnable, wtTrapReceiver2x2ActionSystemButtonTrigger=wtTrapReceiver2x2ActionSystemButtonTrigger, wtIpWatcherAlarmTimerCron=wtIpWatcherAlarmTimerCron, wtIpWatcherAlert29=wtIpWatcherAlert29, wtWebioEA2x2ERP_24VAlarmSyslogReleaseText=wtWebioEA2x2ERP_24VAlarmSyslogReleaseText, wtWebioEA2x2ERPStTzStartMonth=wtWebioEA2x2ERPStTzStartMonth, wtIpWatcherAlert3=wtIpWatcherAlert3, wtWebioEA2x2TimeDate=wtWebioEA2x2TimeDate, wtWebioEA2x2LoadControlEnable=wtWebioEA2x2LoadControlEnable, wtWebAlarm6x6Ports=wtWebAlarm6x6Ports, wtIpWatcherInputValue=wtIpWatcherInputValue, wtWebioEA2x2ERP_24VAlert6=wtWebioEA2x2ERP_24VAlert6, wtWebioEA12x6RelERPOutputModeEntry=wtWebioEA12x6RelERPOutputModeEntry, wtWebioEA2x2BinaryTcpClientServerPassword=wtWebioEA2x2BinaryTcpClientServerPassword, wtWebioEA2x2ERPTimeServer=wtWebioEA2x2ERPTimeServer, wtIpWatcher_24VOutputs=wtIpWatcher_24VOutputs, wtWebioEA2x2ERP_24VUdpRemotePort=wtWebioEA2x2ERP_24VUdpRemotePort, wtIpWatcher_24VAlarmSyslogIpAddr=wtIpWatcher_24VAlarmSyslogIpAddr, wtIpWatcherInputCounter=wtIpWatcherInputCounter, wtTrapReceiver2x2Outputs=wtTrapReceiver2x2Outputs, wtIpWatcherIpListIfEntry=wtIpWatcherIpListIfEntry, wtWebioEA12x12Alert23=wtWebioEA12x12Alert23, wtWebAlarm6x6AlarmFtpReleaseText=wtWebAlarm6x6AlarmFtpReleaseText, wtWebAlarm6x6AlarmMailReleaseText=wtWebAlarm6x6AlarmMailReleaseText, wtWebioEA12x12DnsServer1=wtWebioEA12x12DnsServer1, wtWebioEA12x6RelERPStTzStopMin=wtWebioEA12x6RelERPStTzStopMin, wtWebioEA2x2TimeServer=wtWebioEA2x2TimeServer, wtWebCount6MailAuthUser=wtWebCount6MailAuthUser, wtWebioEA2x2ERPAlert21=wtWebioEA2x2ERPAlert21, wtWebioEA6x6InputState=wtWebioEA6x6InputState, wtIpWatcher_24VDevice=wtIpWatcher_24VDevice, wtWebioEA2x2_24VClockHrs=wtWebioEA2x2_24VClockHrs, wtWebioEA12x12InputCounter=wtWebioEA12x12InputCounter, wtWebioEA12x12DiagErrorCount=wtWebioEA12x12DiagErrorCount, wtWebioEA2x2_24VAlarmNo=wtWebioEA2x2_24VAlarmNo, wtIpWatcher_24VSnmpEnable=wtIpWatcher_24VSnmpEnable, wtWebioEA2x2ERP_24VTzOffsetMin=wtWebioEA2x2ERP_24VTzOffsetMin, wtWebioEA2x2ERP_24VMailServer=wtWebioEA2x2ERP_24VMailServer, wtWebAlarm6x6Alarm=wtWebAlarm6x6Alarm, wtWebioEA12x12MailAuthentication=wtWebioEA12x12MailAuthentication, wtWebCount6MailReply=wtWebCount6MailReply, wtWebioEA12x6RelFTPServerControlPort=wtWebioEA12x6RelFTPServerControlPort, wtWebioEA12x12StTzStartWday=wtWebioEA12x12StTzStartWday, wtWebioEA2x2ERP_24VBinaryTcpClientLocalPort=wtWebioEA2x2ERP_24VBinaryTcpClientLocalPort, wtWebioEA2x2ERP_24VSyslogEnable=wtWebioEA2x2ERP_24VSyslogEnable, wtWebioEA12x6RelAlert13=wtWebioEA12x6RelAlert13, wtWebCount6StTzStopHrs=wtWebCount6StTzStopHrs, wtWebioEA2x2_24VBinaryTable=wtWebioEA2x2_24VBinaryTable, wtWebioEA12x6RelInputTable=wtWebioEA12x6RelInputTable, wtTrapReceiver2x2Alert6=wtTrapReceiver2x2Alert6, wtWebioEA2x2ERP_24VDiagErrorMessage=wtWebioEA2x2ERP_24VDiagErrorMessage, wtWebioEA12x6RelHttpPort=wtWebioEA12x6RelHttpPort, wtWebioEA2x2Mail=wtWebioEA2x2Mail, wtWebioEA2x2OutputModeBit=wtWebioEA2x2OutputModeBit, wtTrapReceiver2x2StTzStartMin=wtTrapReceiver2x2StTzStartMin, wtWebCount6Inputs=wtWebCount6Inputs, wtWebAlarm6x6SyslogServerIP=wtWebAlarm6x6SyslogServerIP, wtWebioEA12x6RelERPAlert6=wtWebioEA12x6RelERPAlert6, wtIpWatcherAlert24=wtIpWatcherAlert24, wtWebioEA6x6AlarmSnmpManagerIP=wtWebioEA6x6AlarmSnmpManagerIP, wtWebioEA12x6RelOutputPortTable=wtWebioEA12x6RelOutputPortTable, wtTrapReceiver2x2ActionCount=wtTrapReceiver2x2ActionCount, wtWebioEA12x12Alert22=wtWebioEA12x12Alert22, wtIpWatcher_24VAlarmMailSubject=wtIpWatcher_24VAlarmMailSubject, wtWebioEA12x6RelERPStTzOffsetMin=wtWebioEA12x6RelERPStTzOffsetMin, wtWebioEA2x2AddConfig=wtWebioEA2x2AddConfig, wtIpWatcher_24VIpAddress=wtIpWatcher_24VIpAddress, wtWebioEA12x6RelERPDeviceContact=wtWebioEA12x6RelERPDeviceContact, wtWebCount6ClockDay=wtWebCount6ClockDay, wtWebAlarm6x6SnmpCommunityStringReadWrite=wtWebAlarm6x6SnmpCommunityStringReadWrite, wtWebioEA2x2Alert17=wtWebioEA2x2Alert17, wtTrapReceiver2x2FTPPassword=wtTrapReceiver2x2FTPPassword, wtIpWatcherAlarmSyslogTrgClearText=wtIpWatcherAlarmSyslogTrgClearText, wtWebioEA12x6RelERPSyslogServerIP=wtWebioEA12x6RelERPSyslogServerIP, wtWebAlarm6x6Syslog=wtWebAlarm6x6Syslog, wtWebioEA2x2ERP_24VInOut=wtWebioEA2x2ERP_24VInOut, wtIpWatcherAlarmMailSubject=wtIpWatcherAlarmMailSubject, wtTrapReceiver2x2UdpRemotePort=wtTrapReceiver2x2UdpRemotePort, wtWebioEA2x2InputState=wtWebioEA2x2InputState, wtWebioEA2x2Outputs=wtWebioEA2x2Outputs, wtIpWatcher_24VAlarmOutputTable=wtIpWatcher_24VAlarmOutputTable, wtTrapReceiver2x2ActionIfEntry=wtTrapReceiver2x2ActionIfEntry, wtWebioEA12x12AlarmMailSubject=wtWebioEA12x12AlarmMailSubject, wtWebioEA12x6RelPortPulseDuration=wtWebioEA12x6RelPortPulseDuration, wtIpWatcher_24VOutputValue=wtIpWatcher_24VOutputValue, wtWebioEA2x2ERPStTzStopMonth=wtWebioEA2x2ERPStTzStopMonth, wtWebioEA24oemInputCounter=wtWebioEA24oemInputCounter, wtWebioEA2x2_24VUDP=wtWebioEA2x2_24VUDP, wtWebioEA12x12Network=wtWebioEA12x12Network, wtWebioEA6x6BinaryTcpServerApplicationMode=wtWebioEA6x6BinaryTcpServerApplicationMode, wtWebioEA2x2_24VStTzOffsetMin=wtWebioEA2x2_24VStTzOffsetMin, wtWebioEA2x2ERPAlarm=wtWebioEA2x2ERPAlarm, wtWebioEA12x6RelFTPPassword=wtWebioEA12x6RelFTPPassword, wtWebioEA2x2_24VFTPEnable=wtWebioEA2x2_24VFTPEnable, wtWebCount6FTPUserName=wtWebCount6FTPUserName, wtWebAlarm6x6InputValue=wtWebAlarm6x6InputValue, wtWebioEA12x6RelERPBinaryModeCount=wtWebioEA12x6RelERPBinaryModeCount, wtIpWatcher_24VIpListTable=wtIpWatcher_24VIpListTable, wtWebioEA12x6RelOutputNo=wtWebioEA12x6RelOutputNo, wtWebioEA12x12OutputModeBit=wtWebioEA12x12OutputModeBit, wtWebioEA2x2ERPAlarmSyslogText=wtWebioEA2x2ERPAlarmSyslogText, wtWebAlarm6x6Alert19=wtWebAlarm6x6Alert19, wtWebioEA2x2ERP_24VSetOutput=wtWebioEA2x2ERP_24VSetOutput, wtWebioEA24oemClockYear=wtWebioEA24oemClockYear, wtWebioEA12x12PortInputFilter=wtWebioEA12x12PortInputFilter, wtWebioEA2x2ERP_24VAlert13=wtWebioEA2x2ERP_24VAlert13, wtWebAlarm6x6AlarmUdpTrapTxEnable=wtWebAlarm6x6AlarmUdpTrapTxEnable, wtIpWatcherAlarmFtpDataPort=wtIpWatcherAlarmFtpDataPort, wtIpWatcherMailAuthUser=wtIpWatcherMailAuthUser, wtWebioEA2x2SessCntrlLogout=wtWebioEA2x2SessCntrlLogout, wtWebioEA2x2ERP_24VAlarmMailAddr=wtWebioEA2x2ERP_24VAlarmMailAddr, wtWebioEA12x6RelAlarmOutputTrigger=wtWebioEA12x6RelAlarmOutputTrigger, wtWebioEA2x2InputCounter=wtWebioEA2x2InputCounter, wtTrapReceiver2x2FTPEnable=wtTrapReceiver2x2FTPEnable, wtWebioEA12x6RelStTzStopMin=wtWebioEA12x6RelStTzStopMin, wtWebioEA6x6AlarmMaxCounterValue=wtWebioEA6x6AlarmMaxCounterValue, wtWebioEA2x2ERPPortPulseDuration=wtWebioEA2x2ERPPortPulseDuration, wtWebioEA24oemPortLogicInputMask=wtWebioEA24oemPortLogicInputMask, wtWebioEA12x12AlarmTcpText=wtWebioEA12x12AlarmTcpText, wtWebioEA2x2_24VAlarmIfEntry=wtWebioEA2x2_24VAlarmIfEntry, wtWebioEA12x12BinaryUdpPeerLocalPort=wtWebioEA12x12BinaryUdpPeerLocalPort, wtWebioEA12x6RelERPWayBackFTPResponse=wtWebioEA12x6RelERPWayBackFTPResponse, wtWebioEA2x2ERP_24VInputPortEntry=wtWebioEA2x2ERP_24VInputPortEntry, wtIpWatcher_24VBasic=wtIpWatcher_24VBasic, wtWebioEA2x2ERPAlarmTcpText=wtWebioEA2x2ERPAlarmTcpText, wtWebioEA24oemDevice=wtWebioEA24oemDevice, wtWebioEA2x2ERPTzOffsetMin=wtWebioEA2x2ERPTzOffsetMin, wtIpWatcherStTzStartHrs=wtIpWatcherStTzStartHrs, wtWebioEA2x2_24VTsSyncTime=wtWebioEA2x2_24VTsSyncTime, wtWebioEA12x12OutputValue=wtWebioEA12x12OutputValue, wtWebioEA12x6RelAlertDiag=wtWebioEA12x6RelAlertDiag, wtWebioEA6x6StTzOffsetHrs=wtWebioEA6x6StTzOffsetHrs, wtWebioEA2x2BinaryUdpPeerInterval=wtWebioEA2x2BinaryUdpPeerInterval, wtWebioEA2x2_24VStTzStartMonth=wtWebioEA2x2_24VStTzStartMonth, wtWebioEA2x2Alarm=wtWebioEA2x2Alarm, wtTrapReceiver2x2Alert2=wtTrapReceiver2x2Alert2, wtWebioEA12x12Alert24=wtWebioEA12x12Alert24, wtWebioEA2x2Manufact=wtWebioEA2x2Manufact, wtWebioEA6x6AlarmSnmpTrapText=wtWebioEA6x6AlarmSnmpTrapText, wtWebAlarm6x6MfOrderNo=wtWebAlarm6x6MfOrderNo, wtWebioEA2x2ERP_24VPortInputBicountPulsePolarity=wtWebioEA2x2ERP_24VPortInputBicountPulsePolarity, wtTrapReceiver2x2StTzStartMode=wtTrapReceiver2x2StTzStartMode, wtWebAlarm6x6SessCntrlAdminPassword=wtWebAlarm6x6SessCntrlAdminPassword, wtWebioEA6x6SnmpCommunityStringRead=wtWebioEA6x6SnmpCommunityStringRead, wtWebioEA12x6RelAlarmMailAddr=wtWebioEA12x6RelAlarmMailAddr, wtIpWatcher_24VAlarmMailReleaseSubject=wtIpWatcher_24VAlarmMailReleaseSubject, wtWebCount6Report=wtWebCount6Report, wtWebCount6ReportEnable=wtWebCount6ReportEnable, wtWebioEA2x2ERP_24VLoadControlView=wtWebioEA2x2ERP_24VLoadControlView, wtIpWatcherAlarmOutputState=wtIpWatcherAlarmOutputState, wtWebioEA12x12PortOutputSafetyState=wtWebioEA12x12PortOutputSafetyState, wtWebAlarm6x6FTPEnable=wtWebAlarm6x6FTPEnable, wtWebCount6ReportFtpFileName=wtWebCount6ReportFtpFileName, wtIpWatcherAlarmOutputTable=wtIpWatcherAlarmOutputTable, wtWebioEA12x6RelAlert7=wtWebioEA12x6RelAlert7)
mibBuilder.exportSymbols("Webio-Digital-MIB-US", wtWebioEA12x6RelBinaryTcpClientLocalPort=wtWebioEA12x6RelBinaryTcpClientLocalPort, wtWebioEA12x6RelERPAlarmFtpFileName=wtWebioEA12x6RelERPAlarmFtpFileName, wtWebioEA2x2_24VDnsServer1=wtWebioEA2x2_24VDnsServer1, wtWebioEA2x2ERP_24VAlarmMaxCounterValue=wtWebioEA2x2ERP_24VAlarmMaxCounterValue, wtWebioEA12x12MailEnable=wtWebioEA12x12MailEnable, wtWebioEA2x2ERPWayBackFTPResponse=wtWebioEA2x2ERPWayBackFTPResponse, wtWebioEA2x2_24VInputValue=wtWebioEA2x2_24VInputValue, wtIpWatcherStTzStopWday=wtIpWatcherStTzStopWday, wtWebioEA2x2ERP_24VAlarmTcpText=wtWebioEA2x2ERP_24VAlarmTcpText, wtWebioEA12x6RelBinaryTcpClientInputTrigger=wtWebioEA12x6RelBinaryTcpClientInputTrigger, wtWebAlarm6x6OutputPortTable=wtWebAlarm6x6OutputPortTable, wtWebioEA12x6RelERPAlarmMailReleaseSubject=wtWebioEA12x6RelERPAlarmMailReleaseSubject, wtIpWatcherAlert17=wtIpWatcherAlert17, wtWebioEA12x6RelStTzStopMode=wtWebioEA12x6RelStTzStopMode, wtWebioEA2x2ERP_24VAlarmMailSubject=wtWebioEA2x2ERP_24VAlarmMailSubject, wtWebioEA12x6RelERPTsEnable=wtWebioEA12x6RelERPTsEnable, wtWebioEA12x6RelERPBinaryTcpClientApplicationMode=wtWebioEA12x6RelERPBinaryTcpClientApplicationMode, wtWebioEA2x2AlarmMailReleaseText=wtWebioEA2x2AlarmMailReleaseText, wtWebioEA12x6RelFTPAccount=wtWebioEA12x6RelFTPAccount, wtWebioEA2x2_24VBinaryTcpClientServerIpAddr=wtWebioEA2x2_24VBinaryTcpClientServerIpAddr, wtIpWatcherFTP=wtIpWatcherFTP, wtIpWatcher_24VPortInputText=wtIpWatcher_24VPortInputText, wtIpWatcher_24VInputEntry=wtIpWatcher_24VInputEntry, wtWebioEA2x2StTzOffsetHrs=wtWebioEA2x2StTzOffsetHrs, wtTrapReceiver2x2TsSyncTime=wtTrapReceiver2x2TsSyncTime, wtWebioEA24oemGetHeaderEnable=wtWebioEA24oemGetHeaderEnable, wtWebioEA12x6RelERPTzOffsetMin=wtWebioEA12x6RelERPTzOffsetMin, wtWebioEA12x6RelDeviceName=wtWebioEA12x6RelDeviceName, wtWebioEA2x2_24VAlert4=wtWebioEA2x2_24VAlert4, wtWebioEA2x2_24VOutputModeTable=wtWebioEA2x2_24VOutputModeTable, wtWebioEA2x2_24VAlert8=wtWebioEA2x2_24VAlert8, wtWebioEA6x6BinaryTcpClientServerPort=wtWebioEA6x6BinaryTcpClientServerPort, wtIpWatcherStTzStopMode=wtIpWatcherStTzStopMode, wtWebCount6TzOffsetMin=wtWebCount6TzOffsetMin, wtWebioEA2x2ERP_24VMailReply=wtWebioEA2x2ERP_24VMailReply, wtTrapReceiver2x2SnmpSystemTrapManagerIP=wtTrapReceiver2x2SnmpSystemTrapManagerIP, wtWebioEA12x6RelAlarmSyslogReleaseText=wtWebioEA12x6RelAlarmSyslogReleaseText, wtWebioEA2x2Gateway=wtWebioEA2x2Gateway, wtWebioEA12x12FTPServerIP=wtWebioEA12x12FTPServerIP, wtWebioEA2x2AlarmIfEntry=wtWebioEA2x2AlarmIfEntry, wtWebAlarm6x6AlarmOutputEntry=wtWebAlarm6x6AlarmOutputEntry, wtWebAlarm6x6Alert9=wtWebAlarm6x6Alert9, wtWebCount6PortInputMode=wtWebCount6PortInputMode, wtWebioEA12x6RelAlert24=wtWebioEA12x6RelAlert24, wtWebioEA24oemStTzOffsetMin=wtWebioEA24oemStTzOffsetMin, wtWebioEA12x12BinaryTcpClientInterval=wtWebioEA12x12BinaryTcpClientInterval, wtWebioEA12x6RelSyslogServerPort=wtWebioEA12x6RelSyslogServerPort, wtWebioEA2x2ERP_24VStTzStopMin=wtWebioEA2x2ERP_24VStTzStopMin, wtIpWatcherAlert11=wtIpWatcherAlert11, wtWebCount6MailAuthentication=wtWebCount6MailAuthentication, wtWebioEA12x12AlarmSyslogText=wtWebioEA12x12AlarmSyslogText, wtWebioEA12x6RelERPPortInputBicountInactivTimeout=wtWebioEA12x6RelERPPortInputBicountInactivTimeout, wtWebioEA24oemFTP=wtWebioEA24oemFTP, wtWebioEA2x2IpAddress=wtWebioEA2x2IpAddress, wtIpWatcher_24VAlert27=wtIpWatcher_24VAlert27, wtWebioEA24oemOutputState=wtWebioEA24oemOutputState, wtWebioEA2x2ERPBinaryTcpClientServerPassword=wtWebioEA2x2ERPBinaryTcpClientServerPassword, wtWebCount6Syslog=wtWebCount6Syslog, wtIpWatcherText=wtIpWatcherText, wtWebioEA12x6RelBinaryIfEntry=wtWebioEA12x6RelBinaryIfEntry, wtWebioEA6x6MailEnable=wtWebioEA6x6MailEnable, wtWebioEA2x2ERPAlarmMaxCounterValue=wtWebioEA2x2ERPAlarmMaxCounterValue, wtWebioEA2x2ERP_24VAlarmIfEntry=wtWebioEA2x2ERP_24VAlarmIfEntry, wtWebAlarm6x6Alert18=wtWebAlarm6x6Alert18, wtIpWatcherAlarmFtpText=wtIpWatcherAlarmFtpText, wtTrapReceiver2x2ActionSyslogText=wtTrapReceiver2x2ActionSyslogText, wtIpWatcherManufact=wtIpWatcherManufact, wtWebioEA12x12FTPServerControlPort=wtWebioEA12x12FTPServerControlPort, wtWebioEA12x6RelClockDay=wtWebioEA12x6RelClockDay, wtWebAlarm6x6FTPPassword=wtWebAlarm6x6FTPPassword, wtWebioEA12x12Alert6=wtWebioEA12x12Alert6, wtWebCount6MailAuthPassword=wtWebCount6MailAuthPassword, wtWebioEA12x6RelInputNo=wtWebioEA12x6RelInputNo, wtWebioEA6x6AlarmTable=wtWebioEA6x6AlarmTable, wtWebioEA12x12FTPEnable=wtWebioEA12x12FTPEnable, wtWebioEA2x2ERP_24VAlert23=wtWebioEA2x2ERP_24VAlert23, wtWebioEA12x6RelAlarmMailReleaseSubject=wtWebioEA12x6RelAlarmMailReleaseSubject, wtWebAlarm6x6AlarmEntry=wtWebAlarm6x6AlarmEntry, wtWebioEA2x2ERP_24VAlarmUdpPort=wtWebioEA2x2ERP_24VAlarmUdpPort, wtWebCount6Network=wtWebCount6Network, wtWebCount6InputCounterClear=wtWebCount6InputCounterClear, wtIpWatcher_24VInputPortEntry=wtIpWatcher_24VInputPortEntry, wtTrapReceiver2x2ActionName=wtTrapReceiver2x2ActionName, wtWebioEA2x2ERP_24VAlarmNo=wtWebioEA2x2ERP_24VAlarmNo, wtWebioEA6x6StTzStopMin=wtWebioEA6x6StTzStopMin, wtWebioEA2x2_24VAlarmMailReleaseSubject=wtWebioEA2x2_24VAlarmMailReleaseSubject, wtWebioEA12x12StTzStopMonth=wtWebioEA12x12StTzStopMonth, wtWebioEA24oemOutputEntry=wtWebioEA24oemOutputEntry, wtWebioEA2x2FTP=wtWebioEA2x2FTP, wtWebAlarm6x6OutputPortEntry=wtWebAlarm6x6OutputPortEntry, wtWebioEA24oemConfig=wtWebioEA24oemConfig, wtWebAlarm6x6AlarmSetPort=wtWebAlarm6x6AlarmSetPort, wtWebioEA12x6RelERPAlarmUdpText=wtWebioEA12x6RelERPAlarmUdpText, wtWebioEA6x6Inputs=wtWebioEA6x6Inputs, wtIpWatcher_24VAlert9=wtIpWatcher_24VAlert9, wtWebAlarm6x6PortOutputText=wtWebAlarm6x6PortOutputText, wtWebioEA2x2ERP_24VSyslogSystemMessagesEnable=wtWebioEA2x2ERP_24VSyslogSystemMessagesEnable, wtWebioEA12x12ClockMonth=wtWebioEA12x12ClockMonth, wtTrapReceiver2x2ActionFtpText=wtTrapReceiver2x2ActionFtpText, wtWebioEA2x2SubnetMask=wtWebioEA2x2SubnetMask, wtIpWatcher_24VAlarmCounterClear=wtIpWatcher_24VAlarmCounterClear, wtWebioEA2x2MfAddr=wtWebioEA2x2MfAddr, wtIpWatcher_24VClockDay=wtIpWatcher_24VClockDay, wtWebCount6StTzStopMonth=wtWebCount6StTzStopMonth, wtWebioEA6x6TimeServer2=wtWebioEA6x6TimeServer2, wtWebioEA12x6RelAlarmMailText=wtWebioEA12x6RelAlarmMailText, wtWebioEA6x6SyslogSystemMessagesEnable=wtWebioEA6x6SyslogSystemMessagesEnable, wtWebioEA2x2_24VOutputModeEntry=wtWebioEA2x2_24VOutputModeEntry, wtWebCount6Alert6=wtWebCount6Alert6, wtIpWatcherSnmpSystemTrapManagerIP=wtIpWatcherSnmpSystemTrapManagerIP, wtWebioEA2x2HttpPort=wtWebioEA2x2HttpPort, wtIpWatcherAlert10=wtIpWatcherAlert10, wtIpWatcherTzOffsetMin=wtIpWatcherTzOffsetMin, wtWebioEA2x2_24VText=wtWebioEA2x2_24VText, wtWebioEA6x6StTzStopMonth=wtWebioEA6x6StTzStopMonth, wtWebioEA2x2ERP_24VAlarmSystemTrigger=wtWebioEA2x2ERP_24VAlarmSystemTrigger, wtWebioEA12x12Binary=wtWebioEA12x12Binary, wtWebioEA6x6AlarmInterval=wtWebioEA6x6AlarmInterval, wtTrapReceiver2x2DeviceContact=wtTrapReceiver2x2DeviceContact, wtWebioEA2x2ERP_24VSyslogServerIP=wtWebioEA2x2ERP_24VSyslogServerIP, wtWebAlarm6x6AlarmTriggerState=wtWebAlarm6x6AlarmTriggerState, wtWebAlarm6x6MailAuthentication=wtWebAlarm6x6MailAuthentication, wtWebioEA2x2ERPAlarmSnmpTrapReleaseText=wtWebioEA2x2ERPAlarmSnmpTrapReleaseText, wtWebioEA2x2_24VStTzStopHrs=wtWebioEA2x2_24VStTzStopHrs, wtWebioEA24oemUdpRemotePort=wtWebioEA24oemUdpRemotePort, wtWebioEA12x6RelBinaryTcpClientServerPort=wtWebioEA12x6RelBinaryTcpClientServerPort, wtWebioEA12x6RelGetHeaderEnable=wtWebioEA12x6RelGetHeaderEnable, wtWebioEA12x6RelERPAlarmMailText=wtWebioEA12x6RelERPAlarmMailText, wtWebAlarm6x6AlarmTcpTrgClearText=wtWebAlarm6x6AlarmTcpTrgClearText, wtWebioEA12x6RelMailServer=wtWebioEA12x6RelMailServer, wtWebioEA12x6RelERPAlert13=wtWebioEA12x6RelERPAlert13, wtWebioEA2x2ERP_24VPortPulseDuration=wtWebioEA2x2ERP_24VPortPulseDuration, wtWebioEA2x2ERP_24VDiagBinaryError=wtWebioEA2x2ERP_24VDiagBinaryError, wtTrapReceiver2x2Alert7=wtTrapReceiver2x2Alert7, wtIpWatcher_24VClockMin=wtIpWatcher_24VClockMin, wtWebioEA24oemAlert17=wtWebioEA24oemAlert17, wtWebCount6FTPPassword=wtWebCount6FTPPassword, wtIpWatcherSyslog=wtIpWatcherSyslog, wtWebCount6MfOrderNo=wtWebCount6MfOrderNo, wtWebioEA12x12Syslog=wtWebioEA12x12Syslog, wtWebAlarm6x6PortOutputName=wtWebAlarm6x6PortOutputName, wtWebioEA2x2_24VDiag=wtWebioEA2x2_24VDiag, wtIpWatcher_24VAlarmMailTrgClearSubject=wtIpWatcher_24VAlarmMailTrgClearSubject, wtIpWatcher_24VFTPOption=wtIpWatcher_24VFTPOption, wtWebioEA2x2ERPTzEnable=wtWebioEA2x2ERPTzEnable, wtWebioEA2x2ERP_24VAlarmEnable=wtWebioEA2x2ERP_24VAlarmEnable, wtWebioEA6x6Alert22=wtWebioEA6x6Alert22, wtWebioEA12x6RelAlert3=wtWebioEA12x6RelAlert3, wtWebioEA2x2ERPBinaryUdpPeerRemotePort=wtWebioEA2x2ERPBinaryUdpPeerRemotePort, wtWebioEA2x2OutputState=wtWebioEA2x2OutputState, wtWebioEA24oemOutputModeEntry=wtWebioEA24oemOutputModeEntry, wtIpWatcher_24VAlert24=wtIpWatcher_24VAlert24, wtWebioEA2x2ERP_24VAlarmUdpText=wtWebioEA2x2ERP_24VAlarmUdpText, wtWebAlarm6x6AlarmFtpFileName=wtWebAlarm6x6AlarmFtpFileName, wtIpWatcherAlarmSnmpTrapTrapTxEnable=wtIpWatcherAlarmSnmpTrapTrapTxEnable, wtWebioEA2x2_24VInputTable=wtWebioEA2x2_24VInputTable, wtWebioEA12x12PortInputBicountPulsePolarity=wtWebioEA12x12PortInputBicountPulsePolarity, wtWebioEA2x2_24VBinaryUdpPeerRemotePort=wtWebioEA2x2_24VBinaryUdpPeerRemotePort, wtWebioEA12x12BinaryIfEntry=wtWebioEA12x12BinaryIfEntry, wtWebioEA2x2_24VInputCounterClear=wtWebioEA2x2_24VInputCounterClear, wtWebioEA12x12BinaryTcpClientInputTrigger=wtWebioEA12x12BinaryTcpClientInputTrigger, wtWebAlarm6x6Alert36=wtWebAlarm6x6Alert36, wtWebioEA2x2ERPAlarmFtpFileName=wtWebioEA2x2ERPAlarmFtpFileName, wtWebioEA2x2Alert9=wtWebioEA2x2Alert9, wtIpWatcherTzOffsetHrs=wtIpWatcherTzOffsetHrs, wtWebioEA2x2AlarmUdpIpAddr=wtWebioEA2x2AlarmUdpIpAddr, wtWebioEA12x12PortLogicInputMask=wtWebioEA12x12PortLogicInputMask, wtWebioEA6x6MfName=wtWebioEA6x6MfName, wtWebioEA24oemSyslogEnable=wtWebioEA24oemSyslogEnable, wtIpWatcherInputNo=wtIpWatcherInputNo, wtWebAlarm6x6AlarmSyslogPort=wtWebAlarm6x6AlarmSyslogPort, wtWebCount6Alert3=wtWebCount6Alert3, wtWebioEA12x6RelInOut=wtWebioEA12x6RelInOut, wtWebioEA12x6RelERPAlarmUdpIpAddr=wtWebioEA12x6RelERPAlarmUdpIpAddr, wtTrapReceiver2x2UDP=wtTrapReceiver2x2UDP, wtWebioEA12x6RelERPAlarmIfTable=wtWebioEA12x6RelERPAlarmIfTable, wtWebioEA12x12SessCntrlConfigPassword=wtWebioEA12x12SessCntrlConfigPassword, wtTrapReceiver2x2PrepareInEvents=wtTrapReceiver2x2PrepareInEvents, wtWebioEA2x2FTPServerControlPort=wtWebioEA2x2FTPServerControlPort, wtIpWatcher_24VTsSyncTime=wtIpWatcher_24VTsSyncTime, wtTrapReceiver2x2InputTable=wtTrapReceiver2x2InputTable, wtTrapReceiver2x2PortSystemTimerName=wtTrapReceiver2x2PortSystemTimerName, wtWebioEA2x2_24VAlarmFtpReleaseText=wtWebioEA2x2_24VAlarmFtpReleaseText, wtWebioEA2x2_24VAlarmMailReleaseText=wtWebioEA2x2_24VAlarmMailReleaseText, wtWebioEA6x6MailAuthPassword=wtWebioEA6x6MailAuthPassword, wtWebioEA2x2ERP_24VOutputPortTable=wtWebioEA2x2ERP_24VOutputPortTable, wtWebioEA2x2AlarmTable=wtWebioEA2x2AlarmTable, wtWebAlarm6x6InputCounter=wtWebAlarm6x6InputCounter, wtWebioEA24oemAlertDiag=wtWebioEA24oemAlertDiag, wtWebioEA2x2ERPInputCounterClear=wtWebioEA2x2ERPInputCounterClear, wtTrapReceiver2x2SystemTimerNo=wtTrapReceiver2x2SystemTimerNo, wtWebCount6ClockMonth=wtWebCount6ClockMonth, wtWebioEA24oemBinaryConnectedIpAddr=wtWebioEA24oemBinaryConnectedIpAddr, wtWebioEA2x2_24VHTTP=wtWebioEA2x2_24VHTTP, wtIpWatcherDeviceText=wtIpWatcherDeviceText, wtWebioEA2x2ERP_24VPortInputMode=wtWebioEA2x2ERP_24VPortInputMode, wtWebioEA2x2ERPDeviceText=wtWebioEA2x2ERPDeviceText, wtWebAlarm6x6UdpAdminPort=wtWebAlarm6x6UdpAdminPort, wtWebAlarm6x6SnmpSystemTrapManagerIP=wtWebAlarm6x6SnmpSystemTrapManagerIP, wtWebioEA2x2ERPInputEntry=wtWebioEA2x2ERPInputEntry, wtTrapReceiver2x2WatchListTrapNo=wtTrapReceiver2x2WatchListTrapNo, wtWebioEA12x12AlarmTcpIpAddr=wtWebioEA12x12AlarmTcpIpAddr, wtTrapReceiver2x2ActionUdpIpAddr=wtTrapReceiver2x2ActionUdpIpAddr, wtWebAlarm6x6Device=wtWebAlarm6x6Device, wtWebioEA2x2_24VBinaryUdpPeerInterval=wtWebioEA2x2_24VBinaryUdpPeerInterval, wtWebioEA2x2AlarmFtpReleaseText=wtWebioEA2x2AlarmFtpReleaseText, wtWebioEA2x2ERP_24VSnmpSystemTrapManagerIP=wtWebioEA2x2ERP_24VSnmpSystemTrapManagerIP, wtWebioEA2x2Inputs=wtWebioEA2x2Inputs, wtWebioEA2x2_24VClockYear=wtWebioEA2x2_24VClockYear, wtIpWatcher_24VFTPAccount=wtIpWatcher_24VFTPAccount, wtIpWatcherTimeServer=wtIpWatcherTimeServer, wtWebAlarm6x6StTzOffsetHrs=wtWebAlarm6x6StTzOffsetHrs, wtIpWatcher_24VSyslog=wtIpWatcher_24VSyslog, wtIpWatcherClockMin=wtIpWatcherClockMin, wtWebioEA2x2_24VStTzStopWday=wtWebioEA2x2_24VStTzStopWday, wtWebioEA2x2_24VDeviceLocation=wtWebioEA2x2_24VDeviceLocation, wtWebioEA12x6RelERPAlarmUdpPort=wtWebioEA12x6RelERPAlarmUdpPort, wtIpWatcher_24VStTzStartWday=wtIpWatcher_24VStTzStartWday, wtWebioEA6x6AlertDiag=wtWebioEA6x6AlertDiag, wtWebioEA24oemInputNo=wtWebioEA24oemInputNo, wtWebioEA12x6RelOutputValue=wtWebioEA12x6RelOutputValue, wtWebioEA12x6RelBinaryUdpPeerApplicationMode=wtWebioEA12x6RelBinaryUdpPeerApplicationMode, wtWebioEA2x2Ports=wtWebioEA2x2Ports, wtWebioEA2x2_24VInputs=wtWebioEA2x2_24VInputs, wtWebioEA12x6RelStTzStartMonth=wtWebioEA12x6RelStTzStartMonth, wtWebioEA2x2ERP_24VBinaryEntry=wtWebioEA2x2ERP_24VBinaryEntry, wtIpWatcher_24VAlert21=wtIpWatcher_24VAlert21, wtTrapReceiver2x2WatchListPort=wtTrapReceiver2x2WatchListPort, wtWebioEA24oemSyslogServerPort=wtWebioEA24oemSyslogServerPort, wtTrapReceiver2x2TzOffsetMin=wtTrapReceiver2x2TzOffsetMin, wtWebioEA2x2ERPMailAdName=wtWebioEA2x2ERPMailAdName, wtWebioEA12x6RelERPAlarmFtpOption=wtWebioEA12x6RelERPAlarmFtpOption, wtWebioEA12x12TimeDate=wtWebioEA12x12TimeDate, wtWebioEA2x2ERPInputValue=wtWebioEA2x2ERPInputValue, wtWebioEA2x2ERPAlert16=wtWebioEA2x2ERPAlert16, wtWebioEA24oemAlarmMailSubject=wtWebioEA24oemAlarmMailSubject, wtWebioEA2x2PortLogicOutputInverter=wtWebioEA2x2PortLogicOutputInverter, wtWebAlarm6x6AlarmEnable=wtWebAlarm6x6AlarmEnable, wtWebioEA2x2SyslogServerIP=wtWebioEA2x2SyslogServerIP, wtWebioEA12x12Manufact=wtWebioEA12x12Manufact, wtWebioEA2x2_24VSessCntrlConfigMode=wtWebioEA2x2_24VSessCntrlConfigMode, wtWebioEA24oemAlarmInterval=wtWebioEA24oemAlarmInterval, wtIpWatcher_24VAlarmSyslogReleaseText=wtIpWatcher_24VAlarmSyslogReleaseText, wtWebioEA6x6AlarmFtpFileName=wtWebioEA6x6AlarmFtpFileName, wtWebioEA2x2ERPInputPortEntry=wtWebioEA2x2ERPInputPortEntry, wtWebioEA24oemOutputModeBit=wtWebioEA24oemOutputModeBit, wtWebioEA12x6RelERPPortInputText=wtWebioEA12x6RelERPPortInputText, wtWebioEA12x6RelERPAlarmOutputTrigger=wtWebioEA12x6RelERPAlarmOutputTrigger, wtWebAlarm6x6AlarmUdpReleaseText=wtWebAlarm6x6AlarmUdpReleaseText, wtIpWatcher_24VAlarmInterval=wtIpWatcher_24VAlarmInterval, wtWebAlarm6x6Network=wtWebAlarm6x6Network, wtTrapReceiver2x2ActionMailAddr=wtTrapReceiver2x2ActionMailAddr, wtWebioEA6x6PortInputName=wtWebioEA6x6PortInputName, wtWebioEA2x2ERP_24VMailPop3Server=wtWebioEA2x2ERP_24VMailPop3Server)
mibBuilder.exportSymbols("Webio-Digital-MIB-US", wtWebioEA2x2PortOutputSafetyState=wtWebioEA2x2PortOutputSafetyState, wtWebioEA2x2ERP_24VPortLogicInputInverter=wtWebioEA2x2ERP_24VPortLogicInputInverter, wtWebioEA12x6RelSnmpCommunityStringReadWrite=wtWebioEA12x6RelSnmpCommunityStringReadWrite, wtWebioEA2x2ERP_24VSessCntrlAdminPassword=wtWebioEA2x2ERP_24VSessCntrlAdminPassword, wtWebioEA12x6RelPorts=wtWebioEA12x6RelPorts, wtWebioEA2x2ERP_24VStTzStartMode=wtWebioEA2x2ERP_24VStTzStartMode, wtTrapReceiver2x2PortOutputText=wtTrapReceiver2x2PortOutputText, wtIpWatcherAlarmSnmpTrapTrgClearText=wtIpWatcherAlarmSnmpTrapTrgClearText, wtWebioEA2x2BinaryTable=wtWebioEA2x2BinaryTable, wtWebioEA2x2ERPAlarmFtpText=wtWebioEA2x2ERPAlarmFtpText, wtWebCount6MfName=wtWebCount6MfName, wtWebioEA12x12TzEnable=wtWebioEA12x12TzEnable, wtWebioEA2x2ERPDnsServer2=wtWebioEA2x2ERPDnsServer2, wtWebAlarm6x6AlarmUdpPort=wtWebAlarm6x6AlarmUdpPort, wtWebioEA2x2SNMP=wtWebioEA2x2SNMP, wtWebCount6ReportInputTrigger=wtWebCount6ReportInputTrigger, wtWebioEA2x2_24VBinaryTcpClientInactivity=wtWebioEA2x2_24VBinaryTcpClientInactivity, wtWebioEA2x2ERP_24VInputCounter=wtWebioEA2x2ERP_24VInputCounter, wtIpWatcherPortOutputText=wtIpWatcherPortOutputText, wtWebioEA12x6RelAlert19=wtWebioEA12x6RelAlert19, wtWebioEA2x2ERPBinaryTcpServerApplicationMode=wtWebioEA2x2ERPBinaryTcpServerApplicationMode, wtWebioEA12x6RelERPSnmpSystemTrapEnable=wtWebioEA12x6RelERPSnmpSystemTrapEnable, wtTrapReceiver2x2TsEnable=wtTrapReceiver2x2TsEnable, wtWebioEA2x2ERPPortInputName=wtWebioEA2x2ERPPortInputName, wtWebioEA24oemHTTP=wtWebioEA24oemHTTP, wtTrapReceiver2x2MfHotline=wtTrapReceiver2x2MfHotline, wtWebioEA2x2_24VMailPop3Server=wtWebioEA2x2_24VMailPop3Server, wtWebioEA12x6RelSyslogSystemMessagesEnable=wtWebioEA12x6RelSyslogSystemMessagesEnable, wtTrapReceiver2x2TimeServer1=wtTrapReceiver2x2TimeServer1, wtWebioEA12x6RelERPAlarmMailSubject=wtWebioEA12x6RelERPAlarmMailSubject, wtIpWatcher_24VSnmpCommunityStringRead=wtIpWatcher_24VSnmpCommunityStringRead, wtWebioEA2x2ERPMfInternet=wtWebioEA2x2ERPMfInternet, wtWebAlarm6x6PortInputFilter=wtWebAlarm6x6PortInputFilter, wtWebioEA12x6RelERPSnmpEnable=wtWebioEA12x6RelERPSnmpEnable, wtWebioEA6x6InputCounter=wtWebioEA6x6InputCounter, wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText=wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText, wtWebioEA12x12Alert3=wtWebioEA12x12Alert3, wtWebioEA12x6RelAlarmTcpPort=wtWebioEA12x6RelAlarmTcpPort, wtIpWatcherIpListIfTable=wtIpWatcherIpListIfTable, wtWebioEA12x12HttpPort=wtWebioEA12x12HttpPort, wtIpWatcherStTzStartMonth=wtIpWatcherStTzStartMonth, wtWebioEA2x2ERP_24VAlert24=wtWebioEA2x2ERP_24VAlert24, wtTrapReceiver2x2PortInputFilter=wtTrapReceiver2x2PortInputFilter, wtWebioEA12x6RelMailPop3Server=wtWebioEA12x6RelMailPop3Server, wtWebioEA12x6RelAlarmIfEntry=wtWebioEA12x6RelAlarmIfEntry, wtIpWatcherInputPortEntry=wtIpWatcherInputPortEntry, wtWebAlarm6x6Alert24=wtWebAlarm6x6Alert24, wtIpWatcherAlarmSyslogIpAddr=wtIpWatcherAlarmSyslogIpAddr, wtWebioEA2x2ERP_24VAlarmTcpPort=wtWebioEA2x2ERP_24VAlarmTcpPort, wtWebioEA2x2SnmpSystemTrapManagerIP=wtWebioEA2x2SnmpSystemTrapManagerIP, wtWebioEA2x2ERPClockHrs=wtWebioEA2x2ERPClockHrs, wtWebioEA12x12Alert20=wtWebioEA12x12Alert20, wtTrapReceiver2x2ActionTimerCron=wtTrapReceiver2x2ActionTimerCron, wtWebioEA2x2PortOutputGroupMode=wtWebioEA2x2PortOutputGroupMode, wtTrapReceiver2x2OutputPortTable=wtTrapReceiver2x2OutputPortTable, wtWebioEA2x2AlarmInputTrigger=wtWebioEA2x2AlarmInputTrigger, wtWebioEA2x2ClockMin=wtWebioEA2x2ClockMin, wtWebioEA12x12AlarmEnable=wtWebioEA12x12AlarmEnable, wtIpWatcher_24V=wtIpWatcher_24V, wtWebioEA12x6RelERPUDP=wtWebioEA12x6RelERPUDP, wtWebioEA2x2ERPAlarmNo=wtWebioEA2x2ERPAlarmNo, wtIpWatcherConfig=wtIpWatcherConfig, wtWebioEA12x6RelERPAlert9=wtWebioEA12x6RelERPAlert9, wtWebioEA2x2_24VAlarmFtpDataPort=wtWebioEA2x2_24VAlarmFtpDataPort, wtTrapReceiver2x2DnsServer1=wtTrapReceiver2x2DnsServer1, wtIpWatcher_24VAlert10=wtIpWatcher_24VAlert10, wtWebioEA2x2_24VStTzStopMin=wtWebioEA2x2_24VStTzStopMin, wtWebioEA6x6PortOutputText=wtWebioEA6x6PortOutputText, wtWebCount6Alert7=wtWebCount6Alert7, wtWebioEA12x12OutputPortTable=wtWebioEA12x12OutputPortTable, wtWebioEA12x6RelDevice=wtWebioEA12x6RelDevice, wtIpWatcherDiagErrorClear=wtIpWatcherDiagErrorClear, wtWebioEA24oemClockDay=wtWebioEA24oemClockDay, wtWebioEA2x2_24VPortLogicOutputInverter=wtWebioEA2x2_24VPortLogicOutputInverter, wtWebioEA2x2_24VAlert16=wtWebioEA2x2_24VAlert16, wtTrapReceiver2x2WatchListFacility=wtTrapReceiver2x2WatchListFacility, wtWebioEA2x2ERPConfig=wtWebioEA2x2ERPConfig, wtIpWatcher_24VDeviceName=wtIpWatcher_24VDeviceName, wtIpWatcherSessCntrlAdminPassword=wtIpWatcherSessCntrlAdminPassword, wtIpWatcher_24VMailAdName=wtIpWatcher_24VMailAdName, wtIpWatcherAlert4=wtIpWatcherAlert4, wtIpWatcherAlert34=wtIpWatcherAlert34, wtWebioEA2x2ERP_24VBasic=wtWebioEA2x2ERP_24VBasic, wtWebioEA12x12StTzStopHrs=wtWebioEA12x12StTzStopHrs, wtIpWatcherAlarmUdpTrapTxEnable=wtIpWatcherAlarmUdpTrapTxEnable, wtWebCount6ReportSnmpTrapText=wtWebCount6ReportSnmpTrapText, wtWebioEA6x6PortLogicFunction=wtWebioEA6x6PortLogicFunction, wtTrapReceiver2x2MailEnable=wtTrapReceiver2x2MailEnable, wtWebioEA24oemAlert9=wtWebioEA24oemAlert9, wtWebioEA2x2ERPHttpInputTrigger=wtWebioEA2x2ERPHttpInputTrigger, wtWebioEA2x2ERP_24VAlert17=wtWebioEA2x2ERP_24VAlert17, wtWebioEA12x6RelERPAlarmMailReleaseText=wtWebioEA12x6RelERPAlarmMailReleaseText, wtWebioEA12x12AlarmMailReleaseSubject=wtWebioEA12x12AlarmMailReleaseSubject, wtWebioEA12x6RelAlarmNo=wtWebioEA12x6RelAlarmNo, wtWebioEA2x2ERP_24VStTzStopMode=wtWebioEA2x2ERP_24VStTzStopMode, wtWebAlarm6x6AlarmSyslogTrgClearText=wtWebAlarm6x6AlarmSyslogTrgClearText, wtWebioEA2x2ERPAlert6=wtWebioEA2x2ERPAlert6, wtWebioEA12x6RelERPSNMP=wtWebioEA12x6RelERPSNMP, wtWebioEA24oemAlarmEntry=wtWebioEA24oemAlarmEntry, wtWebioEA24oemPortInputMode=wtWebioEA24oemPortInputMode, wtWebioEA12x12UdpRemotePort=wtWebioEA12x12UdpRemotePort, wtWebioEA12x12Alert13=wtWebioEA12x12Alert13, wtWebioEA2x2_24VMfAddr=wtWebioEA2x2_24VMfAddr, wtWebioEA2x2ERPAlert2=wtWebioEA2x2ERPAlert2, wtWebCount6ReportMailAddr=wtWebCount6ReportMailAddr, wtWebioEA2x2ERP_24VBinaryTcpClientServerHttpPort=wtWebioEA2x2ERP_24VBinaryTcpClientServerHttpPort, wtIpWatcher_24VAlert8=wtIpWatcher_24VAlert8, wtWebioEA12x12PortOutputText=wtWebioEA12x12PortOutputText, wtWebAlarm6x6AlarmFtpDataPort=wtWebAlarm6x6AlarmFtpDataPort, wtWebioEA2x2ERPAlarmSyslogPort=wtWebioEA2x2ERPAlarmSyslogPort, wtWebioEA6x6UdpRemotePort=wtWebioEA6x6UdpRemotePort, wtIpWatcher_24VStTzStopMonth=wtIpWatcher_24VStTzStopMonth, wtWebioEA6x6DiagErrorClear=wtWebioEA6x6DiagErrorClear, wtWebioEA2x2ERP_24VPowerSupplyEnable=wtWebioEA2x2ERP_24VPowerSupplyEnable, wtIpWatcher_24VClockMonth=wtIpWatcher_24VClockMonth, wtIpWatcher_24VAlarmMailText=wtIpWatcher_24VAlarmMailText, wtWebioEA2x2ERP_24VDiagErrorCount=wtWebioEA2x2ERP_24VDiagErrorCount, wtWebAlarm6x6StTzEnable=wtWebAlarm6x6StTzEnable, wtWebioEA2x2OutputPortTable=wtWebioEA2x2OutputPortTable, wtWebioEA12x12AlarmFtpFileName=wtWebioEA12x12AlarmFtpFileName, wtWebAlarm6x6AlarmFtpOption=wtWebAlarm6x6AlarmFtpOption, wtWebAlarm6x6OutputTable=wtWebAlarm6x6OutputTable, wtWebioEA2x2PortInputFilter=wtWebioEA2x2PortInputFilter, wtWebAlarm6x6SessCntrlConfigPassword=wtWebAlarm6x6SessCntrlConfigPassword, wtWebioEA12x12OutputPortEntry=wtWebioEA12x12OutputPortEntry, wtIpWatcher_24VAlert34=wtIpWatcher_24VAlert34, wtWebioEA24oemBinaryTcpClientApplicationMode=wtWebioEA24oemBinaryTcpClientApplicationMode, wtIpWatcherAlert32=wtIpWatcherAlert32, wtWebioEA24oemUdpEnable=wtWebioEA24oemUdpEnable, wtIpWatcher_24VTimeZone=wtIpWatcher_24VTimeZone, wtWebioEA12x6RelERPAlarmSyslogPort=wtWebioEA12x6RelERPAlarmSyslogPort, wtWebCount6Alert9=wtWebCount6Alert9, wtTrapReceiver2x2ButtonNo=wtTrapReceiver2x2ButtonNo, wtWebioEA2x2ERP_24VUdpAdminPort=wtWebioEA2x2ERP_24VUdpAdminPort, wtWebioEA2x2ERP_24VOutputModeTable=wtWebioEA2x2ERP_24VOutputModeTable, wtWebioEA6x6BinaryTcpClientServerHttpPort=wtWebioEA6x6BinaryTcpClientServerHttpPort, wtIpWatcherIpListCount=wtIpWatcherIpListCount, wtTrapReceiver2x2PortSystemTimerCron=wtTrapReceiver2x2PortSystemTimerCron, wtWebioEA2x2ERP_24VMfName=wtWebioEA2x2ERP_24VMfName, wtWebioEA12x12SafetyTimeout=wtWebioEA12x12SafetyTimeout, wtIpWatcher_24VSessCntrlAdminPassword=wtIpWatcher_24VSessCntrlAdminPassword, wtWebioEA12x6RelERPBinaryUdpPeerLocalPort=wtWebioEA12x6RelERPBinaryUdpPeerLocalPort, wtWebioEA12x6RelAlert23=wtWebioEA12x6RelAlert23, wtWebioEA12x6RelERPAlarmNo=wtWebioEA12x6RelERPAlarmNo, wtWebioEA12x6RelTimeServer1=wtWebioEA12x6RelTimeServer1, wtWebioEA2x2ERP_24VTimeZone=wtWebioEA2x2ERP_24VTimeZone, wtWebioEA12x6RelDiagErrorIndex=wtWebioEA12x6RelDiagErrorIndex, wtWebCount6InputNo=wtWebCount6InputNo, wtWebioEA2x2ERP_24VBinaryTcpServerClientHttpPort=wtWebioEA2x2ERP_24VBinaryTcpServerClientHttpPort, wtWebioEA2x2ERP_24VDiagErrorIndex=wtWebioEA2x2ERP_24VDiagErrorIndex, wtWebioEA12x6RelClockYear=wtWebioEA12x6RelClockYear, wtWebioEA2x2ERP_24VStTzStopHrs=wtWebioEA2x2ERP_24VStTzStopHrs, wtWebioEA12x6RelERPDeviceText=wtWebioEA12x6RelERPDeviceText, wtWebioEA24oemSNMP=wtWebioEA24oemSNMP, wtWebioEA2x2ERPSessCntrl=wtWebioEA2x2ERPSessCntrl, wtWebAlarm6x6InputPortTable=wtWebAlarm6x6InputPortTable, wtIpWatcher_24VAlert29=wtIpWatcher_24VAlert29, wtWebAlarm6x6AlarmMailText=wtWebAlarm6x6AlarmMailText, wtWebioEA2x2AlarmEnable=wtWebioEA2x2AlarmEnable, wtWebioEA2x2ERPDeviceLocation=wtWebioEA2x2ERPDeviceLocation, wtIpWatcher_24VAlarmNo=wtIpWatcher_24VAlarmNo, wtWebioEA24oemAlarmMailText=wtWebioEA24oemAlarmMailText, wtWebioEA24oemBinaryTcpServerClientHttpPort=wtWebioEA24oemBinaryTcpServerClientHttpPort, wtWebioEA2x2_24VOutputTable=wtWebioEA2x2_24VOutputTable, wtWebioEA2x2_24VUdpAdminPort=wtWebioEA2x2_24VUdpAdminPort, wtWebioEA2x2AlarmCount=wtWebioEA2x2AlarmCount, wtIpWatcherSnmpSystemTrapEnable=wtIpWatcherSnmpSystemTrapEnable, wtIpWatcherAlarmEnable=wtIpWatcherAlarmEnable, wtIpWatcher_24VSessCntrlConfigPassword=wtIpWatcher_24VSessCntrlConfigPassword, wtWebAlarm6x6StTzStopMin=wtWebAlarm6x6StTzStopMin, wtWebioEA2x2ERP_24VTimeServer1=wtWebioEA2x2ERP_24VTimeServer1, wtWebAlarm6x6AlarmFtpTrapTxEnable=wtWebAlarm6x6AlarmFtpTrapTxEnable, wtWebioEA2x2MfName=wtWebioEA2x2MfName, wtWebioEA24oemTzOffsetMin=wtWebioEA24oemTzOffsetMin, wtWebioEA24oemOutputPortEntry=wtWebioEA24oemOutputPortEntry, wtWebCount6ReportMailText=wtWebCount6ReportMailText, wtWebioEA2x2_24VFTPUserName=wtWebioEA2x2_24VFTPUserName, wtWebAlarm6x6MailAdName=wtWebAlarm6x6MailAdName, wtIpWatcherAlarmFtpTrapTxEnable=wtIpWatcherAlarmFtpTrapTxEnable, wtTrapReceiver2x2ActionOutputTable=wtTrapReceiver2x2ActionOutputTable, wtTrapReceiver2x2AlertDiag=wtTrapReceiver2x2AlertDiag, wtWebioEA2x2_24VMailAuthUser=wtWebioEA2x2_24VMailAuthUser, wtWebioEA2x2BinaryTcpServerApplicationMode=wtWebioEA2x2BinaryTcpServerApplicationMode, wtWebioEA6x6MailAuthUser=wtWebioEA6x6MailAuthUser, wtWebAlarm6x6MfHotline=wtWebAlarm6x6MfHotline, wtIpWatcherAlarmSetPort=wtIpWatcherAlarmSetPort, wtWebioEA2x2_24VSyslogEnable=wtWebioEA2x2_24VSyslogEnable, wtIpWatcher_24VAlarmSnmpTrapReleaseText=wtIpWatcher_24VAlarmSnmpTrapReleaseText, wtIpWatcher_24VHTTP=wtIpWatcher_24VHTTP, wtWebioEA6x6OutputEntry=wtWebioEA6x6OutputEntry, wtWebioEA6x6BinaryTcpServerInputTrigger=wtWebioEA6x6BinaryTcpServerInputTrigger, wtWebCount6UDP=wtWebCount6UDP, wtWebioEA6x6PortLogicOutputInverter=wtWebioEA6x6PortLogicOutputInverter, wtWebioEA12x6RelAlert8=wtWebioEA12x6RelAlert8, wtIpWatcherInOut=wtIpWatcherInOut, wtWebioEA12x6RelBasic=wtWebioEA12x6RelBasic, wtWebioEA12x12BinaryEntry=wtWebioEA12x12BinaryEntry, wtWebioEA2x2ERP_24VAlarmMailText=wtWebioEA2x2ERP_24VAlarmMailText, wtWebioEA6x6StTzStartMonth=wtWebioEA6x6StTzStartMonth, wtIpWatcher_24VAlarmSyslogPort=wtIpWatcher_24VAlarmSyslogPort, wtWebioEA12x6RelERPAlarmSyslogIpAddr=wtWebioEA12x6RelERPAlarmSyslogIpAddr, wtWebioEA12x6RelPortOutputSafetyState=wtWebioEA12x6RelPortOutputSafetyState, wtWebCount6StTzStartMode=wtWebCount6StTzStartMode, wtWebioEA2x2AlarmUdpText=wtWebioEA2x2AlarmUdpText, wtWebioEA2x2Alert2=wtWebioEA2x2Alert2, wtWebioEA2x2ERPInputPortTable=wtWebioEA2x2ERPInputPortTable, wtWebioEA6x6StTzEnable=wtWebioEA6x6StTzEnable, wtWebioEA12x6RelERPDiagErrorMessage=wtWebioEA12x6RelERPDiagErrorMessage, wtWebioEA2x2_24VAlarmSnmpManagerIP=wtWebioEA2x2_24VAlarmSnmpManagerIP, wtWebioEA2x2BinaryTcpServerInputTrigger=wtWebioEA2x2BinaryTcpServerInputTrigger, wtWebioEA2x2ERPAlert1=wtWebioEA2x2ERPAlert1, wtWebioEA2x2ERPAlarmUdpIpAddr=wtWebioEA2x2ERPAlarmUdpIpAddr, wtWebioEA2x2ERP_24VPortLogicInputMask=wtWebioEA2x2ERP_24VPortLogicInputMask, wtWebioEA6x6PortInputBicountInactivTimeout=wtWebioEA6x6PortInputBicountInactivTimeout, wtWebAlarm6x6Alert3=wtWebAlarm6x6Alert3, wtWebioEA6x6Alert15=wtWebioEA6x6Alert15, wtWebioEA2x2MailPop3Server=wtWebioEA2x2MailPop3Server, wtWebCount6FTPOption=wtWebCount6FTPOption, wtWebioEA2x2_24VSafetyTimeout=wtWebioEA2x2_24VSafetyTimeout, wtWebioEA2x2ERPOutputValue=wtWebioEA2x2ERPOutputValue, wtWebioEA2x2ERP_24VGateway=wtWebioEA2x2ERP_24VGateway, wtWebCount6ReportOutputState=wtWebCount6ReportOutputState, wtWebioEA2x2ERPAlarmMailReleaseText=wtWebioEA2x2ERPAlarmMailReleaseText, wtWebCount6DiagErrorMessage=wtWebCount6DiagErrorMessage, wtWebCount6DiagErrorCount=wtWebCount6DiagErrorCount, wtWebCount6StTzStartWday=wtWebCount6StTzStartWday, wtWebioEA2x2UDP=wtWebioEA2x2UDP, wtWebioEA2x2_24VSubnetMask=wtWebioEA2x2_24VSubnetMask, wtWebioEA12x6RelTsSyncTime=wtWebioEA12x6RelTsSyncTime, wtWebioEA12x6RelERPSnmpCommunityStringReadWrite=wtWebioEA12x6RelERPSnmpCommunityStringReadWrite, wtIpWatcherInputPortTable=wtIpWatcherInputPortTable, wtWebioEA24oemStTzStopMin=wtWebioEA24oemStTzStopMin, wtWebCount6StTzOffsetMin=wtWebCount6StTzOffsetMin, wtTrapReceiver2x2SystemTimerPortTable=wtTrapReceiver2x2SystemTimerPortTable, wtWebioEA2x2Alert3=wtWebioEA2x2Alert3, wtWebioEA12x6RelAlarmFtpReleaseText=wtWebioEA12x6RelAlarmFtpReleaseText, wtWebioEA2x2StTzStartMode=wtWebioEA2x2StTzStartMode, wtIpWatcher_24VAlert5=wtIpWatcher_24VAlert5, wtWebioEA12x6RelERPFTP=wtWebioEA12x6RelERPFTP, wtIpWatcherInputState=wtIpWatcherInputState, wtWebCount6SnmpCommunityStringRead=wtWebCount6SnmpCommunityStringRead, wtWebioEA12x6RelBinaryConnectedIpAddr=wtWebioEA12x6RelBinaryConnectedIpAddr, wtWebAlarm6x6PortInputCounterSet=wtWebAlarm6x6PortInputCounterSet, wtWebioEA12x6RelBinaryTcpServerLocalPort=wtWebioEA12x6RelBinaryTcpServerLocalPort, wtWebioEA2x2ERPPortLogicOutputInverter=wtWebioEA2x2ERPPortLogicOutputInverter, wtWebAlarm6x6PortInputName=wtWebAlarm6x6PortInputName, wtWebioEA12x6RelERPWayBackServerControlPort=wtWebioEA12x6RelERPWayBackServerControlPort, wtWebioEA24oemOutputValue=wtWebioEA24oemOutputValue, wtWebioEA12x6RelNetwork=wtWebioEA12x6RelNetwork, wtWebioEA12x12BinaryUdpPeerInputTrigger=wtWebioEA12x12BinaryUdpPeerInputTrigger, wtWebioEA2x2_24VAlert2=wtWebioEA2x2_24VAlert2, wtTrapReceiver2x2StTzStartWday=wtTrapReceiver2x2StTzStartWday, wtWebioEA2x2PortLogicInputInverter=wtWebioEA2x2PortLogicInputInverter, wtIpWatcherFTPAccount=wtIpWatcherFTPAccount)
mibBuilder.exportSymbols("Webio-Digital-MIB-US", wtWebAlarm6x6DiagErrorCount=wtWebAlarm6x6DiagErrorCount, wtWebioEA2x2BinaryUdpPeerApplicationMode=wtWebioEA2x2BinaryUdpPeerApplicationMode, wtWebioEA2x2BinaryTcpClientInputTrigger=wtWebioEA2x2BinaryTcpClientInputTrigger, wtWebioEA12x6RelTzOffsetMin=wtWebioEA12x6RelTzOffsetMin, wtIpWatcherClockYear=wtIpWatcherClockYear, wtWebioEA2x2ERP_24VAlert15=wtWebioEA2x2ERP_24VAlert15, wtWebioEA24oemDiagErrorIndex=wtWebioEA24oemDiagErrorIndex, wtWebAlarm6x6AlarmTcpTrapTxEnable=wtWebAlarm6x6AlarmTcpTrapTxEnable, wtWebioEA2x2ERPWayBackEnable=wtWebioEA2x2ERPWayBackEnable, wtWebioEA2x2_24VAlert6=wtWebioEA2x2_24VAlert6, wtWebioEA2x2_24VAlert7=wtWebioEA2x2_24VAlert7, wtIpWatcher_24VInputs=wtIpWatcher_24VInputs, wtWebioEA2x2PortInputBicountPulsePolarity=wtWebioEA2x2PortInputBicountPulsePolarity, wtWebioEA2x2AlertDiag=wtWebioEA2x2AlertDiag, wtWebioEA12x6RelIpAddress=wtWebioEA12x6RelIpAddress, wtWebioEA6x6StTzStopMode=wtWebioEA6x6StTzStopMode, wtWebioEA12x12UdpEnable=wtWebioEA12x12UdpEnable, wtWebioEA12x12AlarmInterval=wtWebioEA12x12AlarmInterval, wtIpWatcherSessCntrlConfigPassword=wtIpWatcherSessCntrlConfigPassword, wtWebCount6ReportTimerCron=wtWebCount6ReportTimerCron, wtWebioEA6x6AlarmTcpPort=wtWebioEA6x6AlarmTcpPort, wtWebioEA12x6RelOutputModeEntry=wtWebioEA12x6RelOutputModeEntry, wtWebioEA2x2ERP_24VBinaryTcpClientServerPassword=wtWebioEA2x2ERP_24VBinaryTcpClientServerPassword, wtIpWatcher_24VInputNo=wtIpWatcher_24VInputNo, wtTrapReceiver2x2OutputEntry=wtTrapReceiver2x2OutputEntry, wtWebioEA24oemInputPortTable=wtWebioEA24oemInputPortTable, wtWebioEA2x2ERPInputs=wtWebioEA2x2ERPInputs, wtWebioEA6x6TsEnable=wtWebioEA6x6TsEnable, wtIpWatcherTzEnable=wtIpWatcherTzEnable, wtWebioEA2x2ERP_24VAlarmMailReleaseSubject=wtWebioEA2x2ERP_24VAlarmMailReleaseSubject, wtIpWatcher_24VAlert16=wtIpWatcher_24VAlert16, wtWebioEA2x2ERPPortLogicInputMask=wtWebioEA2x2ERPPortLogicInputMask, wtIpWatcherSetOutput=wtIpWatcherSetOutput, wtWebioEA2x2ERPPortOutputSafetyState=wtWebioEA2x2ERPPortOutputSafetyState, wtWebioEA2x2ERP_24VFTPAccount=wtWebioEA2x2ERP_24VFTPAccount, wtWebioEA2x2ERP_24VSessCntrlConfigPassword=wtWebioEA2x2ERP_24VSessCntrlConfigPassword, wtWebioEA6x6InputPortTable=wtWebioEA6x6InputPortTable, wtWebioEA12x6RelERPAlarmTimerCron=wtWebioEA12x6RelERPAlarmTimerCron, wtIpWatcher_24VAlert30=wtIpWatcher_24VAlert30, wtWebioEA2x2ERPAlert17=wtWebioEA2x2ERPAlert17, wtWebioEA12x6RelERPTimeServer=wtWebioEA12x6RelERPTimeServer, wtWebioEA24oemPortInputFilter=wtWebioEA24oemPortInputFilter, wtWebAlarm6x6Alert17=wtWebAlarm6x6Alert17, wtWebioEA12x6RelERPSnmpCommunityStringRead=wtWebioEA12x6RelERPSnmpCommunityStringRead, wtWebioEA6x6TimeServer=wtWebioEA6x6TimeServer, wtWebioEA2x2SessCntrlAdminPassword=wtWebioEA2x2SessCntrlAdminPassword, wtWebioEA2x2ERPBinaryUdpPeerApplicationMode=wtWebioEA2x2ERPBinaryUdpPeerApplicationMode, wtWebioEA12x6RelERPAlarmInputTrigger=wtWebioEA12x6RelERPAlarmInputTrigger, wtIpWatcher_24VSessCntrlPassword=wtIpWatcher_24VSessCntrlPassword, wtTrapReceiver2x2StTzOffsetMin=wtTrapReceiver2x2StTzOffsetMin, wtIpWatcher_24VAlert7=wtIpWatcher_24VAlert7, wtWebioEA2x2ERPDevice=wtWebioEA2x2ERPDevice, wtWebioEA2x2ERP_24VSnmpEnable=wtWebioEA2x2ERP_24VSnmpEnable, wtWebAlarm6x6StTzOffsetMin=wtWebAlarm6x6StTzOffsetMin, wtWebAlarm6x6Alert20=wtWebAlarm6x6Alert20, wtIpWatcher_24VPowerSupplyEnable=wtIpWatcher_24VPowerSupplyEnable, wtWebioEA24oemLoadControlEnable=wtWebioEA24oemLoadControlEnable, wtWebioEA12x12PortOutputGroupMode=wtWebioEA12x12PortOutputGroupMode, wtWebioEA12x6RelBinaryModeNo=wtWebioEA12x6RelBinaryModeNo, wtIpWatcherAlarmSyslogTrapTxEnable=wtIpWatcherAlarmSyslogTrapTxEnable, wtWebioEA6x6Basic=wtWebioEA6x6Basic, wtWebCount6SessCntrlConfigMode=wtWebCount6SessCntrlConfigMode, wtWebCount6Alert4=wtWebCount6Alert4, wtWebioEA12x6RelERPBinaryTcpServerClientHttpPort=wtWebioEA12x6RelERPBinaryTcpServerClientHttpPort, wtWebioEA6x6ClockDay=wtWebioEA6x6ClockDay, wtWebioEA6x6BinaryTcpClientInactivity=wtWebioEA6x6BinaryTcpClientInactivity, wtWebioEA2x2AlarmEntry=wtWebioEA2x2AlarmEntry, wtIpWatcherAlert21=wtIpWatcherAlert21, wtWebioEA6x6ClockHrs=wtWebioEA6x6ClockHrs, wtWebCount6InputState=wtWebCount6InputState, wtWebioEA12x12AlarmFtpReleaseText=wtWebioEA12x12AlarmFtpReleaseText, wtWebioEA2x2ERP_24VAlarmUdpReleaseText=wtWebioEA2x2ERP_24VAlarmUdpReleaseText, wtWebioEA24oemSessCntrlConfigPassword=wtWebioEA24oemSessCntrlConfigPassword, wtWebioEA24oemSnmpEnable=wtWebioEA24oemSnmpEnable, wtWebioEA12x12AlarmOutputTrigger=wtWebioEA12x12AlarmOutputTrigger, wtWebioEA24oemIpAddress=wtWebioEA24oemIpAddress, wtIpWatcherClockDay=wtIpWatcherClockDay, wtWebioEA2x2ERPStTzStopHrs=wtWebioEA2x2ERPStTzStopHrs, wtWebioEA2x2Alert22=wtWebioEA2x2Alert22, wtTrapReceiver2x2MfDeviceTyp=wtTrapReceiver2x2MfDeviceTyp, wtWebioEA24oemAlarmTable=wtWebioEA24oemAlarmTable, wtWebioEA6x6OutputPortEntry=wtWebioEA6x6OutputPortEntry, wtIpWatcherAlert14=wtIpWatcherAlert14, wtWebioEA2x2_24VDiagErrorCount=wtWebioEA2x2_24VDiagErrorCount, wtWebioEA24oemAlert11=wtWebioEA24oemAlert11, wtWebioEA12x6RelBinaryUdpPeerInterval=wtWebioEA12x6RelBinaryUdpPeerInterval, wtWebioEA2x2_24VPortLogicFunction=wtWebioEA2x2_24VPortLogicFunction, wtWebAlarm6x6AlarmSnmpTrapTrgClearText=wtWebAlarm6x6AlarmSnmpTrapTrgClearText, wtWebioEA2x2ERPBinaryConnectedPort=wtWebioEA2x2ERPBinaryConnectedPort, wtTrapReceiver2x2MailAuthPassword=wtTrapReceiver2x2MailAuthPassword, wtWebioEA2x2_24VPowerSupplyEnable=wtWebioEA2x2_24VPowerSupplyEnable, wtWebioEA2x2_24VSnmpCommunityStringReadWrite=wtWebioEA2x2_24VSnmpCommunityStringReadWrite, wtTrapReceiver2x2InputState=wtTrapReceiver2x2InputState, wtIpWatcher_24VAlert3=wtIpWatcher_24VAlert3, wtWebioEA12x12Alert21=wtWebioEA12x12Alert21, wtWebioEA12x6RelERPMail=wtWebioEA12x6RelERPMail, wtWebioEA12x12ClockDay=wtWebioEA12x12ClockDay, wtWebioEA24oemStTzStopMonth=wtWebioEA24oemStTzStopMonth, wtWebCount6ReportOutputEntry=wtWebCount6ReportOutputEntry, wtWebioEA12x6RelOutputState=wtWebioEA12x6RelOutputState, wtIpWatcher_24VPortOutputText=wtIpWatcher_24VPortOutputText, wtWebioEA2x2OutputModeTable=wtWebioEA2x2OutputModeTable, wtIpWatcherHTTP=wtIpWatcherHTTP, wtWebioEA2x2ERP_24VAlarmTcpIpAddr=wtWebioEA2x2ERP_24VAlarmTcpIpAddr, wtWebioEA2x2ERPSyslogServerIP=wtWebioEA2x2ERPSyslogServerIP, wtWebioEA24oemAlarmSyslogIpAddr=wtWebioEA24oemAlarmSyslogIpAddr, wtIpWatcher_24VMailAuthentication=wtIpWatcher_24VMailAuthentication, wtWebioEA2x2StTzStartMonth=wtWebioEA2x2StTzStartMonth, wtWebAlarm6x6StTzStopWday=wtWebAlarm6x6StTzStopWday, wtWebioEA12x6RelBinaryUdpPeerLocalPort=wtWebioEA12x6RelBinaryUdpPeerLocalPort, wtIpWatcher_24VDnsServer1=wtIpWatcher_24VDnsServer1, wtIpWatcherPortPulseDuration=wtIpWatcherPortPulseDuration, wtTrapReceiver2x2ButtonPortTable=wtTrapReceiver2x2ButtonPortTable, wtWebAlarm6x6Alert33=wtWebAlarm6x6Alert33, wtWebioEA6x6Startup=wtWebioEA6x6Startup, wtWebAlarm6x6Alert31=wtWebAlarm6x6Alert31, wtWebioEA6x6Network=wtWebioEA6x6Network, wtWebioEA12x12StTzStopMin=wtWebioEA12x12StTzStopMin, wtWebioEA2x2AlarmFtpDataPort=wtWebioEA2x2AlarmFtpDataPort, wtWebioEA2x2ERP=wtWebioEA2x2ERP, wtWebioEA2x2_24VAlarmInputTrigger=wtWebioEA2x2_24VAlarmInputTrigger, wtIpWatcher_24VAlarmName=wtIpWatcher_24VAlarmName, wtWebioEA2x2PortOutputName=wtWebioEA2x2PortOutputName, wtWebioEA2x2_24VInputEntry=wtWebioEA2x2_24VInputEntry, wtWebioEA24oemSnmpCommunityStringRead=wtWebioEA24oemSnmpCommunityStringRead, wtTrapReceiver2x2Alert12=wtTrapReceiver2x2Alert12, wtWebioEA24oemSessCntrlPassword=wtWebioEA24oemSessCntrlPassword, wtWebioEA24oemBinaryTcpServerApplicationMode=wtWebioEA24oemBinaryTcpServerApplicationMode, wtWebioEA2x2ERP_24VMfInternet=wtWebioEA2x2ERP_24VMfInternet, wtWebioEA6x6SessCntrlConfigMode=wtWebioEA6x6SessCntrlConfigMode, wtWebioEA12x6RelClockMin=wtWebioEA12x6RelClockMin, wtIpWatcherAlarmMailAddr=wtIpWatcherAlarmMailAddr, wtWebioEA24oemPortInputText=wtWebioEA24oemPortInputText, wtWebAlarm6x6AlertDiag=wtWebAlarm6x6AlertDiag, wtTrapReceiver2x2StTzStartHrs=wtTrapReceiver2x2StTzStartHrs, wtWebioEA24oemDeviceName=wtWebioEA24oemDeviceName, wtWebioEA12x6RelERPHttpPort=wtWebioEA12x6RelERPHttpPort, wtWebioEA2x2BinaryTcpClientServerIpAddr=wtWebioEA2x2BinaryTcpClientServerIpAddr, wtWebioEA2x2ERPClockMonth=wtWebioEA2x2ERPClockMonth, wtWebioEA12x12Alert9=wtWebioEA12x12Alert9, wtWebAlarm6x6AlarmSyslogTrapTxEnable=wtWebAlarm6x6AlarmSyslogTrapTxEnable, wtWebioEA12x6RelERPAlert12=wtWebioEA12x6RelERPAlert12, wtWebioEA6x6SnmpSystemTrapEnable=wtWebioEA6x6SnmpSystemTrapEnable, wtWebioEA24oemUDP=wtWebioEA24oemUDP, wtIpWatcher_24VText=wtIpWatcher_24VText, wtWebioEA2x2_24VFTPOption=wtWebioEA2x2_24VFTPOption, wtWebioEA12x12DeviceContact=wtWebioEA12x12DeviceContact, wtWebioEA2x2_24VTzOffsetHrs=wtWebioEA2x2_24VTzOffsetHrs, wtWebioEA2x2ERP_24VSubnetMask=wtWebioEA2x2ERP_24VSubnetMask, wtWebioEA12x6RelDnsServer2=wtWebioEA12x6RelDnsServer2, wtWebioEA24oemOutputMode=wtWebioEA24oemOutputMode, wtWebioEA6x6DiagErrorCount=wtWebioEA6x6DiagErrorCount, wtIpWatcher_24VAlarmMailTrapTxEnable=wtIpWatcher_24VAlarmMailTrapTxEnable, wtWebioEA12x6RelERPAlert1=wtWebioEA12x6RelERPAlert1, wtWebAlarm6x6DeviceContact=wtWebAlarm6x6DeviceContact, wtIpWatcher_24VMailPop3Server=wtIpWatcher_24VMailPop3Server, wtWebioEA2x2ERP_24VAlarmSyslogIpAddr=wtWebioEA2x2ERP_24VAlarmSyslogIpAddr, wtWebioEA2x2ERPInputNo=wtWebioEA2x2ERPInputNo, wtWebioEA24oemInputCounterClear=wtWebioEA24oemInputCounterClear, wtWebioEA12x6RelERPWayBackFTPTimeOut=wtWebioEA12x6RelERPWayBackFTPTimeOut, wtTrapReceiver2x2PortInputText=wtTrapReceiver2x2PortInputText, wtWebioEA2x2ERPNetwork=wtWebioEA2x2ERPNetwork, wtWebioEA12x6RelERPBinaryUdpPeerInterval=wtWebioEA12x6RelERPBinaryUdpPeerInterval, wtWebioEA24oemBinaryIfEntry=wtWebioEA24oemBinaryIfEntry, wtWebAlarm6x6AlarmTcpIpAddr=wtWebAlarm6x6AlarmTcpIpAddr, wtWebAlarm6x6Text=wtWebAlarm6x6Text, wtWebio=wtWebio, wtWebAlarm6x6AlarmIfTable=wtWebAlarm6x6AlarmIfTable, wtWebioEA12x12InputCounterClear=wtWebioEA12x12InputCounterClear, wtWebioEA2x2ERPOutputNo=wtWebioEA2x2ERPOutputNo, wtWebioEA12x6RelAlarmUdpReleaseText=wtWebioEA12x6RelAlarmUdpReleaseText, wtWebioEA24oemMfDeviceTyp=wtWebioEA24oemMfDeviceTyp, wtWebioEA12x6RelERPBinary=wtWebioEA12x6RelERPBinary, wtWebioEA2x2ERPAlarmUdpText=wtWebioEA2x2ERPAlarmUdpText, wtWebioEA12x6RelBinaryTcpClientServerHttpPort=wtWebioEA12x6RelBinaryTcpClientServerHttpPort, wtWebioEA12x12Alarm=wtWebioEA12x12Alarm, wtIpWatcherMail=wtIpWatcherMail, wtIpWatcherFTPEnable=wtIpWatcherFTPEnable, wtIpWatcher_24VIpListName=wtIpWatcher_24VIpListName, wtTrapReceiver2x2PortButtonName=wtTrapReceiver2x2PortButtonName, wtWebioEA2x2ERPOutputEntry=wtWebioEA2x2ERPOutputEntry, wtWebioEA12x12Alert15=wtWebioEA12x12Alert15, wtWebioEA6x6StTzStartWday=wtWebioEA6x6StTzStartWday, wtIpWatcher_24VIpListCount=wtIpWatcher_24VIpListCount, wtIpWatcher_24VAlarmIfEntry=wtIpWatcher_24VAlarmIfEntry, wtWebioEA24oemMfAddr=wtWebioEA24oemMfAddr, wtWebAlarm6x6AlarmTcpText=wtWebAlarm6x6AlarmTcpText, wtIpWatcherAlert20=wtIpWatcherAlert20, wtWebioEA12x6RelERPBinaryOperationMode=wtWebioEA12x6RelERPBinaryOperationMode, wtWebioEA2x2ERPDeviceClock=wtWebioEA2x2ERPDeviceClock, wtWebioEA6x6AlarmInputTrigger=wtWebioEA6x6AlarmInputTrigger, wtWebioEA2x2ERP_24VPortPulsePolarity=wtWebioEA2x2ERP_24VPortPulsePolarity, wtWebioEA6x6FTPServerIP=wtWebioEA6x6FTPServerIP, wtWebioEA2x2ERPSessCntrlPassword=wtWebioEA2x2ERPSessCntrlPassword, wtTrapReceiver2x2PortPulseDuration=wtTrapReceiver2x2PortPulseDuration, wtWebioEA2x2ERP_24VAlarmFtpText=wtWebioEA2x2ERP_24VAlarmFtpText, wtWebioEA12x12Alert1=wtWebioEA12x12Alert1, wtWebioEA12x6RelERPPortOutputSafetyState=wtWebioEA12x6RelERPPortOutputSafetyState, wtWebioEA12x6RelAlert12=wtWebioEA12x6RelAlert12, wtWebioEA2x2ERP_24VBinaryUdpPeerApplicationMode=wtWebioEA2x2ERP_24VBinaryUdpPeerApplicationMode, wtWebioEA6x6StTzStopHrs=wtWebioEA6x6StTzStopHrs, wtWebioEA12x12AlarmSystemTrigger=wtWebioEA12x12AlarmSystemTrigger, wtIpWatcher_24VAlert1=wtIpWatcher_24VAlert1, wtWebioEA24oemBinaryModeCount=wtWebioEA24oemBinaryModeCount, wtIpWatcherAlert30=wtIpWatcherAlert30, wtWebioEA12x6RelMfInternet=wtWebioEA12x6RelMfInternet, wtWebioEA2x2_24VAlarmSyslogText=wtWebioEA2x2_24VAlarmSyslogText, wtTrapReceiver2x2=wtTrapReceiver2x2, wtWebioEA12x6RelERPAlert5=wtWebioEA12x6RelERPAlert5, wtWebCount6ClockMin=wtWebCount6ClockMin, wtWebioEA12x6RelPortOutputGroupMode=wtWebioEA12x6RelPortOutputGroupMode, wtWebioEA2x2PortInputText=wtWebioEA2x2PortInputText, wtWebioEA2x2Startup=wtWebioEA2x2Startup, wtTrapReceiver2x2DiagErrorClear=wtTrapReceiver2x2DiagErrorClear, wtWebAlarm6x6Alert34=wtWebAlarm6x6Alert34, wtWebioEA12x6RelERPInputTable=wtWebioEA12x6RelERPInputTable, wtWebioEA12x6RelERPOutputMode=wtWebioEA12x6RelERPOutputMode, wtWebAlarm6x6DeviceClock=wtWebAlarm6x6DeviceClock, wtWebAlarm6x6AlarmOutputState=wtWebAlarm6x6AlarmOutputState, wtWebioEA2x2_24VOutputMode=wtWebioEA2x2_24VOutputMode, wtWebioEA12x12Config=wtWebioEA12x12Config, wtIpWatcherAlert31=wtIpWatcherAlert31, wtWebioEA6x6DeviceLocation=wtWebioEA6x6DeviceLocation, wtWebioEA24oemAlarmNo=wtWebioEA24oemAlarmNo, wtIpWatcherAlarmUdpIpAddr=wtIpWatcherAlarmUdpIpAddr, wtIpWatcher_24VMfName=wtIpWatcher_24VMfName, wtTrapReceiver2x2OutputValue=wtTrapReceiver2x2OutputValue, wtWebioEA2x2ERP_24VStartup=wtWebioEA2x2ERP_24VStartup, wtWebioEA2x2ERP_24VTzOffsetHrs=wtWebioEA2x2ERP_24VTzOffsetHrs, wtWebioEA2x2_24VPortLogicInputMask=wtWebioEA2x2_24VPortLogicInputMask, wtWebioEA24oemBinaryTcpClientServerPort=wtWebioEA24oemBinaryTcpClientServerPort, wtWebioEA2x2Alert6=wtWebioEA2x2Alert6, wtWebioEA6x6OutputState=wtWebioEA6x6OutputState, wtTrapReceiver2x2OutputNo=wtTrapReceiver2x2OutputNo, wtWebCount6TzOffsetHrs=wtWebCount6TzOffsetHrs, wtWebioEA6x6MailReply=wtWebioEA6x6MailReply, wtWebioEA2x2AlarmIfTable=wtWebioEA2x2AlarmIfTable, wtWebCount6ReportFtpDataPort=wtWebCount6ReportFtpDataPort, wtWebioEA12x6RelPortInputName=wtWebioEA12x6RelPortInputName, wtWebioEA2x2_24VAlertDiag=wtWebioEA2x2_24VAlertDiag, wtWebioEA12x6RelERPStTzStopMonth=wtWebioEA12x6RelERPStTzStopMonth, wtIpWatcher_24VAlert31=wtIpWatcher_24VAlert31, wtWebioEA12x6RelERPWayBackFTPPassword=wtWebioEA12x6RelERPWayBackFTPPassword, wtWebioEA24oemStartup=wtWebioEA24oemStartup, wtIpWatcher_24VAlarmMailAddr=wtIpWatcher_24VAlarmMailAddr, wtIpWatcherAlarmMailText=wtIpWatcherAlarmMailText, wtWebioEA2x2_24VFTPPassword=wtWebioEA2x2_24VFTPPassword, wtWebAlarm6x6Alert11=wtWebAlarm6x6Alert11, wtWebioEA6x6SnmpSystemTrapManagerIP=wtWebioEA6x6SnmpSystemTrapManagerIP, wtWebioEA2x2ERP_24VHttpPort=wtWebioEA2x2ERP_24VHttpPort, wtWebioEA2x2SessCntrlPassword=wtWebioEA2x2SessCntrlPassword, wtWebCount6StTzStopMin=wtWebCount6StTzStopMin, wtWebioEA12x6RelERPDnsServer2=wtWebioEA12x6RelERPDnsServer2, wtWebioEA12x12DiagErrorMessage=wtWebioEA12x12DiagErrorMessage)
mibBuilder.exportSymbols("Webio-Digital-MIB-US", wtIpWatcher_24VIpListIfTable=wtIpWatcher_24VIpListIfTable, wtWebioEA2x2DiagBinaryError=wtWebioEA2x2DiagBinaryError, wtWebioEA12x6RelERPSessCntrlConfigMode=wtWebioEA12x6RelERPSessCntrlConfigMode, wtWebioEA2x2_24VMail=wtWebioEA2x2_24VMail, wtWebioEA12x6RelAlarmTcpIpAddr=wtWebioEA12x6RelAlarmTcpIpAddr, wtWebAlarm6x6Alert16=wtWebAlarm6x6Alert16, wtWebioEA12x6RelInputCounterClear=wtWebioEA12x6RelInputCounterClear, wtWebAlarm6x6MfInternet=wtWebAlarm6x6MfInternet, wtWebioEA2x2ERP_24VPorts=wtWebioEA2x2ERP_24VPorts, wtWebioEA6x6AlarmTimerCron=wtWebioEA6x6AlarmTimerCron, wtWebioEA2x2SnmpCommunityStringReadWrite=wtWebioEA2x2SnmpCommunityStringReadWrite, wtWebioEA12x6RelStTzStartHrs=wtWebioEA12x6RelStTzStartHrs, wtWebioEA2x2ERP_24VSessCntrlConfigMode=wtWebioEA2x2ERP_24VSessCntrlConfigMode, wtWebioEA12x6RelAlarmSyslogText=wtWebioEA12x6RelAlarmSyslogText, wtWebioEA2x2ERP_24VInputValue=wtWebioEA2x2ERP_24VInputValue, wtWebioEA2x2ERPIpAddress=wtWebioEA2x2ERPIpAddress, wtWebioEA12x12InputState=wtWebioEA12x12InputState, wtWebAlarm6x6DeviceText=wtWebAlarm6x6DeviceText, wtWebioEA12x6RelERPSessCntrl=wtWebioEA12x6RelERPSessCntrl, wtWebioEA6x6Mail=wtWebioEA6x6Mail, wtWebioEA6x6TsSyncTime=wtWebioEA6x6TsSyncTime, wtWebioEA2x2_24VFTP=wtWebioEA2x2_24VFTP, wtWebioEA2x2AlarmNo=wtWebioEA2x2AlarmNo, wtTrapReceiver2x2FTPOption=wtTrapReceiver2x2FTPOption, wtWebioEA12x12SyslogServerPort=wtWebioEA12x12SyslogServerPort, wtWebioEA12x6RelERPGetHeaderEnable=wtWebioEA12x6RelERPGetHeaderEnable, wtTrapReceiver2x2InEvInputs=wtTrapReceiver2x2InEvInputs, wtWebioEA12x6RelERPBinaryIfTable=wtWebioEA12x6RelERPBinaryIfTable, wtWebioEA12x12Alert4=wtWebioEA12x12Alert4, wtIpWatcher_24VOutputEntry=wtIpWatcher_24VOutputEntry, wtTrapReceiver2x2Alert10=wtTrapReceiver2x2Alert10, wtWebioEA2x2_24VFTPServerIP=wtWebioEA2x2_24VFTPServerIP, wtWebioEA12x12AlarmTimerCron=wtWebioEA12x12AlarmTimerCron, wtWebioEA12x6RelERPPortInputName=wtWebioEA12x6RelERPPortInputName, wtWebioEA24oemTimeDate=wtWebioEA24oemTimeDate, wtIpWatcher_24VAlarmTcpTrapTxEnable=wtIpWatcher_24VAlarmTcpTrapTxEnable, wtWebAlarm6x6DiagErrorClear=wtWebAlarm6x6DiagErrorClear, wtWebioEA6x6BinaryModeNo=wtWebioEA6x6BinaryModeNo, wtWebioEA2x2ERPMailAuthUser=wtWebioEA2x2ERPMailAuthUser, wtWebioEA6x6FTPUserName=wtWebioEA6x6FTPUserName, wtWebioEA6x6FTPPassword=wtWebioEA6x6FTPPassword, wtWebioEA2x2ERP_24VAlert2=wtWebioEA2x2ERP_24VAlert2, wtTrapReceiver2x2PowerSupplyEnable=wtTrapReceiver2x2PowerSupplyEnable, wtWebioEA12x6RelERPOutputPortTable=wtWebioEA12x6RelERPOutputPortTable, wtWebioEA12x12SyslogEnable=wtWebioEA12x12SyslogEnable, wtWebioEA24oemOutputNo=wtWebioEA24oemOutputNo, wtWebAlarm6x6MailEnable=wtWebAlarm6x6MailEnable, wtWebioEA2x2Alert1=wtWebioEA2x2Alert1, wtWebioEA24oemAlert6=wtWebioEA24oemAlert6, wtIpWatcherDiagErrorMessage=wtIpWatcherDiagErrorMessage, wtWebCount6InOut=wtWebCount6InOut, wtWebioEA24oemMailPop3Server=wtWebioEA24oemMailPop3Server, wtWebCount6ReportUdpPort=wtWebCount6ReportUdpPort, wtIpWatcher_24VAlert33=wtIpWatcher_24VAlert33, wtWebioEA24oemSyslogServerIP=wtWebioEA24oemSyslogServerIP, wtWebioEA2x2ERP_24VStTzStopMonth=wtWebioEA2x2ERP_24VStTzStopMonth, wtWebioEA2x2AlarmOutputTrigger=wtWebioEA2x2AlarmOutputTrigger, wtWebioEA12x6RelERPAlarmTcpIpAddr=wtWebioEA12x6RelERPAlarmTcpIpAddr, wtWebioEA2x2_24VAlarmSyslogPort=wtWebioEA2x2_24VAlarmSyslogPort, wtWebioEA2x2_24VMailAdName=wtWebioEA2x2_24VMailAdName, wtWebioEA6x6AlarmUdpText=wtWebioEA6x6AlarmUdpText, wtIpWatcher_24VMailServer=wtIpWatcher_24VMailServer, wtWebioEA2x2ERPAlarmTcpReleaseText=wtWebioEA2x2ERPAlarmTcpReleaseText, wtWebioEA6x6BinaryUdpPeerApplicationMode=wtWebioEA6x6BinaryUdpPeerApplicationMode, wtWebioEA2x2_24VSnmpEnable=wtWebioEA2x2_24VSnmpEnable, wtWebioEA24oemAlert16=wtWebioEA24oemAlert16, wtWebioEA2x2ERP_24VBinaryTcpServerInputTrigger=wtWebioEA2x2ERP_24VBinaryTcpServerInputTrigger, wtWebioEA6x6Alert10=wtWebioEA6x6Alert10, wtWebioEA2x2ERPDeviceName=wtWebioEA2x2ERPDeviceName, wtWebioEA12x6RelERPBinaryTcpServerLocalPort=wtWebioEA12x6RelERPBinaryTcpServerLocalPort, wtWebCount6ReportUdpText=wtWebCount6ReportUdpText, wtWebAlarm6x6MfName=wtWebAlarm6x6MfName, wtWebioEA6x6PortInputBicountPulsePolarity=wtWebioEA6x6PortInputBicountPulsePolarity, wtWebioEA2x2SnmpCommunityStringRead=wtWebioEA2x2SnmpCommunityStringRead, wtWebioEA12x6RelERPBinaryTcpClientLocalPort=wtWebioEA12x6RelERPBinaryTcpClientLocalPort, wtWebioEA6x6OutputMode=wtWebioEA6x6OutputMode, wtWebioEA12x12DiagErrorIndex=wtWebioEA12x12DiagErrorIndex, wtWebCount6ReportInterval=wtWebCount6ReportInterval, wtWebioEA2x2_24VFTPAccount=wtWebioEA2x2_24VFTPAccount, wtTrapReceiver2x2FTP=wtTrapReceiver2x2FTP, wtIpWatcher_24VAlarmIfTable=wtIpWatcher_24VAlarmIfTable, wtWebioEA24oemAlert3=wtWebioEA24oemAlert3, wtWebioEA2x2MfDeviceTyp=wtWebioEA2x2MfDeviceTyp, wtTrapReceiver2x2StTzStopWday=wtTrapReceiver2x2StTzStopWday, wtWebioEA12x12SnmpCommunityStringRead=wtWebioEA12x12SnmpCommunityStringRead, wtIpWatcher_24VDeviceClock=wtIpWatcher_24VDeviceClock, wtWebioEA2x2_24VAlarmMailSubject=wtWebioEA2x2_24VAlarmMailSubject, wtWebioEA12x12BinaryUdpPeerRemotePort=wtWebioEA12x12BinaryUdpPeerRemotePort, wtWebioEA12x6RelAlert18=wtWebioEA12x6RelAlert18, wtWebioEA2x2ERP_24VAlert21=wtWebioEA2x2ERP_24VAlert21, wtWebAlarm6x6AlarmMailTrapTxEnable=wtWebAlarm6x6AlarmMailTrapTxEnable, wtIpWatcherOutputEntry=wtIpWatcherOutputEntry, wtWebioEA24oemBinaryTcpClientServerPassword=wtWebioEA24oemBinaryTcpClientServerPassword, wtWebioEA12x6RelAlarmSnmpTrapReleaseText=wtWebioEA12x6RelAlarmSnmpTrapReleaseText, wtWebioEA2x2ERPSessCntrlConfigPassword=wtWebioEA2x2ERPSessCntrlConfigPassword, wtWebCount6DnsServer2=wtWebCount6DnsServer2, wtIpWatcher_24VAlert12=wtIpWatcher_24VAlert12, wtWebioEA24oemDiagBinaryError=wtWebioEA24oemDiagBinaryError, wtWebAlarm6x6Alert14=wtWebAlarm6x6Alert14, wtIpWatcher_24VAlertDiag=wtIpWatcher_24VAlertDiag, wtWebioEA2x2_24VOutputState=wtWebioEA2x2_24VOutputState, wtWebioEA24oemTzEnable=wtWebioEA24oemTzEnable, wtWebioEA12x6RelERPAlarmSystemTrigger=wtWebioEA12x6RelERPAlarmSystemTrigger, wtIpWatcherAddConfig=wtIpWatcherAddConfig, wtTrapReceiver2x2MfInternet=wtTrapReceiver2x2MfInternet, wtWebioEA2x2ERP_24VLCShutDownView=wtWebioEA2x2ERP_24VLCShutDownView, wtIpWatcher_24VAlert17=wtIpWatcher_24VAlert17, wtWebioEA2x2InputTable=wtWebioEA2x2InputTable, wtWebioEA6x6BinaryUdpPeerRemotePort=wtWebioEA6x6BinaryUdpPeerRemotePort, wtWebioEA24oemSafetyTimeout=wtWebioEA24oemSafetyTimeout, wtWebioEA2x2ERP_24VBinaryUdpPeerRemotePort=wtWebioEA2x2ERP_24VBinaryUdpPeerRemotePort, wtTrapReceiver2x2SessCntrlConfigPassword=wtTrapReceiver2x2SessCntrlConfigPassword, wtIpWatcher_24VMfInternet=wtIpWatcher_24VMfInternet, wtWebioEA6x6PortLogicInputInverter=wtWebioEA6x6PortLogicInputInverter, wtWebioEA2x2ERP_24VInputPortTable=wtWebioEA2x2ERP_24VInputPortTable, wtWebioEA6x6Diag=wtWebioEA6x6Diag, wtWebioEA2x2ERP_24VUdpEnable=wtWebioEA2x2ERP_24VUdpEnable, wtTrapReceiver2x2SystemTimerPortEntry=wtTrapReceiver2x2SystemTimerPortEntry, wtWebioEA6x6StTzStopWday=wtWebioEA6x6StTzStopWday, wtWebCount6ReportMaxCounterValue=wtWebCount6ReportMaxCounterValue, wtIpWatcher_24VSyslogServerPort=wtIpWatcher_24VSyslogServerPort, wtTrapReceiver2x2MailAuthentication=wtTrapReceiver2x2MailAuthentication, wtWebioEA2x2Syslog=wtWebioEA2x2Syslog, wtWebioEA12x6RelMfOrderNo=wtWebioEA12x6RelMfOrderNo, wtWebioEA6x6MfHotline=wtWebioEA6x6MfHotline, wtWebioEA12x6RelStartup=wtWebioEA12x6RelStartup, wtWebioEA24oemDeviceLocation=wtWebioEA24oemDeviceLocation, wtWebioEA6x6Alert3=wtWebioEA6x6Alert3, wtWebioEA6x6Alert1=wtWebioEA6x6Alert1, wtWebioEA12x6RelERPFTPPassword=wtWebioEA12x6RelERPFTPPassword, wtWebioEA2x2_24VAlert9=wtWebioEA2x2_24VAlert9, wtWebCount6SessCntrlLogout=wtWebCount6SessCntrlLogout, wtWebioEA2x2ERPTzOffsetHrs=wtWebioEA2x2ERPTzOffsetHrs, wtWebioEA24oemFTPEnable=wtWebioEA24oemFTPEnable, wtWebioEA12x6RelAddConfig=wtWebioEA12x6RelAddConfig, wtTrapReceiver2x2ActionSnmpManagerIP=wtTrapReceiver2x2ActionSnmpManagerIP, wtWebioEA2x2ERPBinary=wtWebioEA2x2ERPBinary, wtWebioEA6x6FTP=wtWebioEA6x6FTP, wtWebioEA12x12SyslogSystemMessagesEnable=wtWebioEA12x12SyslogSystemMessagesEnable, wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText=wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText, wtWebioEA2x2ERPStTzStartWday=wtWebioEA2x2ERPStTzStartWday, wtWebioEA2x2ERPMfHotline=wtWebioEA2x2ERPMfHotline, wtWebioEA2x2MailAuthPassword=wtWebioEA2x2MailAuthPassword, wtWebioEA2x2ERPSNMP=wtWebioEA2x2ERPSNMP, wtWebAlarm6x6StTzStopHrs=wtWebAlarm6x6StTzStopHrs, wtWebioEA6x6HttpInputTrigger=wtWebioEA6x6HttpInputTrigger, wtWebioEA2x2ERP_24VOutputModeBit=wtWebioEA2x2ERP_24VOutputModeBit, wtTrapReceiver2x2ClockYear=wtTrapReceiver2x2ClockYear, wtIpWatcherDiagErrorIndex=wtIpWatcherDiagErrorIndex, wtTrapReceiver2x2PortButtonAccess=wtTrapReceiver2x2PortButtonAccess, wtWebAlarm6x6Alert12=wtWebAlarm6x6Alert12, wtTrapReceiver2x2WatchListService=wtTrapReceiver2x2WatchListService, wtWebioEA2x2_24VIpAddress=wtWebioEA2x2_24VIpAddress, wtWebioEA2x2BinaryModeNo=wtWebioEA2x2BinaryModeNo, wtWebioEA12x6RelPortInputFilter=wtWebioEA12x6RelPortInputFilter, wtIpWatcherPortInputText=wtIpWatcherPortInputText, wtWebioEA2x2ERP_24VAlarmTable=wtWebioEA2x2ERP_24VAlarmTable, wtTrapReceiver2x2InputNo=wtTrapReceiver2x2InputNo, wtWebioEA12x6RelSnmpSystemTrapEnable=wtWebioEA12x6RelSnmpSystemTrapEnable, wtTrapReceiver2x2ActionUdpPort=wtTrapReceiver2x2ActionUdpPort, wtTrapReceiver2x2MfAddr=wtTrapReceiver2x2MfAddr, wtWebioEA2x2ERPAlarmMailText=wtWebioEA2x2ERPAlarmMailText, wtWebioEA2x2TimeServer2=wtWebioEA2x2TimeServer2, wtWebioEA12x12AlarmSnmpTrapText=wtWebioEA12x12AlarmSnmpTrapText, wtWebioEA6x6GetHeaderEnable=wtWebioEA6x6GetHeaderEnable, wtWebioEA6x6Alert7=wtWebioEA6x6Alert7, wtWebioEA12x12Alert8=wtWebioEA12x12Alert8, wtWebioEA2x2ERP_24VWayBackEnable=wtWebioEA2x2ERP_24VWayBackEnable, wtWebioEA2x2Alert5=wtWebioEA2x2Alert5, wtWebioEA2x2_24VAlarmIfTable=wtWebioEA2x2_24VAlarmIfTable, wtWebCount6TzEnable=wtWebCount6TzEnable, wtWebioEA2x2PortLogicFunction=wtWebioEA2x2PortLogicFunction, wtWebCount6ReportIfTable=wtWebCount6ReportIfTable, wtWebioEA2x2ERPFTPPassword=wtWebioEA2x2ERPFTPPassword, wtWebioEA2x2ERP_24VMailAuthentication=wtWebioEA2x2ERP_24VMailAuthentication, wtWebioEA2x2SyslogSystemMessagesEnable=wtWebioEA2x2SyslogSystemMessagesEnable, wtWebioEA2x2ERPTimeDate=wtWebioEA2x2ERPTimeDate, wtWebCount6StTzStopWday=wtWebCount6StTzStopWday, wtWebioEA12x6RelERPDiagErrorIndex=wtWebioEA12x6RelERPDiagErrorIndex, wtWebioEA12x6RelERPAlert7=wtWebioEA12x6RelERPAlert7, wtWebioEA12x6RelERPAlert21=wtWebioEA12x6RelERPAlert21, wtWebioEA2x2TzEnable=wtWebioEA2x2TzEnable, wtWebAlarm6x6StTzStartMode=wtWebAlarm6x6StTzStartMode, wtWebioEA2x2ERPTimeServer1=wtWebioEA2x2ERPTimeServer1, wtWebioEA2x2_24VBinaryTcpClientInterval=wtWebioEA2x2_24VBinaryTcpClientInterval, wtWebioEA24oemAlert26=wtWebioEA24oemAlert26, wtWebioEA6x6InOut=wtWebioEA6x6InOut, wtWebioEA2x2ERP_24VTimeServer=wtWebioEA2x2ERP_24VTimeServer, wtWebioEA24oemBinary=wtWebioEA24oemBinary, wtWebAlarm6x6ClockYear=wtWebAlarm6x6ClockYear, wtWebioEA2x2TsEnable=wtWebioEA2x2TsEnable, wtWebCount6ReportCounterClear=wtWebCount6ReportCounterClear, wtTrapReceiver2x2PortOutputName=wtTrapReceiver2x2PortOutputName, wtWebioEA2x2ERPTimeZone=wtWebioEA2x2ERPTimeZone, wtWebioEA24oemMailAdName=wtWebioEA24oemMailAdName, wtWebioEA2x2_24VBasic=wtWebioEA2x2_24VBasic, wtIpWatcher_24VFTPUserName=wtIpWatcher_24VFTPUserName, wtWebioEA2x2_24VTimeServer1=wtWebioEA2x2_24VTimeServer1, wtWebioEA6x6MailAdName=wtWebioEA6x6MailAdName, wtWebioEA12x12=wtWebioEA12x12, wtWebioEA24oemAlarmSnmpTrapText=wtWebioEA24oemAlarmSnmpTrapText, wtWebioEA6x6Binary=wtWebioEA6x6Binary, wtWebioEA2x2ERPClockDay=wtWebioEA2x2ERPClockDay, wtWebioEA12x12OutputTable=wtWebioEA12x12OutputTable, wtTrapReceiver2x2Config=wtTrapReceiver2x2Config, wtWebCount6ReportGlobalEnable=wtWebCount6ReportGlobalEnable, wtWebioEA2x2AlarmSyslogReleaseText=wtWebioEA2x2AlarmSyslogReleaseText, wtIpWatcherInputCounterClear=wtIpWatcherInputCounterClear, wtWebioEA12x12HTTP=wtWebioEA12x12HTTP, wtWebioEA2x2AlarmInterval=wtWebioEA2x2AlarmInterval, wtWebioEA12x6RelERPTimeZone=wtWebioEA12x6RelERPTimeZone, wtWebioEA12x6RelConfig=wtWebioEA12x6RelConfig, wtWebioEA12x6RelPortInputMode=wtWebioEA12x6RelPortInputMode, wtWebCount6ReportEntry=wtWebCount6ReportEntry, wtWebioEA12x6RelERPOutputPortEntry=wtWebioEA12x6RelERPOutputPortEntry, wtWebioEA2x2_24VGateway=wtWebioEA2x2_24VGateway, wtIpWatcher_24VStTzEnable=wtIpWatcher_24VStTzEnable, wtWebAlarm6x6AlarmCounterClear=wtWebAlarm6x6AlarmCounterClear, wtIpWatcherDeviceName=wtIpWatcherDeviceName, wtWebioEA12x6RelERPStTzStartMin=wtWebioEA12x6RelERPStTzStartMin, wtTrapReceiver2x2InOut=wtTrapReceiver2x2InOut, wtWebioEA12x12Alert10=wtWebioEA12x12Alert10, wtIpWatcher_24VPorts=wtIpWatcher_24VPorts, wtWebioEA24oemAlert29=wtWebioEA24oemAlert29, wtWebioEA6x6Alert24=wtWebioEA6x6Alert24, wtIpWatcher_24VSessCntrlConfigMode=wtIpWatcher_24VSessCntrlConfigMode, wtIpWatcher_24VStTzStopMode=wtIpWatcher_24VStTzStopMode, wtWebioEA12x12Diag=wtWebioEA12x12Diag, wtWebioEA24oemAlarmInputTrigger=wtWebioEA24oemAlarmInputTrigger, wtWebioEA2x2ERPAlert24=wtWebioEA2x2ERPAlert24, wtWebioEA2x2ERP_24VTsSyncTime=wtWebioEA2x2ERP_24VTsSyncTime, wtWebioEA12x6RelAlarmTimerCron=wtWebioEA12x6RelAlarmTimerCron, wtIpWatcherMfName=wtIpWatcherMfName, wtTrapReceiver2x2InEvSystemTimer=wtTrapReceiver2x2InEvSystemTimer, wtWebioEA2x2ERP_24VBinaryConnectedIpAddr=wtWebioEA2x2ERP_24VBinaryConnectedIpAddr, wtWebioEA12x12BinaryModeNo=wtWebioEA12x12BinaryModeNo, wtTrapReceiver2x2ActionEnable=wtTrapReceiver2x2ActionEnable, wtWebioEA6x6InputEntry=wtWebioEA6x6InputEntry, wtWebioEA12x6RelTzOffsetHrs=wtWebioEA12x6RelTzOffsetHrs, wtWebioEA12x6RelERPInputCounterClear=wtWebioEA12x6RelERPInputCounterClear, wtWebioEA6x6DiagErrorIndex=wtWebioEA6x6DiagErrorIndex, wtTrapReceiver2x2StTzStartMonth=wtTrapReceiver2x2StTzStartMonth, wtWebCount6Gateway=wtWebCount6Gateway, wtWebioEA2x2_24VAddConfig=wtWebioEA2x2_24VAddConfig, wtWebioEA12x6RelFTPServerIP=wtWebioEA12x6RelFTPServerIP, wtWebAlarm6x6DnsServer2=wtWebAlarm6x6DnsServer2, wtWebioEA2x2ERPAlert10=wtWebioEA2x2ERPAlert10, wtIpWatcherAlert25=wtIpWatcherAlert25, wtWebCount6TimeZone=wtWebCount6TimeZone, wtIpWatcher_24VTzOffsetHrs=wtIpWatcher_24VTzOffsetHrs, wtWebioEA6x6BinaryTable=wtWebioEA6x6BinaryTable, wtTrapReceiver2x2MailPop3Server=wtTrapReceiver2x2MailPop3Server, wtIpWatcher_24VMfHotline=wtIpWatcher_24VMfHotline, wtWebioEA2x2_24VMailAuthPassword=wtWebioEA2x2_24VMailAuthPassword)
mibBuilder.exportSymbols("Webio-Digital-MIB-US", wtWebioEA2x2FTPPassword=wtWebioEA2x2FTPPassword, wtWebioEA12x12DeviceText=wtWebioEA12x12DeviceText, wtWebioEA2x2_24VAlarmUdpReleaseText=wtWebioEA2x2_24VAlarmUdpReleaseText, wtWebioEA2x2ERP_24VBinaryTcpClientApplicationMode=wtWebioEA2x2ERP_24VBinaryTcpClientApplicationMode, wtTrapReceiver2x2DnsServer2=wtTrapReceiver2x2DnsServer2, wtWebioEA12x6RelUdpRemotePort=wtWebioEA12x6RelUdpRemotePort, wtWebioEA2x2AlarmMaxCounterValue=wtWebioEA2x2AlarmMaxCounterValue, wtWebioEA12x6RelERPAlarmFtpReleaseText=wtWebioEA12x6RelERPAlarmFtpReleaseText, wtWebioEA6x6Alert8=wtWebioEA6x6Alert8, wtWebioEA2x2ERPBinaryUdpPeerInterval=wtWebioEA2x2ERPBinaryUdpPeerInterval, wtTrapReceiver2x2PortInputName=wtTrapReceiver2x2PortInputName, wtWebioEA12x6RelBinary=wtWebioEA12x6RelBinary, wtTrapReceiver2x2WatchList=wtTrapReceiver2x2WatchList, wtWebioEA2x2_24VInputPortTable=wtWebioEA2x2_24VInputPortTable, wtWebioEA2x2_24VBinaryTcpServerInputTrigger=wtWebioEA2x2_24VBinaryTcpServerInputTrigger, wtWebioEA2x2_24VAlert20=wtWebioEA2x2_24VAlert20, wtWebioEA2x2SyslogEnable=wtWebioEA2x2SyslogEnable, wtTrapReceiver2x2ActionOutputEntry=wtTrapReceiver2x2ActionOutputEntry, wtWebioEA2x2OutputMode=wtWebioEA2x2OutputMode, wtWebioEA24oemInputs=wtWebioEA24oemInputs, wtWebioEA2x2ERPMfDeviceTyp=wtWebioEA2x2ERPMfDeviceTyp, wtIpWatcherAlarmSyslogPort=wtIpWatcherAlarmSyslogPort, wtWebioEA2x2ERPInputCounter=wtWebioEA2x2ERPInputCounter, wtWebioEA2x2_24VPortInputBicountInactivTimeout=wtWebioEA2x2_24VPortInputBicountInactivTimeout, wtWebioEA2x2ERP_24VDnsServer1=wtWebioEA2x2ERP_24VDnsServer1, wtWebioEA2x2_24VBinaryConnectedPort=wtWebioEA2x2_24VBinaryConnectedPort, wtWebioEA2x2ClockMonth=wtWebioEA2x2ClockMonth, wtWebCount6ReportTriggerState=wtWebCount6ReportTriggerState, wtWebioEA12x6RelAlarmUdpIpAddr=wtWebioEA12x6RelAlarmUdpIpAddr, wtWebioEA6x6AlarmNo=wtWebioEA6x6AlarmNo, wtWebioEA24oemAlarmFtpFileName=wtWebioEA24oemAlarmFtpFileName, wtTrapReceiver2x2WatchListSpecificNo=wtTrapReceiver2x2WatchListSpecificNo, wtWebioEA2x2ERP_24VBinaryTcpClientInactivity=wtWebioEA2x2ERP_24VBinaryTcpClientInactivity, wtWebioEA12x6RelInputPortTable=wtWebioEA12x6RelInputPortTable, wtWebCount6SnmpEnable=wtWebCount6SnmpEnable, wtWebioEA12x6RelAlert6=wtWebioEA12x6RelAlert6, wtWebioEA6x6SubnetMask=wtWebioEA6x6SubnetMask, wtWebioEA2x2ERP_24VAlertDiag=wtWebioEA2x2ERP_24VAlertDiag, wtWebioEA24oemSessCntrl=wtWebioEA24oemSessCntrl, wtWebioEA2x2ERPStTzStopWday=wtWebioEA2x2ERPStTzStopWday, wtWebioEA6x6AlarmMailReleaseSubject=wtWebioEA6x6AlarmMailReleaseSubject, wtWebioEA2x2Device=wtWebioEA2x2Device, wtIpWatcher_24VStTzOffsetHrs=wtIpWatcher_24VStTzOffsetHrs, wtWebioEA2x2BinaryTcpClientInactivity=wtWebioEA2x2BinaryTcpClientInactivity, wtWebioEA24oemAlert12=wtWebioEA24oemAlert12, wtWebioEA12x12AlarmTcpReleaseText=wtWebioEA12x12AlarmTcpReleaseText, wtWebAlarm6x6TimeServer=wtWebAlarm6x6TimeServer, wtWebioEA2x2ERPBinaryTcpClientLocalPort=wtWebioEA2x2ERPBinaryTcpClientLocalPort, wtWebioEA2x2ERP_24VAlert4=wtWebioEA2x2ERP_24VAlert4, wtWebioEA2x2ERPBinaryOperationMode=wtWebioEA2x2ERPBinaryOperationMode, wtWebioEA2x2_24VAlarmTimerCron=wtWebioEA2x2_24VAlarmTimerCron, wtWebioEA2x2_24VStTzOffsetHrs=wtWebioEA2x2_24VStTzOffsetHrs, wtWebioEA12x6RelMfName=wtWebioEA12x6RelMfName, wtWebioEA12x12OutputState=wtWebioEA12x12OutputState, wtIpWatcher_24VOutputPortTable=wtIpWatcher_24VOutputPortTable, wtWebioEA2x2_24VAlert3=wtWebioEA2x2_24VAlert3, wtWebioEA2x2ERP_24VUDP=wtWebioEA2x2ERP_24VUDP, wtWebioEA12x6RelERPPortOutputText=wtWebioEA12x6RelERPPortOutputText, wtWebCount6TsSyncTime=wtWebCount6TsSyncTime, wtIpWatcher_24VAlarmSyslogTrgClearText=wtIpWatcher_24VAlarmSyslogTrgClearText, wtWebioEA12x12TsSyncTime=wtWebioEA12x12TsSyncTime, wtTrapReceiver2x2Alert4=wtTrapReceiver2x2Alert4, wtWebioEA6x6MfInternet=wtWebioEA6x6MfInternet, wtWebioEA24oemBinaryTcpClientServerIpAddr=wtWebioEA24oemBinaryTcpClientServerIpAddr, wtIpWatcherTimeDate=wtIpWatcherTimeDate, wtIpWatcher_24VIpListAlias=wtIpWatcher_24VIpListAlias, wtTrapReceiver2x2ActionFtpFileName=wtTrapReceiver2x2ActionFtpFileName, wtWebioEA2x2BinaryTcpClientServerHttpPort=wtWebioEA2x2BinaryTcpClientServerHttpPort, wtIpWatcherMailServer=wtIpWatcherMailServer, wtWebioEA6x6BinaryUdpPeerLocalPort=wtWebioEA6x6BinaryUdpPeerLocalPort, wtWebioEA2x2ERPPortOutputName=wtWebioEA2x2ERPPortOutputName, wtWebAlarm6x6Alert30=wtWebAlarm6x6Alert30, wtWebioEA2x2_24VBinaryTcpClientApplicationMode=wtWebioEA2x2_24VBinaryTcpClientApplicationMode, wtIpWatcher_24VSetOutput=wtIpWatcher_24VSetOutput, wtWebioEA2x2ERPMailAuthPassword=wtWebioEA2x2ERPMailAuthPassword, wtWebioEA12x12Outputs=wtWebioEA12x12Outputs, wtWebioEA2x2_24VAlarmSyslogReleaseText=wtWebioEA2x2_24VAlarmSyslogReleaseText, wtWebioEA12x6RelManufact=wtWebioEA12x6RelManufact, wtWebioEA24oemAlarmUdpIpAddr=wtWebioEA24oemAlarmUdpIpAddr, wtIpWatcherAlarmSyslogReleaseText=wtIpWatcherAlarmSyslogReleaseText, wtWebioEA24oemMailReply=wtWebioEA24oemMailReply, wtWebioEA12x6RelAlarmSyslogPort=wtWebioEA12x6RelAlarmSyslogPort, wtWebioEA12x6RelSubnetMask=wtWebioEA12x6RelSubnetMask, wtWebAlarm6x6StTzStartMin=wtWebAlarm6x6StTzStartMin, wtWebioEA6x6BinaryUdpPeerRemoteIpAddr=wtWebioEA6x6BinaryUdpPeerRemoteIpAddr, wtWebioEA2x2_24VMailEnable=wtWebioEA2x2_24VMailEnable, wtWebioEA2x2_24VAlarmFtpOption=wtWebioEA2x2_24VAlarmFtpOption, wtWebioEA12x6RelERPTzEnable=wtWebioEA12x6RelERPTzEnable, wtWebAlarm6x6Basic=wtWebAlarm6x6Basic, wtWebioEA6x6SetOutput=wtWebioEA6x6SetOutput, wtWebCount6ReportRateOfChange=wtWebCount6ReportRateOfChange, wtWebAlarm6x6Alert5=wtWebAlarm6x6Alert5, wtWebioEA6x6Alert6=wtWebioEA6x6Alert6, wtWebioEA12x6RelERPAlarmSnmpManagerIP=wtWebioEA12x6RelERPAlarmSnmpManagerIP, wtWebioEA2x2SafetyTimeout=wtWebioEA2x2SafetyTimeout, wtWebioEA12x6RelERPConfig=wtWebioEA12x6RelERPConfig, wtWebioEA12x12BinaryTcpServerApplicationMode=wtWebioEA12x12BinaryTcpServerApplicationMode, wtWebioEA2x2MailAdName=wtWebioEA2x2MailAdName, wtTrapReceiver2x2Ports=wtTrapReceiver2x2Ports, wtWebioEA2x2ERP_24VOutputState=wtWebioEA2x2ERP_24VOutputState, wtWebCount6ReportMailSubject=wtWebCount6ReportMailSubject, wtWebioEA2x2ERP_24VMfHotline=wtWebioEA2x2ERP_24VMfHotline, wtWebioEA2x2AlarmSnmpTrapReleaseText=wtWebioEA2x2AlarmSnmpTrapReleaseText, wtWebAlarm6x6AlarmMaxCounterValue=wtWebAlarm6x6AlarmMaxCounterValue, wtWebioEA24oemAlarmTimerCron=wtWebioEA24oemAlarmTimerCron, wtWebioEA12x6RelTzEnable=wtWebioEA12x6RelTzEnable, wtWebioEA12x6RelOutputMode=wtWebioEA12x6RelOutputMode, wtWebioEA2x2ERPHttpPort=wtWebioEA2x2ERPHttpPort, wtWebioEA2x2_24VAlert22=wtWebioEA2x2_24VAlert22, wtWebioEA2x2Alert20=wtWebioEA2x2Alert20, wtWebCount6ReportRateOfChangeWindow=wtWebCount6ReportRateOfChangeWindow, wtWebioEA2x2_24VMailServer=wtWebioEA2x2_24VMailServer, wtWebioEA2x2_24VAlert1=wtWebioEA2x2_24VAlert1, wtWebioEA24oemAlarmOutputTrigger=wtWebioEA24oemAlarmOutputTrigger, wtWebioEA24oemBinaryConnectedPort=wtWebioEA24oemBinaryConnectedPort, wtWebioEA12x12StTzEnable=wtWebioEA12x12StTzEnable, wtWebioEA2x2_24VUdpEnable=wtWebioEA2x2_24VUdpEnable, wtWebCount6Alert1=wtWebCount6Alert1, wtWebioEA2x2DeviceContact=wtWebioEA2x2DeviceContact, wtIpWatcherIpListTable=wtIpWatcherIpListTable, wtWebioEA6x6StTzOffsetMin=wtWebioEA6x6StTzOffsetMin, wtIpWatcherClockMonth=wtIpWatcherClockMonth, wtWebioEA2x2_24VInputState=wtWebioEA2x2_24VInputState, wtIpWatcher_24VAlarmUdpReleaseText=wtIpWatcher_24VAlarmUdpReleaseText, wtWebAlarm6x6AlarmUdpTrgClearText=wtWebAlarm6x6AlarmUdpTrgClearText, wtWebioEA2x2_24VDiagErrorClear=wtWebioEA2x2_24VDiagErrorClear, wtIpWatcher_24VDiagErrorCount=wtIpWatcher_24VDiagErrorCount, wtWebAlarm6x6AlarmTcpReleaseText=wtWebAlarm6x6AlarmTcpReleaseText, wtWebioEA24oemFTPServerIP=wtWebioEA24oemFTPServerIP, wtIpWatcher_24VStTzStopHrs=wtIpWatcher_24VStTzStopHrs, wtWebioEA24oemMailAuthentication=wtWebioEA24oemMailAuthentication, wtWebioEA12x6RelERPSnmpSystemTrapManagerIP=wtWebioEA12x6RelERPSnmpSystemTrapManagerIP, wtWebioEA12x12Device=wtWebioEA12x12Device, wtWebioEA24oemDiagErrorClear=wtWebioEA24oemDiagErrorClear, wtWebCount6Text=wtWebCount6Text, wtWebioEA12x6RelERPAlert11=wtWebioEA12x6RelERPAlert11, wtWebioEA2x2SessCntrlConfigMode=wtWebioEA2x2SessCntrlConfigMode, wtTrapReceiver2x2WatchListEntry=wtTrapReceiver2x2WatchListEntry, wtWebioEA12x6RelERPStTzEnable=wtWebioEA12x6RelERPStTzEnable, wtWebioEA2x2_24VBinaryTcpServerClientHttpPort=wtWebioEA2x2_24VBinaryTcpServerClientHttpPort, wtWebioEA12x6RelAlarmInterval=wtWebioEA12x6RelAlarmInterval, wtWebioEA6x6BinaryTcpClientLocalPort=wtWebioEA6x6BinaryTcpClientLocalPort, wtWebioEA12x6RelStTzStopHrs=wtWebioEA12x6RelStTzStopHrs, wtWebioEA2x2BinaryTcpClientLocalPort=wtWebioEA2x2BinaryTcpClientLocalPort, wtIpWatcherMfInternet=wtIpWatcherMfInternet, wtWebioEA2x2FTPOption=wtWebioEA2x2FTPOption, wtWebAlarm6x6Alert25=wtWebAlarm6x6Alert25, wtIpWatcher_24VDiagErrorIndex=wtIpWatcher_24VDiagErrorIndex, wtTrapReceiver2x2InputPortEntry=wtTrapReceiver2x2InputPortEntry, wtWebioEA2x2ERPAlert14=wtWebioEA2x2ERPAlert14, wtWebioEA24oemPorts=wtWebioEA24oemPorts, wtWebioEA2x2Alert12=wtWebioEA2x2Alert12, wtWebioEA12x12AlarmUdpPort=wtWebioEA12x12AlarmUdpPort, wtIpWatcherOutputValue=wtIpWatcherOutputValue, wtIpWatcherInputs=wtIpWatcherInputs, wtWebCount6SyslogServerPort=wtWebCount6SyslogServerPort, wtWebioEA12x12PortPulseDuration=wtWebioEA12x12PortPulseDuration, wtIpWatcherBasic=wtIpWatcherBasic, wtWebioEA12x12AlarmFtpDataPort=wtWebioEA12x12AlarmFtpDataPort, wtWebioEA2x2AlarmMailSubject=wtWebioEA2x2AlarmMailSubject, wtWebioEA12x6RelERPFTPEnable=wtWebioEA12x6RelERPFTPEnable, wtWebAlarm6x6Outputs=wtWebAlarm6x6Outputs, wtWebioEA2x2ERP_24VBinaryUdpPeerRemoteIpAddr=wtWebioEA2x2ERP_24VBinaryUdpPeerRemoteIpAddr, wtTrapReceiver2x2ClockMonth=wtTrapReceiver2x2ClockMonth, wtWebioEA12x6RelBinaryUdpPeerRemotePort=wtWebioEA12x6RelBinaryUdpPeerRemotePort, wtWebioEA12x6RelERPAlert19=wtWebioEA12x6RelERPAlert19, wtWebioEA6x6SessCntrlPassword=wtWebioEA6x6SessCntrlPassword, wtWebioEA2x2_24VAlarmUdpIpAddr=wtWebioEA2x2_24VAlarmUdpIpAddr, wtWebAlarm6x6AlarmTable=wtWebAlarm6x6AlarmTable, wtWebioEA2x2ERPBinaryTcpClientServerHttpPort=wtWebioEA2x2ERPBinaryTcpClientServerHttpPort, wtWebioEA12x6RelERPStTzStopHrs=wtWebioEA12x6RelERPStTzStopHrs, wtWebioEA12x12AddConfig=wtWebioEA12x12AddConfig, wtWebioEA6x6Outputs=wtWebioEA6x6Outputs, wtIpWatcherIpListAlias=wtIpWatcherIpListAlias, wtWebioEA24oemSnmpCommunityStringReadWrite=wtWebioEA24oemSnmpCommunityStringReadWrite, wtWebioEA2x2ERP_24VClockHrs=wtWebioEA2x2ERP_24VClockHrs, wtWebAlarm6x6Alert15=wtWebAlarm6x6Alert15, wtWebAlarm6x6AlarmSyslogText=wtWebAlarm6x6AlarmSyslogText, wtWebioEA12x12StTzOffsetMin=wtWebioEA12x12StTzOffsetMin, wtWebCount6ReportIfEntry=wtWebCount6ReportIfEntry, wtWebioEA6x6TimeServer1=wtWebioEA6x6TimeServer1, wtTrapReceiver2x2OutputState=wtTrapReceiver2x2OutputState, wtIpWatcher_24VIpListService=wtIpWatcher_24VIpListService, wtWebioEA6x6SessCntrlLogout=wtWebioEA6x6SessCntrlLogout, wtWebAlarm6x6InOut=wtWebAlarm6x6InOut, wtWebioEA12x6RelStTzStopMonth=wtWebioEA12x6RelStTzStopMonth, wtWebioEA6x6BinaryEntry=wtWebioEA6x6BinaryEntry, wtWebioEA24oemBinaryTcpServerLocalPort=wtWebioEA24oemBinaryTcpServerLocalPort, wtWebioEA6x6DnsServer1=wtWebioEA6x6DnsServer1, wtWebioEA2x2_24VBinaryModeNo=wtWebioEA2x2_24VBinaryModeNo, wtWebioEA2x2ERP_24VDiagErrorClear=wtWebioEA2x2ERP_24VDiagErrorClear, wtWebioEA2x2ERP_24VBinaryUdpPeerInputTrigger=wtWebioEA2x2ERP_24VBinaryUdpPeerInputTrigger, wtWebioEA12x6RelERPTsSyncTime=wtWebioEA12x6RelERPTsSyncTime, wtWebioEA2x2DiagErrorMessage=wtWebioEA2x2DiagErrorMessage, wtIpWatcherIpListPort=wtIpWatcherIpListPort, wtWebioEA2x2ERP_24VAlert22=wtWebioEA2x2ERP_24VAlert22, wtWebCount6InputPortEntry=wtWebCount6InputPortEntry, wtWebioEA12x6RelERPStTzOffsetHrs=wtWebioEA12x6RelERPStTzOffsetHrs, wtWebioEA24oemStTzOffsetHrs=wtWebioEA24oemStTzOffsetHrs, wtWebioEA2x2_24VInputNo=wtWebioEA2x2_24VInputNo, wtWebioEA12x12FTPPassword=wtWebioEA12x12FTPPassword, wtWebCount6MfAddr=wtWebCount6MfAddr, wtWebioEA6x6Gateway=wtWebioEA6x6Gateway, wtWebioEA24oemAlert25=wtWebioEA24oemAlert25, wtTrapReceiver2x2ActionSnmpTrapText=wtTrapReceiver2x2ActionSnmpTrapText, wtWebCount6StTzStopMode=wtWebCount6StTzStopMode, wtTrapReceiver2x2ActionOutputState=wtTrapReceiver2x2ActionOutputState, wtWebioEA2x2_24VOutputPortEntry=wtWebioEA2x2_24VOutputPortEntry, wtWebioEA2x2DeviceName=wtWebioEA2x2DeviceName, wtWebioEA2x2ERPBinaryModeCount=wtWebioEA2x2ERPBinaryModeCount, wtIpWatcherAlarmTcpReleaseText=wtIpWatcherAlarmTcpReleaseText, wtWebioEA12x6RelERPStTzStopMode=wtWebioEA12x6RelERPStTzStopMode, wtWebCount6Outputs=wtWebCount6Outputs, wtWebioEA12x6RelERPTimeDate=wtWebioEA12x6RelERPTimeDate, wtWebAlarm6x6UdpEnable=wtWebAlarm6x6UdpEnable, wtWebAlarm6x6SessCntrlConfigMode=wtWebAlarm6x6SessCntrlConfigMode, wtWebioEA24oem=wtWebioEA24oem, wtWebioEA2x2ERPClockYear=wtWebioEA2x2ERPClockYear, wtWebioEA12x6Rel=wtWebioEA12x6Rel, wtTrapReceiver2x2TzEnable=wtTrapReceiver2x2TzEnable, wtWebioEA12x6RelERPAlert15=wtWebioEA12x6RelERPAlert15, wtWebioEA2x2_24VOutputModeBit=wtWebioEA2x2_24VOutputModeBit, wtWebioEA12x6RelSnmpCommunityStringRead=wtWebioEA12x6RelSnmpCommunityStringRead, wtIpWatcher_24VAlert2=wtIpWatcher_24VAlert2, wtWebioEA24oemAlert15=wtWebioEA24oemAlert15, wtWebioEA24oemAlarmUdpText=wtWebioEA24oemAlarmUdpText, wtWebAlarm6x6AlarmMailReleaseSubject=wtWebAlarm6x6AlarmMailReleaseSubject, wtWebioEA12x6RelAlarmSyslogIpAddr=wtWebioEA12x6RelAlarmSyslogIpAddr, wtWebioEA24oemBinaryTcpClientInactivity=wtWebioEA24oemBinaryTcpClientInactivity, wtTrapReceiver2x2PortButtonText=wtTrapReceiver2x2PortButtonText, wtWebioEA12x12LCShutDownView=wtWebioEA12x12LCShutDownView, wtWebioEA12x6RelERPMailReply=wtWebioEA12x6RelERPMailReply, wtWebioEA12x12FTPUserName=wtWebioEA12x12FTPUserName, wtWebAlarm6x6Alert4=wtWebAlarm6x6Alert4, wtWebioEA12x6RelDiagErrorCount=wtWebioEA12x6RelDiagErrorCount, wtWebioEA12x12Alert17=wtWebioEA12x12Alert17, wtWebCount6InputValue=wtWebCount6InputValue, wtWebioEA2x2ERP_24VAlarmTcpReleaseText=wtWebioEA2x2ERP_24VAlarmTcpReleaseText, wtWebioEA12x6RelStTzEnable=wtWebioEA12x6RelStTzEnable, wtWebAlarm6x6InputPortEntry=wtWebAlarm6x6InputPortEntry, wtIpWatcher_24VSnmpSystemTrapManagerIP=wtIpWatcher_24VSnmpSystemTrapManagerIP, wtWebioEA2x2BinaryConnectedIpAddr=wtWebioEA2x2BinaryConnectedIpAddr, wtIpWatcherPortInputFilter=wtIpWatcherPortInputFilter, wtWebioEA12x12Alert18=wtWebioEA12x12Alert18, wtWebCount6UdpAdminPort=wtWebCount6UdpAdminPort, wtWebioEA12x6RelERPSessCntrlAdminPassword=wtWebioEA12x6RelERPSessCntrlAdminPassword, wtTrapReceiver2x2PortPulsePolarity=wtTrapReceiver2x2PortPulsePolarity, wtWebioEA2x2ERPSessCntrlLogout=wtWebioEA2x2ERPSessCntrlLogout, wtWebAlarm6x6PortInputText=wtWebAlarm6x6PortInputText, wtWebioEA6x6HttpPort=wtWebioEA6x6HttpPort, wtWebioEA12x6RelInputs=wtWebioEA12x6RelInputs, wtWebCount6FTPServerIP=wtWebCount6FTPServerIP, wtWebioEA2x2_24VManufact=wtWebioEA2x2_24VManufact, wtWebioEA2x2ERPAlarmFtpReleaseText=wtWebioEA2x2ERPAlarmFtpReleaseText)
mibBuilder.exportSymbols("Webio-Digital-MIB-US", wtWebioEA12x12DeviceName=wtWebioEA12x12DeviceName, wtWebioEA6x6BinaryTcpClientServerIpAddr=wtWebioEA6x6BinaryTcpClientServerIpAddr, wtIpWatcherAlarmSnmpManagerIP=wtIpWatcherAlarmSnmpManagerIP, wtWebioEA12x12BinaryUdpPeerInterval=wtWebioEA12x12BinaryUdpPeerInterval, wtWebioEA2x2ERPPortPulsePolarity=wtWebioEA2x2ERPPortPulsePolarity, wtWebioEA12x12IpAddress=wtWebioEA12x12IpAddress, wtWebioEA2x2ERP_24VBinaryTcpClientServerPort=wtWebioEA2x2ERP_24VBinaryTcpClientServerPort, wtWebioEA12x6RelPortOutputName=wtWebioEA12x6RelPortOutputName, wtWebioEA12x6RelSessCntrlConfigMode=wtWebioEA12x6RelSessCntrlConfigMode, wtWebioEA12x12MfDeviceTyp=wtWebioEA12x12MfDeviceTyp, wtTrapReceiver2x2ActionTable=wtTrapReceiver2x2ActionTable, wtWebCount6PortInputPulsePolarity=wtWebCount6PortInputPulsePolarity, wtWebioEA2x2ERPPortInputBicountInactivTimeout=wtWebioEA2x2ERPPortInputBicountInactivTimeout, wtWebioEA2x2_24VBinaryTcpClientLocalPort=wtWebioEA2x2_24VBinaryTcpClientLocalPort, wtWebioEA2x2ERP_24VWayBackFTPPassword=wtWebioEA2x2ERP_24VWayBackFTPPassword, wtWebioEA12x6RelOutputs=wtWebioEA12x6RelOutputs, wtIpWatcherFTPServerControlPort=wtIpWatcherFTPServerControlPort, wtIpWatcherUdpRemotePort=wtIpWatcherUdpRemotePort, wtWebioEA2x2_24VUdpRemotePort=wtWebioEA2x2_24VUdpRemotePort, wtWebioEA2x2ERP_24VBinaryTcpServerApplicationMode=wtWebioEA2x2ERP_24VBinaryTcpServerApplicationMode, wtTrapReceiver2x2SnmpCommunityStringReadWrite=wtTrapReceiver2x2SnmpCommunityStringReadWrite, wtWebioEA12x6RelInputCounter=wtWebioEA12x6RelInputCounter, wtIpWatcherPortInputName=wtIpWatcherPortInputName, wtIpWatcher_24VAlarmOutputState=wtIpWatcher_24VAlarmOutputState, wtWebioEA24oemTimeServer2=wtWebioEA24oemTimeServer2, wtIpWatcherTimeServer1=wtIpWatcherTimeServer1, wtWebioEA24oemAlarmSnmpManagerIP=wtWebioEA24oemAlarmSnmpManagerIP, wtIpWatcher_24VAlarm=wtIpWatcher_24VAlarm, wtWebCount6InputCounter=wtWebCount6InputCounter, wtWebioEA2x2_24VMfDeviceTyp=wtWebioEA2x2_24VMfDeviceTyp, wtIpWatcherStTzEnable=wtIpWatcherStTzEnable, wtTrapReceiver2x2InEvButtons=wtTrapReceiver2x2InEvButtons, wtWebioEA2x2ERPBinaryEntry=wtWebioEA2x2ERPBinaryEntry, wtIpWatcherDeviceLocation=wtIpWatcherDeviceLocation, wtIpWatcher_24VStTzStartHrs=wtIpWatcher_24VStTzStartHrs, wtWebAlarm6x6TimeServer2=wtWebAlarm6x6TimeServer2, wtWebCount6ReportSnmpManagerIP=wtWebCount6ReportSnmpManagerIP, wtIpWatcherAlarmGlobalEnable=wtIpWatcherAlarmGlobalEnable, wtWebioEA12x6RelERPBinaryUdpPeerApplicationMode=wtWebioEA12x6RelERPBinaryUdpPeerApplicationMode, wtWebioEA12x6RelERPMailEnable=wtWebioEA12x6RelERPMailEnable, wtWebioEA2x2ERPFTPAccount=wtWebioEA2x2ERPFTPAccount, wtWebioEA24oemPortInputName=wtWebioEA24oemPortInputName, wtWebAlarm6x6HTTP=wtWebAlarm6x6HTTP, wtIpWatcher_24VStTzOffsetMin=wtIpWatcher_24VStTzOffsetMin, wtWebioEA24oemAlarmMailAddr=wtWebioEA24oemAlarmMailAddr, wtTrapReceiver2x2DiagErrorCount=wtTrapReceiver2x2DiagErrorCount, wtIpWatcher_24VTsEnable=wtIpWatcher_24VTsEnable, wtWebioEA2x2FTPUserName=wtWebioEA2x2FTPUserName, wtWebioEA2x2AlarmSnmpTrapText=wtWebioEA2x2AlarmSnmpTrapText, wtWebioEA12x12AlarmMailAddr=wtWebioEA12x12AlarmMailAddr, wtWebioEA2x2_24VOutputPortTable=wtWebioEA2x2_24VOutputPortTable, wtWebioEA2x2ERP_24VBinaryUdpPeerInterval=wtWebioEA2x2ERP_24VBinaryUdpPeerInterval, wtWebioEA6x6AlarmSyslogPort=wtWebioEA6x6AlarmSyslogPort, wtWebioEA2x2AlarmFtpFileName=wtWebioEA2x2AlarmFtpFileName, wtWebioEA24oemAlarmSyslogText=wtWebioEA24oemAlarmSyslogText, wtWebioEA2x2_24VAlert12=wtWebioEA2x2_24VAlert12, wtWebAlarm6x6SubnetMask=wtWebAlarm6x6SubnetMask, wtIpWatcher_24VOutputTable=wtIpWatcher_24VOutputTable, wtWebioEA12x6RelERPTzOffsetHrs=wtWebioEA12x6RelERPTzOffsetHrs, wtIpWatcherSessCntrlPassword=wtIpWatcherSessCntrlPassword, wtTrapReceiver2x2InputEntry=wtTrapReceiver2x2InputEntry, wtWebioEA2x2ERPPortLogicFunction=wtWebioEA2x2ERPPortLogicFunction, wtWebioEA2x2ERPUdpRemotePort=wtWebioEA2x2ERPUdpRemotePort, wtWebioEA12x6RelERPAlert8=wtWebioEA12x6RelERPAlert8, wtWebioEA2x2ERP_24VFTPEnable=wtWebioEA2x2ERP_24VFTPEnable, wtWebioEA2x2ERP_24VBinaryConnectedPort=wtWebioEA2x2ERP_24VBinaryConnectedPort, wtWebioEA12x12AlarmNo=wtWebioEA12x12AlarmNo, wtWebioEA12x6RelInputValue=wtWebioEA12x6RelInputValue, wtWebioEA2x2ERP_24VStTzOffsetHrs=wtWebioEA2x2ERP_24VStTzOffsetHrs, wtWebioEA12x12Alert7=wtWebioEA12x12Alert7, wtIpWatcher_24VInOut=wtIpWatcher_24VInOut, wtWebioEA2x2ERPAlarmCount=wtWebioEA2x2ERPAlarmCount, wtWebioEA12x12DeviceClock=wtWebioEA12x12DeviceClock, wtWebAlarm6x6DnsServer1=wtWebAlarm6x6DnsServer1, wtIpWatcherAlarmAckPort=wtIpWatcherAlarmAckPort, wtWebioEA12x12BinaryTcpServerClientHttpPort=wtWebioEA12x12BinaryTcpServerClientHttpPort, wtWebioEA2x2_24VPortInputBicountPulsePolarity=wtWebioEA2x2_24VPortInputBicountPulsePolarity, wtWebioEA2x2ERPSyslog=wtWebioEA2x2ERPSyslog, wtWebioEA2x2_24VTimeDate=wtWebioEA2x2_24VTimeDate, wtIpWatcherAlarmNo=wtIpWatcherAlarmNo, wtWebCount6Alert12=wtWebCount6Alert12, wtWebioEA12x6RelERPAlarmTcpText=wtWebioEA12x6RelERPAlarmTcpText, wtWebioEA2x2ERPSnmpCommunityStringReadWrite=wtWebioEA2x2ERPSnmpCommunityStringReadWrite, wtWebioEA12x6RelERPMailAuthPassword=wtWebioEA12x6RelERPMailAuthPassword, wtWebioEA2x2ERPMailAuthentication=wtWebioEA2x2ERPMailAuthentication, wtWebioEA24oemBinaryTcpClientServerHttpPort=wtWebioEA24oemBinaryTcpClientServerHttpPort, wtWebioEA2x2_24VDiagBinaryError=wtWebioEA2x2_24VDiagBinaryError, wtWebioEA2x2_24VPortInputText=wtWebioEA2x2_24VPortInputText, wtWebioEA12x12SetOutput=wtWebioEA12x12SetOutput, wtWebioEA12x12PortInputMode=wtWebioEA12x12PortInputMode, wtWebioEA12x6RelTimeServer2=wtWebioEA12x6RelTimeServer2, wtWebioEA12x6RelGateway=wtWebioEA12x6RelGateway, wtWebioEA2x2ERP_24VOutputEntry=wtWebioEA2x2ERP_24VOutputEntry, wtWebioEA2x2ERPAlert4=wtWebioEA2x2ERPAlert4, wtIpWatcherUdpEnable=wtIpWatcherUdpEnable, wtTrapReceiver2x2IpAddress=wtTrapReceiver2x2IpAddress, wtWebioEA12x6RelERPUdpAdminPort=wtWebioEA12x6RelERPUdpAdminPort, wtWebAlarm6x6Gateway=wtWebAlarm6x6Gateway, wtWebioEA2x2_24VFTPServerControlPort=wtWebioEA2x2_24VFTPServerControlPort, wtTrapReceiver2x2StTzStopMode=wtTrapReceiver2x2StTzStopMode, wtWebCount6MfInternet=wtWebCount6MfInternet, wtIpWatcherAlert16=wtIpWatcherAlert16, wtWebioEA2x2_24VStTzEnable=wtWebioEA2x2_24VStTzEnable, wtWebioEA12x6RelERPBinaryTable=wtWebioEA12x6RelERPBinaryTable, wtWebioEA24oemAlarmFtpText=wtWebioEA24oemAlarmFtpText, wtWebioEA2x2_24VInputCounter=wtWebioEA2x2_24VInputCounter, wtWebioEA12x6RelERPMfAddr=wtWebioEA12x6RelERPMfAddr, wtWebioEA2x2ERPAlert20=wtWebioEA2x2ERPAlert20, wtWebioEA2x2ERP_24VSessCntrl=wtWebioEA2x2ERP_24VSessCntrl, wtWebioEA12x6RelStTzStopWday=wtWebioEA12x6RelStTzStopWday, wtWebioEA24oemDeviceContact=wtWebioEA24oemDeviceContact, wtWebioEA2x2_24VDevice=wtWebioEA2x2_24VDevice, wtWebioEA12x6RelERPPortInputFilter=wtWebioEA12x6RelERPPortInputFilter, wtWebCount6Alert2=wtWebCount6Alert2, wtWebAlarm6x6AlarmSnmpTrapReleaseText=wtWebAlarm6x6AlarmSnmpTrapReleaseText, wtWebioEA12x6RelERPDevice=wtWebioEA12x6RelERPDevice, wtWebioEA24oemMailServer=wtWebioEA24oemMailServer, wtWebioEA12x6RelClockHrs=wtWebioEA12x6RelClockHrs, wtWebAlarm6x6DiagErrorIndex=wtWebAlarm6x6DiagErrorIndex, wtWebioEA6x6PortPulseDuration=wtWebioEA6x6PortPulseDuration, wtIpWatcherMailPop3Server=wtIpWatcherMailPop3Server, wtWebioEA24oemAlarmTcpIpAddr=wtWebioEA24oemAlarmTcpIpAddr, wtIpWatcher_24VAlarmEntry=wtIpWatcher_24VAlarmEntry, wtWebioEA12x6RelFTPUserName=wtWebioEA12x6RelFTPUserName, wtWebioEA2x2ERPAlertDiag=wtWebioEA2x2ERPAlertDiag, wtWebioEA12x6RelAlarmUdpText=wtWebioEA12x6RelAlarmUdpText, wtWebAlarm6x6Alert23=wtWebAlarm6x6Alert23, wtWebioEA2x2_24VPortOutputGroupMode=wtWebioEA2x2_24VPortOutputGroupMode, wtWebioEA2x2ERP_24VDeviceContact=wtWebioEA2x2ERP_24VDeviceContact, wtWebioEA12x12OutputMode=wtWebioEA12x12OutputMode, wtIpWatcherOutputState=wtIpWatcherOutputState, wtWebioEA2x2ERP_24VStTzOffsetMin=wtWebioEA2x2ERP_24VStTzOffsetMin, wtWebioEA12x12SnmpSystemTrapManagerIP=wtWebioEA12x12SnmpSystemTrapManagerIP, wtIpWatcherAlert28=wtIpWatcherAlert28, wtIpWatcherDevice=wtIpWatcherDevice, wtWebioEA2x2_24VTimeServer=wtWebioEA2x2_24VTimeServer, wtWebioEA12x12StTzStartMin=wtWebioEA12x12StTzStartMin, wtWebioEA12x6RelStTzOffsetMin=wtWebioEA12x6RelStTzOffsetMin, wtWebioEA2x2ERP_24VBinaryModeNo=wtWebioEA2x2ERP_24VBinaryModeNo, wtIpWatcher_24VSyslogEnable=wtIpWatcher_24VSyslogEnable, wtWebioEA12x12BinaryModeCount=wtWebioEA12x12BinaryModeCount, wtWebioEA6x6ClockYear=wtWebioEA6x6ClockYear, wtWebioEA12x6RelMailAuthentication=wtWebioEA12x6RelMailAuthentication, wtWebioEA2x2_24VMailAuthentication=wtWebioEA2x2_24VMailAuthentication, wtIpWatcher_24VInputTable=wtIpWatcher_24VInputTable, wtWebioEA2x2_24VAlarmEnable=wtWebioEA2x2_24VAlarmEnable, wtTrapReceiver2x2TzOffsetHrs=wtTrapReceiver2x2TzOffsetHrs, wtWebioEA2x2ERP_24VBinaryOperationMode=wtWebioEA2x2ERP_24VBinaryOperationMode, wtWebCount6StTzEnable=wtWebCount6StTzEnable, wtWebioEA2x2BinaryTcpServerClientHttpPort=wtWebioEA2x2BinaryTcpServerClientHttpPort, wtWebCount6SnmpSystemTrapEnable=wtWebCount6SnmpSystemTrapEnable, wtWebAlarm6x6MailPop3Server=wtWebAlarm6x6MailPop3Server, wtWebioEA2x2ERPTsEnable=wtWebioEA2x2ERPTsEnable, wtWebioEA2x2ERPMailEnable=wtWebioEA2x2ERPMailEnable, wtWebioEA24oemInOut=wtWebioEA24oemInOut, wtWebioEA2x2ERP_24VAlert11=wtWebioEA2x2ERP_24VAlert11, wtWebioEA2x2ERP_24VAlert16=wtWebioEA2x2ERP_24VAlert16, wtTrapReceiver2x2ActionSystemTimerTrigger=wtTrapReceiver2x2ActionSystemTimerTrigger, wtWebioEA2x2ERP_24VSessCntrlPassword=wtWebioEA2x2ERP_24VSessCntrlPassword, wtIpWatcherAlarmUdpTrgClearText=wtIpWatcherAlarmUdpTrgClearText, wtWebioEA2x2ERPSnmpSystemTrapEnable=wtWebioEA2x2ERPSnmpSystemTrapEnable, wtWebioEA2x2FTPEnable=wtWebioEA2x2FTPEnable, wtWebioEA2x2Alert11=wtWebioEA2x2Alert11, wtWebioEA6x6Text=wtWebioEA6x6Text, wtWebioEA2x2ERPAlarmSyslogReleaseText=wtWebioEA2x2ERPAlarmSyslogReleaseText, wtWebioEA2x2ERPAlarmUdpPort=wtWebioEA2x2ERPAlarmUdpPort, wtIpWatcherPortOutputName=wtIpWatcherPortOutputName, wtWebioEA2x2AlarmSyslogPort=wtWebioEA2x2AlarmSyslogPort, wtWebioEA12x12InputValue=wtWebioEA12x12InputValue, wtIpWatcherStTzStopMin=wtIpWatcherStTzStopMin, wtWebioEA12x12InputPortTable=wtWebioEA12x12InputPortTable, wtWebioEA6x6OutputPortTable=wtWebioEA6x6OutputPortTable, wtWebioEA2x2ERPBinaryTcpClientApplicationMode=wtWebioEA2x2ERPBinaryTcpClientApplicationMode, wtWebioEA2x2AlarmMailText=wtWebioEA2x2AlarmMailText, wtIpWatcherAlert35=wtIpWatcherAlert35, wtTrapReceiver2x2StTzOffsetHrs=wtTrapReceiver2x2StTzOffsetHrs, wtWebCount6ReportRateOfChangeMode=wtWebCount6ReportRateOfChangeMode, wtWebAlarm6x6SnmpEnable=wtWebAlarm6x6SnmpEnable, wtWebioEA2x2ERP_24V=wtWebioEA2x2ERP_24V, wtWebioEA24oemPortOutputText=wtWebioEA24oemPortOutputText, wtWebAlarm6x6AlarmMailSubject=wtWebAlarm6x6AlarmMailSubject, wtWebioEA12x6RelERPBinaryTcpServerInputTrigger=wtWebioEA12x6RelERPBinaryTcpServerInputTrigger, wtWebioEA2x2_24VClockMonth=wtWebioEA2x2_24VClockMonth, wtTrapReceiver2x2ClockMin=wtTrapReceiver2x2ClockMin, wtWebioEA2x2ERPFTPServerControlPort=wtWebioEA2x2ERPFTPServerControlPort, wtWebioEA24oemBinaryUdpPeerInterval=wtWebioEA24oemBinaryUdpPeerInterval, wtWebioEA12x6RelERPUdpEnable=wtWebioEA12x6RelERPUdpEnable, wtWebioEA2x2StTzStopWday=wtWebioEA2x2StTzStopWday, wtWebioEA2x2_24VSyslog=wtWebioEA2x2_24VSyslog, wtTrapReceiver2x2Mail=wtTrapReceiver2x2Mail, wtIpWatcherDiag=wtIpWatcherDiag, wtWebioEA12x6RelERPAlarmSyslogText=wtWebioEA12x6RelERPAlarmSyslogText, wtWebioEA12x6RelERPDiagBinaryError=wtWebioEA12x6RelERPDiagBinaryError, wtWebioEA2x2ERP_24VPortInputFilter=wtWebioEA2x2ERP_24VPortInputFilter, wtWebioEA12x12DiagBinaryError=wtWebioEA12x12DiagBinaryError, wtWebioEA24oemAlarmEnable=wtWebioEA24oemAlarmEnable, wtWebioEA12x6RelFTPOption=wtWebioEA12x6RelFTPOption, wtTrapReceiver2x2Device=wtTrapReceiver2x2Device, wtWebioEA6x6PortOutputName=wtWebioEA6x6PortOutputName, wtIpWatcherHttpPort=wtIpWatcherHttpPort, wtIpWatcher_24VDeviceLocation=wtIpWatcher_24VDeviceLocation, wtWebioEA12x12MfAddr=wtWebioEA12x12MfAddr, wtWebioEA24oemBinaryOperationMode=wtWebioEA24oemBinaryOperationMode, wtWebioEA2x2_24VBinaryConnectedIpAddr=wtWebioEA2x2_24VBinaryConnectedIpAddr, wtIpWatcherMailEnable=wtIpWatcherMailEnable, wtWebioEA12x6RelERPManufact=wtWebioEA12x6RelERPManufact, wtWebioEA2x2Alert14=wtWebioEA2x2Alert14, wtWebioEA2x2_24VPortOutputText=wtWebioEA2x2_24VPortOutputText, wtWebioEA2x2Text=wtWebioEA2x2Text, wtWebioEA2x2MailAuthentication=wtWebioEA2x2MailAuthentication, wtWebCount6PortInputText=wtWebCount6PortInputText, wtTrapReceiver2x2Alert11=wtTrapReceiver2x2Alert11, wtIpWatcherUdpAdminPort=wtIpWatcherUdpAdminPort, wtWebioEA2x2ERPMfName=wtWebioEA2x2ERPMfName, wtIpWatcherMailAuthPassword=wtIpWatcherMailAuthPassword, wtIpWatcher_24VAlert19=wtIpWatcher_24VAlert19, wtWebioEA2x2ERPBinaryTcpClientInactivity=wtWebioEA2x2ERPBinaryTcpClientInactivity, wtWebioEA2x2ERPOutputMode=wtWebioEA2x2ERPOutputMode, wtWebioEA12x12GetHeaderEnable=wtWebioEA12x12GetHeaderEnable, wtWebioEA12x6RelSessCntrl=wtWebioEA12x6RelSessCntrl, wtTrapReceiver2x2TimeZone=wtTrapReceiver2x2TimeZone, wtWebioEA2x2AlarmFtpOption=wtWebioEA2x2AlarmFtpOption, wtWebioEA24oemTsEnable=wtWebioEA24oemTsEnable, wtWebioEA24oemAddConfig=wtWebioEA24oemAddConfig, wtWebioEA2x2ERPStTzOffsetMin=wtWebioEA2x2ERPStTzOffsetMin, wtWebioEA2x2_24VAlarmSnmpTrapText=wtWebioEA2x2_24VAlarmSnmpTrapText, wtWebioEA2x2StTzStartHrs=wtWebioEA2x2StTzStartHrs, wtWebioEA12x12BinaryTable=wtWebioEA12x12BinaryTable, wtWebioEA2x2ERPBinaryTcpServerInputTrigger=wtWebioEA2x2ERPBinaryTcpServerInputTrigger, wtWebioEA2x2_24VSnmpSystemTrapEnable=wtWebioEA2x2_24VSnmpSystemTrapEnable, wtWebioEA12x6RelStTzStartMode=wtWebioEA12x6RelStTzStartMode, wtWebioEA12x6RelERPStTzStopWday=wtWebioEA12x6RelERPStTzStopWday, wtWebAlarm6x6StTzStartMonth=wtWebAlarm6x6StTzStartMonth, wtWebioEA2x2ERPDiagErrorMessage=wtWebioEA2x2ERPDiagErrorMessage, wtIpWatcherAlarmSnmpTrapText=wtIpWatcherAlarmSnmpTrapText, wtWebioEA12x12MailAdName=wtWebioEA12x12MailAdName, wtWebioEA24oemDiagErrorCount=wtWebioEA24oemDiagErrorCount, wtWebioEA12x6RelStTzStartWday=wtWebioEA12x6RelStTzStartWday, wtWebAlarm6x6TzOffsetMin=wtWebAlarm6x6TzOffsetMin, wtWebAlarm6x6Alert6=wtWebAlarm6x6Alert6, wtWebioEA12x6RelBinaryEntry=wtWebioEA12x6RelBinaryEntry, wtWebioEA6x6Alert18=wtWebioEA6x6Alert18, wtWebioEA12x6RelMfAddr=wtWebioEA12x6RelMfAddr, wtWebioEA12x6RelERPMfInternet=wtWebioEA12x6RelERPMfInternet, wtWebioEA12x12MailReply=wtWebioEA12x12MailReply, wtWebioEA2x2PortPulsePolarity=wtWebioEA2x2PortPulsePolarity, wtWebioEA24oemInputPortEntry=wtWebioEA24oemInputPortEntry, wtWebioEA24oemDiag=wtWebioEA24oemDiag, wtWebioEA2x2ERP_24VNetwork=wtWebioEA2x2ERP_24VNetwork, wtIpWatcher_24VIpListEnable=wtIpWatcher_24VIpListEnable, wtWebioEA12x6RelERPBasic=wtWebioEA12x6RelERPBasic, wtWebioEA2x2ERPFTPEnable=wtWebioEA2x2ERPFTPEnable, wtWebioEA2x2ERPPortLogicInputInverter=wtWebioEA2x2ERPPortLogicInputInverter, wtWebioEA24oemAlert4=wtWebioEA24oemAlert4)
mibBuilder.exportSymbols("Webio-Digital-MIB-US", wtWebioEA6x6PortOutputGroupMode=wtWebioEA6x6PortOutputGroupMode, wtIpWatcher_24VAlarmTriggerState=wtIpWatcher_24VAlarmTriggerState, wtIpWatcherSnmpCommunityStringRead=wtIpWatcherSnmpCommunityStringRead, wtWebioEA6x6Alert17=wtWebioEA6x6Alert17, wtWebioEA6x6AlarmFtpOption=wtWebioEA6x6AlarmFtpOption, wtWebioEA2x2SessCntrl=wtWebioEA2x2SessCntrl, wtWebioEA2x2ERP_24VOutputs=wtWebioEA2x2ERP_24VOutputs, wtWebioEA6x6UdpAdminPort=wtWebioEA6x6UdpAdminPort, wtIpWatcher_24VAlarmMailTrgClearText=wtIpWatcher_24VAlarmMailTrgClearText, wtWebioEA2x2ERPPortInputBicountPulsePolarity=wtWebioEA2x2ERPPortInputBicountPulsePolarity, wtWebioEA12x6RelInputPortEntry=wtWebioEA12x6RelInputPortEntry, wtWebioEA12x6RelPortInputBicountInactivTimeout=wtWebioEA12x6RelPortInputBicountInactivTimeout, wtIpWatcherAlarmAckEnable=wtIpWatcherAlarmAckEnable, wtWebioEA2x2_24VBinaryIfEntry=wtWebioEA2x2_24VBinaryIfEntry, wtIpWatcher_24VIpListEntry=wtIpWatcher_24VIpListEntry, wtIpWatcherInputEntry=wtIpWatcherInputEntry, wtWebioEA12x12Basic=wtWebioEA12x12Basic, wtWebioEA6x6SessCntrlConfigPassword=wtWebioEA6x6SessCntrlConfigPassword, wtWebioEA24oemOutputs=wtWebioEA24oemOutputs, wtTrapReceiver2x2WatchListTable=wtTrapReceiver2x2WatchListTable, wtWebioEA24oemMfHotline=wtWebioEA24oemMfHotline, wtWebioEA2x2ERPPorts=wtWebioEA2x2ERPPorts, wtWebioEA2x2ERP_24VMailAuthPassword=wtWebioEA2x2ERP_24VMailAuthPassword, wtWebioEA2x2ERPAlarmEnable=wtWebioEA2x2ERPAlarmEnable, wtWebAlarm6x6Manufact=wtWebAlarm6x6Manufact, wtWebioEA2x2ERP_24VBinaryTcpClientInterval=wtWebioEA2x2ERP_24VBinaryTcpClientInterval, wtWebioEA2x2ERP_24VAlarmFtpReleaseText=wtWebioEA2x2ERP_24VAlarmFtpReleaseText, wtWebioEA6x6AlarmIfTable=wtWebioEA6x6AlarmIfTable, wtWebioEA6x6OutputModeTable=wtWebioEA6x6OutputModeTable, wtIpWatcher_24VAlert32=wtIpWatcher_24VAlert32, wtWebioEA24oemDeviceText=wtWebioEA24oemDeviceText, wtWebioEA12x6RelBinaryTcpServerApplicationMode=wtWebioEA12x6RelBinaryTcpServerApplicationMode, wtIpWatcherStTzStopHrs=wtIpWatcherStTzStopHrs, wtWebAlarm6x6SessCntrlPassword=wtWebAlarm6x6SessCntrlPassword, wtWebioEA12x12AlarmSnmpManagerIP=wtWebioEA12x12AlarmSnmpManagerIP, wtWebioEA2x2ERP_24VSnmpCommunityStringReadWrite=wtWebioEA2x2ERP_24VSnmpCommunityStringReadWrite, wtIpWatcherSyslogSystemMessagesEnable=wtIpWatcherSyslogSystemMessagesEnable, wtWebAlarm6x6TsSyncTime=wtWebAlarm6x6TsSyncTime, wtIpWatcherAlertDiag=wtIpWatcherAlertDiag, wtWebioEA12x12AlarmFtpOption=wtWebioEA12x12AlarmFtpOption, wtWebioEA2x2ERPPortInputText=wtWebioEA2x2ERPPortInputText, wtWebioEA2x2AlarmSyslogIpAddr=wtWebioEA2x2AlarmSyslogIpAddr, wtIpWatcherAlarmMailTrgClearSubject=wtIpWatcherAlarmMailTrgClearSubject, wtWebioEA12x6RelERPAlert20=wtWebioEA12x6RelERPAlert20, wtWebioEA2x2_24VAlarmOutputTrigger=wtWebioEA2x2_24VAlarmOutputTrigger, wtWebioEA6x6UdpEnable=wtWebioEA6x6UdpEnable, wtWebioEA2x2GetHeaderEnable=wtWebioEA2x2GetHeaderEnable, wtWebioEA2x2PortInputName=wtWebioEA2x2PortInputName, wtWebCount6Alert10=wtWebCount6Alert10, wtWebioEA12x12Alert14=wtWebioEA12x12Alert14, wtIpWatcherAlert13=wtIpWatcherAlert13, wtWebioEA2x2_24VConfig=wtWebioEA2x2_24VConfig, wtIpWatcher_24VAlarmUdpText=wtIpWatcher_24VAlarmUdpText, wtWebioEA12x6RelERPSyslog=wtWebioEA12x6RelERPSyslog, wtWebioEA24oemBinaryUdpPeerInputTrigger=wtWebioEA24oemBinaryUdpPeerInputTrigger, wtIpWatcher_24VAlert6=wtIpWatcher_24VAlert6, wtIpWatcher_24VAlert13=wtIpWatcher_24VAlert13, wtTrapReceiver2x2StTzStopHrs=wtTrapReceiver2x2StTzStopHrs, wtWebioEA12x6RelAlert5=wtWebioEA12x6RelAlert5, wtWebCount6MailEnable=wtWebCount6MailEnable, wtTrapReceiver2x2WatchListIfEntry=wtTrapReceiver2x2WatchListIfEntry, wtIpWatcherSNMP=wtIpWatcherSNMP, wtWebioEA2x2ERPAlert23=wtWebioEA2x2ERPAlert23, wtTrapReceiver2x2FTPServerIP=wtTrapReceiver2x2FTPServerIP, wtWebioEA12x6RelSessCntrlAdminPassword=wtWebioEA12x6RelSessCntrlAdminPassword, wtIpWatcher_24VIpListPort=wtIpWatcher_24VIpListPort, wtWebioEA12x12TimeZone=wtWebioEA12x12TimeZone, wtWebioEA2x2InOut=wtWebioEA2x2InOut, wtWebCount6MfHotline=wtWebCount6MfHotline, wtWebioEA2x2_24VSessCntrlPassword=wtWebioEA2x2_24VSessCntrlPassword, wtWebioEA2x2ERPAlert3=wtWebioEA2x2ERPAlert3, wtWebioEA6x6BinaryTcpServerClientHttpPort=wtWebioEA6x6BinaryTcpServerClientHttpPort, wtWebAlarm6x6OutputNo=wtWebAlarm6x6OutputNo, wtWebioEA2x2InputPortTable=wtWebioEA2x2InputPortTable, wtWebAlarm6x6SyslogSystemMessagesEnable=wtWebAlarm6x6SyslogSystemMessagesEnable, wtWebioEA12x6RelPortLogicInputMask=wtWebioEA12x6RelPortLogicInputMask, wtWebioEA12x6RelERPDeviceLocation=wtWebioEA12x6RelERPDeviceLocation, wtWebioEA2x2ERP_24VSnmpSystemTrapEnable=wtWebioEA2x2ERP_24VSnmpSystemTrapEnable, wtWebAlarm6x6Diag=wtWebAlarm6x6Diag, wtWebioEA2x2ERP_24VAlarmFtpFileName=wtWebioEA2x2ERP_24VAlarmFtpFileName, wtWebioEA2x2_24VAlarmTcpReleaseText=wtWebioEA2x2_24VAlarmTcpReleaseText, wtIpWatcherAlarm=wtIpWatcherAlarm, wtWebioEA2x2_24VPortOutputSafetyState=wtWebioEA2x2_24VPortOutputSafetyState, wtIpWatcher_24VStTzStopMin=wtIpWatcher_24VStTzStopMin, wtIpWatcher_24VFTPServerControlPort=wtIpWatcher_24VFTPServerControlPort, wtWebioEA2x2ERP_24VAlert10=wtWebioEA2x2ERP_24VAlert10, wtIpWatcher_24VAlert20=wtIpWatcher_24VAlert20, wtTrapReceiver2x2SyslogSystemMessagesEnable=wtTrapReceiver2x2SyslogSystemMessagesEnable, wtWebioEA12x6RelTimeZone=wtWebioEA12x6RelTimeZone, wtWebAlarm6x6TimeServer1=wtWebAlarm6x6TimeServer1, wtWebioEA12x6RelERPBinaryTcpClientServerPassword=wtWebioEA12x6RelERPBinaryTcpClientServerPassword, wtWebioEA2x2ERP_24VManufact=wtWebioEA2x2ERP_24VManufact, wtWebAlarm6x6HttpPort=wtWebAlarm6x6HttpPort, wtIpWatcherIpListEnable=wtIpWatcherIpListEnable, wtTrapReceiver2x2ActionNo=wtTrapReceiver2x2ActionNo, wtWebioEA2x2ERPAlarmMailSubject=wtWebioEA2x2ERPAlarmMailSubject, wtWebAlarm6x6OutputValue=wtWebAlarm6x6OutputValue, wtWebioEA24oemAlarmIfEntry=wtWebioEA24oemAlarmIfEntry, wtWebAlarm6x6UdpRemotePort=wtWebAlarm6x6UdpRemotePort, wtIpWatcherAlert8=wtIpWatcherAlert8, wtWebioEA12x12Alert19=wtWebioEA12x12Alert19, wtWebioEA2x2_24VAlarmTcpIpAddr=wtWebioEA2x2_24VAlarmTcpIpAddr, wtWebioEA12x6RelERPPortLogicInputMask=wtWebioEA12x6RelERPPortLogicInputMask, wtWebioEA12x6RelERPAlarmUdpReleaseText=wtWebioEA12x6RelERPAlarmUdpReleaseText, wtWebioEA2x2ERP_24VGetHeaderEnable=wtWebioEA2x2ERP_24VGetHeaderEnable, wtWebioEA12x6RelERPStTzStartWday=wtWebioEA12x6RelERPStTzStartWday, wtIpWatcher_24VDiagBinaryError=wtIpWatcher_24VDiagBinaryError, wtWebioEA6x6BinaryTcpClientInputTrigger=wtWebioEA6x6BinaryTcpClientInputTrigger, wtIpWatcher_24VFTP=wtIpWatcher_24VFTP, wtWebioEA24oemClockMonth=wtWebioEA24oemClockMonth, wtIpWatcher=wtIpWatcher, wtWebioEA2x2ERP_24VFTPPassword=wtWebioEA2x2ERP_24VFTPPassword, wtTrapReceiver2x2TimeDate=wtTrapReceiver2x2TimeDate, wtWebioEA12x12AlarmTcpPort=wtWebioEA12x12AlarmTcpPort, wtWebioEA24oemOutputModeTable=wtWebioEA24oemOutputModeTable, wtWebioEA2x2ERPAlert13=wtWebioEA2x2ERPAlert13, wtWebioEA6x6AlarmUdpReleaseText=wtWebioEA6x6AlarmUdpReleaseText, wtWebCount6MailServer=wtWebCount6MailServer, wtWebioEA2x2DnsServer1=wtWebioEA2x2DnsServer1, wtWebioEA2x2ERP_24VFTPServerControlPort=wtWebioEA2x2ERP_24VFTPServerControlPort, wtWebioEA2x2ERP_24VTsEnable=wtWebioEA2x2ERP_24VTsEnable, wtIpWatcherAlarmTriggerCount=wtIpWatcherAlarmTriggerCount, wtWebioEA6x6MailServer=wtWebioEA6x6MailServer, wtWebioEA2x2ERP_24VHTTP=wtWebioEA2x2ERP_24VHTTP, wtWebAlarm6x6SnmpCommunityStringRead=wtWebAlarm6x6SnmpCommunityStringRead, wtWebAlarm6x6AlarmGlobalEnable=wtWebAlarm6x6AlarmGlobalEnable, wtWebCount6SessCntrlConfigPassword=wtWebCount6SessCntrlConfigPassword, wtWebioEA12x6RelERPAlarmEnable=wtWebioEA12x6RelERPAlarmEnable, wtWebioEA6x6BinaryTcpClientApplicationMode=wtWebioEA6x6BinaryTcpClientApplicationMode, wtWebioEA2x2UdpAdminPort=wtWebioEA2x2UdpAdminPort, wtWebioEA12x12UDP=wtWebioEA12x12UDP, wtWebCount6DeviceText=wtWebCount6DeviceText, wtWebioEA12x6RelERPBinaryTcpClientInactivity=wtWebioEA12x6RelERPBinaryTcpClientInactivity, wtWebioEA2x2ERP_24VAlarm=wtWebioEA2x2ERP_24VAlarm, wtWebioEA2x2ERPWayBackFTPTimeOut=wtWebioEA2x2ERPWayBackFTPTimeOut, wtWebioEA2x2ERP_24VStTzStartMonth=wtWebioEA2x2ERP_24VStTzStartMonth, wtWebioEA2x2ERP_24VBinaryTcpClientServerIpAddr=wtWebioEA2x2ERP_24VBinaryTcpClientServerIpAddr, wtWebioEA2x2ERPUDP=wtWebioEA2x2ERPUDP, wtWebCount6DeviceLocation=wtWebCount6DeviceLocation, wtTrapReceiver2x2SessCntrlConfigMode=wtTrapReceiver2x2SessCntrlConfigMode, wtWebioEA12x6RelERPAlert24=wtWebioEA12x6RelERPAlert24, wtWebioEA12x6RelERPIpAddress=wtWebioEA12x6RelERPIpAddress, wtWebioEA2x2_24VSessCntrlLogout=wtWebioEA2x2_24VSessCntrlLogout, wtIpWatcherSessCntrlLogout=wtIpWatcherSessCntrlLogout, wtWebioEA24oemBinaryTcpClientInterval=wtWebioEA24oemBinaryTcpClientInterval, wtWebioEA6x6TimeDate=wtWebioEA6x6TimeDate, wtWebioEA12x6RelERPInputEntry=wtWebioEA12x6RelERPInputEntry, wtWebCount6SNMP=wtWebCount6SNMP, wtWebioEA12x6RelOutputModeTable=wtWebioEA12x6RelOutputModeTable, wtWebioEA12x6RelAlert11=wtWebioEA12x6RelAlert11, wtWebioEA2x2_24VBinaryUdpPeerRemoteIpAddr=wtWebioEA2x2_24VBinaryUdpPeerRemoteIpAddr, wtWebioEA12x6RelERPAlarmCount=wtWebioEA12x6RelERPAlarmCount, wtWebioEA2x2ERP_24VTimeDate=wtWebioEA2x2ERP_24VTimeDate, wtWebioEA12x6RelStTzOffsetHrs=wtWebioEA12x6RelStTzOffsetHrs, wtWebioEA2x2SyslogServerPort=wtWebioEA2x2SyslogServerPort, wtWebioEA12x12ClockHrs=wtWebioEA12x12ClockHrs, wtWebioEA2x2StTzEnable=wtWebioEA2x2StTzEnable, wtWebioEA24oemMail=wtWebioEA24oemMail, wtWebioEA2x2ERP_24VDeviceName=wtWebioEA2x2ERP_24VDeviceName, wtIpWatcher_24VAlarmAckEnable=wtIpWatcher_24VAlarmAckEnable, wtWebioEA2x2ERPText=wtWebioEA2x2ERPText, wtTrapReceiver2x2Alert5=wtTrapReceiver2x2Alert5, wtWebioEA2x2_24VInOut=wtWebioEA2x2_24VInOut, wtWebioEA12x12BinaryTcpClientLocalPort=wtWebioEA12x12BinaryTcpClientLocalPort, wtWebioEA2x2_24VSNMP=wtWebioEA2x2_24VSNMP, wtWebioEA12x6RelERPMailAdName=wtWebioEA12x6RelERPMailAdName, wtWebCount6DeviceName=wtWebCount6DeviceName, wtWebioEA12x6RelERPDeviceName=wtWebioEA12x6RelERPDeviceName, wtWebioEA12x6RelBinaryConnectedPort=wtWebioEA12x6RelBinaryConnectedPort, wtWebioEA2x2ERPAlert15=wtWebioEA2x2ERPAlert15, wtWebioEA12x6RelERPClockDay=wtWebioEA12x6RelERPClockDay, wtWebioEA2x2ERP_24VOutputTable=wtWebioEA2x2ERP_24VOutputTable, wtWebioEA2x2ERPBinaryTcpClientServerPort=wtWebioEA2x2ERPBinaryTcpClientServerPort, wtWebioEA2x2ERPAlarmTcpPort=wtWebioEA2x2ERPAlarmTcpPort, wtWebioEA6x6ClockMin=wtWebioEA6x6ClockMin, wtWebioEA12x6RelERPFTPServerControlPort=wtWebioEA12x6RelERPFTPServerControlPort, wtWebioEA24oemSyslogSystemMessagesEnable=wtWebioEA24oemSyslogSystemMessagesEnable, wtWebioEA12x6RelStTzStartMin=wtWebioEA12x6RelStTzStartMin, wtWebioEA24oemAlarmFtpOption=wtWebioEA24oemAlarmFtpOption, wtWebioEA2x2ERP_24VHttpInputTrigger=wtWebioEA2x2ERP_24VHttpInputTrigger, wtTrapReceiver2x2InputPortTable=wtTrapReceiver2x2InputPortTable, wtIpWatcherAlarmMailTrapTxEnable=wtIpWatcherAlarmMailTrapTxEnable, wtTrapReceiver2x2Diag=wtTrapReceiver2x2Diag, wtWebioEA2x2_24VAlarmUdpPort=wtWebioEA2x2_24VAlarmUdpPort, wtIpWatcherAlarmIfTable=wtIpWatcherAlarmIfTable, wtWebAlarm6x6MailReply=wtWebAlarm6x6MailReply, wtWebioEA24oemAlert18=wtWebioEA24oemAlert18, wtWebioEA12x6RelERPAddConfig=wtWebioEA12x6RelERPAddConfig, wtTrapReceiver2x2ButtonTable=wtTrapReceiver2x2ButtonTable, wtTrapReceiver2x2StTzStopMonth=wtTrapReceiver2x2StTzStopMonth, wtWebCount6Alert8=wtWebCount6Alert8, wtWebioEA12x12AlarmTable=wtWebioEA12x12AlarmTable, wtWebioEA24oemPortOutputSafetyState=wtWebioEA24oemPortOutputSafetyState, wtIpWatcherOutputs=wtIpWatcherOutputs, wtIpWatcherAlert6=wtIpWatcherAlert6, wtWebioEA12x6RelBinaryModeCount=wtWebioEA12x6RelBinaryModeCount, wtWebioEA24oemAlert21=wtWebioEA24oemAlert21, wtWebioEA2x2ERP_24VDevice=wtWebioEA2x2ERP_24VDevice, wtWebioEA2x2AlarmMailReleaseSubject=wtWebioEA2x2AlarmMailReleaseSubject, wtTrapReceiver2x2Alert3=wtTrapReceiver2x2Alert3, wtWebioEA12x6RelBinaryTcpServerClientHttpPort=wtWebioEA12x6RelBinaryTcpServerClientHttpPort, wtWebioEA6x6TzOffsetMin=wtWebioEA6x6TzOffsetMin, wtWebCount6ClockHrs=wtWebCount6ClockHrs, wtWebioEA24oemOutputPortTable=wtWebioEA24oemOutputPortTable, wtWebioEA12x6RelERPBinaryTcpServerApplicationMode=wtWebioEA12x6RelERPBinaryTcpServerApplicationMode, wtWebAlarm6x6Inputs=wtWebAlarm6x6Inputs, wtWebCount6FTPAccount=wtWebCount6FTPAccount, wtWebioEA12x6RelERPPortOutputName=wtWebioEA12x6RelERPPortOutputName, wtWebioEA2x2OutputValue=wtWebioEA2x2OutputValue, wtWebioEA6x6BinaryIfEntry=wtWebioEA6x6BinaryIfEntry, wtWebioEA2x2ERP_24VAlarmMailReleaseText=wtWebioEA2x2ERP_24VAlarmMailReleaseText, wtWebioEA2x2_24VAlert14=wtWebioEA2x2_24VAlert14, wtWebioEA2x2AlarmSnmpManagerIP=wtWebioEA2x2AlarmSnmpManagerIP, wtWebioEA12x6RelERPAlarmTable=wtWebioEA12x6RelERPAlarmTable, wtWebioEA12x12InputNo=wtWebioEA12x12InputNo, wtWebAlarm6x6Alert22=wtWebAlarm6x6Alert22, wtWebioEA6x6Alert12=wtWebioEA6x6Alert12, wtWebioEA12x6RelERPDiagErrorClear=wtWebioEA12x6RelERPDiagErrorClear, wtWebioEA12x6RelERPOutputEntry=wtWebioEA12x6RelERPOutputEntry, wtWebioEA2x2ERPBinaryUdpPeerInputTrigger=wtWebioEA2x2ERPBinaryUdpPeerInputTrigger, wtWebioEA2x2ERP_24VInputEntry=wtWebioEA2x2ERP_24VInputEntry, wtWebioEA2x2DiagErrorCount=wtWebioEA2x2DiagErrorCount, wtIpWatcherFTPPassword=wtIpWatcherFTPPassword, wtWebioEA12x6RelSyslogServerIP=wtWebioEA12x6RelSyslogServerIP, wtWebioEA6x6UDP=wtWebioEA6x6UDP, wtWebioEA12x12AlarmSnmpTrapReleaseText=wtWebioEA12x12AlarmSnmpTrapReleaseText, wtWebioEA2x2_24VStartup=wtWebioEA2x2_24VStartup, wtWebioEA24oemStTzStopHrs=wtWebioEA24oemStTzStopHrs, wtWebioEA2x2ERP_24VFTPUserName=wtWebioEA2x2ERP_24VFTPUserName, wtWebioEA24oemBinaryIfTable=wtWebioEA24oemBinaryIfTable, wtWebioEA2x2ERP_24VMail=wtWebioEA2x2ERP_24VMail, wtWebioEA6x6DeviceText=wtWebioEA6x6DeviceText, wtWebioEA2x2DnsServer2=wtWebioEA2x2DnsServer2, wtIpWatcherAlert23=wtIpWatcherAlert23, wtIpWatcherAlarmTcpPort=wtIpWatcherAlarmTcpPort, wtWebAlarm6x6AlarmMailTrgClearSubject=wtWebAlarm6x6AlarmMailTrgClearSubject, wtWebioEA2x2ERPPortOutputGroupMode=wtWebioEA2x2ERPPortOutputGroupMode, wtIpWatcherIpAddress=wtIpWatcherIpAddress, wtWebioEA2x2_24VSnmpCommunityStringRead=wtWebioEA2x2_24VSnmpCommunityStringRead, wtTrapReceiver2x2ActionMailSubject=wtTrapReceiver2x2ActionMailSubject, wtWebioEA2x2_24VSnmpSystemTrapManagerIP=wtWebioEA2x2_24VSnmpSystemTrapManagerIP, wtWebioEA12x12LoadControlEnable=wtWebioEA12x12LoadControlEnable, wtWebioEA12x6RelERPPortLogicFunction=wtWebioEA12x6RelERPPortLogicFunction, wtWebioEA2x2ERP_24VPortInputName=wtWebioEA2x2ERP_24VPortInputName, wtWebioEA12x6RelMfDeviceTyp=wtWebioEA12x6RelMfDeviceTyp, wtWebioEA24oemPortLogicInputInverter=wtWebioEA24oemPortLogicInputInverter, wtIpWatcher_24VAlarmMailReleaseText=wtIpWatcher_24VAlarmMailReleaseText, wtWebioEA12x6RelAlert10=wtWebioEA12x6RelAlert10, wtWebioEA2x2ERP_24VInputState=wtWebioEA2x2ERP_24VInputState, wtWebioEA2x2ERPOutputModeEntry=wtWebioEA2x2ERPOutputModeEntry, wtWebioEA2x2ERP_24VFTP=wtWebioEA2x2ERP_24VFTP, wtWebioEA12x6RelAlert1=wtWebioEA12x6RelAlert1, wtWebCount6TimeServer1=wtWebCount6TimeServer1, wtWebCount6DiagErrorClear=wtWebCount6DiagErrorClear)
mibBuilder.exportSymbols("Webio-Digital-MIB-US", wtWebioEA6x6Alert21=wtWebioEA6x6Alert21, wtWebioEA2x2ERPAlarmInputTrigger=wtWebioEA2x2ERPAlarmInputTrigger, wtWebAlarm6x6AlarmSnmpTrapTrapTxEnable=wtWebAlarm6x6AlarmSnmpTrapTrapTxEnable, wtWebioEA6x6MfDeviceTyp=wtWebioEA6x6MfDeviceTyp, wtWebioEA2x2ERP_24VInputs=wtWebioEA2x2ERP_24VInputs, wtWebioEA12x6RelERPDiagErrorCount=wtWebioEA12x6RelERPDiagErrorCount, wtIpWatcher_24VStTzStartMin=wtIpWatcher_24VStTzStartMin, wtWebioEA2x2ERPAlert19=wtWebioEA2x2ERPAlert19, wtIpWatcher_24VAlarmSnmpTrapTrgClearText=wtIpWatcher_24VAlarmSnmpTrapTrgClearText, wtIpWatcher_24VAlarmTcpText=wtIpWatcher_24VAlarmTcpText, wtWebCount6DeviceClock=wtWebCount6DeviceClock, wtWebCount6ReportSyslogPort=wtWebCount6ReportSyslogPort, wtWebioEA6x6InputCounterClear=wtWebioEA6x6InputCounterClear, wtWebCount6UdpRemotePort=wtWebCount6UdpRemotePort, wtIpWatcher_24VAlarmSetPort=wtIpWatcher_24VAlarmSetPort, wtWebCount6=wtWebCount6, wtWebAlarm6x6AlarmSyslogIpAddr=wtWebAlarm6x6AlarmSyslogIpAddr, wtWebioEA2x2ERP_24VAlert14=wtWebioEA2x2ERP_24VAlert14, wtTrapReceiver2x2PortButtonEnable=wtTrapReceiver2x2PortButtonEnable, wtWebCount6Manufact=wtWebCount6Manufact, wtWebioEA6x6TimeZone=wtWebioEA6x6TimeZone, wtWebAlarm6x6SessCntrl=wtWebAlarm6x6SessCntrl, wtWebAlarm6x6=wtWebAlarm6x6, wtIpWatcherDnsServer2=wtIpWatcherDnsServer2, wtWebioEA2x2BinaryUdpPeerRemoteIpAddr=wtWebioEA2x2BinaryUdpPeerRemoteIpAddr, wtWebioEA2x2_24VDiagErrorIndex=wtWebioEA2x2_24VDiagErrorIndex, wtWebioEA2x2_24VAlarmMailAddr=wtWebioEA2x2_24VAlarmMailAddr, wtIpWatcherSyslogServerPort=wtIpWatcherSyslogServerPort, wtWebioEA12x6RelERPMailPop3Server=wtWebioEA12x6RelERPMailPop3Server, wtWebioEA2x2ERP_24VPortInputText=wtWebioEA2x2ERP_24VPortInputText, wtWebAlarm6x6StTzStopMode=wtWebAlarm6x6StTzStopMode, wtWebCount6TimeServer=wtWebCount6TimeServer, wtWebioEA12x6RelAlarmMaxCounterValue=wtWebioEA12x6RelAlarmMaxCounterValue, wtWebioEA12x6RelFTPEnable=wtWebioEA12x6RelFTPEnable, wtWebioEA12x6RelERPMailAuthUser=wtWebioEA12x6RelERPMailAuthUser, wtWebioEA24oemTzOffsetHrs=wtWebioEA24oemTzOffsetHrs, wtWebAlarm6x6InputState=wtWebAlarm6x6InputState, wtTrapReceiver2x2SnmpEnable=wtTrapReceiver2x2SnmpEnable, wtWebAlarm6x6SessCntrlLogout=wtWebAlarm6x6SessCntrlLogout, wtTrapReceiver2x2ActionFtpOption=wtTrapReceiver2x2ActionFtpOption, wtWebioEA12x6RelERPBinaryUdpPeerRemotePort=wtWebioEA12x6RelERPBinaryUdpPeerRemotePort, wtWebioEA24oemSetOutput=wtWebioEA24oemSetOutput, wtTrapReceiver2x2WatchListEnable=wtTrapReceiver2x2WatchListEnable, wtWebioEA6x6AlarmEnable=wtWebioEA6x6AlarmEnable, wtWebioEA2x2ERP_24VStTzStartHrs=wtWebioEA2x2ERP_24VStTzStartHrs, wtWebioEA6x6PortInputText=wtWebioEA6x6PortInputText, wtIpWatcherFTPServerIP=wtIpWatcherFTPServerIP, wtIpWatcher_24VInputCounter=wtIpWatcher_24VInputCounter, wtWebioEA2x2OutputModeEntry=wtWebioEA2x2OutputModeEntry, wtWebioEA12x6RelERPAlarmEntry=wtWebioEA12x6RelERPAlarmEntry, wtWebioEA12x6RelTsEnable=wtWebioEA12x6RelTsEnable, wtWebCount6StTzOffsetHrs=wtWebCount6StTzOffsetHrs, wtWebioEA12x6RelERPOutputs=wtWebioEA12x6RelERPOutputs, wtIpWatcher_24VAlert4=wtIpWatcher_24VAlert4, wtIpWatcher_24VAlarmOutputEntry=wtIpWatcher_24VAlarmOutputEntry, wtWebCount6Device=wtWebCount6Device, wtWebioEA12x12SubnetMask=wtWebioEA12x12SubnetMask, wtIpWatcherAlert7=wtIpWatcherAlert7, wtWebioEA12x6RelMailAdName=wtWebioEA12x6RelMailAdName, wtIpWatcherAlarmTable=wtIpWatcherAlarmTable, wtWebioEA2x2ERP_24VSnmpCommunityStringRead=wtWebioEA2x2ERP_24VSnmpCommunityStringRead, wtTrapReceiver2x2Alert9=wtTrapReceiver2x2Alert9, wtWebioEA6x6Alert4=wtWebioEA6x6Alert4, wtWebCount6FTPServerControlPort=wtWebCount6FTPServerControlPort, wtWebioEA2x2_24VAlarmInterval=wtWebioEA2x2_24VAlarmInterval, wtWebioEA2x2PortPulseDuration=wtWebioEA2x2PortPulseDuration, wtWebioEA6x6AlarmMailSubject=wtWebioEA6x6AlarmMailSubject, wtWebioEA2x2_24VStTzStopMode=wtWebioEA2x2_24VStTzStopMode, wtWebioEA6x6MfAddr=wtWebioEA6x6MfAddr, wtWebioEA2x2_24VPortInputName=wtWebioEA2x2_24VPortInputName, wtWebioEA12x12BinaryIfTable=wtWebioEA12x12BinaryIfTable, wtWebioEA12x12SyslogServerIP=wtWebioEA12x12SyslogServerIP, wtWebioEA12x12FTPAccount=wtWebioEA12x12FTPAccount, wtWebioEA24oemAlert2=wtWebioEA24oemAlert2, wtWebioEA2x2SessCntrlConfigPassword=wtWebioEA2x2SessCntrlConfigPassword, wtWebioEA24oemAlert23=wtWebioEA24oemAlert23, wtWebioEA2x2ERPOutputPortEntry=wtWebioEA2x2ERPOutputPortEntry, wtWebioEA12x6RelERPAlert4=wtWebioEA12x6RelERPAlert4, wtIpWatcher_24VTimeServer=wtIpWatcher_24VTimeServer, wtWebioEA2x2_24VAlert15=wtWebioEA2x2_24VAlert15, wtWebioEA12x6RelERPSessCntrlConfigPassword=wtWebioEA12x6RelERPSessCntrlConfigPassword, wtIpWatcher_24VAlarmSyslogText=wtIpWatcher_24VAlarmSyslogText, wtIpWatcher_24VAlert22=wtIpWatcher_24VAlert22, wtWebioEA2x2_24VBinaryTcpServerApplicationMode=wtWebioEA2x2_24VBinaryTcpServerApplicationMode, wtWebioEA2x2StTzStopHrs=wtWebioEA2x2StTzStopHrs, wtWebioEA2x2_24VStTzStartWday=wtWebioEA2x2_24VStTzStartWday, wtWebioEA6x6Syslog=wtWebioEA6x6Syslog, wtWebioEA2x2ERP_24VAlert7=wtWebioEA2x2ERP_24VAlert7, wtIpWatcher_24VAlarmAckPort=wtIpWatcher_24VAlarmAckPort, wtTrapReceiver2x2SnmpCommunityStringRead=wtTrapReceiver2x2SnmpCommunityStringRead, wtWebAlarm6x6MailAuthPassword=wtWebAlarm6x6MailAuthPassword, wtIpWatcherAlert18=wtIpWatcherAlert18, wtIpWatcher_24VAlert26=wtIpWatcher_24VAlert26, wtWebioEA12x6RelDiagErrorClear=wtWebioEA12x6RelDiagErrorClear, wtWebioEA6x6AlarmFtpReleaseText=wtWebioEA6x6AlarmFtpReleaseText, wtWebioEA12x6RelERPBinaryTcpClientInputTrigger=wtWebioEA12x6RelERPBinaryTcpClientInputTrigger, wtWebioEA12x12SnmpSystemTrapEnable=wtWebioEA12x12SnmpSystemTrapEnable, wtWebioEA2x2ERP_24VAlarmFtpOption=wtWebioEA2x2ERP_24VAlarmFtpOption, wtWebAlarm6x6PortPulseDuration=wtWebAlarm6x6PortPulseDuration, wtWebioEA2x2_24VAlert5=wtWebioEA2x2_24VAlert5, wtWebioEA2x2ERPSnmpSystemTrapManagerIP=wtWebioEA2x2ERPSnmpSystemTrapManagerIP, wtWebioEA2x2ERPAlarmTimerCron=wtWebioEA2x2ERPAlarmTimerCron, wtWebAlarm6x6AlarmUdpIpAddr=wtWebAlarm6x6AlarmUdpIpAddr, wtIpWatcherAlarmMailReleaseSubject=wtIpWatcherAlarmMailReleaseSubject, wtWebioEA24oemBinaryTcpServerInputTrigger=wtWebioEA24oemBinaryTcpServerInputTrigger, wtWebioEA2x2ERPBinaryTcpServerLocalPort=wtWebioEA2x2ERPBinaryTcpServerLocalPort, wtWebioEA12x6RelERPInOut=wtWebioEA12x6RelERPInOut, wtWebCount6InputTable=wtWebCount6InputTable, wtWebioEA6x6Alert20=wtWebioEA6x6Alert20, wtWebioEA2x2ERPAlert18=wtWebioEA2x2ERPAlert18, wtIpWatcher_24VAddConfig=wtIpWatcher_24VAddConfig, wtIpWatcher_24VAlarmTcpPort=wtIpWatcher_24VAlarmTcpPort, wtWebioEA6x6InputTable=wtWebioEA6x6InputTable, wtWebioEA2x2ERPBinaryIfEntry=wtWebioEA2x2ERPBinaryIfEntry, wtWebioEA2x2ERP_24VAlarmFtpDataPort=wtWebioEA2x2ERP_24VAlarmFtpDataPort, wtWebioEA12x6RelERPSessCntrlLogout=wtWebioEA12x6RelERPSessCntrlLogout, wtIpWatcherDeviceContact=wtIpWatcherDeviceContact, wtWebioEA12x6RelMailReply=wtWebioEA12x6RelMailReply, wtWebCount6ClockYear=wtWebCount6ClockYear, wtIpWatcher_24VAlert11=wtIpWatcher_24VAlert11, wtWebioEA24oemFTPServerControlPort=wtWebioEA24oemFTPServerControlPort, wtWebAlarm6x6Alert32=wtWebAlarm6x6Alert32, wtWebioEA12x12BinaryTcpServerInputTrigger=wtWebioEA12x12BinaryTcpServerInputTrigger, wtIpWatcherOutputNo=wtIpWatcherOutputNo, wtTrapReceiver2x2SyslogEnable=wtTrapReceiver2x2SyslogEnable, wtWebioEA12x12InputEntry=wtWebioEA12x12InputEntry, wtIpWatcher_24VPortPulsePolarity=wtIpWatcher_24VPortPulsePolarity, wtWebioEA12x6RelAlert22=wtWebioEA12x6RelAlert22, wtWebioEA24oemAlarmTcpText=wtWebioEA24oemAlarmTcpText, wtWebioEA12x12PortPulsePolarity=wtWebioEA12x12PortPulsePolarity, wtWebioEA12x12SessCntrl=wtWebioEA12x12SessCntrl, wtIpWatcher_24VMailEnable=wtIpWatcher_24VMailEnable, wtTrapReceiver2x2ActionTriggerState=wtTrapReceiver2x2ActionTriggerState, wtTrapReceiver2x2SnmpSystemTrapEnable=wtTrapReceiver2x2SnmpSystemTrapEnable, wtWebioEA6x6OutputNo=wtWebioEA6x6OutputNo, wtWebioEA2x2ERPStTzStopMin=wtWebioEA2x2ERPStTzStopMin, wtWebioEA2x2ERP_24VBinaryModeCount=wtWebioEA2x2ERP_24VBinaryModeCount, wtIpWatcher_24VDeviceText=wtIpWatcher_24VDeviceText, wtWebioEA6x6AlarmSyslogReleaseText=wtWebioEA6x6AlarmSyslogReleaseText, wtWebioEA24oemAlert8=wtWebioEA24oemAlert8, wtWebioEA2x2ERP_24VAlarmUdpIpAddr=wtWebioEA2x2ERP_24VAlarmUdpIpAddr, wtWebCount6ReportSystemTrigger=wtWebCount6ReportSystemTrigger, wtWebioEA2x2ERP_24VPortOutputName=wtWebioEA2x2ERP_24VPortOutputName, wtWebioEA24oemInputEntry=wtWebioEA24oemInputEntry, wtWebioEA2x2ERP_24VAlarmInterval=wtWebioEA2x2ERP_24VAlarmInterval, wtComServer=wtComServer, wtWebioEA2x2ERPAlarmEntry=wtWebioEA2x2ERPAlarmEntry, wtWebioEA2x2StTzStopMonth=wtWebioEA2x2StTzStopMonth, wtWebioEA24oemHttpPort=wtWebioEA24oemHttpPort, wtWebioEA2x2Alert19=wtWebioEA2x2Alert19, wtWebioEA12x6RelERPStTzStartMode=wtWebioEA12x6RelERPStTzStartMode, wtIpWatcherTimeServer2=wtIpWatcherTimeServer2, wtWebioEA12x6RelERPBinaryModeNo=wtWebioEA12x6RelERPBinaryModeNo, wtWebioEA12x12LoadControlView=wtWebioEA12x12LoadControlView, wtWebCount6ReportCount=wtWebCount6ReportCount, wtWebioEA2x2OutputTable=wtWebioEA2x2OutputTable, wtWebioEA2x2OutputEntry=wtWebioEA2x2OutputEntry, wtWebioEA24oemBinaryTcpClientInputTrigger=wtWebioEA24oemBinaryTcpClientInputTrigger, wtWebioEA12x6RelERPHTTP=wtWebioEA12x6RelERPHTTP, wtWebioEA24oemAlarmFtpDataPort=wtWebioEA24oemAlarmFtpDataPort, wtWebioEA2x2_24VAlert24=wtWebioEA2x2_24VAlert24, wtWebioEA12x12Startup=wtWebioEA12x12Startup, wtWebioEA2x2ERP_24VWayBackServerControlPort=wtWebioEA2x2ERP_24VWayBackServerControlPort, wtWebAlarm6x6AlarmFtpText=wtWebAlarm6x6AlarmFtpText, wtWebioEA12x12BinaryUdpPeerRemoteIpAddr=wtWebioEA12x12BinaryUdpPeerRemoteIpAddr, wtTrapReceiver2x2Inputs=wtTrapReceiver2x2Inputs, wtIpWatcherIpListService=wtIpWatcherIpListService, wtWebioEA6x6AlarmMailAddr=wtWebioEA6x6AlarmMailAddr, wtWebioEA2x2UdpEnable=wtWebioEA2x2UdpEnable, wtWebAlarm6x6FTPUserName=wtWebAlarm6x6FTPUserName, wtIpWatcherMailAuthentication=wtIpWatcherMailAuthentication, wtWebioEA12x6RelAlert14=wtWebioEA12x6RelAlert14, wtWebioEA12x6RelERPSetOutput=wtWebioEA12x6RelERPSetOutput, wtWebioEA2x2DeviceLocation=wtWebioEA2x2DeviceLocation, wtWebioEA2x2_24VMfInternet=wtWebioEA2x2_24VMfInternet, wtWebioEA12x12Gateway=wtWebioEA12x12Gateway, wtWebioEA6x6DnsServer2=wtWebioEA6x6DnsServer2, wtWebioEA2x2BinaryUdpPeerLocalPort=wtWebioEA2x2BinaryUdpPeerLocalPort, wtWebioEA2x2ERPWayBackFTPPassword=wtWebioEA2x2ERPWayBackFTPPassword, wtWebioEA6x6OutputTable=wtWebioEA6x6OutputTable, wtTrapReceiver2x2DiagErrorIndex=wtTrapReceiver2x2DiagErrorIndex, wtWebioEA2x2_24VSyslogServerPort=wtWebioEA2x2_24VSyslogServerPort, wtWebioEA2x2ERPBinaryModeNo=wtWebioEA2x2ERPBinaryModeNo, wtTrapReceiver2x2DeviceText=wtTrapReceiver2x2DeviceText, wtWebioEA2x2UdpRemotePort=wtWebioEA2x2UdpRemotePort, wtWebioEA12x6RelERPBinaryUdpPeerRemoteIpAddr=wtWebioEA12x6RelERPBinaryUdpPeerRemoteIpAddr, wtIpWatcher_24VInputPortTable=wtIpWatcher_24VInputPortTable, wtWebioEA2x2ERP_24VWayBackFTPTimeOut=wtWebioEA2x2ERP_24VWayBackFTPTimeOut, wtWebAlarm6x6PortInputPulsePolarity=wtWebAlarm6x6PortInputPulsePolarity, wtWebioEA12x6RelERPMailAuthentication=wtWebioEA12x6RelERPMailAuthentication, wtIpWatcher_24VAlarmTcpReleaseText=wtIpWatcher_24VAlarmTcpReleaseText, wtWebioEA12x12AlarmSyslogIpAddr=wtWebioEA12x12AlarmSyslogIpAddr, wtWebioEA12x6RelAlert4=wtWebioEA12x6RelAlert4, wtIpWatcherAlert36=wtIpWatcherAlert36, wtTrapReceiver2x2StTzStopMin=wtTrapReceiver2x2StTzStopMin, wtWebioEA6x6SyslogEnable=wtWebioEA6x6SyslogEnable, wtWebAlarm6x6AlarmInterval=wtWebAlarm6x6AlarmInterval, wtWebioEA12x6RelERPUdpRemotePort=wtWebioEA12x6RelERPUdpRemotePort, wtWebioEA2x2_24VAlarmSyslogIpAddr=wtWebioEA2x2_24VAlarmSyslogIpAddr, wtWebioEA24oemBasic=wtWebioEA24oemBasic, wtIpWatcher_24VAlarmUdpPort=wtIpWatcher_24VAlarmUdpPort, wtWebCount6ReportName=wtWebCount6ReportName, wtWebioEA2x2ERPStTzStopMode=wtWebioEA2x2ERPStTzStopMode, wtWebioEA2x2ERP_24VClockMin=wtWebioEA2x2ERP_24VClockMin, wtIpWatcher_24VAlarmTcpTrgClearText=wtIpWatcher_24VAlarmTcpTrgClearText, wtWebioEA2x2Alert21=wtWebioEA2x2Alert21, wtWebCount6PortInputBicountInactivTimeout=wtWebCount6PortInputBicountInactivTimeout, wtWebioEA2x2ERPAlarmUdpReleaseText=wtWebioEA2x2ERPAlarmUdpReleaseText, wtWebioEA2x2ERP_24VDeviceLocation=wtWebioEA2x2ERP_24VDeviceLocation, wtWebioEA2x2DeviceText=wtWebioEA2x2DeviceText, wtWebioEA6x6Alert9=wtWebioEA6x6Alert9, wtWebioEA6x6AlarmSystemTrigger=wtWebioEA6x6AlarmSystemTrigger, wtWebioEA2x2ERPFTPOption=wtWebioEA2x2ERPFTPOption, wtWebioEA2x2OutputPortEntry=wtWebioEA2x2OutputPortEntry, wtTrapReceiver2x2DiagBinaryError=wtTrapReceiver2x2DiagBinaryError, wtIpWatcherStTzStartWday=wtIpWatcherStTzStartWday, wtWebioEA2x2BinaryModeCount=wtWebioEA2x2BinaryModeCount, wtWebAlarm6x6DiagBinaryError=wtWebAlarm6x6DiagBinaryError, wtWebioEA24oemAlarm=wtWebioEA24oemAlarm, wtWebioEA2x2ERPUdpAdminPort=wtWebioEA2x2ERPUdpAdminPort, wtIpWatcher_24VIpList=wtIpWatcher_24VIpList, wtWebioEA12x12StTzStartHrs=wtWebioEA12x12StTzStartHrs, wtWebioEA12x6RelERPDeviceClock=wtWebioEA12x6RelERPDeviceClock, wtWebioEA12x6RelAlert9=wtWebioEA12x6RelAlert9, wtIpWatcherAlert27=wtIpWatcherAlert27, wtIpWatcherIpList=wtIpWatcherIpList, wtWebioEA24oemPortOutputGroupMode=wtWebioEA24oemPortOutputGroupMode, wtWebioEA2x2ERPSubnetMask=wtWebioEA2x2ERPSubnetMask, wtWebioEA2x2ERP_24VOutputMode=wtWebioEA2x2ERP_24VOutputMode, wtTrapReceiver2x2ActionMailText=wtTrapReceiver2x2ActionMailText, wtWebioEA12x6RelSnmpSystemTrapManagerIP=wtWebioEA12x6RelSnmpSystemTrapManagerIP, wtWebAlarm6x6MailServer=wtWebAlarm6x6MailServer, wtWebioEA2x2ERPAlert22=wtWebioEA2x2ERPAlert22, wtWebAlarm6x6InputCounterClear=wtWebAlarm6x6InputCounterClear, wtWebioEA2x2ERP_24VOutputPortEntry=wtWebioEA2x2ERP_24VOutputPortEntry, wtWebioEA6x6AlarmEntry=wtWebioEA6x6AlarmEntry, wtWebAlarm6x6Alert28=wtWebAlarm6x6Alert28, wtWebioEA12x12FTPOption=wtWebioEA12x12FTPOption, wtWebioEA2x2ERP_24VStTzEnable=wtWebioEA2x2ERP_24VStTzEnable, wtIpWatcher_24VClockYear=wtIpWatcher_24VClockYear, wtWebioEA12x12TzOffsetMin=wtWebioEA12x12TzOffsetMin, wtTrapReceiver2x2ActionTcpText=wtTrapReceiver2x2ActionTcpText, wtWebAlarm6x6AlarmOutputTable=wtWebAlarm6x6AlarmOutputTable, wtIpWatcherAlert1=wtIpWatcherAlert1, wtIpWatcher_24VUdpAdminPort=wtIpWatcher_24VUdpAdminPort, wtWebioEA6x6Manufact=wtWebioEA6x6Manufact, wtWebioEA12x12Ports=wtWebioEA12x12Ports, wtWebioEA12x12AlarmMailReleaseText=wtWebioEA12x12AlarmMailReleaseText, wtWebioEA12x12MailAuthUser=wtWebioEA12x12MailAuthUser, wtWebioEA12x12Text=wtWebioEA12x12Text, wtWebAlarm6x6PortPulsePolarity=wtWebAlarm6x6PortPulsePolarity, wtWebioEA2x2MfHotline=wtWebioEA2x2MfHotline, wtWebioEA2x2_24VMailReply=wtWebioEA2x2_24VMailReply, wtWebioEA2x2_24VAlarmCount=wtWebioEA2x2_24VAlarmCount)
mibBuilder.exportSymbols("Webio-Digital-MIB-US", wtWebioEA2x2ClockHrs=wtWebioEA2x2ClockHrs, wtTrapReceiver2x2HTTP=wtTrapReceiver2x2HTTP, wtWebCount6SessCntrlPassword=wtWebCount6SessCntrlPassword, wtWebioEA2x2ERP_24VPortInputBicountInactivTimeout=wtWebioEA2x2ERP_24VPortInputBicountInactivTimeout, wtWebioEA24oemOutputTable=wtWebioEA24oemOutputTable, wtWebCount6DiagErrorIndex=wtWebCount6DiagErrorIndex, wtWebioEA12x12Alert11=wtWebioEA12x12Alert11, wtWebioEA2x2_24VAlarmTcpText=wtWebioEA2x2_24VAlarmTcpText, wtIpWatcher_24VMfDeviceTyp=wtIpWatcher_24VMfDeviceTyp, wtIpWatcherUDP=wtIpWatcherUDP, wtWebioEA6x6Alert2=wtWebioEA6x6Alert2, wtIpWatcher_24VSessCntrlLogout=wtIpWatcher_24VSessCntrlLogout, wtWebioEA6x6SyslogServerPort=wtWebioEA6x6SyslogServerPort, wtWebCount6Ports=wtWebCount6Ports, wtWebioEA2x2ERP_24VText=wtWebioEA2x2ERP_24VText, wtWebioEA2x2ERPBinaryTcpClientInputTrigger=wtWebioEA2x2ERPBinaryTcpClientInputTrigger, wtWebioEA12x6RelERPStTzStartHrs=wtWebioEA12x6RelERPStTzStartHrs, wtWebioEA2x2ERPOutputModeTable=wtWebioEA2x2ERPOutputModeTable, wtWebioEA2x2ERP_24VClockYear=wtWebioEA2x2ERP_24VClockYear, wtWebioEA2x2_24VAlarmSnmpTrapReleaseText=wtWebioEA2x2_24VAlarmSnmpTrapReleaseText, wtTrapReceiver2x2UdpEnable=wtTrapReceiver2x2UdpEnable, wtWebioEA24oemAlert20=wtWebioEA24oemAlert20, wtWebioEA12x6RelText=wtWebioEA12x6RelText, wtWebioEA12x12AlarmUdpIpAddr=wtWebioEA12x12AlarmUdpIpAddr, wtWebAlarm6x6MfAddr=wtWebAlarm6x6MfAddr, wtWebioEA6x6BinaryOperationMode=wtWebioEA6x6BinaryOperationMode, wtWebioEA2x2_24VDeviceClock=wtWebioEA2x2_24VDeviceClock, wtWebioEA2x2ERPOutputModeBit=wtWebioEA2x2ERPOutputModeBit, wtIpWatcherInputTable=wtIpWatcherInputTable, wtWebioEA2x2_24VBinaryUdpPeerApplicationMode=wtWebioEA2x2_24VBinaryUdpPeerApplicationMode, wtWebioEA2x2DeviceClock=wtWebioEA2x2DeviceClock, wtWebioEA6x6PortOutputSafetyState=wtWebioEA6x6PortOutputSafetyState, wtIpWatcher_24VDiagErrorClear=wtIpWatcher_24VDiagErrorClear, wtWebioEA2x2DiagErrorIndex=wtWebioEA2x2DiagErrorIndex, wtWebAlarm6x6Alert35=wtWebAlarm6x6Alert35, wtIpWatcher_24VPortOutputName=wtIpWatcher_24VPortOutputName, wtWebioEA2x2TsSyncTime=wtWebioEA2x2TsSyncTime, wtWebioEA6x6HTTP=wtWebioEA6x6HTTP, wtWebioEA2x2_24VSessCntrlAdminPassword=wtWebioEA2x2_24VSessCntrlAdminPassword, wtWebioEA2x2ERP_24VPortLogicOutputInverter=wtWebioEA2x2ERP_24VPortLogicOutputInverter, wtWebioEA2x2ERPBinaryConnectedIpAddr=wtWebioEA2x2ERPBinaryConnectedIpAddr, wtWebioEA2x2=wtWebioEA2x2, wtWebioEA2x2_24VAlarmFtpFileName=wtWebioEA2x2_24VAlarmFtpFileName, wtIpWatcher_24VAlarmFtpReleaseText=wtIpWatcher_24VAlarmFtpReleaseText, wtWebioEA2x2ERP_24VPortOutputGroupMode=wtWebioEA2x2ERP_24VPortOutputGroupMode, wtWebioEA12x12StTzStartMonth=wtWebioEA12x12StTzStartMonth, wtWebioEA2x2_24VSyslogSystemMessagesEnable=wtWebioEA2x2_24VSyslogSystemMessagesEnable, wtWebioEA12x6RelSyslog=wtWebioEA12x6RelSyslog, wtWebioEA12x6RelPortLogicInputInverter=wtWebioEA12x6RelPortLogicInputInverter, wtWebioEA12x12Alert2=wtWebioEA12x12Alert2, wtWebioEA12x6RelERPStartup=wtWebioEA12x6RelERPStartup, wtWebioEA12x6RelPortLogicOutputInverter=wtWebioEA12x6RelPortLogicOutputInverter, wtWebioEA2x2ERPStTzStartMode=wtWebioEA2x2ERPStTzStartMode, wtWebioEA24oemBinaryTable=wtWebioEA24oemBinaryTable, wtWebioEA6x6AlarmSyslogText=wtWebioEA6x6AlarmSyslogText, wtIpWatcherOutputTable=wtIpWatcherOutputTable, wtTrapReceiver2x2ActionTcpPort=wtTrapReceiver2x2ActionTcpPort, wtWebioEA12x6RelBinaryTcpClientInactivity=wtWebioEA12x6RelBinaryTcpClientInactivity, wtIpWatcher_24VInputState=wtIpWatcher_24VInputState, wtIpWatcher_24VDeviceContact=wtIpWatcher_24VDeviceContact, wtIpWatcher_24VFTPPassword=wtIpWatcher_24VFTPPassword, wtTrapReceiver2x2WatchListName=wtTrapReceiver2x2WatchListName, wtWebioEA2x2ERP_24VSessCntrlLogout=wtWebioEA2x2ERP_24VSessCntrlLogout, wtWebCount6ReportTcpIpAddr=wtWebCount6ReportTcpIpAddr, wtWebioEA2x2ERP_24VLoadControlEnable=wtWebioEA2x2ERP_24VLoadControlEnable, wtWebCount6ReportSyslogText=wtWebCount6ReportSyslogText, wtWebioEA24oemBinaryUdpPeerRemotePort=wtWebioEA24oemBinaryUdpPeerRemotePort, wtWebCount6TsEnable=wtWebCount6TsEnable, wtWebioEA2x2ERP_24VAlarmOutputTrigger=wtWebioEA2x2ERP_24VAlarmOutputTrigger, wtWebioEA2x2_24VAlarmEntry=wtWebioEA2x2_24VAlarmEntry, wtWebioEA12x12PortInputText=wtWebioEA12x12PortInputText, wtWebioEA2x2_24VHttpInputTrigger=wtWebioEA2x2_24VHttpInputTrigger, wtWebioEA2x2ERP_24VDnsServer2=wtWebioEA2x2ERP_24VDnsServer2, wtWebioEA12x6RelERPInputs=wtWebioEA12x6RelERPInputs, wtIpWatcherAlarmTcpText=wtIpWatcherAlarmTcpText, wtIpWatcherFTPOption=wtIpWatcherFTPOption, wtWebioEA2x2Binary=wtWebioEA2x2Binary, wtWebioEA12x6RelAlarmFtpOption=wtWebioEA12x6RelAlarmFtpOption, wtWebioEA12x12AlarmSyslogPort=wtWebioEA12x12AlarmSyslogPort, wtWebioEA2x2ERPSessCntrlAdminPassword=wtWebioEA2x2ERPSessCntrlAdminPassword, wtWebioEA12x6RelERPTimeServer1=wtWebioEA12x6RelERPTimeServer1, wtWebioEA24oemAlarmSyslogPort=wtWebioEA24oemAlarmSyslogPort, wtWebioEA12x6RelSessCntrlLogout=wtWebioEA12x6RelSessCntrlLogout, wtWebioEA2x2BinaryOperationMode=wtWebioEA2x2BinaryOperationMode, wtWebioEA12x6RelSNMP=wtWebioEA12x6RelSNMP, wtWebioEA12x6RelERPAlert2=wtWebioEA12x6RelERPAlert2, wtWebAlarm6x6AlarmFtpTrgClearText=wtWebAlarm6x6AlarmFtpTrgClearText, wtWebioEA6x6AlarmMailText=wtWebioEA6x6AlarmMailText, wtWebioEA2x2ERP_24VSyslog=wtWebioEA2x2ERP_24VSyslog, wtWebioEA2x2ERPMailPop3Server=wtWebioEA2x2ERPMailPop3Server, wtWebioEA2x2ERPFTPUserName=wtWebioEA2x2ERPFTPUserName, wtWebioEA24oemBinaryEntry=wtWebioEA24oemBinaryEntry, wtWebioEA12x6RelERPOutputTable=wtWebioEA12x6RelERPOutputTable, wtWebioEA12x12StTzStartMode=wtWebioEA12x12StTzStartMode, wtWebCount6AddConfig=wtWebCount6AddConfig, wtWebioEA6x6BinaryIfTable=wtWebioEA6x6BinaryIfTable, wtIpWatcher_24VAlarmTimerCron=wtIpWatcher_24VAlarmTimerCron, wtIpWatcherAlarmMailReleaseText=wtIpWatcherAlarmMailReleaseText, wtWebioEA6x6PortInputMode=wtWebioEA6x6PortInputMode, wtIpWatcher_24VAlert15=wtIpWatcher_24VAlert15, wtWebioEA2x2_24VHttpPort=wtWebioEA2x2_24VHttpPort, wtWebioEA12x6RelERPAlert23=wtWebioEA12x6RelERPAlert23, wtWebioEA24oemSubnetMask=wtWebioEA24oemSubnetMask, wtIpWatcherAlarmUdpPort=wtIpWatcherAlarmUdpPort, wtWebioEA2x2Alert13=wtWebioEA2x2Alert13, wtWebioEA12x6RelBinaryTcpServerInputTrigger=wtWebioEA12x6RelBinaryTcpServerInputTrigger, wtWebioEA2x2ERPMail=wtWebioEA2x2ERPMail, wtWebAlarm6x6FTPServerIP=wtWebAlarm6x6FTPServerIP, wtWebioEA2x2ERPAlarmSnmpTrapText=wtWebioEA2x2ERPAlarmSnmpTrapText, wtWebioEA24oemSessCntrlAdminPassword=wtWebioEA24oemSessCntrlAdminPassword, wtWebioEA2x2ERPLoadControlView=wtWebioEA2x2ERPLoadControlView, wtWebioEA12x6RelERP=wtWebioEA12x6RelERP, wtWebAlarm6x6AlarmName=wtWebAlarm6x6AlarmName, wtWebioEA24oemSessCntrlLogout=wtWebioEA24oemSessCntrlLogout, wtWebioEA12x12AlarmMailText=wtWebioEA12x12AlarmMailText, wtIpWatcherAlarmOutputEntry=wtIpWatcherAlarmOutputEntry, wtWebioEA6x6FTPAccount=wtWebioEA6x6FTPAccount, wtWebioEA2x2_24VBinaryModeCount=wtWebioEA2x2_24VBinaryModeCount, wtWebioEA12x12SNMP=wtWebioEA12x12SNMP, wtWebAlarm6x6ClockDay=wtWebAlarm6x6ClockDay, wtTrapReceiver2x2SystemTimerTable=wtTrapReceiver2x2SystemTimerTable, wtWebioEA12x12PortInputBicountInactivTimeout=wtWebioEA12x12PortInputBicountInactivTimeout, wtWebCount6ReportOutputTable=wtWebCount6ReportOutputTable, wtIpWatcherAlarmCounterClear=wtIpWatcherAlarmCounterClear, wtWebioEA2x2ERP_24VSafetyTimeout=wtWebioEA2x2ERP_24VSafetyTimeout, wtTrapReceiver2x2ActionSyslogPort=wtTrapReceiver2x2ActionSyslogPort, wtWebioEA12x6RelAlert17=wtWebioEA12x6RelAlert17, wtWebioEA12x6RelHTTP=wtWebioEA12x6RelHTTP, wtIpWatcher_24VSNMP=wtIpWatcher_24VSNMP, wtWebioEA24oemGateway=wtWebioEA24oemGateway, wtTrapReceiver2x2ActionUdpText=wtTrapReceiver2x2ActionUdpText, wtWebioEA6x6StTzStartHrs=wtWebioEA6x6StTzStartHrs, wtWebioEA2x2ERPStartup=wtWebioEA2x2ERPStartup, wtWebioEA2x2_24VOutputEntry=wtWebioEA2x2_24VOutputEntry, wtWebioEA2x2ERPAlarmMailReleaseSubject=wtWebioEA2x2ERPAlarmMailReleaseSubject, wtTrapReceiver2x2FTPAccount=wtTrapReceiver2x2FTPAccount, wtWebioEA12x6RelERPAlert17=wtWebioEA12x6RelERPAlert17, wtWebioEA2x2ERP_24VClockDay=wtWebioEA2x2ERP_24VClockDay, wtWebCount6ReportFtpOption=wtWebCount6ReportFtpOption, wtWebioEA2x2FTPAccount=wtWebioEA2x2FTPAccount, wtWebioEA2x2TimeServer1=wtWebioEA2x2TimeServer1, wtWebAlarm6x6TzEnable=wtWebAlarm6x6TzEnable, wtWebioEA24oemPortPulsePolarity=wtWebioEA24oemPortPulsePolarity, wtWebioEA2x2Network=wtWebioEA2x2Network, wtWebioEA2x2_24VTimeZone=wtWebioEA2x2_24VTimeZone, wtWebioEA2x2ERPFTPServerIP=wtWebioEA2x2ERPFTPServerIP, wtWebioEA2x2TzOffsetMin=wtWebioEA2x2TzOffsetMin, wtWebioEA2x2ERPInputState=wtWebioEA2x2ERPInputState, wtIpWatcherAlert2=wtIpWatcherAlert2, wtWebioEA2x2ERP_24VStTzStartWday=wtWebioEA2x2ERP_24VStTzStartWday, wtWebioEA2x2AlarmTcpPort=wtWebioEA2x2AlarmTcpPort, wtWebioEA2x2ERP_24VAddConfig=wtWebioEA2x2ERP_24VAddConfig, wtWebioEA2x2ERP_24VSyslogServerPort=wtWebioEA2x2ERP_24VSyslogServerPort, wtIpWatcher_24VAlarmFtpTrapTxEnable=wtIpWatcher_24VAlarmFtpTrapTxEnable, wtWebioEA2x2_24VSessCntrlConfigPassword=wtWebioEA2x2_24VSessCntrlConfigPassword, wtWebioEA6x6InputNo=wtWebioEA6x6InputNo, wtIpWatcherSnmpEnable=wtIpWatcherSnmpEnable, wtWebCount6SyslogServerIP=wtWebCount6SyslogServerIP, wtWebioEA6x6StTzStartMode=wtWebioEA6x6StTzStartMode, wtWebioEA6x6DeviceClock=wtWebioEA6x6DeviceClock, wtWebioEA12x6RelERPAlarmMailAddr=wtWebioEA12x6RelERPAlarmMailAddr, wtWebioEA24oemAlert19=wtWebioEA24oemAlert19, wtIpWatcherStTzStartMode=wtIpWatcherStTzStartMode, wtWebioEA6x6SafetyTimeout=wtWebioEA6x6SafetyTimeout, wtWebioEA2x2ERPDnsServer1=wtWebioEA2x2ERPDnsServer1, wtWebioEA12x6RelERPSyslogEnable=wtWebioEA12x6RelERPSyslogEnable, wtWebioEA12x6RelPortInputBicountPulsePolarity=wtWebioEA12x6RelPortInputBicountPulsePolarity, wtWebioEA12x6RelERPBinaryTcpClientServerIpAddr=wtWebioEA12x6RelERPBinaryTcpClientServerIpAddr, wtWebAlarm6x6Alert8=wtWebAlarm6x6Alert8, wtIpWatcher_24VSnmpCommunityStringReadWrite=wtIpWatcher_24VSnmpCommunityStringReadWrite, wtTrapReceiver2x2PrepareOutEvents=wtTrapReceiver2x2PrepareOutEvents, wtIpWatcherMfAddr=wtIpWatcherMfAddr, wtWebioEA12x6RelERPSafetyTimeout=wtWebioEA12x6RelERPSafetyTimeout, wtWebioEA2x2BinaryTcpServerLocalPort=wtWebioEA2x2BinaryTcpServerLocalPort, wtWebioEA12x12PortLogicInputInverter=wtWebioEA12x12PortLogicInputInverter, wtWebioEA12x6RelERPSessCntrlPassword=wtWebioEA12x6RelERPSessCntrlPassword, wtWebioEA12x6RelAlarm=wtWebioEA12x6RelAlarm, wtWebioEA2x2ERPAlarmSnmpManagerIP=wtWebioEA2x2ERPAlarmSnmpManagerIP, wtWebAlarm6x6ClockHrs=wtWebAlarm6x6ClockHrs, wtWebioEA6x6DeviceName=wtWebioEA6x6DeviceName, wtWebioEA12x6RelSetOutput=wtWebioEA12x6RelSetOutput, wtWebioEA6x6AlarmMailReleaseText=wtWebioEA6x6AlarmMailReleaseText, wtWebioEA24oemAlert14=wtWebioEA24oemAlert14, wtWebioEA12x6RelERPClockMonth=wtWebioEA12x6RelERPClockMonth, wtWebioEA2x2ERP_24VStTzStopWday=wtWebioEA2x2ERP_24VStTzStopWday, wtWebioEA2x2ERP_24VAlarmInputTrigger=wtWebioEA2x2ERP_24VAlarmInputTrigger, wtWebioEA2x2_24VAlarmMailText=wtWebioEA2x2_24VAlarmMailText, wtWebioEA2x2ERP_24VPortOutputText=wtWebioEA2x2ERP_24VPortOutputText, wtWebioEA12x6RelAlarmFtpText=wtWebioEA12x6RelAlarmFtpText, wtWebioEA2x2ERP_24VPortLogicFunction=wtWebioEA2x2ERP_24VPortLogicFunction, wtWebioEA12x6RelBinaryUdpPeerRemoteIpAddr=wtWebioEA12x6RelBinaryUdpPeerRemoteIpAddr, wtWebioEA12x12TsEnable=wtWebioEA12x12TsEnable, wtWebioEA6x6StTzStartMin=wtWebioEA6x6StTzStartMin, wtIpWatcherOutputPortTable=wtIpWatcherOutputPortTable, wtIpWatcher_24VSessCntrl=wtIpWatcher_24VSessCntrl, wtWebioEA6x6Config=wtWebioEA6x6Config, wtWebioEA6x6SessCntrl=wtWebioEA6x6SessCntrl, wtWebioEA12x12BinaryTcpClientApplicationMode=wtWebioEA12x12BinaryTcpClientApplicationMode, wtWebioEA24oemBinaryUdpPeerApplicationMode=wtWebioEA24oemBinaryUdpPeerApplicationMode, wtWebioEA2x2LCShutDownView=wtWebioEA2x2LCShutDownView, wtIpWatcher_24VSubnetMask=wtIpWatcher_24VSubnetMask, wtWebioEA2x2Alert24=wtWebioEA2x2Alert24, wtWebCount6Alert11=wtWebCount6Alert11, wtWebioEA2x2_24VSyslogServerIP=wtWebioEA2x2_24VSyslogServerIP, wtIpWatcher_24VClockHrs=wtIpWatcher_24VClockHrs, wtWebioEA24oemAlert13=wtWebioEA24oemAlert13, wtWebioEA12x6RelPortLogicFunction=wtWebioEA12x6RelPortLogicFunction, wtWebioEA6x6Alert13=wtWebioEA6x6Alert13, wtWebioEA12x6RelERPStTzStartMonth=wtWebioEA12x6RelERPStTzStartMonth, wtWebioEA2x2ERP_24VAlert9=wtWebioEA2x2ERP_24VAlert9, wtWebioEA24oemSnmpSystemTrapEnable=wtWebioEA24oemSnmpSystemTrapEnable, wtWebioEA2x2BinaryTcpClientApplicationMode=wtWebioEA2x2BinaryTcpClientApplicationMode, wtWebioEA12x6RelDeviceText=wtWebioEA12x6RelDeviceText, wtTrapReceiver2x2SubnetMask=wtTrapReceiver2x2SubnetMask, wtWebioEA2x2Alert4=wtWebioEA2x2Alert4, wtTrapReceiver2x2Action=wtTrapReceiver2x2Action, wtWebioEA6x6Alert16=wtWebioEA6x6Alert16, wtIpWatcher_24VAlert25=wtIpWatcher_24VAlert25, wtIpWatcherAlarmTcpTrapTxEnable=wtIpWatcherAlarmTcpTrapTxEnable, wtWebioEA2x2AlarmTcpText=wtWebioEA2x2AlarmTcpText, wtWebioEA6x6Alert5=wtWebioEA6x6Alert5, wtTrapReceiver2x2ButtonPortEntry=wtTrapReceiver2x2ButtonPortEntry, wtWebioEA12x6RelTimeDate=wtWebioEA12x6RelTimeDate, wtWebAlarm6x6Alert1=wtWebAlarm6x6Alert1, wtWebCount6SyslogEnable=wtWebCount6SyslogEnable, wtTrapReceiver2x2AddConfig=wtTrapReceiver2x2AddConfig, wtTrapReceiver2x2ClockDay=wtTrapReceiver2x2ClockDay, wtWebioEA12x6RelERPClockMin=wtWebioEA12x6RelERPClockMin, wtIpWatcher_24VTzOffsetMin=wtIpWatcher_24VTzOffsetMin, wtWebioEA2x2ERP_24VMfDeviceTyp=wtWebioEA2x2ERP_24VMfDeviceTyp, wtWebioEA2x2TzOffsetHrs=wtWebioEA2x2TzOffsetHrs, wtWebioEA2x2_24VStTzStartMin=wtWebioEA2x2_24VStTzStartMin, wtWebioEA12x12UdpAdminPort=wtWebioEA12x12UdpAdminPort, wtIpWatcherAlarmCount=wtIpWatcherAlarmCount, wtWebCount6InputEntry=wtWebCount6InputEntry, wtWebioEA12x6RelInputEntry=wtWebioEA12x6RelInputEntry, wtWebAlarm6x6MfDeviceTyp=wtWebAlarm6x6MfDeviceTyp, wtWebioEA2x2_24VPorts=wtWebioEA2x2_24VPorts, wtWebioEA2x2_24VBinary=wtWebioEA2x2_24VBinary, wtWebioEA6x6BinaryConnectedIpAddr=wtWebioEA6x6BinaryConnectedIpAddr, wtWebCount6ReportTable=wtWebCount6ReportTable, wtWebioEA2x2ERPSyslogServerPort=wtWebioEA2x2ERPSyslogServerPort, wtWebioEA12x6RelAlarmSnmpManagerIP=wtWebioEA12x6RelAlarmSnmpManagerIP, wtWebioEA2x2MailAuthUser=wtWebioEA2x2MailAuthUser, wtWebioEA24oemStTzStartMode=wtWebioEA24oemStTzStartMode, wtWebioEA12x6RelAlarmEnable=wtWebioEA12x6RelAlarmEnable, wtWebioEA2x2ERPSetOutput=wtWebioEA2x2ERPSetOutput, wtWebioEA2x2PortInputMode=wtWebioEA2x2PortInputMode, wtWebioEA12x6RelERPPortOutputGroupMode=wtWebioEA12x6RelERPPortOutputGroupMode, wtWebioEA24oemAlert27=wtWebioEA24oemAlert27, wtWebAlarm6x6AlarmMailTrgClearText=wtWebAlarm6x6AlarmMailTrgClearText, wtWebioEA2x2_24VTsEnable=wtWebioEA2x2_24VTsEnable, wtWebioEA24oemStTzStopWday=wtWebioEA24oemStTzStopWday, wtWebioEA2x2ERPInputTable=wtWebioEA2x2ERPInputTable)
mibBuilder.exportSymbols("Webio-Digital-MIB-US", wtIpWatcher_24VAlarmSnmpManagerIP=wtIpWatcher_24VAlarmSnmpManagerIP, wtIpWatcher_24VAlarmGlobalEnable=wtIpWatcher_24VAlarmGlobalEnable, wtWebioEA2x2ERP_24VBinaryUdpPeerLocalPort=wtWebioEA2x2ERP_24VBinaryUdpPeerLocalPort, wtWebioEA12x6RelAlert21=wtWebioEA12x6RelAlert21, wtWebioEA6x6BinaryConnectedPort=wtWebioEA6x6BinaryConnectedPort, wtWebioEA2x2ERPAlert11=wtWebioEA2x2ERPAlert11, wtWebioEA2x2ERP_24VMailAdName=wtWebioEA2x2ERP_24VMailAdName, wtWebioEA2x2ERP_24VOutputValue=wtWebioEA2x2ERP_24VOutputValue, wtIpWatcherAlarmIfEntry=wtIpWatcherAlarmIfEntry, wtWebioEA2x2_24VPortInputFilter=wtWebioEA2x2_24VPortInputFilter, wtTrapReceiver2x2ClockHrs=wtTrapReceiver2x2ClockHrs, wtWebioEA2x2_24VSetOutput=wtWebioEA2x2_24VSetOutput, wtWebioEA2x2MfInternet=wtWebioEA2x2MfInternet, wtWebioEA12x6RelERPAlarmTcpReleaseText=wtWebioEA12x6RelERPAlarmTcpReleaseText, wtWebioEA2x2_24VDiagErrorMessage=wtWebioEA2x2_24VDiagErrorMessage, wtIpWatcher_24VAlert14=wtIpWatcher_24VAlert14, wtWebioEA2x2ERP_24VAlert8=wtWebioEA2x2ERP_24VAlert8, wtWebioEA2x2_24VClockMin=wtWebioEA2x2_24VClockMin, wtWebioEA12x6RelERPPortInputMode=wtWebioEA12x6RelERPPortInputMode, wtIpWatcher_24VAlarmTcpIpAddr=wtIpWatcher_24VAlarmTcpIpAddr, wtWebioEA12x6RelDiagBinaryError=wtWebioEA12x6RelDiagBinaryError, wtWebioEA24oemBinaryUdpPeerRemoteIpAddr=wtWebioEA24oemBinaryUdpPeerRemoteIpAddr, wtWebioEA6x6SNMP=wtWebioEA6x6SNMP, wtWebioEA6x6FTPServerControlPort=wtWebioEA6x6FTPServerControlPort, wtWebioEA6x6SnmpEnable=wtWebioEA6x6SnmpEnable, wtWebioEA12x6RelOutputModeBit=wtWebioEA12x6RelOutputModeBit, wtWebioEA12x6RelAlarmIfTable=wtWebioEA12x6RelAlarmIfTable, wtWebAlarm6x6AlarmSnmpTrapText=wtWebAlarm6x6AlarmSnmpTrapText, wtWebioEA2x2_24VTzOffsetMin=wtWebioEA2x2_24VTzOffsetMin, wtWebioEA2x2ERP_24VAlert20=wtWebioEA2x2ERP_24VAlert20, wtTrapReceiver2x2SessCntrlPassword=wtTrapReceiver2x2SessCntrlPassword, wtIpWatcher_24VMailReply=wtIpWatcher_24VMailReply, wtWebioEA12x6RelERPAlarmMaxCounterValue=wtWebioEA12x6RelERPAlarmMaxCounterValue, wtWebioEA12x6RelBinaryTcpClientApplicationMode=wtWebioEA12x6RelBinaryTcpClientApplicationMode, wtWebioEA2x2_24VAlert17=wtWebioEA2x2_24VAlert17, wtWebioEA6x6AlarmFtpDataPort=wtWebioEA6x6AlarmFtpDataPort, wtWebioEA2x2InputEntry=wtWebioEA2x2InputEntry, wtWebioEA12x6RelPortPulsePolarity=wtWebioEA12x6RelPortPulsePolarity, wtWebioEA12x12BinaryTcpClientServerIpAddr=wtWebioEA12x12BinaryTcpClientServerIpAddr, wtWebioEA12x6RelSafetyTimeout=wtWebioEA12x6RelSafetyTimeout, wtWebioEA2x2_24VAlarm=wtWebioEA2x2_24VAlarm, wtWebioEA12x6RelERPAlarmInterval=wtWebioEA12x6RelERPAlarmInterval, wtWebioEA2x2ERP_24VMfAddr=wtWebioEA2x2ERP_24VMfAddr, wtWebioEA24oemBinaryTcpClientLocalPort=wtWebioEA24oemBinaryTcpClientLocalPort, wtWebioEA24oemAlert22=wtWebioEA24oemAlert22, wtWebioEA2x2_24VOutputs=wtWebioEA2x2_24VOutputs, wtWebioEA24oemAlert32=wtWebioEA24oemAlert32, wtWebioEA2x2ERPAlert9=wtWebioEA2x2ERPAlert9, wtWebioEA6x6BinaryTcpServerLocalPort=wtWebioEA6x6BinaryTcpServerLocalPort, wtWebioEA2x2ERP_24VAlert1=wtWebioEA2x2ERP_24VAlert1, wtIpWatcherAlarmFtpTrgClearText=wtIpWatcherAlarmFtpTrgClearText, wtWebAlarm6x6Config=wtWebAlarm6x6Config, wtWebioEA2x2PortOutputText=wtWebioEA2x2PortOutputText, wtWebioEA12x12BinaryTcpClientInactivity=wtWebioEA12x12BinaryTcpClientInactivity, wtWebioEA24oemLoadControlView=wtWebioEA24oemLoadControlView, wtWebioEA2x2ClockYear=wtWebioEA2x2ClockYear, wtWebioEA24oemFTPAccount=wtWebioEA24oemFTPAccount, wtWebioEA12x6RelERPAlarmSnmpTrapText=wtWebioEA12x6RelERPAlarmSnmpTrapText, wtIpWatcherAlarmFtpReleaseText=wtIpWatcherAlarmFtpReleaseText, wtWebioEA12x6RelERPAlertDiag=wtWebioEA12x6RelERPAlertDiag, wtIpWatcherPorts=wtIpWatcherPorts, wtWebioEA12x6RelDiagErrorMessage=wtWebioEA12x6RelDiagErrorMessage, wtWebioEA2x2AlarmTimerCron=wtWebioEA2x2AlarmTimerCron, wtWebioEA12x6RelPortOutputText=wtWebioEA12x6RelPortOutputText, wtWebioEA2x2_24VAlert18=wtWebioEA2x2_24VAlert18, wtWebioEA12x6RelBinaryIfTable=wtWebioEA12x6RelBinaryIfTable, wtIpWatcherTsEnable=wtIpWatcherTsEnable, wtWebAlarm6x6Mail=wtWebAlarm6x6Mail, wtWebioEA12x12BinaryTcpClientServerPassword=wtWebioEA12x12BinaryTcpClientServerPassword, wtWebioEA6x6SessCntrlAdminPassword=wtWebioEA6x6SessCntrlAdminPassword, wtWebioEA2x2ERPClockMin=wtWebioEA2x2ERPClockMin, wtWebCount6ReportTcpPort=wtWebCount6ReportTcpPort, wtIpWatcherDeviceClock=wtIpWatcherDeviceClock, wtWebAlarm6x6AlarmIfEntry=wtWebAlarm6x6AlarmIfEntry, wtIpWatcherSyslogEnable=wtIpWatcherSyslogEnable, wtWebioEA2x2AlarmMailAddr=wtWebioEA2x2AlarmMailAddr, wtWebAlarm6x6SyslogServerPort=wtWebAlarm6x6SyslogServerPort, wtWebCount6InputPortTable=wtWebCount6InputPortTable, wtWebioEA2x2OutputNo=wtWebioEA2x2OutputNo, wtIpWatcher_24VPortInputFilter=wtIpWatcher_24VPortInputFilter, wtWebioEA24oemFTPPassword=wtWebioEA24oemFTPPassword, wtWebioEA12x6RelAlarmTcpReleaseText=wtWebioEA12x6RelAlarmTcpReleaseText, wtWebioEA12x12Alert16=wtWebioEA12x12Alert16, wtWebCount6ReportTcpText=wtWebCount6ReportTcpText, wtWebioEA2x2Alert10=wtWebioEA2x2Alert10, wtWebioEA2x2_24VAlarmTcpPort=wtWebioEA2x2_24VAlarmTcpPort, wtWebioEA6x6AlarmSyslogIpAddr=wtWebioEA6x6AlarmSyslogIpAddr, wtWebioEA2x2ERPBinaryTable=wtWebioEA2x2ERPBinaryTable, wtWebioEA2x2_24VDnsServer2=wtWebioEA2x2_24VDnsServer2, wtIpWatcherAlarmTcpIpAddr=wtIpWatcherAlarmTcpIpAddr, wtIpWatcherAlarmName=wtIpWatcherAlarmName, wtIpWatcher_24VSyslogSystemMessagesEnable=wtIpWatcher_24VSyslogSystemMessagesEnable, wtWebioEA24oemTimeZone=wtWebioEA24oemTimeZone, wtWebioEA24oemPortLogicFunction=wtWebioEA24oemPortLogicFunction, wtWebioEA12x6RelERPBinaryTcpClientServerHttpPort=wtWebioEA12x6RelERPBinaryTcpClientServerHttpPort, wtIpWatcherAlert12=wtIpWatcherAlert12, wtIpWatcher_24VManufact=wtIpWatcher_24VManufact, wtWebioEA12x6RelDeviceClock=wtWebioEA12x6RelDeviceClock, wtWebioEA6x6AlarmTcpReleaseText=wtWebioEA6x6AlarmTcpReleaseText, wtWebAlarm6x6AlarmSnmpManagerIP=wtWebAlarm6x6AlarmSnmpManagerIP, wtWebioEA2x2ERPGetHeaderEnable=wtWebioEA2x2ERPGetHeaderEnable, wtTrapReceiver2x2SystemTimerEntry=wtTrapReceiver2x2SystemTimerEntry, wtIpWatcher_24VTimeDate=wtIpWatcher_24VTimeDate, wtWebioEA6x6AlarmSnmpTrapReleaseText=wtWebioEA6x6AlarmSnmpTrapReleaseText, wtWebioEA2x2ERP_24VOutputModeEntry=wtWebioEA2x2ERP_24VOutputModeEntry, wtIpWatcher_24VAlarmFtpTrgClearText=wtIpWatcher_24VAlarmFtpTrgClearText, wtWebioEA6x6PortLogicInputMask=wtWebioEA6x6PortLogicInputMask, wtIpWatcherSessCntrl=wtIpWatcherSessCntrl, wtIpWatcher_24VAlarmFtpOption=wtIpWatcher_24VAlarmFtpOption, wtWebioEA2x2ERPStTzOffsetHrs=wtWebioEA2x2ERPStTzOffsetHrs, wtWebioEA12x12InOut=wtWebioEA12x12InOut, wtWebioEA2x2ERPAddConfig=wtWebioEA2x2ERPAddConfig, wtWebioEA2x2ERP_24VBinaryTable=wtWebioEA2x2ERP_24VBinaryTable, wtWebioEA2x2ERPAlarmIfEntry=wtWebioEA2x2ERPAlarmIfEntry, wtWebioEA6x6Ports=wtWebioEA6x6Ports, wtIpWatcher_24VAlarmSyslogTrapTxEnable=wtIpWatcher_24VAlarmSyslogTrapTxEnable, wtWebioEA12x6RelPortInputText=wtWebioEA12x6RelPortInputText, wtWebioEA2x2ERPGateway=wtWebioEA2x2ERPGateway, wtWebioEA12x12StTzStopWday=wtWebioEA12x12StTzStopWday, wtTrapReceiver2x2WatchListIfTable=wtTrapReceiver2x2WatchListIfTable, wtWebCount6ReportNo=wtWebCount6ReportNo, wtWebioEA2x2ERP_24VTimeServer2=wtWebioEA2x2ERP_24VTimeServer2, wtWebioEA12x6RelERPMailServer=wtWebioEA12x6RelERPMailServer, wtWebioEA2x2ERPSessCntrlConfigMode=wtWebioEA2x2ERPSessCntrlConfigMode, wtWebioEA12x6RelERPPortLogicOutputInverter=wtWebioEA12x6RelERPPortLogicOutputInverter, wtWebCount6SyslogSystemMessagesEnable=wtWebCount6SyslogSystemMessagesEnable, wtWebioEA12x12AlarmInputTrigger=wtWebioEA12x12AlarmInputTrigger, wtWebioEA6x6FTPOption=wtWebioEA6x6FTPOption, wtIpWatcherTsSyncTime=wtIpWatcherTsSyncTime, wtWebioEA24oemBinaryModeNo=wtWebioEA24oemBinaryModeNo, wtWebioEA12x12OutputModeEntry=wtWebioEA12x12OutputModeEntry, wtWebioEA2x2ERPBinaryUdpPeerRemoteIpAddr=wtWebioEA2x2ERPBinaryUdpPeerRemoteIpAddr, wtTrapReceiver2x2Alert8=wtTrapReceiver2x2Alert8, wtWebAlarm6x6AddConfig=wtWebAlarm6x6AddConfig, wtWebAlarm6x6InputEntry=wtWebAlarm6x6InputEntry, wtWebioEA2x2ERP_24VWayBack=wtWebioEA2x2ERP_24VWayBack, wtWebCount6FTPEnable=wtWebCount6FTPEnable, wtWebioEA24oemAlert30=wtWebioEA24oemAlert30, wtIpWatcher_24VMfAddr=wtIpWatcher_24VMfAddr, wtWebioEA2x2ERP_24VOutputNo=wtWebioEA2x2ERP_24VOutputNo, wtWebioEA2x2ERPAlarmInterval=wtWebioEA2x2ERPAlarmInterval, wtWebioEA2x2ERPDiagBinaryError=wtWebioEA2x2ERPDiagBinaryError, wtWebioEA12x12SessCntrlAdminPassword=wtWebioEA12x12SessCntrlAdminPassword, wtWebioEA12x12BinaryTcpServerLocalPort=wtWebioEA12x12BinaryTcpServerLocalPort, wtWebAlarm6x6DeviceLocation=wtWebAlarm6x6DeviceLocation, wtIpWatcher_24VAlert28=wtIpWatcher_24VAlert28, wtWebCount6MfDeviceTyp=wtWebCount6MfDeviceTyp, wtWebioEA24oemAlarmSystemTrigger=wtWebioEA24oemAlarmSystemTrigger, wtWebioEA12x6RelERPOutputState=wtWebioEA12x6RelERPOutputState, wtWebioEA12x12BinaryTcpClientServerPort=wtWebioEA12x12BinaryTcpClientServerPort, wtWebAlarm6x6FTPOption=wtWebAlarm6x6FTPOption, wtIpWatcherAlarmUdpReleaseText=wtIpWatcherAlarmUdpReleaseText, wtTrapReceiver2x2ActionIfTable=wtTrapReceiver2x2ActionIfTable, wtWebCount6PortInputName=wtWebCount6PortInputName, wtWebAlarm6x6SNMP=wtWebAlarm6x6SNMP, wtIpWatcher_24VStTzStartMode=wtIpWatcher_24VStTzStartMode, wtTrapReceiver2x2Alert1=wtTrapReceiver2x2Alert1, wtTrapReceiver2x2ActionOutputAction=wtTrapReceiver2x2ActionOutputAction, wtTrapReceiver2x2OutputMode=wtTrapReceiver2x2OutputMode, wtWebioEA2x2_24VStTzStartMode=wtWebioEA2x2_24VStTzStartMode, wtWebioEA24oemPortOutputName=wtWebioEA24oemPortOutputName, wtWebioEA2x2ERP_24VDiag=wtWebioEA2x2ERP_24VDiag, wtWebioEA2x2AlarmUdpPort=wtWebioEA2x2AlarmUdpPort, wtWebioEA6x6FTPEnable=wtWebioEA6x6FTPEnable, wtWebioEA12x6RelAlert20=wtWebioEA12x6RelAlert20, wtWebioEA2x2_24VPortPulsePolarity=wtWebioEA2x2_24VPortPulsePolarity, wtWebioEA12x6RelUdpAdminPort=wtWebioEA12x6RelUdpAdminPort, wtWebCount6SnmpCommunityStringReadWrite=wtWebCount6SnmpCommunityStringReadWrite, wtIpWatcher_24VOutputNo=wtIpWatcher_24VOutputNo, wtWebioEA6x6AlarmUdpIpAddr=wtWebioEA6x6AlarmUdpIpAddr, wtWebioEA6x6DiagBinaryError=wtWebioEA6x6DiagBinaryError, wtTrapReceiver2x2SNMP=wtTrapReceiver2x2SNMP, wtIpWatcherAlarmMailTrgClearText=wtIpWatcherAlarmMailTrgClearText, wtWebCount6DeviceContact=wtWebCount6DeviceContact, wtWebioEA2x2Config=wtWebioEA2x2Config, wtWebioEA2x2ERP_24VAlarmSnmpTrapText=wtWebioEA2x2ERP_24VAlarmSnmpTrapText, wtWebioEA6x6AddConfig=wtWebioEA6x6AddConfig, wtWebioEA2x2StTzStartMin=wtWebioEA2x2StTzStartMin, wtWebioEA12x12MfHotline=wtWebioEA12x12MfHotline, wtWebioEA2x2SnmpEnable=wtWebioEA2x2SnmpEnable, wtWebAlarm6x6OutputEntry=wtWebAlarm6x6OutputEntry, wtWebioEA12x6RelAlarmFtpFileName=wtWebioEA12x6RelAlarmFtpFileName, wtWebioEA24oemMailAuthUser=wtWebioEA24oemMailAuthUser, wtWebioEA2x2ERP_24VAlarmSyslogPort=wtWebioEA2x2ERP_24VAlarmSyslogPort, wtWebCount6Basic=wtWebCount6Basic)
| (object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, constraints_intersection, single_value_constraint, value_range_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ConstraintsIntersection', 'SingleValueConstraint', 'ValueRangeConstraint', 'ValueSizeConstraint')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(object_identity, unsigned32, enterprises, time_ticks, bits, ip_address, module_identity, mib_identifier, notification_type, notification_type, mib_scalar, mib_table, mib_table_row, mib_table_column, gauge32, integer32, counter64, iso, counter32) = mibBuilder.importSymbols('SNMPv2-SMI', 'ObjectIdentity', 'Unsigned32', 'enterprises', 'TimeTicks', 'Bits', 'IpAddress', 'ModuleIdentity', 'MibIdentifier', 'NotificationType', 'NotificationType', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Gauge32', 'Integer32', 'Counter64', 'iso', 'Counter32')
(display_string, textual_convention, phys_address) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention', 'PhysAddress')
wut = mib_identifier((1, 3, 6, 1, 4, 1, 5040))
wt_com_server = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1))
wt_webio = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2))
wt_webio_ea12x12 = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4))
wt_webio_ea2x2 = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13))
wt_webio_ea24oem = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14))
wt_webio_ea12x6_rel = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19))
wt_web_alarm6x6 = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20))
wt_web_count6 = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22))
wt_webio_ea6x6 = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24))
wt_webio_ea2x2_erp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25))
wt_webio_ea12x6_rel_erp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26))
wt_ip_watcher = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27))
wt_webio_ea2x2_24_v = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30))
wt_webio_ea2x2_erp_24_v = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31))
wt_ip_watcher_24_v = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32))
wt_trap_receiver2x2 = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33))
wt_webio_ea2x2_in_out = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1))
wt_webio_ea2x2_sess_cntrl = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 2))
wt_webio_ea2x2_config = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3))
wt_webio_ea2x2_diag = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 4))
wt_webio_ea2x2_device = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1))
wt_webio_ea2x2_ports = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2))
wt_webio_ea2x2_manufact = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 3))
wt_webio_ea2x2_text = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 1))
wt_webio_ea2x2_time_date = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2))
wt_webio_ea2x2_basic = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3))
wt_webio_ea2x2_output_mode = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 4))
wt_webio_ea2x2_alarm = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5))
wt_webio_ea2x2_network = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 1))
wt_webio_ea2x2_http = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 2))
wt_webio_ea2x2_mail = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 3))
wt_webio_ea2x2_snmp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 4))
wt_webio_ea2x2_udp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 5))
wt_webio_ea2x2_binary = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6))
wt_webio_ea2x2_syslog = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 7))
wt_webio_ea2x2_ftp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 8))
wt_webio_ea2x2_time_zone = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1))
wt_webio_ea2x2_time_server = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 2))
wt_webio_ea2x2_device_clock = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 3))
wt_webio_ea12x12_in_out = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1))
wt_webio_ea12x12_sess_cntrl = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 2))
wt_webio_ea12x12_config = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3))
wt_webio_ea12x12_diag = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 4))
wt_webio_ea12x12_device = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1))
wt_webio_ea12x12_ports = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2))
wt_webio_ea12x12_manufact = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 3))
wt_webio_ea12x12_text = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 1))
wt_webio_ea12x12_time_date = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2))
wt_webio_ea12x12_basic = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3))
wt_webio_ea12x12_output_mode = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 4))
wt_webio_ea12x12_alarm = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5))
wt_webio_ea12x12_network = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 1))
wt_webio_ea12x12_http = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 2))
wt_webio_ea12x12_mail = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 3))
wt_webio_ea12x12_snmp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 4))
wt_webio_ea12x12_udp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 5))
wt_webio_ea12x12_binary = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6))
wt_webio_ea12x12_syslog = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 7))
wt_webio_ea12x12_ftp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 8))
wt_webio_ea12x12_time_zone = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1))
wt_webio_ea12x12_time_server = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 2))
wt_webio_ea12x12_device_clock = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 3))
wt_webio_ea24oem_in_out = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1))
wt_webio_ea24oem_sess_cntrl = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 2))
wt_webio_ea24oem_config = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3))
wt_webio_ea24oem_diag = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 4))
wt_webio_ea24oem_device = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1))
wt_webio_ea24oem_ports = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2))
wt_webio_ea24oem_manufact = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 3))
wt_webio_ea24oem_text = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 1))
wt_webio_ea24oem_time_date = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2))
wt_webio_ea24oem_basic = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3))
wt_webio_ea24oem_output_mode = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 4))
wt_webio_ea24oem_alarm = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5))
wt_webio_ea24oem_network = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 1))
wt_webio_ea24oem_http = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 2))
wt_webio_ea24oem_mail = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 3))
wt_webio_ea24oem_snmp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 4))
wt_webio_ea24oem_udp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 5))
wt_webio_ea24oem_binary = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6))
wt_webio_ea24oem_syslog = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 7))
wt_webio_ea24oem_ftp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 8))
wt_webio_ea24oem_time_zone = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1))
wt_webio_ea24oem_time_server = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 2))
wt_webio_ea24oem_device_clock = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 3))
wt_webio_ea12x6_rel_in_out = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1))
wt_webio_ea12x6_rel_sess_cntrl = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 2))
wt_webio_ea12x6_rel_config = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3))
wt_webio_ea12x6_rel_diag = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 4))
wt_webio_ea12x6_rel_device = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1))
wt_webio_ea12x6_rel_ports = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2))
wt_webio_ea12x6_rel_manufact = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 3))
wt_webio_ea12x6_rel_text = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 1))
wt_webio_ea12x6_rel_time_date = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2))
wt_webio_ea12x6_rel_basic = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3))
wt_webio_ea12x6_rel_output_mode = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 4))
wt_webio_ea12x6_rel_alarm = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5))
wt_webio_ea12x6_rel_network = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 1))
wt_webio_ea12x6_rel_http = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 2))
wt_webio_ea12x6_rel_mail = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 3))
wt_webio_ea12x6_rel_snmp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 4))
wt_webio_ea12x6_rel_udp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 5))
wt_webio_ea12x6_rel_binary = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6))
wt_webio_ea12x6_rel_syslog = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 7))
wt_webio_ea12x6_rel_ftp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 8))
wt_webio_ea12x6_rel_time_zone = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1))
wt_webio_ea12x6_rel_time_server = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 2))
wt_webio_ea12x6_rel_device_clock = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 3))
wt_web_alarm6x6_in_out = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1))
wt_web_alarm6x6_sess_cntrl = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 2))
wt_web_alarm6x6_config = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3))
wt_web_alarm6x6_diag = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 4))
wt_web_alarm6x6_device = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1))
wt_web_alarm6x6_ports = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2))
wt_web_alarm6x6_manufact = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 3))
wt_web_alarm6x6_text = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 1))
wt_web_alarm6x6_time_date = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2))
wt_web_alarm6x6_basic = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3))
wt_web_alarm6x6_alarm = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5))
wt_web_alarm6x6_network = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 1))
wt_web_alarm6x6_http = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 2))
wt_web_alarm6x6_mail = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 3))
wt_web_alarm6x6_snmp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 4))
wt_web_alarm6x6_udp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 5))
wt_web_alarm6x6_syslog = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 7))
wt_web_alarm6x6_ftp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 8))
wt_web_alarm6x6_time_zone = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1))
wt_web_alarm6x6_time_server = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 2))
wt_web_alarm6x6_device_clock = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 3))
wt_web_count6_in_out = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1))
wt_web_count6_sess_cntrl = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 2))
wt_web_count6_config = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3))
wt_web_count6_diag = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 4))
wt_web_count6_device = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1))
wt_web_count6_ports = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2))
wt_web_count6_manufact = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 3))
wt_web_count6_text = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 1))
wt_web_count6_time_date = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2))
wt_web_count6_basic = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3))
wt_web_count6_report = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5))
wt_web_count6_network = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 1))
wt_web_count6_http = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 2))
wt_web_count6_mail = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 3))
wt_web_count6_snmp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 4))
wt_web_count6_udp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 5))
wt_web_count6_syslog = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 7))
wt_web_count6_ftp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 8))
wt_web_count6_time_zone = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1))
wt_web_count6_time_server = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 2))
wt_web_count6_device_clock = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 3))
wt_webio_ea6x6_in_out = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1))
wt_webio_ea6x6_sess_cntrl = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 2))
wt_webio_ea6x6_config = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3))
wt_webio_ea6x6_diag = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 4))
wt_webio_ea6x6_device = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1))
wt_webio_ea6x6_ports = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2))
wt_webio_ea6x6_manufact = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 3))
wt_webio_ea6x6_text = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 1))
wt_webio_ea6x6_time_date = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2))
wt_webio_ea6x6_basic = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3))
wt_webio_ea6x6_output_mode = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 4))
wt_webio_ea6x6_alarm = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5))
wt_webio_ea6x6_network = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 1))
wt_webio_ea6x6_http = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 2))
wt_webio_ea6x6_mail = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 3))
wt_webio_ea6x6_snmp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 4))
wt_webio_ea6x6_udp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 5))
wt_webio_ea6x6_binary = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6))
wt_webio_ea6x6_syslog = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 7))
wt_webio_ea6x6_ftp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 8))
wt_webio_ea6x6_time_zone = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1))
wt_webio_ea6x6_time_server = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 2))
wt_webio_ea6x6_device_clock = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 3))
wt_webio_ea2x2_erp_in_out = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1))
wt_webio_ea2x2_erp_sess_cntrl = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 2))
wt_webio_ea2x2_erp_config = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3))
wt_webio_ea2x2_erp_diag = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 4))
wt_webio_ea2x2_erp_device = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1))
wt_webio_ea2x2_erp_ports = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2))
wt_webio_ea2x2_erp_manufact = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 3))
wt_webio_ea2x2_erp_text = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 1))
wt_webio_ea2x2_erp_time_date = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2))
wt_webio_ea2x2_erp_basic = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3))
wt_webio_ea2x2_erp_output_mode = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 4))
wt_webio_ea2x2_erp_alarm = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5))
wt_webio_ea2x2_erp_network = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 1))
wt_webio_ea2x2_erphttp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 2))
wt_webio_ea2x2_erp_mail = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 3))
wt_webio_ea2x2_erpsnmp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 4))
wt_webio_ea2x2_erpudp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 5))
wt_webio_ea2x2_erp_binary = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6))
wt_webio_ea2x2_erp_syslog = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 7))
wt_webio_ea2x2_erpftp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 8))
wt_webio_ea2x2_erp_way_back = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 10))
wt_webio_ea2x2_erp_time_zone = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1))
wt_webio_ea2x2_erp_time_server = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 2))
wt_webio_ea2x2_erp_device_clock = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 3))
wt_webio_ea12x6_rel_erp_in_out = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1))
wt_webio_ea12x6_rel_erp_sess_cntrl = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 2))
wt_webio_ea12x6_rel_erp_config = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3))
wt_webio_ea12x6_rel_erp_diag = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 4))
wt_webio_ea12x6_rel_erp_device = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1))
wt_webio_ea12x6_rel_erp_ports = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2))
wt_webio_ea12x6_rel_erp_manufact = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 3))
wt_webio_ea12x6_rel_erp_text = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 1))
wt_webio_ea12x6_rel_erp_time_date = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2))
wt_webio_ea12x6_rel_erp_basic = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3))
wt_webio_ea12x6_rel_erp_output_mode = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 4))
wt_webio_ea12x6_rel_erp_alarm = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5))
wt_webio_ea12x6_rel_erp_network = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 1))
wt_webio_ea12x6_rel_erphttp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 2))
wt_webio_ea12x6_rel_erp_mail = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 3))
wt_webio_ea12x6_rel_erpsnmp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 4))
wt_webio_ea12x6_rel_erpudp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 5))
wt_webio_ea12x6_rel_erp_binary = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6))
wt_webio_ea12x6_rel_erp_syslog = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 7))
wt_webio_ea12x6_rel_erpftp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 8))
wt_webio_ea12x6_rel_erp_way_back = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 10))
wt_webio_ea12x6_rel_erp_time_zone = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1))
wt_webio_ea12x6_rel_erp_time_server = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 2))
wt_webio_ea12x6_rel_erp_device_clock = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 3))
wt_ip_watcher_in_out = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1))
wt_ip_watcher_sess_cntrl = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 2))
wt_ip_watcher_config = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3))
wt_ip_watcher_diag = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 4))
wt_ip_watcher_device = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1))
wt_ip_watcher_ports = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2))
wt_ip_watcher_manufact = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 3))
wt_ip_watcher_text = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 1))
wt_ip_watcher_time_date = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2))
wt_ip_watcher_basic = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3))
wt_ip_watcher_alarm = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5))
wt_ip_watcher_network = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 1))
wt_ip_watcher_http = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 2))
wt_ip_watcher_mail = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 3))
wt_ip_watcher_snmp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 4))
wt_ip_watcher_udp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 5))
wt_ip_watcher_syslog = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 7))
wt_ip_watcher_ftp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 8))
wt_ip_watcher_ip_list = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11))
wt_ip_watcher_time_zone = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1))
wt_ip_watcher_time_server = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 2))
wt_ip_watcher_device_clock = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 3))
wt_webio_ea2x2_24_v_in_out = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1))
wt_webio_ea2x2_24_v_sess_cntrl = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 2))
wt_webio_ea2x2_24_v_config = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3))
wt_webio_ea2x2_24_v_diag = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 4))
wt_webio_ea2x2_24_v_device = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1))
wt_webio_ea2x2_24_v_ports = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2))
wt_webio_ea2x2_24_v_manufact = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 3))
wt_webio_ea2x2_24_v_text = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 1))
wt_webio_ea2x2_24_v_time_date = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2))
wt_webio_ea2x2_24_v_basic = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3))
wt_webio_ea2x2_24_v_output_mode = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 4))
wt_webio_ea2x2_24_v_alarm = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5))
wt_webio_ea2x2_24_v_network = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 1))
wt_webio_ea2x2_24_vhttp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 2))
wt_webio_ea2x2_24_v_mail = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 3))
wt_webio_ea2x2_24_vsnmp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 4))
wt_webio_ea2x2_24_vudp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 5))
wt_webio_ea2x2_24_v_binary = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6))
wt_webio_ea2x2_24_v_syslog = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 7))
wt_webio_ea2x2_24_vftp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 8))
wt_webio_ea2x2_24_v_time_zone = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1))
wt_webio_ea2x2_24_v_time_server = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 2))
wt_webio_ea2x2_24_v_device_clock = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 3))
wt_webio_ea2x2_erp_24_v_in_out = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1))
wt_webio_ea2x2_erp_24_v_sess_cntrl = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 2))
wt_webio_ea2x2_erp_24_v_config = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3))
wt_webio_ea2x2_erp_24_v_diag = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 4))
wt_webio_ea2x2_erp_24_v_device = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1))
wt_webio_ea2x2_erp_24_v_ports = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2))
wt_webio_ea2x2_erp_24_v_manufact = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 3))
wt_webio_ea2x2_erp_24_v_text = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 1))
wt_webio_ea2x2_erp_24_v_time_date = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2))
wt_webio_ea2x2_erp_24_v_basic = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3))
wt_webio_ea2x2_erp_24_v_output_mode = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 4))
wt_webio_ea2x2_erp_24_v_alarm = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5))
wt_webio_ea2x2_erp_24_v_network = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 1))
wt_webio_ea2x2_erp_24_vhttp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 2))
wt_webio_ea2x2_erp_24_v_mail = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 3))
wt_webio_ea2x2_erp_24_vsnmp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 4))
wt_webio_ea2x2_erp_24_vudp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 5))
wt_webio_ea2x2_erp_24_v_binary = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6))
wt_webio_ea2x2_erp_24_v_syslog = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 7))
wt_webio_ea2x2_erp_24_vftp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 8))
wt_webio_ea2x2_erp_24_v_way_back = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 10))
wt_webio_ea2x2_erp_24_v_time_zone = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1))
wt_webio_ea2x2_erp_24_v_time_server = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 2))
wt_webio_ea2x2_erp_24_v_device_clock = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 3))
wt_ip_watcher_24_v_in_out = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1))
wt_ip_watcher_24_v_sess_cntrl = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 2))
wt_ip_watcher_24_v_config = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3))
wt_ip_watcher_24_v_diag = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 4))
wt_ip_watcher_24_v_device = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1))
wt_ip_watcher_24_v_ports = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2))
wt_ip_watcher_24_v_manufact = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 3))
wt_ip_watcher_24_v_text = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 1))
wt_ip_watcher_24_v_time_date = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2))
wt_ip_watcher_24_v_basic = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3))
wt_ip_watcher_24_v_output_mode = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 4))
wt_ip_watcher_24_v_alarm = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5))
wt_ip_watcher_24_v_network = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 1))
wt_ip_watcher_24_vhttp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 2))
wt_ip_watcher_24_v_mail = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 3))
wt_ip_watcher_24_vsnmp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 4))
wt_ip_watcher_24_vudp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 5))
wt_ip_watcher_24_v_syslog = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 7))
wt_ip_watcher_24_vftp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 8))
wt_ip_watcher_24_v_ip_list = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11))
wt_ip_watcher_24_v_time_zone = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1))
wt_ip_watcher_24_v_time_server = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 2))
wt_ip_watcher_24_v_device_clock = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 3))
wt_trap_receiver2x2_in_out = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1))
wt_trap_receiver2x2_sess_cntrl = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 2))
wt_trap_receiver2x2_config = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3))
wt_trap_receiver2x2_diag = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 4))
wt_trap_receiver2x2_device = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1))
wt_trap_receiver2x2_ports = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 2))
wt_trap_receiver2x2_manufact = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 3))
wt_trap_receiver2x2_text = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 1))
wt_trap_receiver2x2_time_date = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2))
wt_trap_receiver2x2_basic = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3))
wt_trap_receiver2x2_output_mode = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 4))
wt_trap_receiver2x2_action = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5))
wt_trap_receiver2x2_prepare_in_events = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6))
wt_trap_receiver2x2_prepare_out_events = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 7))
wt_trap_receiver2x2_network = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 1))
wt_trap_receiver2x2_http = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 2))
wt_trap_receiver2x2_mail = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 3))
wt_trap_receiver2x2_snmp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 4))
wt_trap_receiver2x2_udp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 5))
wt_trap_receiver2x2_syslog = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 7))
wt_trap_receiver2x2_ftp = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 8))
wt_trap_receiver2x2_time_zone = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1))
wt_trap_receiver2x2_time_server = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 2))
wt_trap_receiver2x2_device_clock = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 3))
wt_trap_receiver2x2_watch_list = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1))
wt_trap_receiver2x2_in_ev_system_timer = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 2))
wt_trap_receiver2x2_in_ev_buttons = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 3))
wt_trap_receiver2x2_in_ev_inputs = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 4))
wt_trap_receiver2x2_out_ev_outputs = mib_identifier((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 7, 1))
wt_webio_ea2x2_inputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2Inputs.setStatus('mandatory')
wt_webio_ea2x2_outputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2Outputs.setStatus('mandatory')
wt_webio_ea2x2_input_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 3))
if mibBuilder.loadTexts:
wtWebioEA2x2InputTable.setStatus('mandatory')
wt_webio_ea2x2_input_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2InputNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2InputEntry.setStatus('mandatory')
wt_webio_ea2x2_input_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2InputNo.setStatus('mandatory')
wt_webio_ea2x2_input_counter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2InputCounter.setStatus('mandatory')
wt_webio_ea2x2_input_counter_clear = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 3, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2InputCounterClear.setStatus('mandatory')
wt_webio_ea2x2_input_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA2x2InputState-OFF', 0), ('wtWebioEA2x2InputState-ON', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2InputState.setStatus('mandatory')
wt_webio_ea2x2_input_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2InputValue.setStatus('mandatory')
wt_webio_ea2x2_output_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 5))
if mibBuilder.loadTexts:
wtWebioEA2x2OutputTable.setStatus('mandatory')
wt_webio_ea2x2_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 5, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2OutputNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2OutputEntry.setStatus('mandatory')
wt_webio_ea2x2_output_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2OutputNo.setStatus('mandatory')
wt_webio_ea2x2_output_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 5, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA2x2OutputState-OFF', 0), ('wtWebioEA2x2OutputState-ON', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2OutputState.setStatus('mandatory')
wt_webio_ea2x2_output_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2OutputValue.setStatus('mandatory')
wt_webio_ea2x2_set_output = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2SetOutput.setStatus('mandatory')
wt_webio_ea2x2_sess_cntrl_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2SessCntrlPassword.setStatus('mandatory')
wt_webio_ea2x2_sess_cntrl_config_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA2x2SessCntrl-NoSession', 0), ('wtWebioEA2x2SessCntrl-Session', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2SessCntrlConfigMode.setStatus('mandatory')
wt_webio_ea2x2_sess_cntrl_logout = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 2, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2SessCntrlLogout.setStatus('mandatory')
wt_webio_ea2x2_sess_cntrl_admin_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 2, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2SessCntrlAdminPassword.setStatus('mandatory')
wt_webio_ea2x2_sess_cntrl_config_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 2, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2SessCntrlConfigPassword.setStatus('mandatory')
wt_webio_ea2x2_device_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2DeviceName.setStatus('mandatory')
wt_webio_ea2x2_device_text = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2DeviceText.setStatus('mandatory')
wt_webio_ea2x2_device_location = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2DeviceLocation.setStatus('mandatory')
wt_webio_ea2x2_device_contact = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2DeviceContact.setStatus('mandatory')
wt_webio_ea2x2_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2TzOffsetHrs.setStatus('mandatory')
wt_webio_ea2x2_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2TzOffsetMin.setStatus('mandatory')
wt_webio_ea2x2_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2TzEnable.setStatus('mandatory')
wt_webio_ea2x2_st_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2StTzOffsetHrs.setStatus('mandatory')
wt_webio_ea2x2_st_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2StTzOffsetMin.setStatus('mandatory')
wt_webio_ea2x2_st_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2StTzEnable.setStatus('mandatory')
wt_webio_ea2x2_st_tz_start_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA2x2StartMonth-January', 1), ('wtWebioEA2x2StartMonth-February', 2), ('wtWebioEA2x2StartMonth-March', 3), ('wtWebioEA2x2StartMonth-April', 4), ('wtWebioEA2x2StartMonth-May', 5), ('wtWebioEA2x2StartMonth-June', 6), ('wtWebioEA2x2StartMonth-July', 7), ('wtWebioEA2x2StartMonth-August', 8), ('wtWebioEA2x2StartMonth-September', 9), ('wtWebioEA2x2StartMonth-October', 10), ('wtWebioEA2x2StartMonth-November', 11), ('wtWebioEA2x2StartMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2StTzStartMonth.setStatus('mandatory')
wt_webio_ea2x2_st_tz_start_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtWebioEA2x2StartMode-first', 1), ('wtWebioEA2x2StartMode-second', 2), ('wtWebioEA2x2StartMode-third', 3), ('wtWebioEA2x2StartMode-fourth', 4), ('wtWebioEA2x2StartMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2StTzStartMode.setStatus('mandatory')
wt_webio_ea2x2_st_tz_start_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtWebioEA2x2StartWday-Sunday', 1), ('wtWebioEA2x2StartWday-Monday', 2), ('wtWebioEA2x2StartWday-Tuesday', 3), ('wtWebioEA2x2StartWday-Thursday', 4), ('wtWebioEA2x2StartWday-Wednesday', 5), ('wtWebioEA2x2StartWday-Friday', 6), ('wtWebioEA2x2StartWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2StTzStartWday.setStatus('mandatory')
wt_webio_ea2x2_st_tz_start_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 10), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2StTzStartHrs.setStatus('mandatory')
wt_webio_ea2x2_st_tz_start_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 11), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2StTzStartMin.setStatus('mandatory')
wt_webio_ea2x2_st_tz_stop_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA2x2StopMonth-January', 1), ('wtWebioEA2x2StopMonth-February', 2), ('wtWebioEA2x2StopMonth-March', 3), ('wtWebioEA2x2StopMonth-April', 4), ('wtWebioEA2x2StopMonth-May', 5), ('wtWebioEA2x2StopMonth-June', 6), ('wtWebioEA2x2StopMonth-July', 7), ('wtWebioEA2x2StopMonth-August', 8), ('wtWebioEA2x2StopMonth-September', 9), ('wtWebioEA2x2StopMonth-October', 10), ('wtWebioEA2x2StopMonth-November', 11), ('wtWebioEA2x2StopMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2StTzStopMonth.setStatus('mandatory')
wt_webio_ea2x2_st_tz_stop_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtWebioEA2x2StopMode-first', 1), ('wtWebioEA2x2StopMode-second', 2), ('wtWebioEA2x2StopMode-third', 3), ('wtWebioEA2x2StopMode-fourth', 4), ('wtWebioEA2x2StopMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2StTzStopMode.setStatus('mandatory')
wt_webio_ea2x2_st_tz_stop_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtWebioEA2x2StopWday-Sunday', 1), ('wtWebioEA2x2StopWday-Monday', 2), ('wtWebioEA2x2StopWday-Tuesday', 3), ('wtWebioEA2x2StopWday-Thursday', 4), ('wtWebioEA2x2StopWday-Wednesday', 5), ('wtWebioEA2x2StopWday-Friday', 6), ('wtWebioEA2x2StopWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2StTzStopWday.setStatus('mandatory')
wt_webio_ea2x2_st_tz_stop_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 15), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2StTzStopHrs.setStatus('mandatory')
wt_webio_ea2x2_st_tz_stop_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 1, 16), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2StTzStopMin.setStatus('mandatory')
wt_webio_ea2x2_time_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2TimeServer1.setStatus('mandatory')
wt_webio_ea2x2_time_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 2, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2TimeServer2.setStatus('mandatory')
wt_webio_ea2x2_ts_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 2, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2TsEnable.setStatus('mandatory')
wt_webio_ea2x2_ts_sync_time = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 2, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2TsSyncTime.setStatus('mandatory')
wt_webio_ea2x2_clock_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 3, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 23))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ClockHrs.setStatus('mandatory')
wt_webio_ea2x2_clock_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 3, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 59))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ClockMin.setStatus('mandatory')
wt_webio_ea2x2_clock_day = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 3, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ClockDay.setStatus('mandatory')
wt_webio_ea2x2_clock_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 3, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA2x2ClockMonth-January', 1), ('wtWebioEA2x2ClockMonth-February', 2), ('wtWebioEA2x2ClockMonth-March', 3), ('wtWebioEA2x2ClockMonth-April', 4), ('wtWebioEA2x2ClockMonth-May', 5), ('wtWebioEA2x2ClockMonth-June', 6), ('wtWebioEA2x2ClockMonth-July', 7), ('wtWebioEA2x2ClockMonth-August', 8), ('wtWebioEA2x2ClockMonth-September', 9), ('wtWebioEA2x2ClockMonth-October', 10), ('wtWebioEA2x2ClockMonth-November', 11), ('wtWebioEA2x2ClockMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ClockMonth.setStatus('mandatory')
wt_webio_ea2x2_clock_year = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 2, 3, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ClockYear.setStatus('mandatory')
wt_webio_ea2x2_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2IpAddress.setStatus('mandatory')
wt_webio_ea2x2_subnet_mask = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2SubnetMask.setStatus('mandatory')
wt_webio_ea2x2_gateway = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2Gateway.setStatus('mandatory')
wt_webio_ea2x2_dns_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2DnsServer1.setStatus('mandatory')
wt_webio_ea2x2_dns_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2DnsServer2.setStatus('mandatory')
wt_webio_ea2x2_add_config = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 1, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AddConfig.setStatus('mandatory')
wt_webio_ea2x2_startup = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2Startup.setStatus('mandatory')
wt_webio_ea2x2_get_header_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 2, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2GetHeaderEnable.setStatus('mandatory')
wt_webio_ea2x2_http_input_trigger = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 2, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2HttpInputTrigger.setStatus('mandatory')
wt_webio_ea2x2_http_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 2, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2HttpPort.setStatus('mandatory')
wt_webio_ea2x2_mail_ad_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2MailAdName.setStatus('mandatory')
wt_webio_ea2x2_mail_reply = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2MailReply.setStatus('mandatory')
wt_webio_ea2x2_mail_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2MailServer.setStatus('mandatory')
wt_webio_ea2x2_mail_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2MailEnable.setStatus('mandatory')
wt_webio_ea2x2_mail_authentication = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 3, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2MailAuthentication.setStatus('mandatory')
wt_webio_ea2x2_mail_auth_user = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 3, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2MailAuthUser.setStatus('mandatory')
wt_webio_ea2x2_mail_auth_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 3, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2MailAuthPassword.setStatus('mandatory')
wt_webio_ea2x2_mail_pop3_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 3, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2MailPop3Server.setStatus('mandatory')
wt_webio_ea2x2_snmp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 4, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2SnmpEnable.setStatus('mandatory')
wt_webio_ea2x2_snmp_community_string_read = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 4, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2SnmpCommunityStringRead.setStatus('mandatory')
wt_webio_ea2x2_snmp_community_string_read_write = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 4, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2SnmpCommunityStringReadWrite.setStatus('mandatory')
wt_webio_ea2x2_snmp_system_trap_manager_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 4, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2SnmpSystemTrapManagerIP.setStatus('mandatory')
wt_webio_ea2x2_snmp_system_trap_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 4, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2SnmpSystemTrapEnable.setStatus('mandatory')
wt_webio_ea2x2_udp_admin_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 5, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2UdpAdminPort.setStatus('mandatory')
wt_webio_ea2x2_udp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 5, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2UdpEnable.setStatus('mandatory')
wt_webio_ea2x2_udp_remote_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 5, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2UdpRemotePort.setStatus('mandatory')
wt_webio_ea2x2_binary_mode_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryModeCount.setStatus('mandatory')
wt_webio_ea2x2_binary_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 2))
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryIfTable.setStatus('mandatory')
wt_webio_ea2x2_binary_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2BinaryModeNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryIfEntry.setStatus('mandatory')
wt_webio_ea2x2_binary_mode_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryModeNo.setStatus('mandatory')
wt_webio_ea2x2_binary_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3))
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryTable.setStatus('mandatory')
wt_webio_ea2x2_binary_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2BinaryModeNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryEntry.setStatus('mandatory')
wt_webio_ea2x2_binary_operation_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryOperationMode.setStatus('mandatory')
wt_webio_ea2x2_binary_tcp_server_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryTcpServerLocalPort.setStatus('mandatory')
wt_webio_ea2x2_binary_tcp_server_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryTcpServerInputTrigger.setStatus('mandatory')
wt_webio_ea2x2_binary_tcp_server_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryTcpServerApplicationMode.setStatus('mandatory')
wt_webio_ea2x2_binary_tcp_client_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryTcpClientLocalPort.setStatus('mandatory')
wt_webio_ea2x2_binary_tcp_client_server_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryTcpClientServerPort.setStatus('mandatory')
wt_webio_ea2x2_binary_tcp_client_server_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryTcpClientServerIpAddr.setStatus('mandatory')
wt_webio_ea2x2_binary_tcp_client_server_password = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryTcpClientServerPassword.setStatus('mandatory')
wt_webio_ea2x2_binary_tcp_client_inactivity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryTcpClientInactivity.setStatus('mandatory')
wt_webio_ea2x2_binary_tcp_client_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryTcpClientInputTrigger.setStatus('mandatory')
wt_webio_ea2x2_binary_tcp_client_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryTcpClientInterval.setStatus('mandatory')
wt_webio_ea2x2_binary_tcp_client_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 12), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryTcpClientApplicationMode.setStatus('mandatory')
wt_webio_ea2x2_binary_udp_peer_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryUdpPeerLocalPort.setStatus('mandatory')
wt_webio_ea2x2_binary_udp_peer_remote_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryUdpPeerRemotePort.setStatus('mandatory')
wt_webio_ea2x2_binary_udp_peer_remote_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 15), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryUdpPeerRemoteIpAddr.setStatus('mandatory')
wt_webio_ea2x2_binary_udp_peer_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 16), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryUdpPeerInputTrigger.setStatus('mandatory')
wt_webio_ea2x2_binary_udp_peer_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryUdpPeerInterval.setStatus('mandatory')
wt_webio_ea2x2_binary_udp_peer_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 18), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryUdpPeerApplicationMode.setStatus('mandatory')
wt_webio_ea2x2_binary_connected_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryConnectedPort.setStatus('mandatory')
wt_webio_ea2x2_binary_connected_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 20), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryConnectedIpAddr.setStatus('mandatory')
wt_webio_ea2x2_binary_tcp_server_client_http_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryTcpServerClientHttpPort.setStatus('mandatory')
wt_webio_ea2x2_binary_tcp_client_server_http_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 6, 3, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2BinaryTcpClientServerHttpPort.setStatus('mandatory')
wt_webio_ea2x2_syslog_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 7, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2SyslogServerIP.setStatus('mandatory')
wt_webio_ea2x2_syslog_server_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 7, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2SyslogServerPort.setStatus('mandatory')
wt_webio_ea2x2_syslog_system_messages_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 7, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2SyslogSystemMessagesEnable.setStatus('mandatory')
wt_webio_ea2x2_syslog_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 7, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2SyslogEnable.setStatus('mandatory')
wt_webio_ea2x2_ftp_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 8, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2FTPServerIP.setStatus('mandatory')
wt_webio_ea2x2_ftp_server_control_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 8, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2FTPServerControlPort.setStatus('mandatory')
wt_webio_ea2x2_ftp_user_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 8, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2FTPUserName.setStatus('mandatory')
wt_webio_ea2x2_ftp_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 8, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2FTPPassword.setStatus('mandatory')
wt_webio_ea2x2_ftp_account = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 8, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2FTPAccount.setStatus('mandatory')
wt_webio_ea2x2_ftp_option = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 8, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2FTPOption.setStatus('mandatory')
wt_webio_ea2x2_ftp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 3, 8, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2FTPEnable.setStatus('mandatory')
wt_webio_ea2x2_output_mode_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 4, 1))
if mibBuilder.loadTexts:
wtWebioEA2x2OutputModeTable.setStatus('mandatory')
wt_webio_ea2x2_output_mode_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 4, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2OutputNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2OutputModeEntry.setStatus('mandatory')
wt_webio_ea2x2_output_mode_bit = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 4, 1, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2OutputModeBit.setStatus('mandatory')
wt_webio_ea2x2_safety_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 4, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2SafetyTimeout.setStatus('mandatory')
wt_webio_ea2x2_load_control_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 4, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2LoadControlEnable.setStatus('mandatory')
wt_webio_ea2x2_alarm_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmCount.setStatus('mandatory')
wt_webio_ea2x2_alarm_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 2))
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmIfTable.setStatus('mandatory')
wt_webio_ea2x2_alarm_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmIfEntry.setStatus('mandatory')
wt_webio_ea2x2_alarm_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmNo.setStatus('mandatory')
wt_webio_ea2x2_alarm_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3))
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmTable.setStatus('mandatory')
wt_webio_ea2x2_alarm_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmEntry.setStatus('mandatory')
wt_webio_ea2x2_alarm_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(12, 12)).setFixedLength(12)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmInputTrigger.setStatus('mandatory')
wt_webio_ea2x2_alarm_output_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(12, 12)).setFixedLength(12)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmOutputTrigger.setStatus('mandatory')
wt_webio_ea2x2_alarm_system_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmSystemTrigger.setStatus('mandatory')
wt_webio_ea2x2_alarm_max_counter_value = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmMaxCounterValue.setStatus('mandatory')
wt_webio_ea2x2_alarm_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmInterval.setStatus('mandatory')
wt_webio_ea2x2_alarm_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmEnable.setStatus('mandatory')
wt_webio_ea2x2_alarm_mail_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmMailAddr.setStatus('mandatory')
wt_webio_ea2x2_alarm_mail_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmMailSubject.setStatus('mandatory')
wt_webio_ea2x2_alarm_mail_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 9), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmMailText.setStatus('mandatory')
wt_webio_ea2x2_alarm_snmp_manager_ip = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 10), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmSnmpManagerIP.setStatus('mandatory')
wt_webio_ea2x2_alarm_snmp_trap_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 11), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmSnmpTrapText.setStatus('mandatory')
wt_webio_ea2x2_alarm_udp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 12), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmUdpIpAddr.setStatus('mandatory')
wt_webio_ea2x2_alarm_udp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmUdpPort.setStatus('mandatory')
wt_webio_ea2x2_alarm_udp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 14), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmUdpText.setStatus('mandatory')
wt_webio_ea2x2_alarm_tcp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 15), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmTcpIpAddr.setStatus('mandatory')
wt_webio_ea2x2_alarm_tcp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmTcpPort.setStatus('mandatory')
wt_webio_ea2x2_alarm_tcp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 17), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmTcpText.setStatus('mandatory')
wt_webio_ea2x2_alarm_syslog_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 18), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmSyslogIpAddr.setStatus('mandatory')
wt_webio_ea2x2_alarm_syslog_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmSyslogPort.setStatus('mandatory')
wt_webio_ea2x2_alarm_syslog_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 20), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmSyslogText.setStatus('mandatory')
wt_webio_ea2x2_alarm_ftp_data_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 21), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmFtpDataPort.setStatus('mandatory')
wt_webio_ea2x2_alarm_ftp_file_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 22), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmFtpFileName.setStatus('mandatory')
wt_webio_ea2x2_alarm_ftp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 23), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmFtpText.setStatus('mandatory')
wt_webio_ea2x2_alarm_ftp_option = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 24), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmFtpOption.setStatus('mandatory')
wt_webio_ea2x2_alarm_timer_cron = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 25), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmTimerCron.setStatus('mandatory')
wt_webio_ea2x2_alarm_mail_release_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 26), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmMailReleaseSubject.setStatus('mandatory')
wt_webio_ea2x2_alarm_mail_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 27), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmMailReleaseText.setStatus('mandatory')
wt_webio_ea2x2_alarm_snmp_trap_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 28), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmSnmpTrapReleaseText.setStatus('mandatory')
wt_webio_ea2x2_alarm_udp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 29), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmUdpReleaseText.setStatus('mandatory')
wt_webio_ea2x2_alarm_tcp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 30), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmTcpReleaseText.setStatus('mandatory')
wt_webio_ea2x2_alarm_syslog_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 31), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmSyslogReleaseText.setStatus('mandatory')
wt_webio_ea2x2_alarm_ftp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 3, 1, 32), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2AlarmFtpReleaseText.setStatus('mandatory')
wt_webio_ea2x2_load_control_view = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 4), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2LoadControlView.setStatus('mandatory')
wt_webio_ea2x2_lc_shut_down_view = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 1, 5, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2LCShutDownView.setStatus('mandatory')
wt_webio_ea2x2_input_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 1))
if mibBuilder.loadTexts:
wtWebioEA2x2InputPortTable.setStatus('mandatory')
wt_webio_ea2x2_input_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2InputNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2InputPortEntry.setStatus('mandatory')
wt_webio_ea2x2_port_input_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2PortInputName.setStatus('mandatory')
wt_webio_ea2x2_port_input_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2PortInputText.setStatus('mandatory')
wt_webio_ea2x2_port_input_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2PortInputMode.setStatus('mandatory')
wt_webio_ea2x2_port_input_filter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 1, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2PortInputFilter.setStatus('mandatory')
wt_webio_ea2x2_port_input_bicount_pulse_polarity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2PortInputBicountPulsePolarity.setStatus('mandatory')
wt_webio_ea2x2_port_input_bicount_inactiv_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 1, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2PortInputBicountInactivTimeout.setStatus('mandatory')
wt_webio_ea2x2_output_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2))
if mibBuilder.loadTexts:
wtWebioEA2x2OutputPortTable.setStatus('mandatory')
wt_webio_ea2x2_output_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2OutputNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2OutputPortEntry.setStatus('mandatory')
wt_webio_ea2x2_port_output_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2PortOutputName.setStatus('mandatory')
wt_webio_ea2x2_port_output_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2PortOutputText.setStatus('mandatory')
wt_webio_ea2x2_port_output_group_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2PortOutputGroupMode.setStatus('mandatory')
wt_webio_ea2x2_port_output_safety_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2PortOutputSafetyState.setStatus('mandatory')
wt_webio_ea2x2_port_logic_input_mask = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2PortLogicInputMask.setStatus('mandatory')
wt_webio_ea2x2_port_logic_input_inverter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2PortLogicInputInverter.setStatus('mandatory')
wt_webio_ea2x2_port_logic_function = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2PortLogicFunction.setStatus('mandatory')
wt_webio_ea2x2_port_logic_output_inverter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2PortLogicOutputInverter.setStatus('mandatory')
wt_webio_ea2x2_port_pulse_duration = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2PortPulseDuration.setStatus('mandatory')
wt_webio_ea2x2_port_pulse_polarity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 2, 2, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2PortPulsePolarity.setStatus('mandatory')
wt_webio_ea2x2_mf_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2MfName.setStatus('mandatory')
wt_webio_ea2x2_mf_addr = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2MfAddr.setStatus('mandatory')
wt_webio_ea2x2_mf_hotline = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2MfHotline.setStatus('mandatory')
wt_webio_ea2x2_mf_internet = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2MfInternet.setStatus('mandatory')
wt_webio_ea2x2_mf_device_typ = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 3, 3, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2MfDeviceTyp.setStatus('mandatory')
wt_webio_ea2x2_diag_error_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2DiagErrorCount.setStatus('mandatory')
wt_webio_ea2x2_diag_binary_error = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 4, 2), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2DiagBinaryError.setStatus('mandatory')
wt_webio_ea2x2_diag_error_index = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 4, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2DiagErrorIndex.setStatus('mandatory')
wt_webio_ea2x2_diag_error_message = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 4, 4), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2DiagErrorMessage.setStatus('mandatory')
wt_webio_ea2x2_diag_error_clear = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13, 4, 5), integer32()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
wtWebioEA2x2DiagErrorClear.setStatus('mandatory')
wt_webio_ea2x2_alert1 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 41)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapText'))
wt_webio_ea2x2_alert2 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 42)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapText'))
wt_webio_ea2x2_alert3 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 43)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapText'))
wt_webio_ea2x2_alert4 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 44)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapText'))
wt_webio_ea2x2_alert5 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 45)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapText'))
wt_webio_ea2x2_alert6 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 46)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapText'))
wt_webio_ea2x2_alert7 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 47)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapText'))
wt_webio_ea2x2_alert8 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 48)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapText'))
wt_webio_ea2x2_alert9 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 49)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapText'))
wt_webio_ea2x2_alert10 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 50)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapText'))
wt_webio_ea2x2_alert11 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 51)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapText'))
wt_webio_ea2x2_alert12 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 52)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapText'))
wt_webio_ea2x2_alert13 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 71)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_alert14 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 72)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_alert15 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 73)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_alert16 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 74)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_alert17 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 75)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_alert18 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 76)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_alert19 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 77)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_alert20 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 78)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_alert21 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 79)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_alert22 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 80)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_alert23 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 81)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_alert24 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 82)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2AlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_alert_diag = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 13) + (0, 110)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2DiagErrorIndex'), ('Webio-Digital-MIB-US', 'wtWebioEA2x2DiagErrorMessage'))
wt_webio_ea12x12_inputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x12Inputs.setStatus('mandatory')
wt_webio_ea12x12_outputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x12Outputs.setStatus('mandatory')
wt_webio_ea12x12_input_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 3))
if mibBuilder.loadTexts:
wtWebioEA12x12InputTable.setStatus('mandatory')
wt_webio_ea12x12_input_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x12InputNo'))
if mibBuilder.loadTexts:
wtWebioEA12x12InputEntry.setStatus('mandatory')
wt_webio_ea12x12_input_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x12InputNo.setStatus('mandatory')
wt_webio_ea12x12_input_counter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x12InputCounter.setStatus('mandatory')
wt_webio_ea12x12_input_counter_clear = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 3, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x12InputCounterClear.setStatus('mandatory')
wt_webio_ea12x12_input_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA12x12InputState-OFF', 0), ('wtWebioEA12x12InputState-ON', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x12InputState.setStatus('mandatory')
wt_webio_ea12x12_input_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x12InputValue.setStatus('mandatory')
wt_webio_ea12x12_output_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 5))
if mibBuilder.loadTexts:
wtWebioEA12x12OutputTable.setStatus('mandatory')
wt_webio_ea12x12_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 5, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x12OutputNo'))
if mibBuilder.loadTexts:
wtWebioEA12x12OutputEntry.setStatus('mandatory')
wt_webio_ea12x12_output_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x12OutputNo.setStatus('mandatory')
wt_webio_ea12x12_output_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 5, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA12x12OutputState-OFF', 0), ('wtWebioEA12x12OutputState-ON', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12OutputState.setStatus('mandatory')
wt_webio_ea12x12_output_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12OutputValue.setStatus('mandatory')
wt_webio_ea12x12_set_output = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12SetOutput.setStatus('mandatory')
wt_webio_ea12x12_sess_cntrl_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12SessCntrlPassword.setStatus('mandatory')
wt_webio_ea12x12_sess_cntrl_config_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA12x12SessCntrl-NoSession', 0), ('wtWebioEA12x12SessCntrl-Session', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x12SessCntrlConfigMode.setStatus('mandatory')
wt_webio_ea12x12_sess_cntrl_logout = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 2, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12SessCntrlLogout.setStatus('mandatory')
wt_webio_ea12x12_sess_cntrl_admin_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 2, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12SessCntrlAdminPassword.setStatus('mandatory')
wt_webio_ea12x12_sess_cntrl_config_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 2, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12SessCntrlConfigPassword.setStatus('mandatory')
wt_webio_ea12x12_device_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12DeviceName.setStatus('mandatory')
wt_webio_ea12x12_device_text = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12DeviceText.setStatus('mandatory')
wt_webio_ea12x12_device_location = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12DeviceLocation.setStatus('mandatory')
wt_webio_ea12x12_device_contact = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12DeviceContact.setStatus('mandatory')
wt_webio_ea12x12_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12TzOffsetHrs.setStatus('mandatory')
wt_webio_ea12x12_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12TzOffsetMin.setStatus('mandatory')
wt_webio_ea12x12_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12TzEnable.setStatus('mandatory')
wt_webio_ea12x12_st_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12StTzOffsetHrs.setStatus('mandatory')
wt_webio_ea12x12_st_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12StTzOffsetMin.setStatus('mandatory')
wt_webio_ea12x12_st_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12StTzEnable.setStatus('mandatory')
wt_webio_ea12x12_st_tz_start_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA12x12StartMonth-January', 1), ('wtWebioEA12x12StartMonth-February', 2), ('wtWebioEA12x12StartMonth-March', 3), ('wtWebioEA12x12StartMonth-April', 4), ('wtWebioEA12x12StartMonth-May', 5), ('wtWebioEA12x12StartMonth-June', 6), ('wtWebioEA12x12StartMonth-July', 7), ('wtWebioEA12x12StartMonth-August', 8), ('wtWebioEA12x12StartMonth-September', 9), ('wtWebioEA12x12StartMonth-October', 10), ('wtWebioEA12x12StartMonth-November', 11), ('wtWebioEA12x12StartMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12StTzStartMonth.setStatus('mandatory')
wt_webio_ea12x12_st_tz_start_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtWebioEA12x12StartMode-first', 1), ('wtWebioEA12x12StartMode-second', 2), ('wtWebioEA12x12StartMode-third', 3), ('wtWebioEA12x12StartMode-fourth', 4), ('wtWebioEA12x12StartMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12StTzStartMode.setStatus('mandatory')
wt_webio_ea12x12_st_tz_start_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtWebioEA12x12StartWday-Sunday', 1), ('wtWebioEA12x12StartWday-Monday', 2), ('wtWebioEA12x12StartWday-Tuesday', 3), ('wtWebioEA12x12StartWday-Thursday', 4), ('wtWebioEA12x12StartWday-Wednesday', 5), ('wtWebioEA12x12StartWday-Friday', 6), ('wtWebioEA12x12StartWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12StTzStartWday.setStatus('mandatory')
wt_webio_ea12x12_st_tz_start_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 10), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12StTzStartHrs.setStatus('mandatory')
wt_webio_ea12x12_st_tz_start_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 11), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12StTzStartMin.setStatus('mandatory')
wt_webio_ea12x12_st_tz_stop_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA12x12StopMonth-January', 1), ('wtWebioEA12x12StopMonth-February', 2), ('wtWebioEA12x12StopMonth-March', 3), ('wtWebioEA12x12StopMonth-April', 4), ('wtWebioEA12x12StopMonth-May', 5), ('wtWebioEA12x12StopMonth-June', 6), ('wtWebioEA12x12StopMonth-July', 7), ('wtWebioEA12x12StopMonth-August', 8), ('wtWebioEA12x12StopMonth-September', 9), ('wtWebioEA12x12StopMonth-October', 10), ('wtWebioEA12x12StopMonth-November', 11), ('wtWebioEA12x12StopMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12StTzStopMonth.setStatus('mandatory')
wt_webio_ea12x12_st_tz_stop_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtWebioEA12x12StopMode-first', 1), ('wtWebioEA12x12StopMode-second', 2), ('wtWebioEA12x12StopMode-third', 3), ('wtWebioEA12x12StopMode-fourth', 4), ('wtWebioEA12x12StopMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12StTzStopMode.setStatus('mandatory')
wt_webio_ea12x12_st_tz_stop_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtWebioEA12x12StopWday-Sunday', 1), ('wtWebioEA12x12StopWday-Monday', 2), ('wtWebioEA12x12StopWday-Tuesday', 3), ('wtWebioEA12x12StopWday-Thursday', 4), ('wtWebioEA12x12StopWday-Wednesday', 5), ('wtWebioEA12x12StopWday-Friday', 6), ('wtWebioEA12x12StopWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12StTzStopWday.setStatus('mandatory')
wt_webio_ea12x12_st_tz_stop_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 15), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12StTzStopHrs.setStatus('mandatory')
wt_webio_ea12x12_st_tz_stop_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 1, 16), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12StTzStopMin.setStatus('mandatory')
wt_webio_ea12x12_time_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12TimeServer1.setStatus('mandatory')
wt_webio_ea12x12_time_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 2, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12TimeServer2.setStatus('mandatory')
wt_webio_ea12x12_ts_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 2, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12TsEnable.setStatus('mandatory')
wt_webio_ea12x12_ts_sync_time = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 2, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12TsSyncTime.setStatus('mandatory')
wt_webio_ea12x12_clock_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 3, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 23))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12ClockHrs.setStatus('mandatory')
wt_webio_ea12x12_clock_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 3, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 59))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12ClockMin.setStatus('mandatory')
wt_webio_ea12x12_clock_day = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 3, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12ClockDay.setStatus('mandatory')
wt_webio_ea12x12_clock_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 3, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA12x12ClockMonth-January', 1), ('wtWebioEA12x12ClockMonth-February', 2), ('wtWebioEA12x12ClockMonth-March', 3), ('wtWebioEA12x12ClockMonth-April', 4), ('wtWebioEA12x12ClockMonth-May', 5), ('wtWebioEA12x12ClockMonth-June', 6), ('wtWebioEA12x12ClockMonth-July', 7), ('wtWebioEA12x12ClockMonth-August', 8), ('wtWebioEA12x12ClockMonth-September', 9), ('wtWebioEA12x12ClockMonth-October', 10), ('wtWebioEA12x12ClockMonth-November', 11), ('wtWebioEA12x12ClockMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12ClockMonth.setStatus('mandatory')
wt_webio_ea12x12_clock_year = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 2, 3, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12ClockYear.setStatus('mandatory')
wt_webio_ea12x12_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12IpAddress.setStatus('mandatory')
wt_webio_ea12x12_subnet_mask = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12SubnetMask.setStatus('mandatory')
wt_webio_ea12x12_gateway = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12Gateway.setStatus('mandatory')
wt_webio_ea12x12_dns_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12DnsServer1.setStatus('mandatory')
wt_webio_ea12x12_dns_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12DnsServer2.setStatus('mandatory')
wt_webio_ea12x12_add_config = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 1, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AddConfig.setStatus('mandatory')
wt_webio_ea12x12_startup = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12Startup.setStatus('mandatory')
wt_webio_ea12x12_get_header_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 2, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12GetHeaderEnable.setStatus('mandatory')
wt_webio_ea12x12_http_input_trigger = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 2, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12HttpInputTrigger.setStatus('mandatory')
wt_webio_ea12x12_http_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 2, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12HttpPort.setStatus('mandatory')
wt_webio_ea12x12_mail_ad_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12MailAdName.setStatus('mandatory')
wt_webio_ea12x12_mail_reply = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12MailReply.setStatus('mandatory')
wt_webio_ea12x12_mail_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12MailServer.setStatus('mandatory')
wt_webio_ea12x12_mail_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12MailEnable.setStatus('mandatory')
wt_webio_ea12x12_mail_authentication = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 3, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12MailAuthentication.setStatus('mandatory')
wt_webio_ea12x12_mail_auth_user = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 3, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12MailAuthUser.setStatus('mandatory')
wt_webio_ea12x12_mail_auth_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 3, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12MailAuthPassword.setStatus('mandatory')
wt_webio_ea12x12_mail_pop3_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 3, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12MailPop3Server.setStatus('mandatory')
wt_webio_ea12x12_snmp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 4, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12SnmpEnable.setStatus('mandatory')
wt_webio_ea12x12_snmp_community_string_read = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 4, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12SnmpCommunityStringRead.setStatus('mandatory')
wt_webio_ea12x12_snmp_community_string_read_write = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 4, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12SnmpCommunityStringReadWrite.setStatus('mandatory')
wt_webio_ea12x12_snmp_system_trap_manager_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 4, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12SnmpSystemTrapManagerIP.setStatus('mandatory')
wt_webio_ea12x12_snmp_system_trap_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 4, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12SnmpSystemTrapEnable.setStatus('mandatory')
wt_webio_ea12x12_udp_admin_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 5, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12UdpAdminPort.setStatus('mandatory')
wt_webio_ea12x12_udp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 5, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12UdpEnable.setStatus('mandatory')
wt_webio_ea12x12_udp_remote_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 5, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12UdpRemotePort.setStatus('mandatory')
wt_webio_ea12x12_binary_mode_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryModeCount.setStatus('mandatory')
wt_webio_ea12x12_binary_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 2))
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryIfTable.setStatus('mandatory')
wt_webio_ea12x12_binary_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x12BinaryModeNo'))
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryIfEntry.setStatus('mandatory')
wt_webio_ea12x12_binary_mode_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryModeNo.setStatus('mandatory')
wt_webio_ea12x12_binary_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3))
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryTable.setStatus('mandatory')
wt_webio_ea12x12_binary_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x12BinaryModeNo'))
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryEntry.setStatus('mandatory')
wt_webio_ea12x12_binary_operation_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryOperationMode.setStatus('mandatory')
wt_webio_ea12x12_binary_tcp_server_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryTcpServerLocalPort.setStatus('mandatory')
wt_webio_ea12x12_binary_tcp_server_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryTcpServerInputTrigger.setStatus('mandatory')
wt_webio_ea12x12_binary_tcp_server_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryTcpServerApplicationMode.setStatus('mandatory')
wt_webio_ea12x12_binary_tcp_client_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryTcpClientLocalPort.setStatus('mandatory')
wt_webio_ea12x12_binary_tcp_client_server_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryTcpClientServerPort.setStatus('mandatory')
wt_webio_ea12x12_binary_tcp_client_server_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryTcpClientServerIpAddr.setStatus('mandatory')
wt_webio_ea12x12_binary_tcp_client_server_password = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryTcpClientServerPassword.setStatus('mandatory')
wt_webio_ea12x12_binary_tcp_client_inactivity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryTcpClientInactivity.setStatus('mandatory')
wt_webio_ea12x12_binary_tcp_client_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryTcpClientInputTrigger.setStatus('mandatory')
wt_webio_ea12x12_binary_tcp_client_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryTcpClientInterval.setStatus('mandatory')
wt_webio_ea12x12_binary_tcp_client_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 12), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryTcpClientApplicationMode.setStatus('mandatory')
wt_webio_ea12x12_binary_udp_peer_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryUdpPeerLocalPort.setStatus('mandatory')
wt_webio_ea12x12_binary_udp_peer_remote_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryUdpPeerRemotePort.setStatus('mandatory')
wt_webio_ea12x12_binary_udp_peer_remote_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 15), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryUdpPeerRemoteIpAddr.setStatus('mandatory')
wt_webio_ea12x12_binary_udp_peer_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 16), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryUdpPeerInputTrigger.setStatus('mandatory')
wt_webio_ea12x12_binary_udp_peer_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryUdpPeerInterval.setStatus('mandatory')
wt_webio_ea12x12_binary_udp_peer_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 18), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryUdpPeerApplicationMode.setStatus('mandatory')
wt_webio_ea12x12_binary_connected_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryConnectedPort.setStatus('mandatory')
wt_webio_ea12x12_binary_connected_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 20), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryConnectedIpAddr.setStatus('mandatory')
wt_webio_ea12x12_binary_tcp_server_client_http_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryTcpServerClientHttpPort.setStatus('mandatory')
wt_webio_ea12x12_binary_tcp_client_server_http_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 6, 3, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12BinaryTcpClientServerHttpPort.setStatus('mandatory')
wt_webio_ea12x12_syslog_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 7, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12SyslogServerIP.setStatus('mandatory')
wt_webio_ea12x12_syslog_server_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 7, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12SyslogServerPort.setStatus('mandatory')
wt_webio_ea12x12_syslog_system_messages_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 7, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12SyslogSystemMessagesEnable.setStatus('mandatory')
wt_webio_ea12x12_syslog_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 7, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12SyslogEnable.setStatus('mandatory')
wt_webio_ea12x12_ftp_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 8, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12FTPServerIP.setStatus('mandatory')
wt_webio_ea12x12_ftp_server_control_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 8, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12FTPServerControlPort.setStatus('mandatory')
wt_webio_ea12x12_ftp_user_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 8, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12FTPUserName.setStatus('mandatory')
wt_webio_ea12x12_ftp_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 8, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12FTPPassword.setStatus('mandatory')
wt_webio_ea12x12_ftp_account = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 8, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12FTPAccount.setStatus('mandatory')
wt_webio_ea12x12_ftp_option = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 8, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12FTPOption.setStatus('mandatory')
wt_webio_ea12x12_ftp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 3, 8, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12FTPEnable.setStatus('mandatory')
wt_webio_ea12x12_output_mode_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 4, 1))
if mibBuilder.loadTexts:
wtWebioEA12x12OutputModeTable.setStatus('mandatory')
wt_webio_ea12x12_output_mode_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 4, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x12OutputNo'))
if mibBuilder.loadTexts:
wtWebioEA12x12OutputModeEntry.setStatus('mandatory')
wt_webio_ea12x12_output_mode_bit = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 4, 1, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12OutputModeBit.setStatus('mandatory')
wt_webio_ea12x12_safety_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 4, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12SafetyTimeout.setStatus('mandatory')
wt_webio_ea12x12_load_control_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 4, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12LoadControlEnable.setStatus('mandatory')
wt_webio_ea12x12_alarm_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmCount.setStatus('mandatory')
wt_webio_ea12x12_alarm_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 2))
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmIfTable.setStatus('mandatory')
wt_webio_ea12x12_alarm_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmNo'))
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmIfEntry.setStatus('mandatory')
wt_webio_ea12x12_alarm_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmNo.setStatus('mandatory')
wt_webio_ea12x12_alarm_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3))
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmTable.setStatus('mandatory')
wt_webio_ea12x12_alarm_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmNo'))
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmEntry.setStatus('mandatory')
wt_webio_ea12x12_alarm_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(12, 12)).setFixedLength(12)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmInputTrigger.setStatus('mandatory')
wt_webio_ea12x12_alarm_output_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(12, 12)).setFixedLength(12)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmOutputTrigger.setStatus('mandatory')
wt_webio_ea12x12_alarm_system_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmSystemTrigger.setStatus('mandatory')
wt_webio_ea12x12_alarm_max_counter_value = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmMaxCounterValue.setStatus('mandatory')
wt_webio_ea12x12_alarm_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmInterval.setStatus('mandatory')
wt_webio_ea12x12_alarm_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmEnable.setStatus('mandatory')
wt_webio_ea12x12_alarm_mail_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmMailAddr.setStatus('mandatory')
wt_webio_ea12x12_alarm_mail_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmMailSubject.setStatus('mandatory')
wt_webio_ea12x12_alarm_mail_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 9), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmMailText.setStatus('mandatory')
wt_webio_ea12x12_alarm_snmp_manager_ip = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 10), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmSnmpManagerIP.setStatus('mandatory')
wt_webio_ea12x12_alarm_snmp_trap_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 11), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmSnmpTrapText.setStatus('mandatory')
wt_webio_ea12x12_alarm_udp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 12), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmUdpIpAddr.setStatus('mandatory')
wt_webio_ea12x12_alarm_udp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmUdpPort.setStatus('mandatory')
wt_webio_ea12x12_alarm_udp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 14), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmUdpText.setStatus('mandatory')
wt_webio_ea12x12_alarm_tcp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 15), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmTcpIpAddr.setStatus('mandatory')
wt_webio_ea12x12_alarm_tcp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmTcpPort.setStatus('mandatory')
wt_webio_ea12x12_alarm_tcp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 17), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmTcpText.setStatus('mandatory')
wt_webio_ea12x12_alarm_syslog_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 18), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmSyslogIpAddr.setStatus('mandatory')
wt_webio_ea12x12_alarm_syslog_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmSyslogPort.setStatus('mandatory')
wt_webio_ea12x12_alarm_syslog_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 20), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmSyslogText.setStatus('mandatory')
wt_webio_ea12x12_alarm_ftp_data_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 21), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmFtpDataPort.setStatus('mandatory')
wt_webio_ea12x12_alarm_ftp_file_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 22), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmFtpFileName.setStatus('mandatory')
wt_webio_ea12x12_alarm_ftp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 23), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmFtpText.setStatus('mandatory')
wt_webio_ea12x12_alarm_ftp_option = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 24), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmFtpOption.setStatus('mandatory')
wt_webio_ea12x12_alarm_timer_cron = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 25), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmTimerCron.setStatus('mandatory')
wt_webio_ea12x12_alarm_mail_release_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 26), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmMailReleaseSubject.setStatus('mandatory')
wt_webio_ea12x12_alarm_mail_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 27), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmMailReleaseText.setStatus('mandatory')
wt_webio_ea12x12_alarm_snmp_trap_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 28), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmSnmpTrapReleaseText.setStatus('mandatory')
wt_webio_ea12x12_alarm_udp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 29), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmUdpReleaseText.setStatus('mandatory')
wt_webio_ea12x12_alarm_tcp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 30), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmTcpReleaseText.setStatus('mandatory')
wt_webio_ea12x12_alarm_syslog_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 31), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmSyslogReleaseText.setStatus('mandatory')
wt_webio_ea12x12_alarm_ftp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 3, 1, 32), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12AlarmFtpReleaseText.setStatus('mandatory')
wt_webio_ea12x12_load_control_view = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 4), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x12LoadControlView.setStatus('mandatory')
wt_webio_ea12x12_lc_shut_down_view = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 1, 5, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12LCShutDownView.setStatus('mandatory')
wt_webio_ea12x12_input_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 1))
if mibBuilder.loadTexts:
wtWebioEA12x12InputPortTable.setStatus('mandatory')
wt_webio_ea12x12_input_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x12InputNo'))
if mibBuilder.loadTexts:
wtWebioEA12x12InputPortEntry.setStatus('mandatory')
wt_webio_ea12x12_port_input_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12PortInputName.setStatus('mandatory')
wt_webio_ea12x12_port_input_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12PortInputText.setStatus('mandatory')
wt_webio_ea12x12_port_input_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12PortInputMode.setStatus('mandatory')
wt_webio_ea12x12_port_input_filter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 1, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12PortInputFilter.setStatus('mandatory')
wt_webio_ea12x12_port_input_bicount_pulse_polarity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12PortInputBicountPulsePolarity.setStatus('mandatory')
wt_webio_ea12x12_port_input_bicount_inactiv_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 1, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12PortInputBicountInactivTimeout.setStatus('mandatory')
wt_webio_ea12x12_output_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2))
if mibBuilder.loadTexts:
wtWebioEA12x12OutputPortTable.setStatus('mandatory')
wt_webio_ea12x12_output_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x12OutputNo'))
if mibBuilder.loadTexts:
wtWebioEA12x12OutputPortEntry.setStatus('mandatory')
wt_webio_ea12x12_port_output_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12PortOutputName.setStatus('mandatory')
wt_webio_ea12x12_port_output_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12PortOutputText.setStatus('mandatory')
wt_webio_ea12x12_port_output_group_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12PortOutputGroupMode.setStatus('mandatory')
wt_webio_ea12x12_port_output_safety_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12PortOutputSafetyState.setStatus('mandatory')
wt_webio_ea12x12_port_logic_input_mask = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12PortLogicInputMask.setStatus('mandatory')
wt_webio_ea12x12_port_logic_input_inverter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12PortLogicInputInverter.setStatus('mandatory')
wt_webio_ea12x12_port_logic_function = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12PortLogicFunction.setStatus('mandatory')
wt_webio_ea12x12_port_logic_output_inverter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12PortLogicOutputInverter.setStatus('mandatory')
wt_webio_ea12x12_port_pulse_duration = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12PortPulseDuration.setStatus('mandatory')
wt_webio_ea12x12_port_pulse_polarity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 2, 2, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12PortPulsePolarity.setStatus('mandatory')
wt_webio_ea12x12_mf_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12MfName.setStatus('mandatory')
wt_webio_ea12x12_mf_addr = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12MfAddr.setStatus('mandatory')
wt_webio_ea12x12_mf_hotline = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12MfHotline.setStatus('mandatory')
wt_webio_ea12x12_mf_internet = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12MfInternet.setStatus('mandatory')
wt_webio_ea12x12_mf_device_typ = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 3, 3, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12MfDeviceTyp.setStatus('mandatory')
wt_webio_ea12x12_diag_error_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x12DiagErrorCount.setStatus('mandatory')
wt_webio_ea12x12_diag_binary_error = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 4, 2), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x12DiagBinaryError.setStatus('mandatory')
wt_webio_ea12x12_diag_error_index = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 4, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x12DiagErrorIndex.setStatus('mandatory')
wt_webio_ea12x12_diag_error_message = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 4, 4), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x12DiagErrorMessage.setStatus('mandatory')
wt_webio_ea12x12_diag_error_clear = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4, 4, 5), integer32()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
wtWebioEA12x12DiagErrorClear.setStatus('mandatory')
wt_webio_ea12x12_alert1 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 41)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapText'))
wt_webio_ea12x12_alert2 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 42)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapText'))
wt_webio_ea12x12_alert3 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 43)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapText'))
wt_webio_ea12x12_alert4 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 44)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapText'))
wt_webio_ea12x12_alert5 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 45)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapText'))
wt_webio_ea12x12_alert6 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 46)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapText'))
wt_webio_ea12x12_alert7 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 47)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapText'))
wt_webio_ea12x12_alert8 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 48)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapText'))
wt_webio_ea12x12_alert9 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 49)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapText'))
wt_webio_ea12x12_alert10 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 50)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapText'))
wt_webio_ea12x12_alert11 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 51)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapText'))
wt_webio_ea12x12_alert12 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 52)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapText'))
wt_webio_ea12x12_alert13 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 71)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapReleaseText'))
wt_webio_ea12x12_alert14 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 72)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapReleaseText'))
wt_webio_ea12x12_alert15 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 73)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapReleaseText'))
wt_webio_ea12x12_alert16 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 74)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapReleaseText'))
wt_webio_ea12x12_alert17 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 75)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapReleaseText'))
wt_webio_ea12x12_alert18 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 76)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapReleaseText'))
wt_webio_ea12x12_alert19 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 77)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapReleaseText'))
wt_webio_ea12x12_alert20 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 78)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapReleaseText'))
wt_webio_ea12x12_alert21 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 79)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapReleaseText'))
wt_webio_ea12x12_alert22 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 80)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapReleaseText'))
wt_webio_ea12x12_alert23 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 81)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapReleaseText'))
wt_webio_ea12x12_alert24 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 82)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12AlarmSnmpTrapReleaseText'))
wt_webio_ea12x12_alert_diag = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 4) + (0, 110)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x12DiagErrorIndex'), ('Webio-Digital-MIB-US', 'wtWebioEA12x12DiagErrorMessage'))
wt_webio_ea24oem_inputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 24))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA24oemInputs.setStatus('mandatory')
wt_webio_ea24oem_outputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 24))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA24oemOutputs.setStatus('mandatory')
wt_webio_ea24oem_input_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 3))
if mibBuilder.loadTexts:
wtWebioEA24oemInputTable.setStatus('mandatory')
wt_webio_ea24oem_input_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA24oemInputNo'))
if mibBuilder.loadTexts:
wtWebioEA24oemInputEntry.setStatus('mandatory')
wt_webio_ea24oem_input_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA24oemInputNo.setStatus('mandatory')
wt_webio_ea24oem_input_counter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 3, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA24oemInputCounter.setStatus('mandatory')
wt_webio_ea24oem_input_counter_clear = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 3, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA24oemInputCounterClear.setStatus('mandatory')
wt_webio_ea24oem_input_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA24oemInputState-OFF', 0), ('wtWebioEA24oemInputState-ON', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA24oemInputState.setStatus('mandatory')
wt_webio_ea24oem_input_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA24oemInputValue.setStatus('mandatory')
wt_webio_ea24oem_output_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 5))
if mibBuilder.loadTexts:
wtWebioEA24oemOutputTable.setStatus('mandatory')
wt_webio_ea24oem_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 5, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA24oemOutputNo'))
if mibBuilder.loadTexts:
wtWebioEA24oemOutputEntry.setStatus('mandatory')
wt_webio_ea24oem_output_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 24))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA24oemOutputNo.setStatus('mandatory')
wt_webio_ea24oem_output_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 5, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA24oemOutputState-OFF', 0), ('wtWebioEA24oemOutputState-ON', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemOutputState.setStatus('mandatory')
wt_webio_ea24oem_output_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemOutputValue.setStatus('mandatory')
wt_webio_ea24oem_set_output = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemSetOutput.setStatus('mandatory')
wt_webio_ea24oem_sess_cntrl_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemSessCntrlPassword.setStatus('mandatory')
wt_webio_ea24oem_sess_cntrl_config_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA24oemSessCntrl-NoSession', 0), ('wtWebioEA24oemSessCntrl-Session', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA24oemSessCntrlConfigMode.setStatus('mandatory')
wt_webio_ea24oem_sess_cntrl_logout = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 2, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemSessCntrlLogout.setStatus('mandatory')
wt_webio_ea24oem_sess_cntrl_admin_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 2, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemSessCntrlAdminPassword.setStatus('mandatory')
wt_webio_ea24oem_sess_cntrl_config_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 2, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemSessCntrlConfigPassword.setStatus('mandatory')
wt_webio_ea24oem_device_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemDeviceName.setStatus('mandatory')
wt_webio_ea24oem_device_text = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemDeviceText.setStatus('mandatory')
wt_webio_ea24oem_device_location = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemDeviceLocation.setStatus('mandatory')
wt_webio_ea24oem_device_contact = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemDeviceContact.setStatus('mandatory')
wt_webio_ea24oem_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemTzOffsetHrs.setStatus('mandatory')
wt_webio_ea24oem_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemTzOffsetMin.setStatus('mandatory')
wt_webio_ea24oem_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemTzEnable.setStatus('mandatory')
wt_webio_ea24oem_st_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemStTzOffsetHrs.setStatus('mandatory')
wt_webio_ea24oem_st_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemStTzOffsetMin.setStatus('mandatory')
wt_webio_ea24oem_st_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemStTzEnable.setStatus('mandatory')
wt_webio_ea24oem_st_tz_start_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA24oemStartMonth-January', 1), ('wtWebioEA24oemStartMonth-February', 2), ('wtWebioEA24oemStartMonth-March', 3), ('wtWebioEA24oemStartMonth-April', 4), ('wtWebioEA24oemStartMonth-May', 5), ('wtWebioEA24oemStartMonth-June', 6), ('wtWebioEA24oemStartMonth-July', 7), ('wtWebioEA24oemStartMonth-August', 8), ('wtWebioEA24oemStartMonth-September', 9), ('wtWebioEA24oemStartMonth-October', 10), ('wtWebioEA24oemStartMonth-November', 11), ('wtWebioEA24oemStartMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemStTzStartMonth.setStatus('mandatory')
wt_webio_ea24oem_st_tz_start_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtWebioEA24oemStartMode-first', 1), ('wtWebioEA24oemStartMode-second', 2), ('wtWebioEA24oemStartMode-third', 3), ('wtWebioEA24oemStartMode-fourth', 4), ('wtWebioEA24oemStartMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemStTzStartMode.setStatus('mandatory')
wt_webio_ea24oem_st_tz_start_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtWebioEA24oemStartWday-Sunday', 1), ('wtWebioEA24oemStartWday-Monday', 2), ('wtWebioEA24oemStartWday-Tuesday', 3), ('wtWebioEA24oemStartWday-Thursday', 4), ('wtWebioEA24oemStartWday-Wednesday', 5), ('wtWebioEA24oemStartWday-Friday', 6), ('wtWebioEA24oemStartWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemStTzStartWday.setStatus('mandatory')
wt_webio_ea24oem_st_tz_start_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 10), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemStTzStartHrs.setStatus('mandatory')
wt_webio_ea24oem_st_tz_start_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 11), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemStTzStartMin.setStatus('mandatory')
wt_webio_ea24oem_st_tz_stop_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA24oemStopMonth-January', 1), ('wtWebioEA24oemStopMonth-February', 2), ('wtWebioEA24oemStopMonth-March', 3), ('wtWebioEA24oemStopMonth-April', 4), ('wtWebioEA24oemStopMonth-May', 5), ('wtWebioEA24oemStopMonth-June', 6), ('wtWebioEA24oemStopMonth-July', 7), ('wtWebioEA24oemStopMonth-August', 8), ('wtWebioEA24oemStopMonth-September', 9), ('wtWebioEA24oemStopMonth-October', 10), ('wtWebioEA24oemStopMonth-November', 11), ('wtWebioEA24oemStopMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemStTzStopMonth.setStatus('mandatory')
wt_webio_ea24oem_st_tz_stop_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtWebioEA24oemStopMode-first', 1), ('wtWebioEA24oemStopMode-second', 2), ('wtWebioEA24oemStopMode-third', 3), ('wtWebioEA24oemStopMode-fourth', 4), ('wtWebioEA24oemStopMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemStTzStopMode.setStatus('mandatory')
wt_webio_ea24oem_st_tz_stop_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtWebioEA24oemStopWday-Sunday', 1), ('wtWebioEA24oemStopWday-Monday', 2), ('wtWebioEA24oemStopWday-Tuesday', 3), ('wtWebioEA24oemStopWday-Thursday', 4), ('wtWebioEA24oemStopWday-Wednesday', 5), ('wtWebioEA24oemStopWday-Friday', 6), ('wtWebioEA24oemStopWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemStTzStopWday.setStatus('mandatory')
wt_webio_ea24oem_st_tz_stop_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 15), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemStTzStopHrs.setStatus('mandatory')
wt_webio_ea24oem_st_tz_stop_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 1, 16), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemStTzStopMin.setStatus('mandatory')
wt_webio_ea24oem_time_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemTimeServer1.setStatus('mandatory')
wt_webio_ea24oem_time_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 2, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemTimeServer2.setStatus('mandatory')
wt_webio_ea24oem_ts_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 2, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemTsEnable.setStatus('mandatory')
wt_webio_ea24oem_ts_sync_time = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 2, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemTsSyncTime.setStatus('mandatory')
wt_webio_ea24oem_clock_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 3, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 23))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemClockHrs.setStatus('mandatory')
wt_webio_ea24oem_clock_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 3, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 59))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemClockMin.setStatus('mandatory')
wt_webio_ea24oem_clock_day = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 3, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemClockDay.setStatus('mandatory')
wt_webio_ea24oem_clock_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 3, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA24oemClockMonth-January', 1), ('wtWebioEA24oemClockMonth-February', 2), ('wtWebioEA24oemClockMonth-March', 3), ('wtWebioEA24oemClockMonth-April', 4), ('wtWebioEA24oemClockMonth-May', 5), ('wtWebioEA24oemClockMonth-June', 6), ('wtWebioEA24oemClockMonth-July', 7), ('wtWebioEA24oemClockMonth-August', 8), ('wtWebioEA24oemClockMonth-September', 9), ('wtWebioEA24oemClockMonth-October', 10), ('wtWebioEA24oemClockMonth-November', 11), ('wtWebioEA24oemClockMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemClockMonth.setStatus('mandatory')
wt_webio_ea24oem_clock_year = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 2, 3, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemClockYear.setStatus('mandatory')
wt_webio_ea24oem_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemIpAddress.setStatus('mandatory')
wt_webio_ea24oem_subnet_mask = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemSubnetMask.setStatus('mandatory')
wt_webio_ea24oem_gateway = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemGateway.setStatus('mandatory')
wt_webio_ea24oem_dns_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemDnsServer1.setStatus('mandatory')
wt_webio_ea24oem_dns_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemDnsServer2.setStatus('mandatory')
wt_webio_ea24oem_add_config = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 1, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAddConfig.setStatus('mandatory')
wt_webio_ea24oem_startup = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemStartup.setStatus('mandatory')
wt_webio_ea24oem_get_header_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 2, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemGetHeaderEnable.setStatus('mandatory')
wt_webio_ea24oem_http_input_trigger = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 2, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemHttpInputTrigger.setStatus('mandatory')
wt_webio_ea24oem_http_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 2, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemHttpPort.setStatus('mandatory')
wt_webio_ea24oem_mail_ad_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemMailAdName.setStatus('mandatory')
wt_webio_ea24oem_mail_reply = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemMailReply.setStatus('mandatory')
wt_webio_ea24oem_mail_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemMailServer.setStatus('mandatory')
wt_webio_ea24oem_mail_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemMailEnable.setStatus('mandatory')
wt_webio_ea24oem_mail_authentication = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 3, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemMailAuthentication.setStatus('mandatory')
wt_webio_ea24oem_mail_auth_user = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 3, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemMailAuthUser.setStatus('mandatory')
wt_webio_ea24oem_mail_auth_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 3, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemMailAuthPassword.setStatus('mandatory')
wt_webio_ea24oem_mail_pop3_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 3, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemMailPop3Server.setStatus('mandatory')
wt_webio_ea24oem_snmp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 4, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemSnmpEnable.setStatus('mandatory')
wt_webio_ea24oem_snmp_community_string_read = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 4, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemSnmpCommunityStringRead.setStatus('mandatory')
wt_webio_ea24oem_snmp_community_string_read_write = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 4, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemSnmpCommunityStringReadWrite.setStatus('mandatory')
wt_webio_ea24oem_snmp_system_trap_manager_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 4, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemSnmpSystemTrapManagerIP.setStatus('mandatory')
wt_webio_ea24oem_snmp_system_trap_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 4, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemSnmpSystemTrapEnable.setStatus('mandatory')
wt_webio_ea24oem_udp_admin_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 5, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemUdpAdminPort.setStatus('mandatory')
wt_webio_ea24oem_udp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 5, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemUdpEnable.setStatus('mandatory')
wt_webio_ea24oem_udp_remote_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 5, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemUdpRemotePort.setStatus('mandatory')
wt_webio_ea24oem_binary_mode_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryModeCount.setStatus('mandatory')
wt_webio_ea24oem_binary_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 2))
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryIfTable.setStatus('mandatory')
wt_webio_ea24oem_binary_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA24oemBinaryModeNo'))
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryIfEntry.setStatus('mandatory')
wt_webio_ea24oem_binary_mode_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryModeNo.setStatus('mandatory')
wt_webio_ea24oem_binary_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3))
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryTable.setStatus('mandatory')
wt_webio_ea24oem_binary_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA24oemBinaryModeNo'))
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryEntry.setStatus('mandatory')
wt_webio_ea24oem_binary_operation_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryOperationMode.setStatus('mandatory')
wt_webio_ea24oem_binary_tcp_server_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryTcpServerLocalPort.setStatus('mandatory')
wt_webio_ea24oem_binary_tcp_server_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryTcpServerInputTrigger.setStatus('mandatory')
wt_webio_ea24oem_binary_tcp_server_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryTcpServerApplicationMode.setStatus('mandatory')
wt_webio_ea24oem_binary_tcp_client_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryTcpClientLocalPort.setStatus('mandatory')
wt_webio_ea24oem_binary_tcp_client_server_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryTcpClientServerPort.setStatus('mandatory')
wt_webio_ea24oem_binary_tcp_client_server_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryTcpClientServerIpAddr.setStatus('mandatory')
wt_webio_ea24oem_binary_tcp_client_server_password = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryTcpClientServerPassword.setStatus('mandatory')
wt_webio_ea24oem_binary_tcp_client_inactivity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryTcpClientInactivity.setStatus('mandatory')
wt_webio_ea24oem_binary_tcp_client_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryTcpClientInputTrigger.setStatus('mandatory')
wt_webio_ea24oem_binary_tcp_client_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryTcpClientInterval.setStatus('mandatory')
wt_webio_ea24oem_binary_tcp_client_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 12), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryTcpClientApplicationMode.setStatus('mandatory')
wt_webio_ea24oem_binary_udp_peer_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryUdpPeerLocalPort.setStatus('mandatory')
wt_webio_ea24oem_binary_udp_peer_remote_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryUdpPeerRemotePort.setStatus('mandatory')
wt_webio_ea24oem_binary_udp_peer_remote_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 15), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryUdpPeerRemoteIpAddr.setStatus('mandatory')
wt_webio_ea24oem_binary_udp_peer_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 16), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryUdpPeerInputTrigger.setStatus('mandatory')
wt_webio_ea24oem_binary_udp_peer_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryUdpPeerInterval.setStatus('mandatory')
wt_webio_ea24oem_binary_udp_peer_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 18), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryUdpPeerApplicationMode.setStatus('mandatory')
wt_webio_ea24oem_binary_connected_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryConnectedPort.setStatus('mandatory')
wt_webio_ea24oem_binary_connected_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 20), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryConnectedIpAddr.setStatus('mandatory')
wt_webio_ea24oem_binary_tcp_server_client_http_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryTcpServerClientHttpPort.setStatus('mandatory')
wt_webio_ea24oem_binary_tcp_client_server_http_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 6, 3, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemBinaryTcpClientServerHttpPort.setStatus('mandatory')
wt_webio_ea24oem_syslog_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 7, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemSyslogServerIP.setStatus('mandatory')
wt_webio_ea24oem_syslog_server_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 7, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemSyslogServerPort.setStatus('mandatory')
wt_webio_ea24oem_syslog_system_messages_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 7, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemSyslogSystemMessagesEnable.setStatus('mandatory')
wt_webio_ea24oem_syslog_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 7, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemSyslogEnable.setStatus('mandatory')
wt_webio_ea24oem_ftp_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 8, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemFTPServerIP.setStatus('mandatory')
wt_webio_ea24oem_ftp_server_control_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 8, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemFTPServerControlPort.setStatus('mandatory')
wt_webio_ea24oem_ftp_user_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 8, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemFTPUserName.setStatus('mandatory')
wt_webio_ea24oem_ftp_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 8, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemFTPPassword.setStatus('mandatory')
wt_webio_ea24oem_ftp_account = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 8, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemFTPAccount.setStatus('mandatory')
wt_webio_ea24oem_ftp_option = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 8, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemFTPOption.setStatus('mandatory')
wt_webio_ea24oem_ftp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 3, 8, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemFTPEnable.setStatus('mandatory')
wt_webio_ea24oem_output_mode_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 4, 1))
if mibBuilder.loadTexts:
wtWebioEA24oemOutputModeTable.setStatus('mandatory')
wt_webio_ea24oem_output_mode_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 4, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA24oemOutputNo'))
if mibBuilder.loadTexts:
wtWebioEA24oemOutputModeEntry.setStatus('mandatory')
wt_webio_ea24oem_output_mode_bit = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 4, 1, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemOutputModeBit.setStatus('mandatory')
wt_webio_ea24oem_safety_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 4, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemSafetyTimeout.setStatus('mandatory')
wt_webio_ea24oem_load_control_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 4, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemLoadControlEnable.setStatus('mandatory')
wt_webio_ea24oem_alarm_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmCount.setStatus('mandatory')
wt_webio_ea24oem_alarm_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 2))
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmIfTable.setStatus('mandatory')
wt_webio_ea24oem_alarm_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmNo'))
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmIfEntry.setStatus('mandatory')
wt_webio_ea24oem_alarm_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmNo.setStatus('mandatory')
wt_webio_ea24oem_alarm_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3))
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmTable.setStatus('mandatory')
wt_webio_ea24oem_alarm_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmNo'))
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmEntry.setStatus('mandatory')
wt_webio_ea24oem_alarm_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(12, 12)).setFixedLength(12)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmInputTrigger.setStatus('mandatory')
wt_webio_ea24oem_alarm_output_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(12, 12)).setFixedLength(12)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmOutputTrigger.setStatus('mandatory')
wt_webio_ea24oem_alarm_system_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmSystemTrigger.setStatus('mandatory')
wt_webio_ea24oem_alarm_max_counter_value = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmMaxCounterValue.setStatus('mandatory')
wt_webio_ea24oem_alarm_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmInterval.setStatus('mandatory')
wt_webio_ea24oem_alarm_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmEnable.setStatus('mandatory')
wt_webio_ea24oem_alarm_mail_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmMailAddr.setStatus('mandatory')
wt_webio_ea24oem_alarm_mail_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmMailSubject.setStatus('mandatory')
wt_webio_ea24oem_alarm_mail_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 9), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmMailText.setStatus('mandatory')
wt_webio_ea24oem_alarm_snmp_manager_ip = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 10), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmSnmpManagerIP.setStatus('mandatory')
wt_webio_ea24oem_alarm_snmp_trap_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 11), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmSnmpTrapText.setStatus('mandatory')
wt_webio_ea24oem_alarm_udp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 12), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmUdpIpAddr.setStatus('mandatory')
wt_webio_ea24oem_alarm_udp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmUdpPort.setStatus('mandatory')
wt_webio_ea24oem_alarm_udp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 14), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmUdpText.setStatus('mandatory')
wt_webio_ea24oem_alarm_tcp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 15), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmTcpIpAddr.setStatus('mandatory')
wt_webio_ea24oem_alarm_tcp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmTcpPort.setStatus('mandatory')
wt_webio_ea24oem_alarm_tcp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 17), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmTcpText.setStatus('mandatory')
wt_webio_ea24oem_alarm_syslog_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 18), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmSyslogIpAddr.setStatus('mandatory')
wt_webio_ea24oem_alarm_syslog_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmSyslogPort.setStatus('mandatory')
wt_webio_ea24oem_alarm_syslog_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 20), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmSyslogText.setStatus('mandatory')
wt_webio_ea24oem_alarm_ftp_data_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 21), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmFtpDataPort.setStatus('mandatory')
wt_webio_ea24oem_alarm_ftp_file_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 22), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmFtpFileName.setStatus('mandatory')
wt_webio_ea24oem_alarm_ftp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 23), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmFtpText.setStatus('mandatory')
wt_webio_ea24oem_alarm_ftp_option = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 24), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmFtpOption.setStatus('mandatory')
wt_webio_ea24oem_alarm_timer_cron = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 3, 1, 25), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemAlarmTimerCron.setStatus('mandatory')
wt_webio_ea24oem_load_control_view = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 4), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA24oemLoadControlView.setStatus('mandatory')
wt_webio_ea24oem_lc_shut_down_view = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 1, 5, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemLCShutDownView.setStatus('mandatory')
wt_webio_ea24oem_input_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 1))
if mibBuilder.loadTexts:
wtWebioEA24oemInputPortTable.setStatus('mandatory')
wt_webio_ea24oem_input_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA24oemInputNo'))
if mibBuilder.loadTexts:
wtWebioEA24oemInputPortEntry.setStatus('mandatory')
wt_webio_ea24oem_port_input_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemPortInputName.setStatus('mandatory')
wt_webio_ea24oem_port_input_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemPortInputText.setStatus('mandatory')
wt_webio_ea24oem_port_input_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemPortInputMode.setStatus('mandatory')
wt_webio_ea24oem_port_input_filter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 1, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemPortInputFilter.setStatus('mandatory')
wt_webio_ea24oem_output_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2))
if mibBuilder.loadTexts:
wtWebioEA24oemOutputPortTable.setStatus('mandatory')
wt_webio_ea24oem_output_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA24oemOutputNo'))
if mibBuilder.loadTexts:
wtWebioEA24oemOutputPortEntry.setStatus('mandatory')
wt_webio_ea24oem_port_output_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemPortOutputName.setStatus('mandatory')
wt_webio_ea24oem_port_output_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemPortOutputText.setStatus('mandatory')
wt_webio_ea24oem_port_output_group_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemPortOutputGroupMode.setStatus('mandatory')
wt_webio_ea24oem_port_output_safety_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemPortOutputSafetyState.setStatus('mandatory')
wt_webio_ea24oem_port_logic_input_mask = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemPortLogicInputMask.setStatus('mandatory')
wt_webio_ea24oem_port_logic_input_inverter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemPortLogicInputInverter.setStatus('mandatory')
wt_webio_ea24oem_port_logic_function = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemPortLogicFunction.setStatus('mandatory')
wt_webio_ea24oem_port_logic_output_inverter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemPortLogicOutputInverter.setStatus('mandatory')
wt_webio_ea24oem_port_pulse_duration = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemPortPulseDuration.setStatus('mandatory')
wt_webio_ea24oem_port_pulse_polarity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 2, 2, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemPortPulsePolarity.setStatus('mandatory')
wt_webio_ea24oem_mf_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemMfName.setStatus('mandatory')
wt_webio_ea24oem_mf_addr = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemMfAddr.setStatus('mandatory')
wt_webio_ea24oem_mf_hotline = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemMfHotline.setStatus('mandatory')
wt_webio_ea24oem_mf_internet = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemMfInternet.setStatus('mandatory')
wt_webio_ea24oem_mf_device_typ = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 3, 3, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemMfDeviceTyp.setStatus('mandatory')
wt_webio_ea24oem_diag_error_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA24oemDiagErrorCount.setStatus('mandatory')
wt_webio_ea24oem_diag_binary_error = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 4, 2), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA24oemDiagBinaryError.setStatus('mandatory')
wt_webio_ea24oem_diag_error_index = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 4, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA24oemDiagErrorIndex.setStatus('mandatory')
wt_webio_ea24oem_diag_error_message = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 4, 4), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA24oemDiagErrorMessage.setStatus('mandatory')
wt_webio_ea24oem_diag_error_clear = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14, 4, 5), integer32()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
wtWebioEA24oemDiagErrorClear.setStatus('mandatory')
wt_webio_ea24oem_alert1 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 53)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert2 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 54)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert3 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 55)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert4 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 56)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert5 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 57)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert6 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 58)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert7 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 59)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert8 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 60)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert9 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 61)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert10 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 62)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert11 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 63)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert12 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 64)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert13 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 65)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert14 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 66)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert15 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 67)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert16 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 68)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert17 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 71)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert18 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 72)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert19 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 73)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert20 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 74)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert21 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 75)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert22 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 76)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert23 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 77)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert24 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 78)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert25 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 79)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert26 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 80)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert27 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 81)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert28 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 82)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert29 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 83)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert30 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 84)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert31 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 85)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert32 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 86)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemAlarmSnmpTrapText'))
wt_webio_ea24oem_alert_diag = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 14) + (0, 110)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA24oemDiagErrorIndex'), ('Webio-Digital-MIB-US', 'wtWebioEA24oemDiagErrorMessage'))
wt_webio_ea12x6_rel_inputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelInputs.setStatus('mandatory')
wt_webio_ea12x6_rel_outputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 6))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelOutputs.setStatus('mandatory')
wt_webio_ea12x6_rel_input_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 3))
if mibBuilder.loadTexts:
wtWebioEA12x6RelInputTable.setStatus('mandatory')
wt_webio_ea12x6_rel_input_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x6RelInputNo'))
if mibBuilder.loadTexts:
wtWebioEA12x6RelInputEntry.setStatus('mandatory')
wt_webio_ea12x6_rel_input_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelInputNo.setStatus('mandatory')
wt_webio_ea12x6_rel_input_counter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelInputCounter.setStatus('mandatory')
wt_webio_ea12x6_rel_input_counter_clear = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 3, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelInputCounterClear.setStatus('mandatory')
wt_webio_ea12x6_rel_input_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelInputValue.setStatus('mandatory')
wt_webio_ea12x6_rel_output_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 5))
if mibBuilder.loadTexts:
wtWebioEA12x6RelOutputTable.setStatus('mandatory')
wt_webio_ea12x6_rel_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 5, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x6RelOutputNo'))
if mibBuilder.loadTexts:
wtWebioEA12x6RelOutputEntry.setStatus('mandatory')
wt_webio_ea12x6_rel_output_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelOutputNo.setStatus('mandatory')
wt_webio_ea12x6_rel_output_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 5, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA12x6RelOutputState-OFF', 0), ('wtWebioEA12x6OutputState-ON', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelOutputState.setStatus('mandatory')
wt_webio_ea12x6_rel_output_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelOutputValue.setStatus('mandatory')
wt_webio_ea12x6_rel_set_output = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelSetOutput.setStatus('mandatory')
wt_webio_ea12x6_rel_sess_cntrl_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelSessCntrlPassword.setStatus('mandatory')
wt_webio_ea12x6_rel_sess_cntrl_config_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA12x6RelSessCntrl-NoSession', 0), ('wtWebioEA12x6RelSessCntrl-Session', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelSessCntrlConfigMode.setStatus('mandatory')
wt_webio_ea12x6_rel_sess_cntrl_logout = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 2, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelSessCntrlLogout.setStatus('mandatory')
wt_webio_ea12x6_rel_sess_cntrl_admin_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 2, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelSessCntrlAdminPassword.setStatus('mandatory')
wt_webio_ea12x6_rel_sess_cntrl_config_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 2, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelSessCntrlConfigPassword.setStatus('mandatory')
wt_webio_ea12x6_rel_device_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelDeviceName.setStatus('mandatory')
wt_webio_ea12x6_rel_device_text = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelDeviceText.setStatus('mandatory')
wt_webio_ea12x6_rel_device_location = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelDeviceLocation.setStatus('mandatory')
wt_webio_ea12x6_rel_device_contact = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelDeviceContact.setStatus('mandatory')
wt_webio_ea12x6_rel_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelTzOffsetHrs.setStatus('mandatory')
wt_webio_ea12x6_rel_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelTzOffsetMin.setStatus('mandatory')
wt_webio_ea12x6_rel_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelTzEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_st_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelStTzOffsetHrs.setStatus('mandatory')
wt_webio_ea12x6_rel_st_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelStTzOffsetMin.setStatus('mandatory')
wt_webio_ea12x6_rel_st_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelStTzEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_st_tz_start_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA12x6RelStartMonth-January', 1), ('wtWebioEA12x6RelStartMonth-February', 2), ('wtWebioEA12x6RelStartMonth-March', 3), ('wtWebioEA12x6RelStartMonth-April', 4), ('wtWebioEA12x6RelStartMonth-May', 5), ('wtWebioEA12x6RelStartMonth-June', 6), ('wtWebioEA12x6RelStartMonth-July', 7), ('wtWebioEA12x6RelStartMonth-August', 8), ('wtWebioEA12x6RelStartMonth-September', 9), ('wtWebioEA12x6RelStartMonth-October', 10), ('wtWebioEA12x6RelStartMonth-November', 11), ('wtWebioEA12x6RelStartMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelStTzStartMonth.setStatus('mandatory')
wt_webio_ea12x6_rel_st_tz_start_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtWebioEA12x6RelStartMode-first', 1), ('wtWebioEA12x6RelStartMode-second', 2), ('wtWebioEA12x6RelStartMode-third', 3), ('wtWebioEA12x6RelStartMode-fourth', 4), ('wtWebioEA12x6RelStartMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelStTzStartMode.setStatus('mandatory')
wt_webio_ea12x6_rel_st_tz_start_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtWebioEA12x6RelStartWday-Sunday', 1), ('wtWebioEA12x6RelStartWday-Monday', 2), ('wtWebioEA12x6RelStartWday-Tuesday', 3), ('wtWebioEA12x6RelStartWday-Thursday', 4), ('wtWebioEA12x6RelStartWday-Wednesday', 5), ('wtWebioEA12x6RelStartWday-Friday', 6), ('wtWebioEA12x6RelStartWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelStTzStartWday.setStatus('mandatory')
wt_webio_ea12x6_rel_st_tz_start_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 10), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelStTzStartHrs.setStatus('mandatory')
wt_webio_ea12x6_rel_st_tz_start_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 11), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelStTzStartMin.setStatus('mandatory')
wt_webio_ea12x6_rel_st_tz_stop_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA12x6RelStopMonth-January', 1), ('wtWebioEA12x6RelStopMonth-February', 2), ('wtWebioEA12x6RelStopMonth-March', 3), ('wtWebioEA12x6RelStopMonth-April', 4), ('wtWebioEA12x6RelStopMonth-May', 5), ('wtWebioEA12x6RelStopMonth-June', 6), ('wtWebioEA12x6RelStopMonth-July', 7), ('wtWebioEA12x6RelStopMonth-August', 8), ('wtWebioEA12x6RelStopMonth-September', 9), ('wtWebioEA12x6RelStopMonth-October', 10), ('wtWebioEA12x6RelStopMonth-November', 11), ('wtWebioEA12x6RelStopMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelStTzStopMonth.setStatus('mandatory')
wt_webio_ea12x6_rel_st_tz_stop_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtWebioEA12x6RelStopMode-first', 1), ('wtWebioEA12x6RelStopMode-second', 2), ('wtWebioEA12x6RelStopMode-third', 3), ('wtWebioEA12x6RelStopMode-fourth', 4), ('wtWebioEA12x6RelStopMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelStTzStopMode.setStatus('mandatory')
wt_webio_ea12x6_rel_st_tz_stop_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtWebioEA12x6RelStopWday-Sunday', 1), ('wtWebioEA12x6RelStopWday-Monday', 2), ('wtWebioEA12x6RelStopWday-Tuesday', 3), ('wtWebioEA12x6RelStopWday-Thursday', 4), ('wtWebioEA12x6RelStopWday-Wednesday', 5), ('wtWebioEA12x6RelStopWday-Friday', 6), ('wtWebioEA12x6RelStopWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelStTzStopWday.setStatus('mandatory')
wt_webio_ea12x6_rel_st_tz_stop_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 15), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelStTzStopHrs.setStatus('mandatory')
wt_webio_ea12x6_rel_st_tz_stop_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 1, 16), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelStTzStopMin.setStatus('mandatory')
wt_webio_ea12x6_rel_time_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelTimeServer1.setStatus('mandatory')
wt_webio_ea12x6_rel_time_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 2, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelTimeServer2.setStatus('mandatory')
wt_webio_ea12x6_rel_ts_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 2, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelTsEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_ts_sync_time = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 2, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelTsSyncTime.setStatus('mandatory')
wt_webio_ea12x6_rel_clock_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 3, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 23))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelClockHrs.setStatus('mandatory')
wt_webio_ea12x6_rel_clock_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 3, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 59))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelClockMin.setStatus('mandatory')
wt_webio_ea12x6_rel_clock_day = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 3, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelClockDay.setStatus('mandatory')
wt_webio_ea12x6_rel_clock_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 3, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA12x6RelClockMonth-January', 1), ('wtWebioEA12x6RelClockMonth-February', 2), ('wtWebioEA12x6RelClockMonth-March', 3), ('wtWebioEA12x6RelClockMonth-April', 4), ('wtWebioEA12x6RelClockMonth-May', 5), ('wtWebioEA12x6RelClockMonth-June', 6), ('wtWebioEA12x6RelClockMonth-July', 7), ('wtWebioEA12x6RelClockMonth-August', 8), ('wtWebioEA12x6RelClockMonth-September', 9), ('wtWebioEA12x6RelClockMonth-October', 10), ('wtWebioEA12x6RelClockMonth-November', 11), ('wtWebioEA12x6RelClockMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelClockMonth.setStatus('mandatory')
wt_webio_ea12x6_rel_clock_year = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 2, 3, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelClockYear.setStatus('mandatory')
wt_webio_ea12x6_rel_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelIpAddress.setStatus('mandatory')
wt_webio_ea12x6_rel_subnet_mask = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelSubnetMask.setStatus('mandatory')
wt_webio_ea12x6_rel_gateway = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelGateway.setStatus('mandatory')
wt_webio_ea12x6_rel_dns_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelDnsServer1.setStatus('mandatory')
wt_webio_ea12x6_rel_dns_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelDnsServer2.setStatus('mandatory')
wt_webio_ea12x6_rel_add_config = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 1, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAddConfig.setStatus('mandatory')
wt_webio_ea12x6_rel_startup = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelStartup.setStatus('mandatory')
wt_webio_ea12x6_rel_get_header_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 2, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelGetHeaderEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_http_input_trigger = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 2, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelHttpInputTrigger.setStatus('mandatory')
wt_webio_ea12x6_rel_http_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 2, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelHttpPort.setStatus('mandatory')
wt_webio_ea12x6_rel_mail_ad_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelMailAdName.setStatus('mandatory')
wt_webio_ea12x6_rel_mail_reply = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelMailReply.setStatus('mandatory')
wt_webio_ea12x6_rel_mail_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelMailServer.setStatus('mandatory')
wt_webio_ea12x6_rel_mail_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelMailEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_mail_authentication = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 3, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelMailAuthentication.setStatus('mandatory')
wt_webio_ea12x6_rel_mail_auth_user = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 3, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelMailAuthUser.setStatus('mandatory')
wt_webio_ea12x6_rel_mail_auth_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 3, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelMailAuthPassword.setStatus('mandatory')
wt_webio_ea12x6_rel_mail_pop3_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 3, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelMailPop3Server.setStatus('mandatory')
wt_webio_ea12x6_rel_snmp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 4, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelSnmpEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_snmp_community_string_read = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 4, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelSnmpCommunityStringRead.setStatus('mandatory')
wt_webio_ea12x6_rel_snmp_community_string_read_write = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 4, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelSnmpCommunityStringReadWrite.setStatus('mandatory')
wt_webio_ea12x6_rel_snmp_system_trap_manager_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 4, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelSnmpSystemTrapManagerIP.setStatus('mandatory')
wt_webio_ea12x6_rel_snmp_system_trap_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 4, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelSnmpSystemTrapEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_udp_admin_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 5, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelUdpAdminPort.setStatus('mandatory')
wt_webio_ea12x6_rel_udp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 5, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelUdpEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_udp_remote_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 5, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelUdpRemotePort.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_mode_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryModeCount.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 2))
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryIfTable.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x6RelBinaryModeNo'))
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryIfEntry.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_mode_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryModeNo.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3))
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryTable.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x6RelBinaryModeNo'))
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryEntry.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_operation_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryOperationMode.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_tcp_server_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryTcpServerLocalPort.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_tcp_server_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryTcpServerInputTrigger.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_tcp_server_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryTcpServerApplicationMode.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_tcp_client_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryTcpClientLocalPort.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_tcp_client_server_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryTcpClientServerPort.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_tcp_client_server_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryTcpClientServerIpAddr.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_tcp_client_server_password = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryTcpClientServerPassword.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_tcp_client_inactivity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryTcpClientInactivity.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_tcp_client_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryTcpClientInputTrigger.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_tcp_client_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryTcpClientInterval.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_tcp_client_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 12), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryTcpClientApplicationMode.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_udp_peer_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryUdpPeerLocalPort.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_udp_peer_remote_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryUdpPeerRemotePort.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_udp_peer_remote_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 15), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryUdpPeerRemoteIpAddr.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_udp_peer_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 16), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryUdpPeerInputTrigger.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_udp_peer_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryUdpPeerInterval.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_udp_peer_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 18), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryUdpPeerApplicationMode.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_connected_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryConnectedPort.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_connected_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 20), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryConnectedIpAddr.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_tcp_server_client_http_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryTcpServerClientHttpPort.setStatus('mandatory')
wt_webio_ea12x6_rel_binary_tcp_client_server_http_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 6, 3, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelBinaryTcpClientServerHttpPort.setStatus('mandatory')
wt_webio_ea12x6_rel_syslog_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 7, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelSyslogServerIP.setStatus('mandatory')
wt_webio_ea12x6_rel_syslog_server_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 7, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelSyslogServerPort.setStatus('mandatory')
wt_webio_ea12x6_rel_syslog_system_messages_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 7, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelSyslogSystemMessagesEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_syslog_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 7, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelSyslogEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_ftp_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 8, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelFTPServerIP.setStatus('mandatory')
wt_webio_ea12x6_rel_ftp_server_control_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 8, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelFTPServerControlPort.setStatus('mandatory')
wt_webio_ea12x6_rel_ftp_user_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 8, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelFTPUserName.setStatus('mandatory')
wt_webio_ea12x6_rel_ftp_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 8, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelFTPPassword.setStatus('mandatory')
wt_webio_ea12x6_rel_ftp_account = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 8, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelFTPAccount.setStatus('mandatory')
wt_webio_ea12x6_rel_ftp_option = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 8, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelFTPOption.setStatus('mandatory')
wt_webio_ea12x6_rel_ftp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 3, 8, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelFTPEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_output_mode_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 4, 1))
if mibBuilder.loadTexts:
wtWebioEA12x6RelOutputModeTable.setStatus('mandatory')
wt_webio_ea12x6_rel_output_mode_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 4, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x6RelOutputNo'))
if mibBuilder.loadTexts:
wtWebioEA12x6RelOutputModeEntry.setStatus('mandatory')
wt_webio_ea12x6_rel_output_mode_bit = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 4, 1, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelOutputModeBit.setStatus('mandatory')
wt_webio_ea12x6_rel_safety_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 4, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelSafetyTimeout.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmCount.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 2))
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmIfTable.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmNo'))
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmIfEntry.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmNo.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3))
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmTable.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmNo'))
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmEntry.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(12, 12)).setFixedLength(12)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmInputTrigger.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_output_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(12, 12)).setFixedLength(12)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmOutputTrigger.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_system_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmSystemTrigger.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_max_counter_value = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmMaxCounterValue.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmInterval.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_mail_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmMailAddr.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_mail_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmMailSubject.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_mail_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 9), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmMailText.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_snmp_manager_ip = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 10), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmSnmpManagerIP.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_snmp_trap_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 11), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmSnmpTrapText.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_udp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 12), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmUdpIpAddr.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_udp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmUdpPort.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_udp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 14), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmUdpText.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_tcp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 15), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmTcpIpAddr.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_tcp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmTcpPort.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_tcp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 17), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmTcpText.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_syslog_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 18), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmSyslogIpAddr.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_syslog_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmSyslogPort.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_syslog_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 20), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmSyslogText.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_ftp_data_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 21), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmFtpDataPort.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_ftp_file_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 22), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmFtpFileName.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_ftp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 23), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmFtpText.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_ftp_option = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 24), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmFtpOption.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_timer_cron = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 25), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmTimerCron.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_mail_release_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 26), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmMailReleaseSubject.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_mail_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 27), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmMailReleaseText.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_snmp_trap_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 28), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmSnmpTrapReleaseText.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_udp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 29), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmUdpReleaseText.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_tcp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 30), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmTcpReleaseText.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_syslog_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 31), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmSyslogReleaseText.setStatus('mandatory')
wt_webio_ea12x6_rel_alarm_ftp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 1, 5, 3, 1, 32), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelAlarmFtpReleaseText.setStatus('mandatory')
wt_webio_ea12x6_rel_input_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 1))
if mibBuilder.loadTexts:
wtWebioEA12x6RelInputPortTable.setStatus('mandatory')
wt_webio_ea12x6_rel_input_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x6RelInputNo'))
if mibBuilder.loadTexts:
wtWebioEA12x6RelInputPortEntry.setStatus('mandatory')
wt_webio_ea12x6_rel_port_input_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelPortInputName.setStatus('mandatory')
wt_webio_ea12x6_rel_port_input_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelPortInputText.setStatus('mandatory')
wt_webio_ea12x6_rel_port_input_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelPortInputMode.setStatus('mandatory')
wt_webio_ea12x6_rel_port_input_filter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 1, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelPortInputFilter.setStatus('mandatory')
wt_webio_ea12x6_rel_port_input_bicount_pulse_polarity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelPortInputBicountPulsePolarity.setStatus('mandatory')
wt_webio_ea12x6_rel_port_input_bicount_inactiv_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 1, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelPortInputBicountInactivTimeout.setStatus('mandatory')
wt_webio_ea12x6_rel_output_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2))
if mibBuilder.loadTexts:
wtWebioEA12x6RelOutputPortTable.setStatus('mandatory')
wt_webio_ea12x6_rel_output_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x6RelOutputNo'))
if mibBuilder.loadTexts:
wtWebioEA12x6RelOutputPortEntry.setStatus('mandatory')
wt_webio_ea12x6_rel_port_output_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelPortOutputName.setStatus('mandatory')
wt_webio_ea12x6_rel_port_output_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelPortOutputText.setStatus('mandatory')
wt_webio_ea12x6_rel_port_output_group_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelPortOutputGroupMode.setStatus('mandatory')
wt_webio_ea12x6_rel_port_output_safety_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelPortOutputSafetyState.setStatus('mandatory')
wt_webio_ea12x6_rel_port_logic_input_mask = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelPortLogicInputMask.setStatus('mandatory')
wt_webio_ea12x6_rel_port_logic_input_inverter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelPortLogicInputInverter.setStatus('mandatory')
wt_webio_ea12x6_rel_port_logic_function = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelPortLogicFunction.setStatus('mandatory')
wt_webio_ea12x6_rel_port_logic_output_inverter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelPortLogicOutputInverter.setStatus('mandatory')
wt_webio_ea12x6_rel_port_pulse_duration = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelPortPulseDuration.setStatus('mandatory')
wt_webio_ea12x6_rel_port_pulse_polarity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 2, 2, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelPortPulsePolarity.setStatus('mandatory')
wt_webio_ea12x6_rel_mf_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelMfName.setStatus('mandatory')
wt_webio_ea12x6_rel_mf_addr = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelMfAddr.setStatus('mandatory')
wt_webio_ea12x6_rel_mf_hotline = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelMfHotline.setStatus('mandatory')
wt_webio_ea12x6_rel_mf_internet = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelMfInternet.setStatus('mandatory')
wt_webio_ea12x6_rel_mf_device_typ = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 3, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelMfDeviceTyp.setStatus('mandatory')
wt_webio_ea12x6_rel_mf_order_no = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 3, 3, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelMfOrderNo.setStatus('mandatory')
wt_webio_ea12x6_rel_diag_error_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelDiagErrorCount.setStatus('mandatory')
wt_webio_ea12x6_rel_diag_binary_error = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 4, 2), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelDiagBinaryError.setStatus('mandatory')
wt_webio_ea12x6_rel_diag_error_index = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 4, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelDiagErrorIndex.setStatus('mandatory')
wt_webio_ea12x6_rel_diag_error_message = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 4, 4), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelDiagErrorMessage.setStatus('mandatory')
wt_webio_ea12x6_rel_diag_error_clear = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19, 4, 5), integer32()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelDiagErrorClear.setStatus('mandatory')
wt_webio_ea12x6_rel_alert1 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 41)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_alert2 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 42)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_alert3 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 43)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_alert4 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 44)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_alert5 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 45)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_alert6 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 46)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_alert7 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 47)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_alert8 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 48)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_alert9 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 49)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_alert10 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 50)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_alert11 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 51)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_alert12 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 52)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_alert13 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 71)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_alert14 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 72)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_alert15 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 73)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_alert16 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 74)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_alert17 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 75)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_alert18 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 76)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_alert19 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 77)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_alert20 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 78)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_alert21 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 79)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_alert22 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 80)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_alert23 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 81)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_alert24 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 82)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_alert_diag = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 19) + (0, 110)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelDiagErrorIndex'), ('Webio-Digital-MIB-US', 'wtWebioEA12x6RelDiagErrorMessage'))
wt_web_alarm6x6_inputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 6))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebAlarm6x6Inputs.setStatus('mandatory')
wt_web_alarm6x6_outputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 6))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebAlarm6x6Outputs.setStatus('mandatory')
wt_web_alarm6x6_input_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 3))
if mibBuilder.loadTexts:
wtWebAlarm6x6InputTable.setStatus('mandatory')
wt_web_alarm6x6_input_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebAlarm6x6InputNo'))
if mibBuilder.loadTexts:
wtWebAlarm6x6InputEntry.setStatus('mandatory')
wt_web_alarm6x6_input_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebAlarm6x6InputNo.setStatus('mandatory')
wt_web_alarm6x6_input_counter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebAlarm6x6InputCounter.setStatus('mandatory')
wt_web_alarm6x6_input_counter_clear = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 3, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebAlarm6x6InputCounterClear.setStatus('mandatory')
wt_web_alarm6x6_input_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebAlarm6x6InputState-OFF', 0), ('wtWebAlarm6x6InputState-ON', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebAlarm6x6InputState.setStatus('mandatory')
wt_web_alarm6x6_input_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebAlarm6x6InputValue.setStatus('mandatory')
wt_web_alarm6x6_output_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 5))
if mibBuilder.loadTexts:
wtWebAlarm6x6OutputTable.setStatus('mandatory')
wt_web_alarm6x6_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 5, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebAlarm6x6OutputNo'))
if mibBuilder.loadTexts:
wtWebAlarm6x6OutputEntry.setStatus('mandatory')
wt_web_alarm6x6_output_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebAlarm6x6OutputNo.setStatus('mandatory')
wt_web_alarm6x6_output_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 5, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebAlarm6x6OutputState-OFF', 0), ('wtWebAlarm6x6OutputState-ON', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6OutputState.setStatus('mandatory')
wt_web_alarm6x6_output_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebAlarm6x6OutputValue.setStatus('mandatory')
wt_web_alarm6x6_alarm_output_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 8))
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmOutputTable.setStatus('mandatory')
wt_web_alarm6x6_alarm_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 8, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmNo'))
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmOutputEntry.setStatus('mandatory')
wt_web_alarm6x6_alarm_output_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 8, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebAlarm6x6AlarmOutputState-OFF', 0), ('wtWebAlarm6x6AlarmOutputState-ON', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmOutputState.setStatus('mandatory')
wt_web_alarm6x6_alarm_trigger_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 1, 8, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebAlarm6x6AlarmTriggerState-OFF', 0), ('wtWebAlarm6x6AlarmTriggerState-ON', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmTriggerState.setStatus('mandatory')
wt_web_alarm6x6_sess_cntrl_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6SessCntrlPassword.setStatus('mandatory')
wt_web_alarm6x6_sess_cntrl_config_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebAlarm6x6SessCntrl-NoSession', 0), ('wtWebAlarm6x6SessCntrl-Session', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebAlarm6x6SessCntrlConfigMode.setStatus('mandatory')
wt_web_alarm6x6_sess_cntrl_logout = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 2, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6SessCntrlLogout.setStatus('mandatory')
wt_web_alarm6x6_sess_cntrl_admin_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 2, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6SessCntrlAdminPassword.setStatus('mandatory')
wt_web_alarm6x6_sess_cntrl_config_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 2, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6SessCntrlConfigPassword.setStatus('mandatory')
wt_web_alarm6x6_device_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6DeviceName.setStatus('mandatory')
wt_web_alarm6x6_device_text = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6DeviceText.setStatus('mandatory')
wt_web_alarm6x6_device_location = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6DeviceLocation.setStatus('mandatory')
wt_web_alarm6x6_device_contact = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6DeviceContact.setStatus('mandatory')
wt_web_alarm6x6_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6TzOffsetHrs.setStatus('mandatory')
wt_web_alarm6x6_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6TzOffsetMin.setStatus('mandatory')
wt_web_alarm6x6_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6TzEnable.setStatus('mandatory')
wt_web_alarm6x6_st_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6StTzOffsetHrs.setStatus('mandatory')
wt_web_alarm6x6_st_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6StTzOffsetMin.setStatus('mandatory')
wt_web_alarm6x6_st_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6StTzEnable.setStatus('mandatory')
wt_web_alarm6x6_st_tz_start_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebAlarm6x6StartMonth-January', 1), ('wtWebAlarm6x6StartMonth-February', 2), ('wtWebAlarm6x6StartMonth-March', 3), ('wtWebAlarm6x6StartMonth-April', 4), ('wtWebAlarm6x6StartMonth-May', 5), ('wtWebAlarm6x6StartMonth-June', 6), ('wtWebAlarm6x6StartMonth-July', 7), ('wtWebAlarm6x6StartMonth-August', 8), ('wtWebAlarm6x6StartMonth-September', 9), ('wtWebAlarm6x6StartMonth-October', 10), ('wtWebAlarm6x6StartMonth-November', 11), ('wtWebAlarm6x6StartMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6StTzStartMonth.setStatus('mandatory')
wt_web_alarm6x6_st_tz_start_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtWebAlarm6x6StartMode-first', 1), ('wtWebAlarm6x6StartMode-second', 2), ('wtWebAlarm6x6StartMode-third', 3), ('wtWebAlarm6x6StartMode-fourth', 4), ('wtWebAlarm6x6StartMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6StTzStartMode.setStatus('mandatory')
wt_web_alarm6x6_st_tz_start_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtWebAlarm6x6StartWday-Sunday', 1), ('wtWebAlarm6x6StartWday-Monday', 2), ('wtWebAlarm6x6StartWday-Tuesday', 3), ('wtWebAlarm6x6StartWday-Thursday', 4), ('wtWebAlarm6x6StartWday-Wednesday', 5), ('wtWebAlarm6x6StartWday-Friday', 6), ('wtWebAlarm6x6StartWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6StTzStartWday.setStatus('mandatory')
wt_web_alarm6x6_st_tz_start_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 10), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6StTzStartHrs.setStatus('mandatory')
wt_web_alarm6x6_st_tz_start_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 11), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6StTzStartMin.setStatus('mandatory')
wt_web_alarm6x6_st_tz_stop_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebAlarm6x6StopMonth-January', 1), ('wtWebAlarm6x6StopMonth-February', 2), ('wtWebAlarm6x6StopMonth-March', 3), ('wtWebAlarm6x6StopMonth-April', 4), ('wtWebAlarm6x6StopMonth-May', 5), ('wtWebAlarm6x6StopMonth-June', 6), ('wtWebAlarm6x6StopMonth-July', 7), ('wtWebAlarm6x6StopMonth-August', 8), ('wtWebAlarm6x6StopMonth-September', 9), ('wtWebAlarm6x6StopMonth-October', 10), ('wtWebAlarm6x6StopMonth-November', 11), ('wtWebAlarm6x6StopMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6StTzStopMonth.setStatus('mandatory')
wt_web_alarm6x6_st_tz_stop_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtWebAlarm6x6StopMode-first', 1), ('wtWebAlarm6x6StopMode-second', 2), ('wtWebAlarm6x6StopMode-third', 3), ('wtWebAlarm6x6StopMode-fourth', 4), ('wtWebAlarm6x6StopMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6StTzStopMode.setStatus('mandatory')
wt_web_alarm6x6_st_tz_stop_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtWebAlarm6x6StopWday-Sunday', 1), ('wtWebAlarm6x6StopWday-Monday', 2), ('wtWebAlarm6x6StopWday-Tuesday', 3), ('wtWebAlarm6x6StopWday-Thursday', 4), ('wtWebAlarm6x6StopWday-Wednesday', 5), ('wtWebAlarm6x6StopWday-Friday', 6), ('wtWebAlarm6x6StopWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6StTzStopWday.setStatus('mandatory')
wt_web_alarm6x6_st_tz_stop_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 15), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6StTzStopHrs.setStatus('mandatory')
wt_web_alarm6x6_st_tz_stop_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 1, 16), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6StTzStopMin.setStatus('mandatory')
wt_web_alarm6x6_time_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6TimeServer1.setStatus('mandatory')
wt_web_alarm6x6_time_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 2, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6TimeServer2.setStatus('mandatory')
wt_web_alarm6x6_ts_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 2, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6TsEnable.setStatus('mandatory')
wt_web_alarm6x6_ts_sync_time = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 2, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6TsSyncTime.setStatus('mandatory')
wt_web_alarm6x6_clock_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 3, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 23))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6ClockHrs.setStatus('mandatory')
wt_web_alarm6x6_clock_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 3, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 59))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6ClockMin.setStatus('mandatory')
wt_web_alarm6x6_clock_day = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 3, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6ClockDay.setStatus('mandatory')
wt_web_alarm6x6_clock_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 3, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebAlarm6x6ClockMonth-January', 1), ('wtWebAlarm6x6ClockMonth-February', 2), ('wtWebAlarm6x6ClockMonth-March', 3), ('wtWebAlarm6x6ClockMonth-April', 4), ('wtWebAlarm6x6ClockMonth-May', 5), ('wtWebAlarm6x6ClockMonth-June', 6), ('wtWebAlarm6x6ClockMonth-July', 7), ('wtWebAlarm6x6ClockMonth-August', 8), ('wtWebAlarm6x6ClockMonth-September', 9), ('wtWebAlarm6x6ClockMonth-October', 10), ('wtWebAlarm6x6ClockMonth-November', 11), ('wtWebAlarm6x6ClockMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6ClockMonth.setStatus('mandatory')
wt_web_alarm6x6_clock_year = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 2, 3, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6ClockYear.setStatus('mandatory')
wt_web_alarm6x6_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6IpAddress.setStatus('mandatory')
wt_web_alarm6x6_subnet_mask = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6SubnetMask.setStatus('mandatory')
wt_web_alarm6x6_gateway = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6Gateway.setStatus('mandatory')
wt_web_alarm6x6_dns_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6DnsServer1.setStatus('mandatory')
wt_web_alarm6x6_dns_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6DnsServer2.setStatus('mandatory')
wt_web_alarm6x6_add_config = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 1, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AddConfig.setStatus('mandatory')
wt_web_alarm6x6_http_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 2, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6HttpPort.setStatus('mandatory')
wt_web_alarm6x6_mail_ad_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6MailAdName.setStatus('mandatory')
wt_web_alarm6x6_mail_reply = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6MailReply.setStatus('mandatory')
wt_web_alarm6x6_mail_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6MailServer.setStatus('mandatory')
wt_web_alarm6x6_mail_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6MailEnable.setStatus('mandatory')
wt_web_alarm6x6_mail_authentication = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 3, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6MailAuthentication.setStatus('mandatory')
wt_web_alarm6x6_mail_auth_user = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 3, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6MailAuthUser.setStatus('mandatory')
wt_web_alarm6x6_mail_auth_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 3, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6MailAuthPassword.setStatus('mandatory')
wt_web_alarm6x6_mail_pop3_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 3, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6MailPop3Server.setStatus('mandatory')
wt_web_alarm6x6_snmp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 4, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6SnmpEnable.setStatus('mandatory')
wt_web_alarm6x6_snmp_community_string_read = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 4, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6SnmpCommunityStringRead.setStatus('mandatory')
wt_web_alarm6x6_snmp_community_string_read_write = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 4, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6SnmpCommunityStringReadWrite.setStatus('mandatory')
wt_web_alarm6x6_snmp_system_trap_manager_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 4, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6SnmpSystemTrapManagerIP.setStatus('mandatory')
wt_web_alarm6x6_snmp_system_trap_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 4, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6SnmpSystemTrapEnable.setStatus('mandatory')
wt_web_alarm6x6_udp_admin_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 5, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6UdpAdminPort.setStatus('mandatory')
wt_web_alarm6x6_udp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 5, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6UdpEnable.setStatus('mandatory')
wt_web_alarm6x6_udp_remote_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 5, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6UdpRemotePort.setStatus('mandatory')
wt_web_alarm6x6_syslog_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 7, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6SyslogServerIP.setStatus('mandatory')
wt_web_alarm6x6_syslog_server_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 7, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6SyslogServerPort.setStatus('mandatory')
wt_web_alarm6x6_syslog_system_messages_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 7, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6SyslogSystemMessagesEnable.setStatus('mandatory')
wt_web_alarm6x6_syslog_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 7, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6SyslogEnable.setStatus('mandatory')
wt_web_alarm6x6_ftp_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 8, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6FTPServerIP.setStatus('mandatory')
wt_web_alarm6x6_ftp_server_control_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 8, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6FTPServerControlPort.setStatus('mandatory')
wt_web_alarm6x6_ftp_user_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 8, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6FTPUserName.setStatus('mandatory')
wt_web_alarm6x6_ftp_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 8, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6FTPPassword.setStatus('mandatory')
wt_web_alarm6x6_ftp_account = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 8, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6FTPAccount.setStatus('mandatory')
wt_web_alarm6x6_ftp_option = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 8, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6FTPOption.setStatus('mandatory')
wt_web_alarm6x6_ftp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 3, 8, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6FTPEnable.setStatus('mandatory')
wt_web_alarm6x6_alarm_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmCount.setStatus('mandatory')
wt_web_alarm6x6_alarm_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 2))
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmIfTable.setStatus('mandatory')
wt_web_alarm6x6_alarm_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmNo'))
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmIfEntry.setStatus('mandatory')
wt_web_alarm6x6_alarm_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmNo.setStatus('mandatory')
wt_web_alarm6x6_alarm_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3))
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmTable.setStatus('mandatory')
wt_web_alarm6x6_alarm_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmNo'))
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmEntry.setStatus('mandatory')
wt_web_alarm6x6_alarm_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(12, 12)).setFixedLength(12)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmInputTrigger.setStatus('mandatory')
wt_web_alarm6x6_alarm_max_counter_value = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmMaxCounterValue.setStatus('mandatory')
wt_web_alarm6x6_alarm_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmInterval.setStatus('mandatory')
wt_web_alarm6x6_alarm_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmEnable.setStatus('mandatory')
wt_web_alarm6x6_alarm_mail_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmMailAddr.setStatus('mandatory')
wt_web_alarm6x6_alarm_mail_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmMailSubject.setStatus('mandatory')
wt_web_alarm6x6_alarm_mail_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 9), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmMailText.setStatus('mandatory')
wt_web_alarm6x6_alarm_snmp_manager_ip = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 10), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmSnmpManagerIP.setStatus('mandatory')
wt_web_alarm6x6_alarm_snmp_trap_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 11), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmSnmpTrapText.setStatus('mandatory')
wt_web_alarm6x6_alarm_udp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 12), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmUdpIpAddr.setStatus('mandatory')
wt_web_alarm6x6_alarm_udp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmUdpPort.setStatus('mandatory')
wt_web_alarm6x6_alarm_udp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 14), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmUdpText.setStatus('mandatory')
wt_web_alarm6x6_alarm_tcp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 15), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmTcpIpAddr.setStatus('mandatory')
wt_web_alarm6x6_alarm_tcp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmTcpPort.setStatus('mandatory')
wt_web_alarm6x6_alarm_tcp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 17), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmTcpText.setStatus('mandatory')
wt_web_alarm6x6_alarm_syslog_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 18), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmSyslogIpAddr.setStatus('mandatory')
wt_web_alarm6x6_alarm_syslog_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmSyslogPort.setStatus('mandatory')
wt_web_alarm6x6_alarm_syslog_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 20), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmSyslogText.setStatus('mandatory')
wt_web_alarm6x6_alarm_ftp_data_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 21), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmFtpDataPort.setStatus('mandatory')
wt_web_alarm6x6_alarm_ftp_file_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 22), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmFtpFileName.setStatus('mandatory')
wt_web_alarm6x6_alarm_ftp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 23), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmFtpText.setStatus('mandatory')
wt_web_alarm6x6_alarm_ftp_option = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 24), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmFtpOption.setStatus('mandatory')
wt_web_alarm6x6_alarm_mail_release_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 26), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmMailReleaseSubject.setStatus('mandatory')
wt_web_alarm6x6_alarm_mail_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 27), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmMailReleaseText.setStatus('mandatory')
wt_web_alarm6x6_alarm_snmp_trap_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 28), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmSnmpTrapReleaseText.setStatus('mandatory')
wt_web_alarm6x6_alarm_udp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 29), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmUdpReleaseText.setStatus('mandatory')
wt_web_alarm6x6_alarm_tcp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 30), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmTcpReleaseText.setStatus('mandatory')
wt_web_alarm6x6_alarm_syslog_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 31), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmSyslogReleaseText.setStatus('mandatory')
wt_web_alarm6x6_alarm_ftp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 32), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmFtpReleaseText.setStatus('mandatory')
wt_web_alarm6x6_alarm_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 33), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmName.setStatus('mandatory')
wt_web_alarm6x6_alarm_global_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 34), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmGlobalEnable.setStatus('mandatory')
wt_web_alarm6x6_alarm_counter_clear = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 35), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmCounterClear.setStatus('mandatory')
wt_web_alarm6x6_alarm_ack_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 36), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmAckEnable.setStatus('mandatory')
wt_web_alarm6x6_alarm_ack_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 37), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmAckPort.setStatus('mandatory')
wt_web_alarm6x6_alarm_set_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 38), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmSetPort.setStatus('mandatory')
wt_web_alarm6x6_alarm_mail_trg_clear_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 39), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmMailTrgClearSubject.setStatus('mandatory')
wt_web_alarm6x6_alarm_mail_trg_clear_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 40), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmMailTrgClearText.setStatus('mandatory')
wt_web_alarm6x6_alarm_snmp_trap_trg_clear_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 41), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmSnmpTrapTrgClearText.setStatus('mandatory')
wt_web_alarm6x6_alarm_udp_trg_clear_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 42), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmUdpTrgClearText.setStatus('mandatory')
wt_web_alarm6x6_alarm_tcp_trg_clear_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 43), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmTcpTrgClearText.setStatus('mandatory')
wt_web_alarm6x6_alarm_syslog_trg_clear_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 44), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmSyslogTrgClearText.setStatus('mandatory')
wt_web_alarm6x6_alarm_ftp_trg_clear_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 45), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmFtpTrgClearText.setStatus('mandatory')
wt_web_alarm6x6_alarm_mail_trap_tx_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 46), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmMailTrapTxEnable.setStatus('mandatory')
wt_web_alarm6x6_alarm_snmp_trap_trap_tx_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 47), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmSnmpTrapTrapTxEnable.setStatus('mandatory')
wt_web_alarm6x6_alarm_udp_trap_tx_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 48), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmUdpTrapTxEnable.setStatus('mandatory')
wt_web_alarm6x6_alarm_tcp_trap_tx_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 49), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmTcpTrapTxEnable.setStatus('mandatory')
wt_web_alarm6x6_alarm_syslog_trap_tx_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 50), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmSyslogTrapTxEnable.setStatus('mandatory')
wt_web_alarm6x6_alarm_ftp_trap_tx_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 1, 5, 3, 1, 51), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6AlarmFtpTrapTxEnable.setStatus('mandatory')
wt_web_alarm6x6_input_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 1))
if mibBuilder.loadTexts:
wtWebAlarm6x6InputPortTable.setStatus('mandatory')
wt_web_alarm6x6_input_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebAlarm6x6InputNo'))
if mibBuilder.loadTexts:
wtWebAlarm6x6InputPortEntry.setStatus('mandatory')
wt_web_alarm6x6_port_input_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6PortInputName.setStatus('mandatory')
wt_web_alarm6x6_port_input_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6PortInputText.setStatus('mandatory')
wt_web_alarm6x6_port_input_filter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 1, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6PortInputFilter.setStatus('mandatory')
wt_web_alarm6x6_port_input_pulse_polarity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6PortInputPulsePolarity.setStatus('mandatory')
wt_web_alarm6x6_port_input_counter_set = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 1, 1, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6PortInputCounterSet.setStatus('mandatory')
wt_web_alarm6x6_output_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 2))
if mibBuilder.loadTexts:
wtWebAlarm6x6OutputPortTable.setStatus('mandatory')
wt_web_alarm6x6_output_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebAlarm6x6OutputNo'))
if mibBuilder.loadTexts:
wtWebAlarm6x6OutputPortEntry.setStatus('mandatory')
wt_web_alarm6x6_port_output_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 2, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6PortOutputName.setStatus('mandatory')
wt_web_alarm6x6_port_output_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 2, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6PortOutputText.setStatus('mandatory')
wt_web_alarm6x6_port_pulse_duration = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 2, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6PortPulseDuration.setStatus('mandatory')
wt_web_alarm6x6_port_pulse_polarity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 2, 2, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6PortPulsePolarity.setStatus('mandatory')
wt_web_alarm6x6_mf_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6MfName.setStatus('mandatory')
wt_web_alarm6x6_mf_addr = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6MfAddr.setStatus('mandatory')
wt_web_alarm6x6_mf_hotline = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6MfHotline.setStatus('mandatory')
wt_web_alarm6x6_mf_internet = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6MfInternet.setStatus('mandatory')
wt_web_alarm6x6_mf_device_typ = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 3, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6MfDeviceTyp.setStatus('mandatory')
wt_web_alarm6x6_mf_order_no = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 3, 3, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6MfOrderNo.setStatus('mandatory')
wt_web_alarm6x6_diag_error_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebAlarm6x6DiagErrorCount.setStatus('mandatory')
wt_web_alarm6x6_diag_binary_error = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 4, 2), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebAlarm6x6DiagBinaryError.setStatus('mandatory')
wt_web_alarm6x6_diag_error_index = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 4, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebAlarm6x6DiagErrorIndex.setStatus('mandatory')
wt_web_alarm6x6_diag_error_message = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 4, 4), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebAlarm6x6DiagErrorMessage.setStatus('mandatory')
wt_web_alarm6x6_diag_error_clear = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20, 4, 5), integer32()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
wtWebAlarm6x6DiagErrorClear.setStatus('mandatory')
wt_web_alarm6x6_alert1 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 41)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapText'))
wt_web_alarm6x6_alert2 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 42)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapText'))
wt_web_alarm6x6_alert3 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 43)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapText'))
wt_web_alarm6x6_alert4 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 44)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapText'))
wt_web_alarm6x6_alert5 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 45)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapText'))
wt_web_alarm6x6_alert6 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 46)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapText'))
wt_web_alarm6x6_alert7 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 47)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapText'))
wt_web_alarm6x6_alert8 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 48)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapText'))
wt_web_alarm6x6_alert9 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 49)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapText'))
wt_web_alarm6x6_alert10 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 50)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapText'))
wt_web_alarm6x6_alert11 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 51)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapText'))
wt_web_alarm6x6_alert12 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 52)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapText'))
wt_web_alarm6x6_alert13 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 71)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapReleaseText'))
wt_web_alarm6x6_alert14 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 72)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapReleaseText'))
wt_web_alarm6x6_alert15 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 73)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapReleaseText'))
wt_web_alarm6x6_alert16 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 74)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapReleaseText'))
wt_web_alarm6x6_alert17 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 75)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapReleaseText'))
wt_web_alarm6x6_alert18 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 76)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapReleaseText'))
wt_web_alarm6x6_alert19 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 77)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapReleaseText'))
wt_web_alarm6x6_alert20 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 78)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapReleaseText'))
wt_web_alarm6x6_alert21 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 79)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapReleaseText'))
wt_web_alarm6x6_alert22 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 80)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapReleaseText'))
wt_web_alarm6x6_alert23 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 81)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapReleaseText'))
wt_web_alarm6x6_alert24 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 82)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapReleaseText'))
wt_web_alarm6x6_alert25 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 91)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapTrgClearText'))
wt_web_alarm6x6_alert26 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 92)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapTrgClearText'))
wt_web_alarm6x6_alert27 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 93)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapTrgClearText'))
wt_web_alarm6x6_alert28 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 94)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapTrgClearText'))
wt_web_alarm6x6_alert29 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 95)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapTrgClearText'))
wt_web_alarm6x6_alert30 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 96)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapTrgClearText'))
wt_web_alarm6x6_alert31 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 97)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapTrgClearText'))
wt_web_alarm6x6_alert32 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 98)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapTrgClearText'))
wt_web_alarm6x6_alert33 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 99)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapTrgClearText'))
wt_web_alarm6x6_alert34 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 100)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapTrgClearText'))
wt_web_alarm6x6_alert35 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 101)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapTrgClearText'))
wt_web_alarm6x6_alert36 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 102)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6AlarmSnmpTrapTrgClearText'))
wt_web_alarm6x6_alert_diag = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 20) + (0, 110)).setObjects(('Webio-Digital-MIB-US', 'wtWebAlarm6x6DiagErrorIndex'), ('Webio-Digital-MIB-US', 'wtWebAlarm6x6DiagErrorMessage'))
wt_web_count6_inputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 6))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebCount6Inputs.setStatus('mandatory')
wt_web_count6_outputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 6))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebCount6Outputs.setStatus('mandatory')
wt_web_count6_input_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 3))
if mibBuilder.loadTexts:
wtWebCount6InputTable.setStatus('mandatory')
wt_web_count6_input_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebCount6InputNo'))
if mibBuilder.loadTexts:
wtWebCount6InputEntry.setStatus('mandatory')
wt_web_count6_input_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebCount6InputNo.setStatus('mandatory')
wt_web_count6_input_counter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebCount6InputCounter.setStatus('mandatory')
wt_web_count6_input_counter_clear = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 3, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebCount6InputCounterClear.setStatus('mandatory')
wt_web_count6_input_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebCount6InputState-OFF', 0), ('wtWebCount6InputState-ON', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebCount6InputState.setStatus('mandatory')
wt_web_count6_input_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebCount6InputValue.setStatus('mandatory')
wt_web_count6_report_output_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 8))
if mibBuilder.loadTexts:
wtWebCount6ReportOutputTable.setStatus('mandatory')
wt_web_count6_report_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 8, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebCount6ReportNo'))
if mibBuilder.loadTexts:
wtWebCount6ReportOutputEntry.setStatus('mandatory')
wt_web_count6_report_output_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 8, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebCount6ReportOutputState-OFF', 0), ('wtWebCount6ReportOutputState-ON', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportOutputState.setStatus('mandatory')
wt_web_count6_report_trigger_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 1, 8, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebCount6ReportTriggerState-OFF', 0), ('wtWebCount6ReportTriggerState-ON', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebCount6ReportTriggerState.setStatus('mandatory')
wt_web_count6_sess_cntrl_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6SessCntrlPassword.setStatus('mandatory')
wt_web_count6_sess_cntrl_config_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebCount6SessCntrl-NoSession', 0), ('wtWebCount6SessCntrl-Session', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebCount6SessCntrlConfigMode.setStatus('mandatory')
wt_web_count6_sess_cntrl_logout = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 2, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6SessCntrlLogout.setStatus('mandatory')
wt_web_count6_sess_cntrl_admin_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 2, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6SessCntrlAdminPassword.setStatus('mandatory')
wt_web_count6_sess_cntrl_config_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 2, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6SessCntrlConfigPassword.setStatus('mandatory')
wt_web_count6_device_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6DeviceName.setStatus('mandatory')
wt_web_count6_device_text = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6DeviceText.setStatus('mandatory')
wt_web_count6_device_location = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6DeviceLocation.setStatus('mandatory')
wt_web_count6_device_contact = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6DeviceContact.setStatus('mandatory')
wt_web_count6_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6TzOffsetHrs.setStatus('mandatory')
wt_web_count6_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6TzOffsetMin.setStatus('mandatory')
wt_web_count6_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6TzEnable.setStatus('mandatory')
wt_web_count6_st_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6StTzOffsetHrs.setStatus('mandatory')
wt_web_count6_st_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6StTzOffsetMin.setStatus('mandatory')
wt_web_count6_st_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6StTzEnable.setStatus('mandatory')
wt_web_count6_st_tz_start_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebCount6StartMonth-January', 1), ('wtWebCount6StartMonth-February', 2), ('wtWebCount6StartMonth-March', 3), ('wtWebCount6StartMonth-April', 4), ('wtWebCount6StartMonth-May', 5), ('wtWebCount6StartMonth-June', 6), ('wtWebCount6StartMonth-July', 7), ('wtWebCount6StartMonth-August', 8), ('wtWebCount6StartMonth-September', 9), ('wtWebCount6StartMonth-October', 10), ('wtWebCount6StartMonth-November', 11), ('wtWebCount6StartMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6StTzStartMonth.setStatus('mandatory')
wt_web_count6_st_tz_start_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtWebCount6StartMode-first', 1), ('wtWebCount6StartMode-second', 2), ('wtWebCount6StartMode-third', 3), ('wtWebCount6StartMode-fourth', 4), ('wtWebCount6StartMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6StTzStartMode.setStatus('mandatory')
wt_web_count6_st_tz_start_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtWebCount6StartWday-Sunday', 1), ('wtWebCount6StartWday-Monday', 2), ('wtWebCount6StartWday-Tuesday', 3), ('wtWebCount6StartWday-Thursday', 4), ('wtWebCount6StartWday-Wednesday', 5), ('wtWebCount6StartWday-Friday', 6), ('wtWebCount6StartWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6StTzStartWday.setStatus('mandatory')
wt_web_count6_st_tz_start_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 10), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6StTzStartHrs.setStatus('mandatory')
wt_web_count6_st_tz_start_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 11), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6StTzStartMin.setStatus('mandatory')
wt_web_count6_st_tz_stop_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebCount6StopMonth-January', 1), ('wtWebCount6StopMonth-February', 2), ('wtWebCount6StopMonth-March', 3), ('wtWebCount6StopMonth-April', 4), ('wtWebCount6StopMonth-May', 5), ('wtWebCount6StopMonth-June', 6), ('wtWebCount6StopMonth-July', 7), ('wtWebCount6StopMonth-August', 8), ('wtWebCount6StopMonth-September', 9), ('wtWebCount6StopMonth-October', 10), ('wtWebCount6StopMonth-November', 11), ('wtWebCount6StopMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6StTzStopMonth.setStatus('mandatory')
wt_web_count6_st_tz_stop_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtWebCount6StopMode-first', 1), ('wtWebCount6StopMode-second', 2), ('wtWebCount6StopMode-third', 3), ('wtWebCount6StopMode-fourth', 4), ('wtWebCount6StopMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6StTzStopMode.setStatus('mandatory')
wt_web_count6_st_tz_stop_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtWebCount6StopWday-Sunday', 1), ('wtWebCount6StopWday-Monday', 2), ('wtWebCount6StopWday-Tuesday', 3), ('wtWebCount6StopWday-Thursday', 4), ('wtWebCount6StopWday-Wednesday', 5), ('wtWebCount6StopWday-Friday', 6), ('wtWebCount6StopWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6StTzStopWday.setStatus('mandatory')
wt_web_count6_st_tz_stop_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 15), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6StTzStopHrs.setStatus('mandatory')
wt_web_count6_st_tz_stop_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 1, 16), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6StTzStopMin.setStatus('mandatory')
wt_web_count6_time_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6TimeServer1.setStatus('mandatory')
wt_web_count6_time_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 2, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6TimeServer2.setStatus('mandatory')
wt_web_count6_ts_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 2, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6TsEnable.setStatus('mandatory')
wt_web_count6_ts_sync_time = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 2, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6TsSyncTime.setStatus('mandatory')
wt_web_count6_clock_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 3, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 23))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ClockHrs.setStatus('mandatory')
wt_web_count6_clock_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 3, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 59))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ClockMin.setStatus('mandatory')
wt_web_count6_clock_day = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 3, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ClockDay.setStatus('mandatory')
wt_web_count6_clock_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 3, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebCount6ClockMonth-January', 1), ('wtWebCount6ClockMonth-February', 2), ('wtWebCount6ClockMonth-March', 3), ('wtWebCount6ClockMonth-April', 4), ('wtWebCount6ClockMonth-May', 5), ('wtWebCount6ClockMonth-June', 6), ('wtWebCount6ClockMonth-July', 7), ('wtWebCount6ClockMonth-August', 8), ('wtWebCount6ClockMonth-September', 9), ('wtWebCount6ClockMonth-October', 10), ('wtWebCount6ClockMonth-November', 11), ('wtWebCount6ClockMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ClockMonth.setStatus('mandatory')
wt_web_count6_clock_year = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 2, 3, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ClockYear.setStatus('mandatory')
wt_web_count6_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6IpAddress.setStatus('mandatory')
wt_web_count6_subnet_mask = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6SubnetMask.setStatus('mandatory')
wt_web_count6_gateway = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6Gateway.setStatus('mandatory')
wt_web_count6_dns_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6DnsServer1.setStatus('mandatory')
wt_web_count6_dns_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6DnsServer2.setStatus('mandatory')
wt_web_count6_add_config = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 1, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6AddConfig.setStatus('mandatory')
wt_web_count6_http_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 2, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6HttpPort.setStatus('mandatory')
wt_web_count6_mail_ad_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6MailAdName.setStatus('mandatory')
wt_web_count6_mail_reply = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6MailReply.setStatus('mandatory')
wt_web_count6_mail_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6MailServer.setStatus('mandatory')
wt_web_count6_mail_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6MailEnable.setStatus('mandatory')
wt_web_count6_mail_authentication = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 3, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6MailAuthentication.setStatus('mandatory')
wt_web_count6_mail_auth_user = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 3, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6MailAuthUser.setStatus('mandatory')
wt_web_count6_mail_auth_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 3, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6MailAuthPassword.setStatus('mandatory')
wt_web_count6_mail_pop3_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 3, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6MailPop3Server.setStatus('mandatory')
wt_web_count6_snmp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 4, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6SnmpEnable.setStatus('mandatory')
wt_web_count6_snmp_community_string_read = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 4, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6SnmpCommunityStringRead.setStatus('mandatory')
wt_web_count6_snmp_community_string_read_write = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 4, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6SnmpCommunityStringReadWrite.setStatus('mandatory')
wt_web_count6_snmp_system_trap_manager_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 4, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6SnmpSystemTrapManagerIP.setStatus('mandatory')
wt_web_count6_snmp_system_trap_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 4, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6SnmpSystemTrapEnable.setStatus('mandatory')
wt_web_count6_udp_admin_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 5, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6UdpAdminPort.setStatus('mandatory')
wt_web_count6_udp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 5, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6UdpEnable.setStatus('mandatory')
wt_web_count6_udp_remote_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 5, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6UdpRemotePort.setStatus('mandatory')
wt_web_count6_syslog_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 7, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6SyslogServerIP.setStatus('mandatory')
wt_web_count6_syslog_server_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 7, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6SyslogServerPort.setStatus('mandatory')
wt_web_count6_syslog_system_messages_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 7, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6SyslogSystemMessagesEnable.setStatus('mandatory')
wt_web_count6_syslog_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 7, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6SyslogEnable.setStatus('mandatory')
wt_web_count6_ftp_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 8, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6FTPServerIP.setStatus('mandatory')
wt_web_count6_ftp_server_control_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 8, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6FTPServerControlPort.setStatus('mandatory')
wt_web_count6_ftp_user_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 8, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6FTPUserName.setStatus('mandatory')
wt_web_count6_ftp_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 8, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6FTPPassword.setStatus('mandatory')
wt_web_count6_ftp_account = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 8, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6FTPAccount.setStatus('mandatory')
wt_web_count6_ftp_option = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 8, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6FTPOption.setStatus('mandatory')
wt_web_count6_ftp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 3, 8, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6FTPEnable.setStatus('mandatory')
wt_web_count6_report_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebCount6ReportCount.setStatus('mandatory')
wt_web_count6_report_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 2))
if mibBuilder.loadTexts:
wtWebCount6ReportIfTable.setStatus('mandatory')
wt_web_count6_report_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebCount6ReportNo'))
if mibBuilder.loadTexts:
wtWebCount6ReportIfEntry.setStatus('mandatory')
wt_web_count6_report_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebCount6ReportNo.setStatus('mandatory')
wt_web_count6_report_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3))
if mibBuilder.loadTexts:
wtWebCount6ReportTable.setStatus('mandatory')
wt_web_count6_report_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebCount6ReportNo'))
if mibBuilder.loadTexts:
wtWebCount6ReportEntry.setStatus('mandatory')
wt_web_count6_report_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(12, 12)).setFixedLength(12)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportInputTrigger.setStatus('mandatory')
wt_web_count6_report_system_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportSystemTrigger.setStatus('mandatory')
wt_web_count6_report_max_counter_value = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportMaxCounterValue.setStatus('mandatory')
wt_web_count6_report_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportInterval.setStatus('mandatory')
wt_web_count6_report_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportEnable.setStatus('mandatory')
wt_web_count6_report_mail_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportMailAddr.setStatus('mandatory')
wt_web_count6_report_mail_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportMailSubject.setStatus('mandatory')
wt_web_count6_report_mail_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 9), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportMailText.setStatus('mandatory')
wt_web_count6_report_snmp_manager_ip = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 10), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportSnmpManagerIP.setStatus('mandatory')
wt_web_count6_report_snmp_trap_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 11), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportSnmpTrapText.setStatus('mandatory')
wt_web_count6_report_udp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 12), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportUdpIpAddr.setStatus('mandatory')
wt_web_count6_report_udp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportUdpPort.setStatus('mandatory')
wt_web_count6_report_udp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 14), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportUdpText.setStatus('mandatory')
wt_web_count6_report_tcp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 15), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportTcpIpAddr.setStatus('mandatory')
wt_web_count6_report_tcp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportTcpPort.setStatus('mandatory')
wt_web_count6_report_tcp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 17), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportTcpText.setStatus('mandatory')
wt_web_count6_report_syslog_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 18), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportSyslogIpAddr.setStatus('mandatory')
wt_web_count6_report_syslog_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportSyslogPort.setStatus('mandatory')
wt_web_count6_report_syslog_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 20), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportSyslogText.setStatus('mandatory')
wt_web_count6_report_ftp_data_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 21), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportFtpDataPort.setStatus('mandatory')
wt_web_count6_report_ftp_file_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 22), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportFtpFileName.setStatus('mandatory')
wt_web_count6_report_ftp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 23), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportFtpText.setStatus('mandatory')
wt_web_count6_report_ftp_option = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 24), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportFtpOption.setStatus('mandatory')
wt_web_count6_report_timer_cron = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 25), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportTimerCron.setStatus('mandatory')
wt_web_count6_report_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 33), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportName.setStatus('mandatory')
wt_web_count6_report_global_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 34), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportGlobalEnable.setStatus('mandatory')
wt_web_count6_report_counter_clear = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 35), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportCounterClear.setStatus('mandatory')
wt_web_count6_report_rate_of_change = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 52), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportRateOfChange.setStatus('mandatory')
wt_web_count6_report_rate_of_change_window = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 53), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportRateOfChangeWindow.setStatus('mandatory')
wt_web_count6_report_rate_of_change_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 1, 5, 3, 1, 54), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6ReportRateOfChangeMode.setStatus('mandatory')
wt_web_count6_input_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2, 1))
if mibBuilder.loadTexts:
wtWebCount6InputPortTable.setStatus('mandatory')
wt_web_count6_input_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebCount6InputNo'))
if mibBuilder.loadTexts:
wtWebCount6InputPortEntry.setStatus('mandatory')
wt_web_count6_port_input_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6PortInputName.setStatus('mandatory')
wt_web_count6_port_input_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6PortInputText.setStatus('mandatory')
wt_web_count6_port_input_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6PortInputMode.setStatus('mandatory')
wt_web_count6_port_input_filter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2, 1, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6PortInputFilter.setStatus('mandatory')
wt_web_count6_port_input_pulse_polarity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6PortInputPulsePolarity.setStatus('mandatory')
wt_web_count6_port_input_bicount_inactiv_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2, 1, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6PortInputBicountInactivTimeout.setStatus('mandatory')
wt_web_count6_port_input_counter_set = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2, 1, 1, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6PortInputCounterSet.setStatus('mandatory')
wt_web_count6_port_input_counter_scale = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2, 1, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6PortInputCounterScale.setStatus('mandatory')
wt_web_count6_port_input_counter_unit = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 2, 1, 1, 9), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6PortInputCounterUnit.setStatus('mandatory')
wt_web_count6_mf_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6MfName.setStatus('mandatory')
wt_web_count6_mf_addr = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6MfAddr.setStatus('mandatory')
wt_web_count6_mf_hotline = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6MfHotline.setStatus('mandatory')
wt_web_count6_mf_internet = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6MfInternet.setStatus('mandatory')
wt_web_count6_mf_device_typ = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 3, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6MfDeviceTyp.setStatus('mandatory')
wt_web_count6_mf_order_no = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 3, 3, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6MfOrderNo.setStatus('mandatory')
wt_web_count6_diag_error_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebCount6DiagErrorCount.setStatus('mandatory')
wt_web_count6_diag_binary_error = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 4, 2), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebCount6DiagBinaryError.setStatus('mandatory')
wt_web_count6_diag_error_index = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 4, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebCount6DiagErrorIndex.setStatus('mandatory')
wt_web_count6_diag_error_message = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 4, 4), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebCount6DiagErrorMessage.setStatus('mandatory')
wt_web_count6_diag_error_clear = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22, 4, 5), integer32()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
wtWebCount6DiagErrorClear.setStatus('mandatory')
wt_web_count6_alert1 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0, 41)).setObjects(('Webio-Digital-MIB-US', 'wtWebCount6ReportSnmpTrapText'))
wt_web_count6_alert2 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0, 42)).setObjects(('Webio-Digital-MIB-US', 'wtWebCount6ReportSnmpTrapText'))
wt_web_count6_alert3 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0, 43)).setObjects(('Webio-Digital-MIB-US', 'wtWebCount6ReportSnmpTrapText'))
wt_web_count6_alert4 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0, 44)).setObjects(('Webio-Digital-MIB-US', 'wtWebCount6ReportSnmpTrapText'))
wt_web_count6_alert5 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0, 45)).setObjects(('Webio-Digital-MIB-US', 'wtWebCount6ReportSnmpTrapText'))
wt_web_count6_alert6 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0, 46)).setObjects(('Webio-Digital-MIB-US', 'wtWebCount6ReportSnmpTrapText'))
wt_web_count6_alert7 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0, 47)).setObjects(('Webio-Digital-MIB-US', 'wtWebCount6ReportSnmpTrapText'))
wt_web_count6_alert8 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0, 48)).setObjects(('Webio-Digital-MIB-US', 'wtWebCount6ReportSnmpTrapText'))
wt_web_count6_alert9 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0, 49)).setObjects(('Webio-Digital-MIB-US', 'wtWebCount6ReportSnmpTrapText'))
wt_web_count6_alert10 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0, 50)).setObjects(('Webio-Digital-MIB-US', 'wtWebCount6ReportSnmpTrapText'))
wt_web_count6_alert11 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0, 51)).setObjects(('Webio-Digital-MIB-US', 'wtWebCount6ReportSnmpTrapText'))
wt_web_count6_alert12 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0, 52)).setObjects(('Webio-Digital-MIB-US', 'wtWebCount6ReportSnmpTrapText'))
wt_web_count6_alert_diag = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 22) + (0, 110)).setObjects(('Webio-Digital-MIB-US', 'wtWebCount6DiagErrorIndex'), ('Webio-Digital-MIB-US', 'wtWebCount6DiagErrorMessage'))
wt_webio_ea6x6_inputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 6))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA6x6Inputs.setStatus('mandatory')
wt_webio_ea6x6_outputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 6))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA6x6Outputs.setStatus('mandatory')
wt_webio_ea6x6_input_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 3))
if mibBuilder.loadTexts:
wtWebioEA6x6InputTable.setStatus('mandatory')
wt_webio_ea6x6_input_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA6x6InputNo'))
if mibBuilder.loadTexts:
wtWebioEA6x6InputEntry.setStatus('mandatory')
wt_webio_ea6x6_input_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA6x6InputNo.setStatus('mandatory')
wt_webio_ea6x6_input_counter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA6x6InputCounter.setStatus('mandatory')
wt_webio_ea6x6_input_counter_clear = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 3, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA6x6InputCounterClear.setStatus('mandatory')
wt_webio_ea6x6_input_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA6x6InputState-OFF', 0), ('wtWebioEA6x6InputState-ON', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA6x6InputState.setStatus('mandatory')
wt_webio_ea6x6_input_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA6x6InputValue.setStatus('mandatory')
wt_webio_ea6x6_output_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 5))
if mibBuilder.loadTexts:
wtWebioEA6x6OutputTable.setStatus('mandatory')
wt_webio_ea6x6_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 5, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA6x6OutputNo'))
if mibBuilder.loadTexts:
wtWebioEA6x6OutputEntry.setStatus('mandatory')
wt_webio_ea6x6_output_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA6x6OutputNo.setStatus('mandatory')
wt_webio_ea6x6_output_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 5, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA6x6OutputState-OFF', 0), ('wtWebioEA6x6OutputState-ON', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6OutputState.setStatus('mandatory')
wt_webio_ea6x6_output_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6OutputValue.setStatus('mandatory')
wt_webio_ea6x6_set_output = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6SetOutput.setStatus('mandatory')
wt_webio_ea6x6_sess_cntrl_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6SessCntrlPassword.setStatus('mandatory')
wt_webio_ea6x6_sess_cntrl_config_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA6x6SessCntrl-NoSession', 0), ('wtWebioEA6x6SessCntrl-Session', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA6x6SessCntrlConfigMode.setStatus('mandatory')
wt_webio_ea6x6_sess_cntrl_logout = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 2, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6SessCntrlLogout.setStatus('mandatory')
wt_webio_ea6x6_sess_cntrl_admin_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 2, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6SessCntrlAdminPassword.setStatus('mandatory')
wt_webio_ea6x6_sess_cntrl_config_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 2, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6SessCntrlConfigPassword.setStatus('mandatory')
wt_webio_ea6x6_device_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6DeviceName.setStatus('mandatory')
wt_webio_ea6x6_device_text = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6DeviceText.setStatus('mandatory')
wt_webio_ea6x6_device_location = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6DeviceLocation.setStatus('mandatory')
wt_webio_ea6x6_device_contact = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6DeviceContact.setStatus('mandatory')
wt_webio_ea6x6_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6TzOffsetHrs.setStatus('mandatory')
wt_webio_ea6x6_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6TzOffsetMin.setStatus('mandatory')
wt_webio_ea6x6_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6TzEnable.setStatus('mandatory')
wt_webio_ea6x6_st_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6StTzOffsetHrs.setStatus('mandatory')
wt_webio_ea6x6_st_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6StTzOffsetMin.setStatus('mandatory')
wt_webio_ea6x6_st_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6StTzEnable.setStatus('mandatory')
wt_webio_ea6x6_st_tz_start_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA6x6StartMonth-January', 1), ('wtWebioEA6x6StartMonth-February', 2), ('wtWebioEA6x6StartMonth-March', 3), ('wtWebioEA6x6StartMonth-April', 4), ('wtWebioEA6x6StartMonth-May', 5), ('wtWebioEA6x6StartMonth-June', 6), ('wtWebioEA6x6StartMonth-July', 7), ('wtWebioEA6x6StartMonth-August', 8), ('wtWebioEA6x6StartMonth-September', 9), ('wtWebioEA6x6StartMonth-October', 10), ('wtWebioEA6x6StartMonth-November', 11), ('wtWebioEA6x6StartMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6StTzStartMonth.setStatus('mandatory')
wt_webio_ea6x6_st_tz_start_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtWebioEA6x6StartMode-first', 1), ('wtWebioEA6x6StartMode-second', 2), ('wtWebioEA6x6StartMode-third', 3), ('wtWebioEA6x6StartMode-fourth', 4), ('wtWebioEA6x6StartMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6StTzStartMode.setStatus('mandatory')
wt_webio_ea6x6_st_tz_start_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtWebioEA6x6StartWday-Sunday', 1), ('wtWebioEA6x6StartWday-Monday', 2), ('wtWebioEA6x6StartWday-Tuesday', 3), ('wtWebioEA6x6StartWday-Thursday', 4), ('wtWebioEA6x6StartWday-Wednesday', 5), ('wtWebioEA6x6StartWday-Friday', 6), ('wtWebioEA6x6StartWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6StTzStartWday.setStatus('mandatory')
wt_webio_ea6x6_st_tz_start_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 10), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6StTzStartHrs.setStatus('mandatory')
wt_webio_ea6x6_st_tz_start_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 11), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6StTzStartMin.setStatus('mandatory')
wt_webio_ea6x6_st_tz_stop_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA6x6StopMonth-January', 1), ('wtWebioEA6x6StopMonth-February', 2), ('wtWebioEA6x6StopMonth-March', 3), ('wtWebioEA6x6StopMonth-April', 4), ('wtWebioEA6x6StopMonth-May', 5), ('wtWebioEA6x6StopMonth-June', 6), ('wtWebioEA6x6StopMonth-July', 7), ('wtWebioEA6x6StopMonth-August', 8), ('wtWebioEA6x6StopMonth-September', 9), ('wtWebioEA6x6StopMonth-October', 10), ('wtWebioEA6x6StopMonth-November', 11), ('wtWebioEA6x6StopMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6StTzStopMonth.setStatus('mandatory')
wt_webio_ea6x6_st_tz_stop_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtWebioEA6x6StopMode-first', 1), ('wtWebioEA6x6StopMode-second', 2), ('wtWebioEA6x6StopMode-third', 3), ('wtWebioEA6x6StopMode-fourth', 4), ('wtWebioEA6x6StopMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6StTzStopMode.setStatus('mandatory')
wt_webio_ea6x6_st_tz_stop_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtWebioEA6x6StopWday-Sunday', 1), ('wtWebioEA6x6StopWday-Monday', 2), ('wtWebioEA6x6StopWday-Tuesday', 3), ('wtWebioEA6x6StopWday-Thursday', 4), ('wtWebioEA6x6StopWday-Wednesday', 5), ('wtWebioEA6x6StopWday-Friday', 6), ('wtWebioEA6x6StopWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6StTzStopWday.setStatus('mandatory')
wt_webio_ea6x6_st_tz_stop_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 15), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6StTzStopHrs.setStatus('mandatory')
wt_webio_ea6x6_st_tz_stop_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 1, 16), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6StTzStopMin.setStatus('mandatory')
wt_webio_ea6x6_time_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6TimeServer1.setStatus('mandatory')
wt_webio_ea6x6_time_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 2, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6TimeServer2.setStatus('mandatory')
wt_webio_ea6x6_ts_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 2, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6TsEnable.setStatus('mandatory')
wt_webio_ea6x6_ts_sync_time = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 2, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6TsSyncTime.setStatus('mandatory')
wt_webio_ea6x6_clock_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 3, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 23))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6ClockHrs.setStatus('mandatory')
wt_webio_ea6x6_clock_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 3, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 59))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6ClockMin.setStatus('mandatory')
wt_webio_ea6x6_clock_day = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 3, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6ClockDay.setStatus('mandatory')
wt_webio_ea6x6_clock_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 3, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA6x6ClockMonth-January', 1), ('wtWebioEA6x6ClockMonth-February', 2), ('wtWebioEA6x6ClockMonth-March', 3), ('wtWebioEA6x6ClockMonth-April', 4), ('wtWebioEA6x6ClockMonth-May', 5), ('wtWebioEA6x6ClockMonth-June', 6), ('wtWebioEA6x6ClockMonth-July', 7), ('wtWebioEA6x6ClockMonth-August', 8), ('wtWebioEA6x6ClockMonth-September', 9), ('wtWebioEA6x6ClockMonth-October', 10), ('wtWebioEA6x6ClockMonth-November', 11), ('wtWebioEA6x6ClockMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6ClockMonth.setStatus('mandatory')
wt_webio_ea6x6_clock_year = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 2, 3, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6ClockYear.setStatus('mandatory')
wt_webio_ea6x6_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6IpAddress.setStatus('mandatory')
wt_webio_ea6x6_subnet_mask = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6SubnetMask.setStatus('mandatory')
wt_webio_ea6x6_gateway = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6Gateway.setStatus('mandatory')
wt_webio_ea6x6_dns_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6DnsServer1.setStatus('mandatory')
wt_webio_ea6x6_dns_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6DnsServer2.setStatus('mandatory')
wt_webio_ea6x6_add_config = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 1, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AddConfig.setStatus('mandatory')
wt_webio_ea6x6_startup = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6Startup.setStatus('mandatory')
wt_webio_ea6x6_get_header_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 2, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6GetHeaderEnable.setStatus('mandatory')
wt_webio_ea6x6_http_input_trigger = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 2, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6HttpInputTrigger.setStatus('mandatory')
wt_webio_ea6x6_http_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 2, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6HttpPort.setStatus('mandatory')
wt_webio_ea6x6_mail_ad_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6MailAdName.setStatus('mandatory')
wt_webio_ea6x6_mail_reply = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6MailReply.setStatus('mandatory')
wt_webio_ea6x6_mail_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6MailServer.setStatus('mandatory')
wt_webio_ea6x6_mail_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6MailEnable.setStatus('mandatory')
wt_webio_ea6x6_mail_authentication = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 3, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6MailAuthentication.setStatus('mandatory')
wt_webio_ea6x6_mail_auth_user = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 3, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6MailAuthUser.setStatus('mandatory')
wt_webio_ea6x6_mail_auth_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 3, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6MailAuthPassword.setStatus('mandatory')
wt_webio_ea6x6_mail_pop3_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 3, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6MailPop3Server.setStatus('mandatory')
wt_webio_ea6x6_snmp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 4, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6SnmpEnable.setStatus('mandatory')
wt_webio_ea6x6_snmp_community_string_read = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 4, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6SnmpCommunityStringRead.setStatus('mandatory')
wt_webio_ea6x6_snmp_community_string_read_write = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 4, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6SnmpCommunityStringReadWrite.setStatus('mandatory')
wt_webio_ea6x6_snmp_system_trap_manager_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 4, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6SnmpSystemTrapManagerIP.setStatus('mandatory')
wt_webio_ea6x6_snmp_system_trap_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 4, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6SnmpSystemTrapEnable.setStatus('mandatory')
wt_webio_ea6x6_udp_admin_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 5, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6UdpAdminPort.setStatus('mandatory')
wt_webio_ea6x6_udp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 5, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6UdpEnable.setStatus('mandatory')
wt_webio_ea6x6_udp_remote_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 5, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6UdpRemotePort.setStatus('mandatory')
wt_webio_ea6x6_binary_mode_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryModeCount.setStatus('mandatory')
wt_webio_ea6x6_binary_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 2))
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryIfTable.setStatus('mandatory')
wt_webio_ea6x6_binary_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA6x6BinaryModeNo'))
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryIfEntry.setStatus('mandatory')
wt_webio_ea6x6_binary_mode_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryModeNo.setStatus('mandatory')
wt_webio_ea6x6_binary_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3))
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryTable.setStatus('mandatory')
wt_webio_ea6x6_binary_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA6x6BinaryModeNo'))
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryEntry.setStatus('mandatory')
wt_webio_ea6x6_binary_operation_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryOperationMode.setStatus('mandatory')
wt_webio_ea6x6_binary_tcp_server_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryTcpServerLocalPort.setStatus('mandatory')
wt_webio_ea6x6_binary_tcp_server_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryTcpServerInputTrigger.setStatus('mandatory')
wt_webio_ea6x6_binary_tcp_server_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryTcpServerApplicationMode.setStatus('mandatory')
wt_webio_ea6x6_binary_tcp_client_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryTcpClientLocalPort.setStatus('mandatory')
wt_webio_ea6x6_binary_tcp_client_server_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryTcpClientServerPort.setStatus('mandatory')
wt_webio_ea6x6_binary_tcp_client_server_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryTcpClientServerIpAddr.setStatus('mandatory')
wt_webio_ea6x6_binary_tcp_client_server_password = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryTcpClientServerPassword.setStatus('mandatory')
wt_webio_ea6x6_binary_tcp_client_inactivity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryTcpClientInactivity.setStatus('mandatory')
wt_webio_ea6x6_binary_tcp_client_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryTcpClientInputTrigger.setStatus('mandatory')
wt_webio_ea6x6_binary_tcp_client_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryTcpClientInterval.setStatus('mandatory')
wt_webio_ea6x6_binary_tcp_client_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 12), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryTcpClientApplicationMode.setStatus('mandatory')
wt_webio_ea6x6_binary_udp_peer_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryUdpPeerLocalPort.setStatus('mandatory')
wt_webio_ea6x6_binary_udp_peer_remote_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryUdpPeerRemotePort.setStatus('mandatory')
wt_webio_ea6x6_binary_udp_peer_remote_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 15), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryUdpPeerRemoteIpAddr.setStatus('mandatory')
wt_webio_ea6x6_binary_udp_peer_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 16), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryUdpPeerInputTrigger.setStatus('mandatory')
wt_webio_ea6x6_binary_udp_peer_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryUdpPeerInterval.setStatus('mandatory')
wt_webio_ea6x6_binary_udp_peer_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 18), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryUdpPeerApplicationMode.setStatus('mandatory')
wt_webio_ea6x6_binary_connected_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryConnectedPort.setStatus('mandatory')
wt_webio_ea6x6_binary_connected_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 20), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryConnectedIpAddr.setStatus('mandatory')
wt_webio_ea6x6_binary_tcp_server_client_http_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryTcpServerClientHttpPort.setStatus('mandatory')
wt_webio_ea6x6_binary_tcp_client_server_http_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 6, 3, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6BinaryTcpClientServerHttpPort.setStatus('mandatory')
wt_webio_ea6x6_syslog_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 7, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6SyslogServerIP.setStatus('mandatory')
wt_webio_ea6x6_syslog_server_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 7, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6SyslogServerPort.setStatus('mandatory')
wt_webio_ea6x6_syslog_system_messages_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 7, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6SyslogSystemMessagesEnable.setStatus('mandatory')
wt_webio_ea6x6_syslog_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 7, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6SyslogEnable.setStatus('mandatory')
wt_webio_ea6x6_ftp_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 8, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6FTPServerIP.setStatus('mandatory')
wt_webio_ea6x6_ftp_server_control_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 8, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6FTPServerControlPort.setStatus('mandatory')
wt_webio_ea6x6_ftp_user_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 8, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6FTPUserName.setStatus('mandatory')
wt_webio_ea6x6_ftp_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 8, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6FTPPassword.setStatus('mandatory')
wt_webio_ea6x6_ftp_account = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 8, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6FTPAccount.setStatus('mandatory')
wt_webio_ea6x6_ftp_option = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 8, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6FTPOption.setStatus('mandatory')
wt_webio_ea6x6_ftp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 3, 8, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6FTPEnable.setStatus('mandatory')
wt_webio_ea6x6_output_mode_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 4, 1))
if mibBuilder.loadTexts:
wtWebioEA6x6OutputModeTable.setStatus('mandatory')
wt_webio_ea6x6_output_mode_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 4, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA6x6OutputNo'))
if mibBuilder.loadTexts:
wtWebioEA6x6OutputModeEntry.setStatus('mandatory')
wt_webio_ea6x6_output_mode_bit = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 4, 1, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6OutputModeBit.setStatus('mandatory')
wt_webio_ea6x6_safety_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 4, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6SafetyTimeout.setStatus('mandatory')
wt_webio_ea6x6_alarm_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmCount.setStatus('mandatory')
wt_webio_ea6x6_alarm_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 2))
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmIfTable.setStatus('mandatory')
wt_webio_ea6x6_alarm_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmNo'))
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmIfEntry.setStatus('mandatory')
wt_webio_ea6x6_alarm_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmNo.setStatus('mandatory')
wt_webio_ea6x6_alarm_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3))
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmTable.setStatus('mandatory')
wt_webio_ea6x6_alarm_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmNo'))
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmEntry.setStatus('mandatory')
wt_webio_ea6x6_alarm_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(12, 12)).setFixedLength(12)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmInputTrigger.setStatus('mandatory')
wt_webio_ea6x6_alarm_output_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(12, 12)).setFixedLength(12)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmOutputTrigger.setStatus('mandatory')
wt_webio_ea6x6_alarm_system_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmSystemTrigger.setStatus('mandatory')
wt_webio_ea6x6_alarm_max_counter_value = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmMaxCounterValue.setStatus('mandatory')
wt_webio_ea6x6_alarm_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmInterval.setStatus('mandatory')
wt_webio_ea6x6_alarm_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmEnable.setStatus('mandatory')
wt_webio_ea6x6_alarm_mail_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmMailAddr.setStatus('mandatory')
wt_webio_ea6x6_alarm_mail_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmMailSubject.setStatus('mandatory')
wt_webio_ea6x6_alarm_mail_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 9), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmMailText.setStatus('mandatory')
wt_webio_ea6x6_alarm_snmp_manager_ip = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 10), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmSnmpManagerIP.setStatus('mandatory')
wt_webio_ea6x6_alarm_snmp_trap_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 11), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmSnmpTrapText.setStatus('mandatory')
wt_webio_ea6x6_alarm_udp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 12), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmUdpIpAddr.setStatus('mandatory')
wt_webio_ea6x6_alarm_udp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmUdpPort.setStatus('mandatory')
wt_webio_ea6x6_alarm_udp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 14), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmUdpText.setStatus('mandatory')
wt_webio_ea6x6_alarm_tcp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 15), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmTcpIpAddr.setStatus('mandatory')
wt_webio_ea6x6_alarm_tcp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmTcpPort.setStatus('mandatory')
wt_webio_ea6x6_alarm_tcp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 17), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmTcpText.setStatus('mandatory')
wt_webio_ea6x6_alarm_syslog_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 18), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmSyslogIpAddr.setStatus('mandatory')
wt_webio_ea6x6_alarm_syslog_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmSyslogPort.setStatus('mandatory')
wt_webio_ea6x6_alarm_syslog_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 20), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmSyslogText.setStatus('mandatory')
wt_webio_ea6x6_alarm_ftp_data_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 21), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmFtpDataPort.setStatus('mandatory')
wt_webio_ea6x6_alarm_ftp_file_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 22), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmFtpFileName.setStatus('mandatory')
wt_webio_ea6x6_alarm_ftp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 23), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmFtpText.setStatus('mandatory')
wt_webio_ea6x6_alarm_ftp_option = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 24), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmFtpOption.setStatus('mandatory')
wt_webio_ea6x6_alarm_timer_cron = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 25), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmTimerCron.setStatus('mandatory')
wt_webio_ea6x6_alarm_mail_release_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 26), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmMailReleaseSubject.setStatus('mandatory')
wt_webio_ea6x6_alarm_mail_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 27), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmMailReleaseText.setStatus('mandatory')
wt_webio_ea6x6_alarm_snmp_trap_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 28), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmSnmpTrapReleaseText.setStatus('mandatory')
wt_webio_ea6x6_alarm_udp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 29), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmUdpReleaseText.setStatus('mandatory')
wt_webio_ea6x6_alarm_tcp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 30), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmTcpReleaseText.setStatus('mandatory')
wt_webio_ea6x6_alarm_syslog_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 31), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmSyslogReleaseText.setStatus('mandatory')
wt_webio_ea6x6_alarm_ftp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 1, 5, 3, 1, 32), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6AlarmFtpReleaseText.setStatus('mandatory')
wt_webio_ea6x6_input_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 1))
if mibBuilder.loadTexts:
wtWebioEA6x6InputPortTable.setStatus('mandatory')
wt_webio_ea6x6_input_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA6x6InputNo'))
if mibBuilder.loadTexts:
wtWebioEA6x6InputPortEntry.setStatus('mandatory')
wt_webio_ea6x6_port_input_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6PortInputName.setStatus('mandatory')
wt_webio_ea6x6_port_input_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6PortInputText.setStatus('mandatory')
wt_webio_ea6x6_port_input_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6PortInputMode.setStatus('mandatory')
wt_webio_ea6x6_port_input_filter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 1, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6PortInputFilter.setStatus('mandatory')
wt_webio_ea6x6_port_input_bicount_pulse_polarity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6PortInputBicountPulsePolarity.setStatus('mandatory')
wt_webio_ea6x6_port_input_bicount_inactiv_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 1, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6PortInputBicountInactivTimeout.setStatus('mandatory')
wt_webio_ea6x6_output_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2))
if mibBuilder.loadTexts:
wtWebioEA6x6OutputPortTable.setStatus('mandatory')
wt_webio_ea6x6_output_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA6x6OutputNo'))
if mibBuilder.loadTexts:
wtWebioEA6x6OutputPortEntry.setStatus('mandatory')
wt_webio_ea6x6_port_output_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6PortOutputName.setStatus('mandatory')
wt_webio_ea6x6_port_output_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6PortOutputText.setStatus('mandatory')
wt_webio_ea6x6_port_output_group_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6PortOutputGroupMode.setStatus('mandatory')
wt_webio_ea6x6_port_output_safety_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6PortOutputSafetyState.setStatus('mandatory')
wt_webio_ea6x6_port_logic_input_mask = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6PortLogicInputMask.setStatus('mandatory')
wt_webio_ea6x6_port_logic_input_inverter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6PortLogicInputInverter.setStatus('mandatory')
wt_webio_ea6x6_port_logic_function = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6PortLogicFunction.setStatus('mandatory')
wt_webio_ea6x6_port_logic_output_inverter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6PortLogicOutputInverter.setStatus('mandatory')
wt_webio_ea6x6_port_pulse_duration = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6PortPulseDuration.setStatus('mandatory')
wt_webio_ea6x6_port_pulse_polarity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 2, 2, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6PortPulsePolarity.setStatus('mandatory')
wt_webio_ea6x6_mf_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6MfName.setStatus('mandatory')
wt_webio_ea6x6_mf_addr = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6MfAddr.setStatus('mandatory')
wt_webio_ea6x6_mf_hotline = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6MfHotline.setStatus('mandatory')
wt_webio_ea6x6_mf_internet = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6MfInternet.setStatus('mandatory')
wt_webio_ea6x6_mf_device_typ = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 3, 3, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6MfDeviceTyp.setStatus('mandatory')
wt_webio_ea6x6_diag_error_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA6x6DiagErrorCount.setStatus('mandatory')
wt_webio_ea6x6_diag_binary_error = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 4, 2), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA6x6DiagBinaryError.setStatus('mandatory')
wt_webio_ea6x6_diag_error_index = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 4, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA6x6DiagErrorIndex.setStatus('mandatory')
wt_webio_ea6x6_diag_error_message = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 4, 4), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA6x6DiagErrorMessage.setStatus('mandatory')
wt_webio_ea6x6_diag_error_clear = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24, 4, 5), integer32()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
wtWebioEA6x6DiagErrorClear.setStatus('mandatory')
wt_webio_ea6x6_alert1 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 41)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapText'))
wt_webio_ea6x6_alert2 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 42)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapText'))
wt_webio_ea6x6_alert3 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 43)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapText'))
wt_webio_ea6x6_alert4 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 44)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapText'))
wt_webio_ea6x6_alert5 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 45)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapText'))
wt_webio_ea6x6_alert6 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 46)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapText'))
wt_webio_ea6x6_alert7 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 47)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapText'))
wt_webio_ea6x6_alert8 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 48)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapText'))
wt_webio_ea6x6_alert9 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 49)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapText'))
wt_webio_ea6x6_alert10 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 50)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapText'))
wt_webio_ea6x6_alert11 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 51)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapText'))
wt_webio_ea6x6_alert12 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 52)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapText'))
wt_webio_ea6x6_alert13 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 71)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapReleaseText'))
wt_webio_ea6x6_alert14 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 72)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapReleaseText'))
wt_webio_ea6x6_alert15 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 73)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapReleaseText'))
wt_webio_ea6x6_alert16 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 74)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapReleaseText'))
wt_webio_ea6x6_alert17 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 75)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapReleaseText'))
wt_webio_ea6x6_alert18 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 76)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapReleaseText'))
wt_webio_ea6x6_alert19 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 77)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapReleaseText'))
wt_webio_ea6x6_alert20 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 78)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapReleaseText'))
wt_webio_ea6x6_alert21 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 79)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapReleaseText'))
wt_webio_ea6x6_alert22 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 80)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapReleaseText'))
wt_webio_ea6x6_alert23 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 81)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapReleaseText'))
wt_webio_ea6x6_alert24 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 82)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6AlarmSnmpTrapReleaseText'))
wt_webio_ea6x6_alert_diag = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 24) + (0, 110)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA6x6DiagErrorIndex'), ('Webio-Digital-MIB-US', 'wtWebioEA6x6DiagErrorMessage'))
wt_webio_ea2x2_erp_inputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPInputs.setStatus('mandatory')
wt_webio_ea2x2_erp_outputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPOutputs.setStatus('mandatory')
wt_webio_ea2x2_erp_input_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 3))
if mibBuilder.loadTexts:
wtWebioEA2x2ERPInputTable.setStatus('mandatory')
wt_webio_ea2x2_erp_input_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2ERPInputNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2ERPInputEntry.setStatus('mandatory')
wt_webio_ea2x2_erp_input_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPInputNo.setStatus('mandatory')
wt_webio_ea2x2_erp_input_counter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPInputCounter.setStatus('mandatory')
wt_webio_ea2x2_erp_input_counter_clear = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 3, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPInputCounterClear.setStatus('mandatory')
wt_webio_ea2x2_erp_input_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA2x2ERPInputState-OFF', 0), ('wtWebioEA2x2ERPInputState-ON', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPInputState.setStatus('mandatory')
wt_webio_ea2x2_erp_input_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPInputValue.setStatus('mandatory')
wt_webio_ea2x2_erp_output_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 5))
if mibBuilder.loadTexts:
wtWebioEA2x2ERPOutputTable.setStatus('mandatory')
wt_webio_ea2x2_erp_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 5, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2ERPOutputNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2ERPOutputEntry.setStatus('mandatory')
wt_webio_ea2x2_erp_output_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPOutputNo.setStatus('mandatory')
wt_webio_ea2x2_erp_output_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 5, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA2x2ERPOutputState-OFF', 0), ('wtWebioEA2x2ERPOutputState-ON', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPOutputState.setStatus('mandatory')
wt_webio_ea2x2_erp_output_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPOutputValue.setStatus('mandatory')
wt_webio_ea2x2_erp_set_output = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPSetOutput.setStatus('mandatory')
wt_webio_ea2x2_erp_sess_cntrl_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPSessCntrlPassword.setStatus('mandatory')
wt_webio_ea2x2_erp_sess_cntrl_config_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA2x2ERPSessCntrl-NoSession', 0), ('wtWebioEA2x2ERPSessCntrl-Session', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPSessCntrlConfigMode.setStatus('mandatory')
wt_webio_ea2x2_erp_sess_cntrl_logout = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 2, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPSessCntrlLogout.setStatus('mandatory')
wt_webio_ea2x2_erp_sess_cntrl_admin_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 2, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPSessCntrlAdminPassword.setStatus('mandatory')
wt_webio_ea2x2_erp_sess_cntrl_config_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 2, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPSessCntrlConfigPassword.setStatus('mandatory')
wt_webio_ea2x2_erp_device_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPDeviceName.setStatus('mandatory')
wt_webio_ea2x2_erp_device_text = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPDeviceText.setStatus('mandatory')
wt_webio_ea2x2_erp_device_location = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPDeviceLocation.setStatus('mandatory')
wt_webio_ea2x2_erp_device_contact = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPDeviceContact.setStatus('mandatory')
wt_webio_ea2x2_erp_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPTzOffsetHrs.setStatus('mandatory')
wt_webio_ea2x2_erp_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPTzOffsetMin.setStatus('mandatory')
wt_webio_ea2x2_erp_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPTzEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_st_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPStTzOffsetHrs.setStatus('mandatory')
wt_webio_ea2x2_erp_st_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPStTzOffsetMin.setStatus('mandatory')
wt_webio_ea2x2_erp_st_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPStTzEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_st_tz_start_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA2x2ERPStartMonth-January', 1), ('wtWebioEA2x2ERPStartMonth-February', 2), ('wtWebioEA2x2ERPStartMonth-March', 3), ('wtWebioEA2x2ERPStartMonth-April', 4), ('wtWebioEA2x2ERPStartMonth-May', 5), ('wtWebioEA2x2ERPStartMonth-June', 6), ('wtWebioEA2x2ERPStartMonth-July', 7), ('wtWebioEA2x2ERPStartMonth-August', 8), ('wtWebioEA2x2ERPStartMonth-September', 9), ('wtWebioEA2x2ERPStartMonth-October', 10), ('wtWebioEA2x2ERPStartMonth-November', 11), ('wtWebioEA2x2ERPStartMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPStTzStartMonth.setStatus('mandatory')
wt_webio_ea2x2_erp_st_tz_start_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtWebioEA2x2ERPStartMode-first', 1), ('wtWebioEA2x2ERPStartMode-second', 2), ('wtWebioEA2x2ERPStartMode-third', 3), ('wtWebioEA2x2ERPStartMode-fourth', 4), ('wtWebioEA2x2ERPStartMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPStTzStartMode.setStatus('mandatory')
wt_webio_ea2x2_erp_st_tz_start_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtWebioEA2x2ERPStartWday-Sunday', 1), ('wtWebioEA2x2ERPStartWday-Monday', 2), ('wtWebioEA2x2ERPStartWday-Tuesday', 3), ('wtWebioEA2x2ERPStartWday-Thursday', 4), ('wtWebioEA2x2ERPStartWday-Wednesday', 5), ('wtWebioEA2x2ERPStartWday-Friday', 6), ('wtWebioEA2x2ERPStartWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPStTzStartWday.setStatus('mandatory')
wt_webio_ea2x2_erp_st_tz_start_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 10), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPStTzStartHrs.setStatus('mandatory')
wt_webio_ea2x2_erp_st_tz_start_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 11), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPStTzStartMin.setStatus('mandatory')
wt_webio_ea2x2_erp_st_tz_stop_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA2x2ERPStopMonth-January', 1), ('wtWebioEA2x2ERPStopMonth-February', 2), ('wtWebioEA2x2ERPStopMonth-March', 3), ('wtWebioEA2x2ERPStopMonth-April', 4), ('wtWebioEA2x2ERPStopMonth-May', 5), ('wtWebioEA2x2ERPStopMonth-June', 6), ('wtWebioEA2x2ERPStopMonth-July', 7), ('wtWebioEA2x2ERPStopMonth-August', 8), ('wtWebioEA2x2ERPStopMonth-September', 9), ('wtWebioEA2x2ERPStopMonth-October', 10), ('wtWebioEA2x2ERPStopMonth-November', 11), ('wtWebioEA2x2ERPStopMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPStTzStopMonth.setStatus('mandatory')
wt_webio_ea2x2_erp_st_tz_stop_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtWebioEA2x2ERPStopMode-first', 1), ('wtWebioEA2x2ERPStopMode-second', 2), ('wtWebioEA2x2ERPStopMode-third', 3), ('wtWebioEA2x2ERPStopMode-fourth', 4), ('wtWebioEA2x2ERPStopMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPStTzStopMode.setStatus('mandatory')
wt_webio_ea2x2_erp_st_tz_stop_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtWebioEA2x2ERPStopWday-Sunday', 1), ('wtWebioEA2x2ERPStopWday-Monday', 2), ('wtWebioEA2x2ERPStopWday-Tuesday', 3), ('wtWebioEA2x2ERPStopWday-Thursday', 4), ('wtWebioEA2x2ERPStopWday-Wednesday', 5), ('wtWebioEA2x2ERPStopWday-Friday', 6), ('wtWebioEA2x2ERPStopWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPStTzStopWday.setStatus('mandatory')
wt_webio_ea2x2_erp_st_tz_stop_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 15), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPStTzStopHrs.setStatus('mandatory')
wt_webio_ea2x2_erp_st_tz_stop_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 1, 16), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPStTzStopMin.setStatus('mandatory')
wt_webio_ea2x2_erp_time_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPTimeServer1.setStatus('mandatory')
wt_webio_ea2x2_erp_time_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 2, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPTimeServer2.setStatus('mandatory')
wt_webio_ea2x2_erp_ts_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 2, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPTsEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_ts_sync_time = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 2, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPTsSyncTime.setStatus('mandatory')
wt_webio_ea2x2_erp_clock_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 3, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 23))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPClockHrs.setStatus('mandatory')
wt_webio_ea2x2_erp_clock_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 3, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 59))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPClockMin.setStatus('mandatory')
wt_webio_ea2x2_erp_clock_day = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 3, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPClockDay.setStatus('mandatory')
wt_webio_ea2x2_erp_clock_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 3, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA2x2ERPClockMonth-January', 1), ('wtWebioEA2x2ERPClockMonth-February', 2), ('wtWebioEA2x2ERPClockMonth-March', 3), ('wtWebioEA2x2ERPClockMonth-April', 4), ('wtWebioEA2x2ERPClockMonth-May', 5), ('wtWebioEA2x2ERPClockMonth-June', 6), ('wtWebioEA2x2ERPClockMonth-July', 7), ('wtWebioEA2x2ERPClockMonth-August', 8), ('wtWebioEA2x2ERPClockMonth-September', 9), ('wtWebioEA2x2ERPClockMonth-October', 10), ('wtWebioEA2x2ERPClockMonth-November', 11), ('wtWebioEA2x2ERPClockMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPClockMonth.setStatus('mandatory')
wt_webio_ea2x2_erp_clock_year = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 2, 3, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPClockYear.setStatus('mandatory')
wt_webio_ea2x2_erp_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPIpAddress.setStatus('mandatory')
wt_webio_ea2x2_erp_subnet_mask = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPSubnetMask.setStatus('mandatory')
wt_webio_ea2x2_erp_gateway = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPGateway.setStatus('mandatory')
wt_webio_ea2x2_erp_dns_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPDnsServer1.setStatus('mandatory')
wt_webio_ea2x2_erp_dns_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPDnsServer2.setStatus('mandatory')
wt_webio_ea2x2_erp_add_config = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 1, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAddConfig.setStatus('mandatory')
wt_webio_ea2x2_erp_startup = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPStartup.setStatus('mandatory')
wt_webio_ea2x2_erp_get_header_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 2, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPGetHeaderEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_http_input_trigger = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 2, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPHttpInputTrigger.setStatus('mandatory')
wt_webio_ea2x2_erp_http_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 2, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPHttpPort.setStatus('mandatory')
wt_webio_ea2x2_erp_mail_ad_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPMailAdName.setStatus('mandatory')
wt_webio_ea2x2_erp_mail_reply = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPMailReply.setStatus('mandatory')
wt_webio_ea2x2_erp_mail_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPMailServer.setStatus('mandatory')
wt_webio_ea2x2_erp_mail_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPMailEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_mail_authentication = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 3, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPMailAuthentication.setStatus('mandatory')
wt_webio_ea2x2_erp_mail_auth_user = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 3, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPMailAuthUser.setStatus('mandatory')
wt_webio_ea2x2_erp_mail_auth_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 3, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPMailAuthPassword.setStatus('mandatory')
wt_webio_ea2x2_erp_mail_pop3_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 3, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPMailPop3Server.setStatus('mandatory')
wt_webio_ea2x2_erp_snmp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 4, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPSnmpEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_snmp_community_string_read = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 4, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPSnmpCommunityStringRead.setStatus('mandatory')
wt_webio_ea2x2_erp_snmp_community_string_read_write = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 4, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPSnmpCommunityStringReadWrite.setStatus('mandatory')
wt_webio_ea2x2_erp_snmp_system_trap_manager_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 4, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPSnmpSystemTrapManagerIP.setStatus('mandatory')
wt_webio_ea2x2_erp_snmp_system_trap_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 4, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPSnmpSystemTrapEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_udp_admin_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 5, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPUdpAdminPort.setStatus('mandatory')
wt_webio_ea2x2_erp_udp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 5, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPUdpEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_udp_remote_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 5, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPUdpRemotePort.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_mode_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryModeCount.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 2))
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryIfTable.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2ERPBinaryModeNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryIfEntry.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_mode_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryModeNo.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3))
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryTable.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2ERPBinaryModeNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryEntry.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_operation_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryOperationMode.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_tcp_server_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryTcpServerLocalPort.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_tcp_server_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryTcpServerInputTrigger.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_tcp_server_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryTcpServerApplicationMode.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_tcp_client_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryTcpClientLocalPort.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_tcp_client_server_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryTcpClientServerPort.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_tcp_client_server_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryTcpClientServerIpAddr.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_tcp_client_server_password = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryTcpClientServerPassword.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_tcp_client_inactivity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryTcpClientInactivity.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_tcp_client_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryTcpClientInputTrigger.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_tcp_client_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryTcpClientInterval.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_tcp_client_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 12), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryTcpClientApplicationMode.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_udp_peer_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryUdpPeerLocalPort.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_udp_peer_remote_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryUdpPeerRemotePort.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_udp_peer_remote_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 15), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryUdpPeerRemoteIpAddr.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_udp_peer_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 16), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryUdpPeerInputTrigger.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_udp_peer_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryUdpPeerInterval.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_udp_peer_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 18), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryUdpPeerApplicationMode.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_connected_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryConnectedPort.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_connected_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 20), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryConnectedIpAddr.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_tcp_server_client_http_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryTcpServerClientHttpPort.setStatus('mandatory')
wt_webio_ea2x2_erp_binary_tcp_client_server_http_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 6, 3, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPBinaryTcpClientServerHttpPort.setStatus('mandatory')
wt_webio_ea2x2_erp_syslog_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 7, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPSyslogServerIP.setStatus('mandatory')
wt_webio_ea2x2_erp_syslog_server_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 7, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPSyslogServerPort.setStatus('mandatory')
wt_webio_ea2x2_erp_syslog_system_messages_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 7, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPSyslogSystemMessagesEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_syslog_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 7, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPSyslogEnable.setStatus('mandatory')
wt_webio_ea2x2_erpftp_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 8, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPFTPServerIP.setStatus('mandatory')
wt_webio_ea2x2_erpftp_server_control_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 8, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPFTPServerControlPort.setStatus('mandatory')
wt_webio_ea2x2_erpftp_user_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 8, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPFTPUserName.setStatus('mandatory')
wt_webio_ea2x2_erpftp_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 8, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPFTPPassword.setStatus('mandatory')
wt_webio_ea2x2_erpftp_account = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 8, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPFTPAccount.setStatus('mandatory')
wt_webio_ea2x2_erpftp_option = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 8, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPFTPOption.setStatus('mandatory')
wt_webio_ea2x2_erpftp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 8, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPFTPEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_way_back_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 10, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPWayBackEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_way_back_server_control_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 10, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPWayBackServerControlPort.setStatus('mandatory')
wt_webio_ea2x2_erp_way_back_ftp_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 10, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPWayBackFTPPassword.setStatus('mandatory')
wt_webio_ea2x2_erp_way_back_ftp_response = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 10, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPWayBackFTPResponse.setStatus('mandatory')
wt_webio_ea2x2_erp_way_back_ftp_time_out = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 3, 10, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPWayBackFTPTimeOut.setStatus('mandatory')
wt_webio_ea2x2_erp_output_mode_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 4, 1))
if mibBuilder.loadTexts:
wtWebioEA2x2ERPOutputModeTable.setStatus('mandatory')
wt_webio_ea2x2_erp_output_mode_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 4, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2ERPOutputNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2ERPOutputModeEntry.setStatus('mandatory')
wt_webio_ea2x2_erp_output_mode_bit = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 4, 1, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPOutputModeBit.setStatus('mandatory')
wt_webio_ea2x2_erp_safety_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 4, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPSafetyTimeout.setStatus('mandatory')
wt_webio_ea2x2_erp_load_control_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 4, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPLoadControlEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmCount.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 2))
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmIfTable.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmIfEntry.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmNo.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3))
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmTable.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmEntry.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(12, 12)).setFixedLength(12)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmInputTrigger.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_output_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(12, 12)).setFixedLength(12)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmOutputTrigger.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_system_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmSystemTrigger.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_max_counter_value = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmMaxCounterValue.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmInterval.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_mail_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmMailAddr.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_mail_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmMailSubject.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_mail_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 9), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmMailText.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_snmp_manager_ip = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 10), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmSnmpManagerIP.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_snmp_trap_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 11), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmSnmpTrapText.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_udp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 12), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmUdpIpAddr.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_udp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmUdpPort.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_udp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 14), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmUdpText.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_tcp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 15), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmTcpIpAddr.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_tcp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmTcpPort.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_tcp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 17), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmTcpText.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_syslog_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 18), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmSyslogIpAddr.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_syslog_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmSyslogPort.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_syslog_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 20), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmSyslogText.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_ftp_data_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 21), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmFtpDataPort.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_ftp_file_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 22), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmFtpFileName.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_ftp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 23), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmFtpText.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_ftp_option = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 24), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmFtpOption.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_timer_cron = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 25), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmTimerCron.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_mail_release_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 26), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmMailReleaseSubject.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_mail_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 27), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmMailReleaseText.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_snmp_trap_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 28), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmSnmpTrapReleaseText.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_udp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 29), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmUdpReleaseText.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_tcp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 30), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmTcpReleaseText.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_syslog_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 31), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmSyslogReleaseText.setStatus('mandatory')
wt_webio_ea2x2_erp_alarm_ftp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 3, 1, 32), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPAlarmFtpReleaseText.setStatus('mandatory')
wt_webio_ea2x2_erp_load_control_view = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 4), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPLoadControlView.setStatus('mandatory')
wt_webio_ea2x2_erplc_shut_down_view = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 1, 5, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPLCShutDownView.setStatus('mandatory')
wt_webio_ea2x2_erp_input_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 1))
if mibBuilder.loadTexts:
wtWebioEA2x2ERPInputPortTable.setStatus('mandatory')
wt_webio_ea2x2_erp_input_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2ERPInputNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2ERPInputPortEntry.setStatus('mandatory')
wt_webio_ea2x2_erp_port_input_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPPortInputName.setStatus('mandatory')
wt_webio_ea2x2_erp_port_input_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPPortInputText.setStatus('mandatory')
wt_webio_ea2x2_erp_port_input_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPPortInputMode.setStatus('mandatory')
wt_webio_ea2x2_erp_port_input_filter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 1, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPPortInputFilter.setStatus('mandatory')
wt_webio_ea2x2_erp_port_input_bicount_pulse_polarity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPPortInputBicountPulsePolarity.setStatus('mandatory')
wt_webio_ea2x2_erp_port_input_bicount_inactiv_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 1, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPPortInputBicountInactivTimeout.setStatus('mandatory')
wt_webio_ea2x2_erp_output_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2))
if mibBuilder.loadTexts:
wtWebioEA2x2ERPOutputPortTable.setStatus('mandatory')
wt_webio_ea2x2_erp_output_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2ERPOutputNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2ERPOutputPortEntry.setStatus('mandatory')
wt_webio_ea2x2_erp_port_output_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPPortOutputName.setStatus('mandatory')
wt_webio_ea2x2_erp_port_output_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPPortOutputText.setStatus('mandatory')
wt_webio_ea2x2_erp_port_output_group_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPPortOutputGroupMode.setStatus('mandatory')
wt_webio_ea2x2_erp_port_output_safety_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPPortOutputSafetyState.setStatus('mandatory')
wt_webio_ea2x2_erp_port_logic_input_mask = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPPortLogicInputMask.setStatus('mandatory')
wt_webio_ea2x2_erp_port_logic_input_inverter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPPortLogicInputInverter.setStatus('mandatory')
wt_webio_ea2x2_erp_port_logic_function = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPPortLogicFunction.setStatus('mandatory')
wt_webio_ea2x2_erp_port_logic_output_inverter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPPortLogicOutputInverter.setStatus('mandatory')
wt_webio_ea2x2_erp_port_pulse_duration = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPPortPulseDuration.setStatus('mandatory')
wt_webio_ea2x2_erp_port_pulse_polarity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 2, 2, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPPortPulsePolarity.setStatus('mandatory')
wt_webio_ea2x2_erp_mf_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPMfName.setStatus('mandatory')
wt_webio_ea2x2_erp_mf_addr = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPMfAddr.setStatus('mandatory')
wt_webio_ea2x2_erp_mf_hotline = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPMfHotline.setStatus('mandatory')
wt_webio_ea2x2_erp_mf_internet = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPMfInternet.setStatus('mandatory')
wt_webio_ea2x2_erp_mf_device_typ = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 3, 3, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPMfDeviceTyp.setStatus('mandatory')
wt_webio_ea2x2_erp_diag_error_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPDiagErrorCount.setStatus('mandatory')
wt_webio_ea2x2_erp_diag_binary_error = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 4, 2), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPDiagBinaryError.setStatus('mandatory')
wt_webio_ea2x2_erp_diag_error_index = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 4, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPDiagErrorIndex.setStatus('mandatory')
wt_webio_ea2x2_erp_diag_error_message = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 4, 4), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPDiagErrorMessage.setStatus('mandatory')
wt_webio_ea2x2_erp_diag_error_clear = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25, 4, 5), integer32()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERPDiagErrorClear.setStatus('mandatory')
wt_webio_ea2x2_erp_alert1 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 41)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_alert2 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 42)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_alert3 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 43)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_alert4 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 44)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_alert5 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 45)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_alert6 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 46)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_alert7 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 47)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_alert8 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 48)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_alert9 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 49)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_alert10 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 50)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_alert11 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 51)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_alert12 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 52)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_alert13 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 71)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_alert14 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 72)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_alert15 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 73)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_alert16 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 74)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_alert17 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 75)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_alert18 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 76)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_alert19 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 77)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_alert20 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 78)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_alert21 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 79)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_alert22 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 80)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_alert23 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 81)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_alert24 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 82)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_alert_diag = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 25) + (0, 110)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPDiagErrorIndex'), ('Webio-Digital-MIB-US', 'wtWebioEA2x2ERPDiagErrorMessage'))
wt_webio_ea12x6_rel_erp_inputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPInputs.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_outputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 6))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPOutputs.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_input_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 3))
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPInputTable.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_input_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPInputNo'))
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPInputEntry.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_input_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPInputNo.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_input_counter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPInputCounter.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_input_counter_clear = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 3, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPInputCounterClear.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_input_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPInputValue.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_output_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 5))
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPOutputTable.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 5, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPOutputNo'))
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPOutputEntry.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_output_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPOutputNo.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_output_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 5, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA12x6RelERPOutputState-OFF', 0), ('wtWebioEA12x6OutputState-ON', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPOutputState.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_output_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPOutputValue.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_set_output = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPSetOutput.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_sess_cntrl_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPSessCntrlPassword.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_sess_cntrl_config_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA12x6RelERPSessCntrl-NoSession', 0), ('wtWebioEA12x6RelERPSessCntrl-Session', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPSessCntrlConfigMode.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_sess_cntrl_logout = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 2, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPSessCntrlLogout.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_sess_cntrl_admin_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 2, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPSessCntrlAdminPassword.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_sess_cntrl_config_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 2, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPSessCntrlConfigPassword.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_device_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPDeviceName.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_device_text = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPDeviceText.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_device_location = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPDeviceLocation.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_device_contact = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPDeviceContact.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPTzOffsetHrs.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPTzOffsetMin.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPTzEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_st_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPStTzOffsetHrs.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_st_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPStTzOffsetMin.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_st_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPStTzEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_st_tz_start_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA12x6RelERPStartMonth-January', 1), ('wtWebioEA12x6RelERPStartMonth-February', 2), ('wtWebioEA12x6RelERPStartMonth-March', 3), ('wtWebioEA12x6RelERPStartMonth-April', 4), ('wtWebioEA12x6RelERPStartMonth-May', 5), ('wtWebioEA12x6RelERPStartMonth-June', 6), ('wtWebioEA12x6RelERPStartMonth-July', 7), ('wtWebioEA12x6RelERPStartMonth-August', 8), ('wtWebioEA12x6RelERPStartMonth-September', 9), ('wtWebioEA12x6RelERPStartMonth-October', 10), ('wtWebioEA12x6RelERPStartMonth-November', 11), ('wtWebioEA12x6RelERPStartMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPStTzStartMonth.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_st_tz_start_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtWebioEA12x6RelERPStartMode-first', 1), ('wtWebioEA12x6RelERPStartMode-second', 2), ('wtWebioEA12x6RelERPStartMode-third', 3), ('wtWebioEA12x6RelERPStartMode-fourth', 4), ('wtWebioEA12x6RelERPStartMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPStTzStartMode.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_st_tz_start_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtWebioEA12x6RelERPStartWday-Sunday', 1), ('wtWebioEA12x6RelERPStartWday-Monday', 2), ('wtWebioEA12x6RelERPStartWday-Tuesday', 3), ('wtWebioEA12x6RelERPStartWday-Thursday', 4), ('wtWebioEA12x6RelERPStartWday-Wednesday', 5), ('wtWebioEA12x6RelERPStartWday-Friday', 6), ('wtWebioEA12x6RelERPStartWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPStTzStartWday.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_st_tz_start_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 10), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPStTzStartHrs.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_st_tz_start_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 11), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPStTzStartMin.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_st_tz_stop_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA12x6RelERPStopMonth-January', 1), ('wtWebioEA12x6RelERPStopMonth-February', 2), ('wtWebioEA12x6RelERPStopMonth-March', 3), ('wtWebioEA12x6RelERPStopMonth-April', 4), ('wtWebioEA12x6RelERPStopMonth-May', 5), ('wtWebioEA12x6RelERPStopMonth-June', 6), ('wtWebioEA12x6RelERPStopMonth-July', 7), ('wtWebioEA12x6RelERPStopMonth-August', 8), ('wtWebioEA12x6RelERPStopMonth-September', 9), ('wtWebioEA12x6RelERPStopMonth-October', 10), ('wtWebioEA12x6RelERPStopMonth-November', 11), ('wtWebioEA12x6RelERPStopMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPStTzStopMonth.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_st_tz_stop_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtWebioEA12x6RelERPStopMode-first', 1), ('wtWebioEA12x6RelERPStopMode-second', 2), ('wtWebioEA12x6RelERPStopMode-third', 3), ('wtWebioEA12x6RelERPStopMode-fourth', 4), ('wtWebioEA12x6RelERPStopMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPStTzStopMode.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_st_tz_stop_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtWebioEA12x6RelERPStopWday-Sunday', 1), ('wtWebioEA12x6RelERPStopWday-Monday', 2), ('wtWebioEA12x6RelERPStopWday-Tuesday', 3), ('wtWebioEA12x6RelERPStopWday-Thursday', 4), ('wtWebioEA12x6RelERPStopWday-Wednesday', 5), ('wtWebioEA12x6RelERPStopWday-Friday', 6), ('wtWebioEA12x6RelERPStopWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPStTzStopWday.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_st_tz_stop_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 15), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPStTzStopHrs.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_st_tz_stop_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 1, 16), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPStTzStopMin.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_time_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPTimeServer1.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_time_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 2, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPTimeServer2.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_ts_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 2, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPTsEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_ts_sync_time = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 2, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPTsSyncTime.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_clock_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 3, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 23))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPClockHrs.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_clock_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 3, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 59))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPClockMin.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_clock_day = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 3, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPClockDay.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_clock_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 3, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA12x6RelERPClockMonth-January', 1), ('wtWebioEA12x6RelERPClockMonth-February', 2), ('wtWebioEA12x6RelERPClockMonth-March', 3), ('wtWebioEA12x6RelERPClockMonth-April', 4), ('wtWebioEA12x6RelERPClockMonth-May', 5), ('wtWebioEA12x6RelERPClockMonth-June', 6), ('wtWebioEA12x6RelERPClockMonth-July', 7), ('wtWebioEA12x6RelERPClockMonth-August', 8), ('wtWebioEA12x6RelERPClockMonth-September', 9), ('wtWebioEA12x6RelERPClockMonth-October', 10), ('wtWebioEA12x6RelERPClockMonth-November', 11), ('wtWebioEA12x6RelERPClockMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPClockMonth.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_clock_year = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 2, 3, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPClockYear.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPIpAddress.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_subnet_mask = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPSubnetMask.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_gateway = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPGateway.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_dns_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPDnsServer1.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_dns_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPDnsServer2.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_add_config = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 1, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAddConfig.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_startup = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPStartup.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_get_header_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 2, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPGetHeaderEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_http_input_trigger = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 2, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPHttpInputTrigger.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_http_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 2, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPHttpPort.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_mail_ad_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPMailAdName.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_mail_reply = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPMailReply.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_mail_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPMailServer.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_mail_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPMailEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_mail_authentication = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 3, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPMailAuthentication.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_mail_auth_user = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 3, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPMailAuthUser.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_mail_auth_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 3, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPMailAuthPassword.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_mail_pop3_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 3, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPMailPop3Server.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_snmp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 4, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPSnmpEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_snmp_community_string_read = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 4, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPSnmpCommunityStringRead.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_snmp_community_string_read_write = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 4, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPSnmpCommunityStringReadWrite.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_snmp_system_trap_manager_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 4, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPSnmpSystemTrapManagerIP.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_snmp_system_trap_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 4, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPSnmpSystemTrapEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_udp_admin_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 5, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPUdpAdminPort.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_udp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 5, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPUdpEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_udp_remote_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 5, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPUdpRemotePort.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_mode_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryModeCount.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 2))
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryIfTable.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPBinaryModeNo'))
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryIfEntry.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_mode_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryModeNo.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3))
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryTable.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPBinaryModeNo'))
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryEntry.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_operation_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryOperationMode.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_tcp_server_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryTcpServerLocalPort.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_tcp_server_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryTcpServerInputTrigger.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_tcp_server_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryTcpServerApplicationMode.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_tcp_client_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryTcpClientLocalPort.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_tcp_client_server_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryTcpClientServerPort.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_tcp_client_server_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryTcpClientServerIpAddr.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_tcp_client_server_password = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryTcpClientServerPassword.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_tcp_client_inactivity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryTcpClientInactivity.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_tcp_client_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryTcpClientInputTrigger.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_tcp_client_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryTcpClientInterval.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_tcp_client_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 12), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryTcpClientApplicationMode.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_udp_peer_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryUdpPeerLocalPort.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_udp_peer_remote_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryUdpPeerRemotePort.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_udp_peer_remote_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 15), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryUdpPeerRemoteIpAddr.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_udp_peer_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 16), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryUdpPeerInputTrigger.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_udp_peer_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryUdpPeerInterval.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_udp_peer_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 18), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryUdpPeerApplicationMode.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_connected_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryConnectedPort.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_connected_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 20), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryConnectedIpAddr.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_tcp_server_client_http_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryTcpServerClientHttpPort.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_binary_tcp_client_server_http_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 6, 3, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPBinaryTcpClientServerHttpPort.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_syslog_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 7, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPSyslogServerIP.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_syslog_server_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 7, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPSyslogServerPort.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_syslog_system_messages_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 7, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPSyslogSystemMessagesEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_syslog_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 7, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPSyslogEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_erpftp_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 8, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPFTPServerIP.setStatus('mandatory')
wt_webio_ea12x6_rel_erpftp_server_control_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 8, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPFTPServerControlPort.setStatus('mandatory')
wt_webio_ea12x6_rel_erpftp_user_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 8, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPFTPUserName.setStatus('mandatory')
wt_webio_ea12x6_rel_erpftp_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 8, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPFTPPassword.setStatus('mandatory')
wt_webio_ea12x6_rel_erpftp_account = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 8, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPFTPAccount.setStatus('mandatory')
wt_webio_ea12x6_rel_erpftp_option = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 8, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPFTPOption.setStatus('mandatory')
wt_webio_ea12x6_rel_erpftp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 8, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPFTPEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_way_back_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 10, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPWayBackEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_way_back_server_control_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 10, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPWayBackServerControlPort.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_way_back_ftp_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 10, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPWayBackFTPPassword.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_way_back_ftp_response = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 10, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPWayBackFTPResponse.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_way_back_ftp_time_out = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 3, 10, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPWayBackFTPTimeOut.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_output_mode_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 4, 1))
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPOutputModeTable.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_output_mode_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 4, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPOutputNo'))
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPOutputModeEntry.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_output_mode_bit = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 4, 1, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPOutputModeBit.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_safety_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 4, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPSafetyTimeout.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmCount.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 2))
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmIfTable.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmNo'))
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmIfEntry.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 12))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmNo.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3))
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmTable.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmNo'))
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmEntry.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(12, 12)).setFixedLength(12)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmInputTrigger.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_output_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(12, 12)).setFixedLength(12)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmOutputTrigger.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_system_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmSystemTrigger.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_max_counter_value = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmMaxCounterValue.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmInterval.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmEnable.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_mail_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmMailAddr.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_mail_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmMailSubject.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_mail_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 9), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmMailText.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_snmp_manager_ip = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 10), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmSnmpManagerIP.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_snmp_trap_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 11), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmSnmpTrapText.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_udp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 12), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmUdpIpAddr.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_udp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmUdpPort.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_udp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 14), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmUdpText.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_tcp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 15), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmTcpIpAddr.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_tcp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmTcpPort.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_tcp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 17), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmTcpText.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_syslog_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 18), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmSyslogIpAddr.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_syslog_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmSyslogPort.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_syslog_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 20), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmSyslogText.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_ftp_data_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 21), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmFtpDataPort.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_ftp_file_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 22), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmFtpFileName.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_ftp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 23), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmFtpText.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_ftp_option = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 24), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmFtpOption.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_timer_cron = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 25), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmTimerCron.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_mail_release_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 26), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmMailReleaseSubject.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_mail_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 27), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmMailReleaseText.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_snmp_trap_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 28), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_udp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 29), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmUdpReleaseText.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_tcp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 30), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmTcpReleaseText.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_syslog_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 31), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmSyslogReleaseText.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alarm_ftp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 1, 5, 3, 1, 32), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPAlarmFtpReleaseText.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_input_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 1))
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPInputPortTable.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_input_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPInputNo'))
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPInputPortEntry.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_port_input_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPPortInputName.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_port_input_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPPortInputText.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_port_input_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPPortInputMode.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_port_input_filter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 1, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPPortInputFilter.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_port_input_bicount_pulse_polarity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPPortInputBicountPulsePolarity.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_port_input_bicount_inactiv_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 1, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPPortInputBicountInactivTimeout.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_output_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2))
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPOutputPortTable.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_output_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPOutputNo'))
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPOutputPortEntry.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_port_output_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPPortOutputName.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_port_output_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPPortOutputText.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_port_output_group_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPPortOutputGroupMode.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_port_output_safety_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPPortOutputSafetyState.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_port_logic_input_mask = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPPortLogicInputMask.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_port_logic_input_inverter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPPortLogicInputInverter.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_port_logic_function = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPPortLogicFunction.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_port_logic_output_inverter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPPortLogicOutputInverter.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_port_pulse_duration = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPPortPulseDuration.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_port_pulse_polarity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 2, 2, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPPortPulsePolarity.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_mf_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPMfName.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_mf_addr = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPMfAddr.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_mf_hotline = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPMfHotline.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_mf_internet = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPMfInternet.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_mf_device_typ = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 3, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPMfDeviceTyp.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_mf_order_no = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 3, 3, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPMfOrderNo.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_diag_error_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPDiagErrorCount.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_diag_binary_error = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 4, 2), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPDiagBinaryError.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_diag_error_index = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 4, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPDiagErrorIndex.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_diag_error_message = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 4, 4), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPDiagErrorMessage.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_diag_error_clear = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26, 4, 5), integer32()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
wtWebioEA12x6RelERPDiagErrorClear.setStatus('mandatory')
wt_webio_ea12x6_rel_erp_alert1 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 41)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_erp_alert2 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 42)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_erp_alert3 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 43)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_erp_alert4 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 44)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_erp_alert5 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 45)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_erp_alert6 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 46)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_erp_alert7 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 47)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_erp_alert8 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 48)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_erp_alert9 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 49)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_erp_alert10 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 50)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_erp_alert11 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 51)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_erp_alert12 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 52)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapText'))
wt_webio_ea12x6_rel_erp_alert13 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 71)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_erp_alert14 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 72)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_erp_alert15 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 73)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_erp_alert16 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 74)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_erp_alert17 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 75)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_erp_alert18 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 76)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_erp_alert19 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 77)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_erp_alert20 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 78)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_erp_alert21 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 79)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_erp_alert22 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 80)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_erp_alert23 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 81)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_erp_alert24 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 82)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText'))
wt_webio_ea12x6_rel_erp_alert_diag = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 26) + (0, 110)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPDiagErrorIndex'), ('Webio-Digital-MIB-US', 'wtWebioEA12x6RelERPDiagErrorMessage'))
wt_ip_watcher_inputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcherInputs.setStatus('mandatory')
wt_ip_watcher_outputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcherOutputs.setStatus('mandatory')
wt_ip_watcher_input_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 3))
if mibBuilder.loadTexts:
wtIpWatcherInputTable.setStatus('mandatory')
wt_ip_watcher_input_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtIpWatcherInputNo'))
if mibBuilder.loadTexts:
wtIpWatcherInputEntry.setStatus('mandatory')
wt_ip_watcher_input_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcherInputNo.setStatus('mandatory')
wt_ip_watcher_input_counter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcherInputCounter.setStatus('mandatory')
wt_ip_watcher_input_counter_clear = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 3, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcherInputCounterClear.setStatus('mandatory')
wt_ip_watcher_input_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtIpWatcherInputState-OFF', 0), ('wtIpWatcherInputState-ON', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcherInputState.setStatus('mandatory')
wt_ip_watcher_input_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcherInputValue.setStatus('mandatory')
wt_ip_watcher_output_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 5))
if mibBuilder.loadTexts:
wtIpWatcherOutputTable.setStatus('mandatory')
wt_ip_watcher_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 5, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtIpWatcherOutputNo'))
if mibBuilder.loadTexts:
wtIpWatcherOutputEntry.setStatus('mandatory')
wt_ip_watcher_output_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcherOutputNo.setStatus('mandatory')
wt_ip_watcher_output_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 5, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtIpWatcherOutputState-OFF', 0), ('wtIpWatcherOutputState-ON', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherOutputState.setStatus('mandatory')
wt_ip_watcher_output_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherOutputValue.setStatus('mandatory')
wt_ip_watcher_set_output = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherSetOutput.setStatus('mandatory')
wt_ip_watcher_alarm_output_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 8))
if mibBuilder.loadTexts:
wtIpWatcherAlarmOutputTable.setStatus('mandatory')
wt_ip_watcher_alarm_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 8, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtIpWatcherAlarmNo'))
if mibBuilder.loadTexts:
wtIpWatcherAlarmOutputEntry.setStatus('mandatory')
wt_ip_watcher_alarm_output_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 8, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtIpWatcherAlarmOutputState-OFF', 0), ('wtIpWatcherAlarmOutputState-ON', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmOutputState.setStatus('mandatory')
wt_ip_watcher_alarm_trigger_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 1, 8, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtIpWatcherAlarmTriggerState-OFF', 0), ('wtIpWatcherAlarmTriggerState-ON', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcherAlarmTriggerState.setStatus('mandatory')
wt_ip_watcher_sess_cntrl_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherSessCntrlPassword.setStatus('mandatory')
wt_ip_watcher_sess_cntrl_config_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtIpWatcherSessCntrl-NoSession', 0), ('wtIpWatcherSessCntrl-Session', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcherSessCntrlConfigMode.setStatus('mandatory')
wt_ip_watcher_sess_cntrl_logout = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 2, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherSessCntrlLogout.setStatus('mandatory')
wt_ip_watcher_sess_cntrl_admin_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 2, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherSessCntrlAdminPassword.setStatus('mandatory')
wt_ip_watcher_sess_cntrl_config_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 2, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherSessCntrlConfigPassword.setStatus('mandatory')
wt_ip_watcher_device_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherDeviceName.setStatus('mandatory')
wt_ip_watcher_device_text = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherDeviceText.setStatus('mandatory')
wt_ip_watcher_device_location = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherDeviceLocation.setStatus('mandatory')
wt_ip_watcher_device_contact = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherDeviceContact.setStatus('mandatory')
wt_ip_watcher_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherTzOffsetHrs.setStatus('mandatory')
wt_ip_watcher_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherTzOffsetMin.setStatus('mandatory')
wt_ip_watcher_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherTzEnable.setStatus('mandatory')
wt_ip_watcher_st_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherStTzOffsetHrs.setStatus('mandatory')
wt_ip_watcher_st_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherStTzOffsetMin.setStatus('mandatory')
wt_ip_watcher_st_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherStTzEnable.setStatus('mandatory')
wt_ip_watcher_st_tz_start_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtIpWatcherStartMonth-January', 1), ('wtIpWatcherStartMonth-February', 2), ('wtIpWatcherStartMonth-March', 3), ('wtIpWatcherStartMonth-April', 4), ('wtIpWatcherStartMonth-May', 5), ('wtIpWatcherStartMonth-June', 6), ('wtIpWatcherStartMonth-July', 7), ('wtIpWatcherStartMonth-August', 8), ('wtIpWatcherStartMonth-September', 9), ('wtIpWatcherStartMonth-October', 10), ('wtIpWatcherStartMonth-November', 11), ('wtIpWatcherStartMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherStTzStartMonth.setStatus('mandatory')
wt_ip_watcher_st_tz_start_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtIpWatcherStartMode-first', 1), ('wtIpWatcherStartMode-second', 2), ('wtIpWatcherStartMode-third', 3), ('wtIpWatcherStartMode-fourth', 4), ('wtIpWatcherStartMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherStTzStartMode.setStatus('mandatory')
wt_ip_watcher_st_tz_start_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtIpWatcherStartWday-Sunday', 1), ('wtIpWatcherStartWday-Monday', 2), ('wtIpWatcherStartWday-Tuesday', 3), ('wtIpWatcherStartWday-Thursday', 4), ('wtIpWatcherStartWday-Wednesday', 5), ('wtIpWatcherStartWday-Friday', 6), ('wtIpWatcherStartWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherStTzStartWday.setStatus('mandatory')
wt_ip_watcher_st_tz_start_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 10), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherStTzStartHrs.setStatus('mandatory')
wt_ip_watcher_st_tz_start_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 11), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherStTzStartMin.setStatus('mandatory')
wt_ip_watcher_st_tz_stop_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtIpWatcherStopMonth-January', 1), ('wtIpWatcherStopMonth-February', 2), ('wtIpWatcherStopMonth-March', 3), ('wtIpWatcherStopMonth-April', 4), ('wtIpWatcherStopMonth-May', 5), ('wtIpWatcherStopMonth-June', 6), ('wtIpWatcherStopMonth-July', 7), ('wtIpWatcherStopMonth-August', 8), ('wtIpWatcherStopMonth-September', 9), ('wtIpWatcherStopMonth-October', 10), ('wtIpWatcherStopMonth-November', 11), ('wtIpWatcherStopMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherStTzStopMonth.setStatus('mandatory')
wt_ip_watcher_st_tz_stop_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtIpWatcherStopMode-first', 1), ('wtIpWatcherStopMode-second', 2), ('wtIpWatcherStopMode-third', 3), ('wtIpWatcherStopMode-fourth', 4), ('wtIpWatcherStopMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherStTzStopMode.setStatus('mandatory')
wt_ip_watcher_st_tz_stop_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtIpWatcherStopWday-Sunday', 1), ('wtIpWatcherStopWday-Monday', 2), ('wtIpWatcherStopWday-Tuesday', 3), ('wtIpWatcherStopWday-Thursday', 4), ('wtIpWatcherStopWday-Wednesday', 5), ('wtIpWatcherStopWday-Friday', 6), ('wtIpWatcherStopWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherStTzStopWday.setStatus('mandatory')
wt_ip_watcher_st_tz_stop_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 15), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherStTzStopHrs.setStatus('mandatory')
wt_ip_watcher_st_tz_stop_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 1, 16), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherStTzStopMin.setStatus('mandatory')
wt_ip_watcher_time_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherTimeServer1.setStatus('mandatory')
wt_ip_watcher_time_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 2, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherTimeServer2.setStatus('mandatory')
wt_ip_watcher_ts_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 2, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherTsEnable.setStatus('mandatory')
wt_ip_watcher_ts_sync_time = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 2, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherTsSyncTime.setStatus('mandatory')
wt_ip_watcher_clock_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 3, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 23))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherClockHrs.setStatus('mandatory')
wt_ip_watcher_clock_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 3, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 59))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherClockMin.setStatus('mandatory')
wt_ip_watcher_clock_day = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 3, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherClockDay.setStatus('mandatory')
wt_ip_watcher_clock_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 3, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtIpWatcherClockMonth-January', 1), ('wtIpWatcherClockMonth-February', 2), ('wtIpWatcherClockMonth-March', 3), ('wtIpWatcherClockMonth-April', 4), ('wtIpWatcherClockMonth-May', 5), ('wtIpWatcherClockMonth-June', 6), ('wtIpWatcherClockMonth-July', 7), ('wtIpWatcherClockMonth-August', 8), ('wtIpWatcherClockMonth-September', 9), ('wtIpWatcherClockMonth-October', 10), ('wtIpWatcherClockMonth-November', 11), ('wtIpWatcherClockMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherClockMonth.setStatus('mandatory')
wt_ip_watcher_clock_year = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 2, 3, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherClockYear.setStatus('mandatory')
wt_ip_watcher_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherIpAddress.setStatus('mandatory')
wt_ip_watcher_subnet_mask = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherSubnetMask.setStatus('mandatory')
wt_ip_watcher_gateway = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherGateway.setStatus('mandatory')
wt_ip_watcher_dns_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherDnsServer1.setStatus('mandatory')
wt_ip_watcher_dns_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherDnsServer2.setStatus('mandatory')
wt_ip_watcher_add_config = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 1, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAddConfig.setStatus('mandatory')
wt_ip_watcher_http_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 2, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherHttpPort.setStatus('mandatory')
wt_ip_watcher_mail_ad_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherMailAdName.setStatus('mandatory')
wt_ip_watcher_mail_reply = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherMailReply.setStatus('mandatory')
wt_ip_watcher_mail_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherMailServer.setStatus('mandatory')
wt_ip_watcher_mail_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherMailEnable.setStatus('mandatory')
wt_ip_watcher_mail_authentication = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 3, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherMailAuthentication.setStatus('mandatory')
wt_ip_watcher_mail_auth_user = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 3, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherMailAuthUser.setStatus('mandatory')
wt_ip_watcher_mail_auth_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 3, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherMailAuthPassword.setStatus('mandatory')
wt_ip_watcher_mail_pop3_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 3, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherMailPop3Server.setStatus('mandatory')
wt_ip_watcher_snmp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 4, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherSnmpEnable.setStatus('mandatory')
wt_ip_watcher_snmp_community_string_read = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 4, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherSnmpCommunityStringRead.setStatus('mandatory')
wt_ip_watcher_snmp_community_string_read_write = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 4, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherSnmpCommunityStringReadWrite.setStatus('mandatory')
wt_ip_watcher_snmp_system_trap_manager_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 4, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherSnmpSystemTrapManagerIP.setStatus('mandatory')
wt_ip_watcher_snmp_system_trap_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 4, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherSnmpSystemTrapEnable.setStatus('mandatory')
wt_ip_watcher_udp_admin_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 5, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherUdpAdminPort.setStatus('mandatory')
wt_ip_watcher_udp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 5, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherUdpEnable.setStatus('mandatory')
wt_ip_watcher_udp_remote_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 5, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherUdpRemotePort.setStatus('mandatory')
wt_ip_watcher_syslog_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 7, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherSyslogServerIP.setStatus('mandatory')
wt_ip_watcher_syslog_server_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 7, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherSyslogServerPort.setStatus('mandatory')
wt_ip_watcher_syslog_system_messages_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 7, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherSyslogSystemMessagesEnable.setStatus('mandatory')
wt_ip_watcher_syslog_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 7, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherSyslogEnable.setStatus('mandatory')
wt_ip_watcher_ftp_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 8, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherFTPServerIP.setStatus('mandatory')
wt_ip_watcher_ftp_server_control_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 8, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherFTPServerControlPort.setStatus('mandatory')
wt_ip_watcher_ftp_user_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 8, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherFTPUserName.setStatus('mandatory')
wt_ip_watcher_ftp_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 8, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherFTPPassword.setStatus('mandatory')
wt_ip_watcher_ftp_account = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 8, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherFTPAccount.setStatus('mandatory')
wt_ip_watcher_ftp_option = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 8, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherFTPOption.setStatus('mandatory')
wt_ip_watcher_ftp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 8, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherFTPEnable.setStatus('mandatory')
wt_ip_watcher_ip_list_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcherIpListCount.setStatus('mandatory')
wt_ip_watcher_ip_list_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11, 2))
if mibBuilder.loadTexts:
wtIpWatcherIpListIfTable.setStatus('mandatory')
wt_ip_watcher_ip_list_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtIpWatcherIpListNo'))
if mibBuilder.loadTexts:
wtIpWatcherIpListIfEntry.setStatus('mandatory')
wt_ip_watcher_ip_list_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 999))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcherIpListNo.setStatus('mandatory')
wt_ip_watcher_ip_list_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11, 3))
if mibBuilder.loadTexts:
wtIpWatcherIpListTable.setStatus('mandatory')
wt_ip_watcher_ip_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtIpWatcherIpListNo'))
if mibBuilder.loadTexts:
wtIpWatcherIpListEntry.setStatus('mandatory')
wt_ip_watcher_ip_list_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11, 3, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherIpListName.setStatus('mandatory')
wt_ip_watcher_ip_list_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11, 3, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherIpListPort.setStatus('mandatory')
wt_ip_watcher_ip_list_service = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11, 3, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherIpListService.setStatus('mandatory')
wt_ip_watcher_ip_list_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherIpListEnable.setStatus('mandatory')
wt_ip_watcher_ip_list_alias = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 3, 11, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherIpListAlias.setStatus('mandatory')
wt_ip_watcher_alarm_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcherAlarmCount.setStatus('mandatory')
wt_ip_watcher_alarm_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 2))
if mibBuilder.loadTexts:
wtIpWatcherAlarmIfTable.setStatus('mandatory')
wt_ip_watcher_alarm_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtIpWatcherAlarmNo'))
if mibBuilder.loadTexts:
wtIpWatcherAlarmIfEntry.setStatus('mandatory')
wt_ip_watcher_alarm_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcherAlarmNo.setStatus('mandatory')
wt_ip_watcher_alarm_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3))
if mibBuilder.loadTexts:
wtIpWatcherAlarmTable.setStatus('mandatory')
wt_ip_watcher_alarm_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtIpWatcherAlarmNo'))
if mibBuilder.loadTexts:
wtIpWatcherAlarmEntry.setStatus('mandatory')
wt_ip_watcher_alarm_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmInterval.setStatus('mandatory')
wt_ip_watcher_alarm_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmEnable.setStatus('mandatory')
wt_ip_watcher_alarm_mail_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmMailAddr.setStatus('mandatory')
wt_ip_watcher_alarm_mail_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmMailSubject.setStatus('mandatory')
wt_ip_watcher_alarm_mail_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 9), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmMailText.setStatus('mandatory')
wt_ip_watcher_alarm_snmp_manager_ip = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 10), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmSnmpManagerIP.setStatus('mandatory')
wt_ip_watcher_alarm_snmp_trap_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 11), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmSnmpTrapText.setStatus('mandatory')
wt_ip_watcher_alarm_udp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 12), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmUdpIpAddr.setStatus('mandatory')
wt_ip_watcher_alarm_udp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmUdpPort.setStatus('mandatory')
wt_ip_watcher_alarm_udp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 14), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmUdpText.setStatus('mandatory')
wt_ip_watcher_alarm_tcp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 15), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmTcpIpAddr.setStatus('mandatory')
wt_ip_watcher_alarm_tcp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmTcpPort.setStatus('mandatory')
wt_ip_watcher_alarm_tcp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 17), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmTcpText.setStatus('mandatory')
wt_ip_watcher_alarm_syslog_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 18), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmSyslogIpAddr.setStatus('mandatory')
wt_ip_watcher_alarm_syslog_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmSyslogPort.setStatus('mandatory')
wt_ip_watcher_alarm_syslog_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 20), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmSyslogText.setStatus('mandatory')
wt_ip_watcher_alarm_ftp_data_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 21), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmFtpDataPort.setStatus('mandatory')
wt_ip_watcher_alarm_ftp_file_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 22), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmFtpFileName.setStatus('mandatory')
wt_ip_watcher_alarm_ftp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 23), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmFtpText.setStatus('mandatory')
wt_ip_watcher_alarm_ftp_option = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 24), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmFtpOption.setStatus('mandatory')
wt_ip_watcher_alarm_timer_cron = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 25), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmTimerCron.setStatus('mandatory')
wt_ip_watcher_alarm_mail_release_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 26), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmMailReleaseSubject.setStatus('mandatory')
wt_ip_watcher_alarm_mail_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 27), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmMailReleaseText.setStatus('mandatory')
wt_ip_watcher_alarm_snmp_trap_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 28), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmSnmpTrapReleaseText.setStatus('mandatory')
wt_ip_watcher_alarm_udp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 29), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmUdpReleaseText.setStatus('mandatory')
wt_ip_watcher_alarm_tcp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 30), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmTcpReleaseText.setStatus('mandatory')
wt_ip_watcher_alarm_syslog_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 31), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmSyslogReleaseText.setStatus('mandatory')
wt_ip_watcher_alarm_ftp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 32), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmFtpReleaseText.setStatus('mandatory')
wt_ip_watcher_alarm_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 33), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmName.setStatus('mandatory')
wt_ip_watcher_alarm_global_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 34), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmGlobalEnable.setStatus('mandatory')
wt_ip_watcher_alarm_counter_clear = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 35), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmCounterClear.setStatus('mandatory')
wt_ip_watcher_alarm_ack_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 36), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmAckEnable.setStatus('mandatory')
wt_ip_watcher_alarm_ack_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 37), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmAckPort.setStatus('mandatory')
wt_ip_watcher_alarm_set_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 38), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmSetPort.setStatus('mandatory')
wt_ip_watcher_alarm_mail_trg_clear_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 39), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmMailTrgClearSubject.setStatus('mandatory')
wt_ip_watcher_alarm_mail_trg_clear_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 40), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmMailTrgClearText.setStatus('mandatory')
wt_ip_watcher_alarm_snmp_trap_trg_clear_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 41), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmSnmpTrapTrgClearText.setStatus('mandatory')
wt_ip_watcher_alarm_udp_trg_clear_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 42), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmUdpTrgClearText.setStatus('mandatory')
wt_ip_watcher_alarm_tcp_trg_clear_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 43), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmTcpTrgClearText.setStatus('mandatory')
wt_ip_watcher_alarm_syslog_trg_clear_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 44), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmSyslogTrgClearText.setStatus('mandatory')
wt_ip_watcher_alarm_ftp_trg_clear_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 45), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmFtpTrgClearText.setStatus('mandatory')
wt_ip_watcher_alarm_mail_trap_tx_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 46), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmMailTrapTxEnable.setStatus('mandatory')
wt_ip_watcher_alarm_snmp_trap_trap_tx_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 47), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmSnmpTrapTrapTxEnable.setStatus('mandatory')
wt_ip_watcher_alarm_udp_trap_tx_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 48), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmUdpTrapTxEnable.setStatus('mandatory')
wt_ip_watcher_alarm_tcp_trap_tx_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 49), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmTcpTrapTxEnable.setStatus('mandatory')
wt_ip_watcher_alarm_syslog_trap_tx_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 50), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmSyslogTrapTxEnable.setStatus('mandatory')
wt_ip_watcher_alarm_ftp_trap_tx_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 51), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmFtpTrapTxEnable.setStatus('mandatory')
wt_ip_watcher_alarm_trigger_count = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 52), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmTriggerCount.setStatus('mandatory')
wt_ip_watcher_alarm_polling_rate = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 1, 5, 3, 1, 53), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherAlarmPollingRate.setStatus('mandatory')
wt_ip_watcher_input_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2, 1))
if mibBuilder.loadTexts:
wtIpWatcherInputPortTable.setStatus('mandatory')
wt_ip_watcher_input_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtIpWatcherInputNo'))
if mibBuilder.loadTexts:
wtIpWatcherInputPortEntry.setStatus('mandatory')
wt_ip_watcher_port_input_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherPortInputName.setStatus('mandatory')
wt_ip_watcher_port_input_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherPortInputText.setStatus('mandatory')
wt_ip_watcher_port_input_filter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2, 1, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherPortInputFilter.setStatus('mandatory')
wt_ip_watcher_output_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2, 2))
if mibBuilder.loadTexts:
wtIpWatcherOutputPortTable.setStatus('mandatory')
wt_ip_watcher_output_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtIpWatcherOutputNo'))
if mibBuilder.loadTexts:
wtIpWatcherOutputPortEntry.setStatus('mandatory')
wt_ip_watcher_port_output_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2, 2, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherPortOutputName.setStatus('mandatory')
wt_ip_watcher_port_output_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2, 2, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherPortOutputText.setStatus('mandatory')
wt_ip_watcher_port_pulse_duration = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2, 2, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherPortPulseDuration.setStatus('mandatory')
wt_ip_watcher_port_pulse_polarity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 2, 2, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherPortPulsePolarity.setStatus('mandatory')
wt_ip_watcher_mf_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherMfName.setStatus('mandatory')
wt_ip_watcher_mf_addr = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherMfAddr.setStatus('mandatory')
wt_ip_watcher_mf_hotline = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherMfHotline.setStatus('mandatory')
wt_ip_watcher_mf_internet = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherMfInternet.setStatus('mandatory')
wt_ip_watcher_mf_device_typ = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 3, 3, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherMfDeviceTyp.setStatus('mandatory')
wt_ip_watcher_diag_error_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcherDiagErrorCount.setStatus('mandatory')
wt_ip_watcher_diag_binary_error = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 4, 2), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcherDiagBinaryError.setStatus('mandatory')
wt_ip_watcher_diag_error_index = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 4, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcherDiagErrorIndex.setStatus('mandatory')
wt_ip_watcher_diag_error_message = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 4, 4), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcherDiagErrorMessage.setStatus('mandatory')
wt_ip_watcher_diag_error_clear = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27, 4, 5), integer32()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
wtIpWatcherDiagErrorClear.setStatus('mandatory')
wt_ip_watcher_alert1 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 41)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapText'))
wt_ip_watcher_alert2 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 42)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapText'))
wt_ip_watcher_alert3 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 43)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapText'))
wt_ip_watcher_alert4 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 44)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapText'))
wt_ip_watcher_alert5 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 45)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapText'))
wt_ip_watcher_alert6 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 46)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapText'))
wt_ip_watcher_alert7 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 47)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapText'))
wt_ip_watcher_alert8 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 48)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapText'))
wt_ip_watcher_alert9 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 49)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapText'))
wt_ip_watcher_alert10 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 50)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapText'))
wt_ip_watcher_alert11 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 51)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapText'))
wt_ip_watcher_alert12 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 52)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapText'))
wt_ip_watcher_alert13 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 71)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapReleaseText'))
wt_ip_watcher_alert14 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 72)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapReleaseText'))
wt_ip_watcher_alert15 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 73)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapReleaseText'))
wt_ip_watcher_alert16 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 74)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapReleaseText'))
wt_ip_watcher_alert17 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 75)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapReleaseText'))
wt_ip_watcher_alert18 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 76)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapReleaseText'))
wt_ip_watcher_alert19 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 77)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapReleaseText'))
wt_ip_watcher_alert20 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 78)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapReleaseText'))
wt_ip_watcher_alert21 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 79)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapReleaseText'))
wt_ip_watcher_alert22 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 80)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapReleaseText'))
wt_ip_watcher_alert23 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 81)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapReleaseText'))
wt_ip_watcher_alert24 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 82)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapReleaseText'))
wt_ip_watcher_alert25 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 91)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_alert26 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 92)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_alert27 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 93)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_alert28 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 94)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_alert29 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 95)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_alert30 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 96)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_alert31 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 97)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_alert32 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 98)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_alert33 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 99)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_alert34 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 100)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_alert35 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 101)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_alert36 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 102)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_alert_diag = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 27) + (0, 110)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcherDiagErrorIndex'), ('Webio-Digital-MIB-US', 'wtIpWatcherDiagErrorMessage'))
wt_webio_ea2x2_24_v_inputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VInputs.setStatus('mandatory')
wt_webio_ea2x2_24_v_outputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VOutputs.setStatus('mandatory')
wt_webio_ea2x2_24_v_input_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 3))
if mibBuilder.loadTexts:
wtWebioEA2x2_24VInputTable.setStatus('mandatory')
wt_webio_ea2x2_24_v_input_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2_24VInputNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2_24VInputEntry.setStatus('mandatory')
wt_webio_ea2x2_24_v_input_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VInputNo.setStatus('mandatory')
wt_webio_ea2x2_24_v_input_counter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VInputCounter.setStatus('mandatory')
wt_webio_ea2x2_24_v_input_counter_clear = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 3, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VInputCounterClear.setStatus('mandatory')
wt_webio_ea2x2_24_v_input_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA2x2_24VInputState-OFF', 0), ('wtWebioEA2x2_24VInputState-ON', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VInputState.setStatus('mandatory')
wt_webio_ea2x2_24_v_input_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VInputValue.setStatus('mandatory')
wt_webio_ea2x2_24_v_output_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 5))
if mibBuilder.loadTexts:
wtWebioEA2x2_24VOutputTable.setStatus('mandatory')
wt_webio_ea2x2_24_v_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 5, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2_24VOutputNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2_24VOutputEntry.setStatus('mandatory')
wt_webio_ea2x2_24_v_output_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VOutputNo.setStatus('mandatory')
wt_webio_ea2x2_24_v_output_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 5, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA2x2_24VOutputState-OFF', 0), ('wtWebioEA2x2_24VOutputState-ON', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VOutputState.setStatus('mandatory')
wt_webio_ea2x2_24_v_output_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VOutputValue.setStatus('mandatory')
wt_webio_ea2x2_24_v_set_output = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VSetOutput.setStatus('mandatory')
wt_webio_ea2x2_24_v_sess_cntrl_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VSessCntrlPassword.setStatus('mandatory')
wt_webio_ea2x2_24_v_sess_cntrl_config_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA2x2_24VSessCntrl-NoSession', 0), ('wtWebioEA2x2_24VSessCntrl-Session', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VSessCntrlConfigMode.setStatus('mandatory')
wt_webio_ea2x2_24_v_sess_cntrl_logout = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 2, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VSessCntrlLogout.setStatus('mandatory')
wt_webio_ea2x2_24_v_sess_cntrl_admin_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 2, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VSessCntrlAdminPassword.setStatus('mandatory')
wt_webio_ea2x2_24_v_sess_cntrl_config_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 2, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VSessCntrlConfigPassword.setStatus('mandatory')
wt_webio_ea2x2_24_v_device_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VDeviceName.setStatus('mandatory')
wt_webio_ea2x2_24_v_device_text = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VDeviceText.setStatus('mandatory')
wt_webio_ea2x2_24_v_device_location = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VDeviceLocation.setStatus('mandatory')
wt_webio_ea2x2_24_v_device_contact = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VDeviceContact.setStatus('mandatory')
wt_webio_ea2x2_24_v_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VTzOffsetHrs.setStatus('mandatory')
wt_webio_ea2x2_24_v_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VTzOffsetMin.setStatus('mandatory')
wt_webio_ea2x2_24_v_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VTzEnable.setStatus('mandatory')
wt_webio_ea2x2_24_v_st_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VStTzOffsetHrs.setStatus('mandatory')
wt_webio_ea2x2_24_v_st_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VStTzOffsetMin.setStatus('mandatory')
wt_webio_ea2x2_24_v_st_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VStTzEnable.setStatus('mandatory')
wt_webio_ea2x2_24_v_st_tz_start_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA2x2_24VStartMonth-January', 1), ('wtWebioEA2x2_24VStartMonth-February', 2), ('wtWebioEA2x2_24VStartMonth-March', 3), ('wtWebioEA2x2_24VStartMonth-April', 4), ('wtWebioEA2x2_24VStartMonth-May', 5), ('wtWebioEA2x2_24VStartMonth-June', 6), ('wtWebioEA2x2_24VStartMonth-July', 7), ('wtWebioEA2x2_24VStartMonth-August', 8), ('wtWebioEA2x2_24VStartMonth-September', 9), ('wtWebioEA2x2_24VStartMonth-October', 10), ('wtWebioEA2x2_24VStartMonth-November', 11), ('wtWebioEA2x2_24VStartMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VStTzStartMonth.setStatus('mandatory')
wt_webio_ea2x2_24_v_st_tz_start_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtWebioEA2x2_24VStartMode-first', 1), ('wtWebioEA2x2_24VStartMode-second', 2), ('wtWebioEA2x2_24VStartMode-third', 3), ('wtWebioEA2x2_24VStartMode-fourth', 4), ('wtWebioEA2x2_24VStartMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VStTzStartMode.setStatus('mandatory')
wt_webio_ea2x2_24_v_st_tz_start_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtWebioEA2x2_24VStartWday-Sunday', 1), ('wtWebioEA2x2_24VStartWday-Monday', 2), ('wtWebioEA2x2_24VStartWday-Tuesday', 3), ('wtWebioEA2x2_24VStartWday-Thursday', 4), ('wtWebioEA2x2_24VStartWday-Wednesday', 5), ('wtWebioEA2x2_24VStartWday-Friday', 6), ('wtWebioEA2x2_24VStartWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VStTzStartWday.setStatus('mandatory')
wt_webio_ea2x2_24_v_st_tz_start_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 10), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VStTzStartHrs.setStatus('mandatory')
wt_webio_ea2x2_24_v_st_tz_start_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 11), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VStTzStartMin.setStatus('mandatory')
wt_webio_ea2x2_24_v_st_tz_stop_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA2x2_24VStopMonth-January', 1), ('wtWebioEA2x2_24VStopMonth-February', 2), ('wtWebioEA2x2_24VStopMonth-March', 3), ('wtWebioEA2x2_24VStopMonth-April', 4), ('wtWebioEA2x2_24VStopMonth-May', 5), ('wtWebioEA2x2_24VStopMonth-June', 6), ('wtWebioEA2x2_24VStopMonth-July', 7), ('wtWebioEA2x2_24VStopMonth-August', 8), ('wtWebioEA2x2_24VStopMonth-September', 9), ('wtWebioEA2x2_24VStopMonth-October', 10), ('wtWebioEA2x2_24VStopMonth-November', 11), ('wtWebioEA2x2_24VStopMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VStTzStopMonth.setStatus('mandatory')
wt_webio_ea2x2_24_v_st_tz_stop_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtWebioEA2x2_24VStopMode-first', 1), ('wtWebioEA2x2_24VStopMode-second', 2), ('wtWebioEA2x2_24VStopMode-third', 3), ('wtWebioEA2x2_24VStopMode-fourth', 4), ('wtWebioEA2x2_24VStopMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VStTzStopMode.setStatus('mandatory')
wt_webio_ea2x2_24_v_st_tz_stop_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtWebioEA2x2_24VStopWday-Sunday', 1), ('wtWebioEA2x2_24VStopWday-Monday', 2), ('wtWebioEA2x2_24VStopWday-Tuesday', 3), ('wtWebioEA2x2_24VStopWday-Thursday', 4), ('wtWebioEA2x2_24VStopWday-Wednesday', 5), ('wtWebioEA2x2_24VStopWday-Friday', 6), ('wtWebioEA2x2_24VStopWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VStTzStopWday.setStatus('mandatory')
wt_webio_ea2x2_24_v_st_tz_stop_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 15), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VStTzStopHrs.setStatus('mandatory')
wt_webio_ea2x2_24_v_st_tz_stop_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 1, 16), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VStTzStopMin.setStatus('mandatory')
wt_webio_ea2x2_24_v_time_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VTimeServer1.setStatus('mandatory')
wt_webio_ea2x2_24_v_time_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 2, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VTimeServer2.setStatus('mandatory')
wt_webio_ea2x2_24_v_ts_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 2, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VTsEnable.setStatus('mandatory')
wt_webio_ea2x2_24_v_ts_sync_time = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 2, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VTsSyncTime.setStatus('mandatory')
wt_webio_ea2x2_24_v_clock_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 3, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 23))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VClockHrs.setStatus('mandatory')
wt_webio_ea2x2_24_v_clock_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 3, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 59))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VClockMin.setStatus('mandatory')
wt_webio_ea2x2_24_v_clock_day = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 3, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VClockDay.setStatus('mandatory')
wt_webio_ea2x2_24_v_clock_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 3, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA2x2_24VClockMonth-January', 1), ('wtWebioEA2x2_24VClockMonth-February', 2), ('wtWebioEA2x2_24VClockMonth-March', 3), ('wtWebioEA2x2_24VClockMonth-April', 4), ('wtWebioEA2x2_24VClockMonth-May', 5), ('wtWebioEA2x2_24VClockMonth-June', 6), ('wtWebioEA2x2_24VClockMonth-July', 7), ('wtWebioEA2x2_24VClockMonth-August', 8), ('wtWebioEA2x2_24VClockMonth-September', 9), ('wtWebioEA2x2_24VClockMonth-October', 10), ('wtWebioEA2x2_24VClockMonth-November', 11), ('wtWebioEA2x2_24VClockMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VClockMonth.setStatus('mandatory')
wt_webio_ea2x2_24_v_clock_year = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 2, 3, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VClockYear.setStatus('mandatory')
wt_webio_ea2x2_24_v_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VIpAddress.setStatus('mandatory')
wt_webio_ea2x2_24_v_subnet_mask = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VSubnetMask.setStatus('mandatory')
wt_webio_ea2x2_24_v_gateway = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VGateway.setStatus('mandatory')
wt_webio_ea2x2_24_v_dns_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VDnsServer1.setStatus('mandatory')
wt_webio_ea2x2_24_v_dns_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VDnsServer2.setStatus('mandatory')
wt_webio_ea2x2_24_v_add_config = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 1, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAddConfig.setStatus('mandatory')
wt_webio_ea2x2_24_v_startup = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VStartup.setStatus('mandatory')
wt_webio_ea2x2_24_v_get_header_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 2, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VGetHeaderEnable.setStatus('mandatory')
wt_webio_ea2x2_24_v_http_input_trigger = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 2, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VHttpInputTrigger.setStatus('mandatory')
wt_webio_ea2x2_24_v_http_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 2, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VHttpPort.setStatus('mandatory')
wt_webio_ea2x2_24_v_mail_ad_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VMailAdName.setStatus('mandatory')
wt_webio_ea2x2_24_v_mail_reply = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VMailReply.setStatus('mandatory')
wt_webio_ea2x2_24_v_mail_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VMailServer.setStatus('mandatory')
wt_webio_ea2x2_24_v_mail_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VMailEnable.setStatus('mandatory')
wt_webio_ea2x2_24_v_mail_authentication = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 3, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VMailAuthentication.setStatus('mandatory')
wt_webio_ea2x2_24_v_mail_auth_user = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 3, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VMailAuthUser.setStatus('mandatory')
wt_webio_ea2x2_24_v_mail_auth_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 3, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VMailAuthPassword.setStatus('mandatory')
wt_webio_ea2x2_24_v_mail_pop3_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 3, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VMailPop3Server.setStatus('mandatory')
wt_webio_ea2x2_24_v_snmp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 4, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VSnmpEnable.setStatus('mandatory')
wt_webio_ea2x2_24_v_snmp_community_string_read = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 4, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VSnmpCommunityStringRead.setStatus('mandatory')
wt_webio_ea2x2_24_v_snmp_community_string_read_write = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 4, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VSnmpCommunityStringReadWrite.setStatus('mandatory')
wt_webio_ea2x2_24_v_snmp_system_trap_manager_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 4, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VSnmpSystemTrapManagerIP.setStatus('mandatory')
wt_webio_ea2x2_24_v_snmp_system_trap_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 4, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VSnmpSystemTrapEnable.setStatus('mandatory')
wt_webio_ea2x2_24_v_udp_admin_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 5, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VUdpAdminPort.setStatus('mandatory')
wt_webio_ea2x2_24_v_udp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 5, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VUdpEnable.setStatus('mandatory')
wt_webio_ea2x2_24_v_udp_remote_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 5, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VUdpRemotePort.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_mode_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryModeCount.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 2))
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryIfTable.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2_24VBinaryModeNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryIfEntry.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_mode_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryModeNo.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3))
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryTable.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2_24VBinaryModeNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryEntry.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_operation_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryOperationMode.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_tcp_server_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryTcpServerLocalPort.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_tcp_server_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryTcpServerInputTrigger.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_tcp_server_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryTcpServerApplicationMode.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_tcp_client_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryTcpClientLocalPort.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_tcp_client_server_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryTcpClientServerPort.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_tcp_client_server_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryTcpClientServerIpAddr.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_tcp_client_server_password = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryTcpClientServerPassword.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_tcp_client_inactivity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryTcpClientInactivity.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_tcp_client_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryTcpClientInputTrigger.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_tcp_client_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryTcpClientInterval.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_tcp_client_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 12), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryTcpClientApplicationMode.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_udp_peer_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryUdpPeerLocalPort.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_udp_peer_remote_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryUdpPeerRemotePort.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_udp_peer_remote_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 15), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryUdpPeerRemoteIpAddr.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_udp_peer_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 16), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryUdpPeerInputTrigger.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_udp_peer_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryUdpPeerInterval.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_udp_peer_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 18), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryUdpPeerApplicationMode.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_connected_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryConnectedPort.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_connected_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 20), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryConnectedIpAddr.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_tcp_server_client_http_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryTcpServerClientHttpPort.setStatus('mandatory')
wt_webio_ea2x2_24_v_binary_tcp_client_server_http_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 6, 3, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VBinaryTcpClientServerHttpPort.setStatus('mandatory')
wt_webio_ea2x2_24_v_syslog_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 7, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VSyslogServerIP.setStatus('mandatory')
wt_webio_ea2x2_24_v_syslog_server_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 7, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VSyslogServerPort.setStatus('mandatory')
wt_webio_ea2x2_24_v_syslog_system_messages_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 7, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VSyslogSystemMessagesEnable.setStatus('mandatory')
wt_webio_ea2x2_24_v_syslog_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 7, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VSyslogEnable.setStatus('mandatory')
wt_webio_ea2x2_24_vftp_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 8, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VFTPServerIP.setStatus('mandatory')
wt_webio_ea2x2_24_vftp_server_control_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 8, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VFTPServerControlPort.setStatus('mandatory')
wt_webio_ea2x2_24_vftp_user_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 8, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VFTPUserName.setStatus('mandatory')
wt_webio_ea2x2_24_vftp_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 8, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VFTPPassword.setStatus('mandatory')
wt_webio_ea2x2_24_vftp_account = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 8, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VFTPAccount.setStatus('mandatory')
wt_webio_ea2x2_24_vftp_option = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 8, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VFTPOption.setStatus('mandatory')
wt_webio_ea2x2_24_vftp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 3, 8, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VFTPEnable.setStatus('mandatory')
wt_webio_ea2x2_24_v_output_mode_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 4, 1))
if mibBuilder.loadTexts:
wtWebioEA2x2_24VOutputModeTable.setStatus('mandatory')
wt_webio_ea2x2_24_v_output_mode_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 4, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2_24VOutputNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2_24VOutputModeEntry.setStatus('mandatory')
wt_webio_ea2x2_24_v_output_mode_bit = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 4, 1, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VOutputModeBit.setStatus('mandatory')
wt_webio_ea2x2_24_v_safety_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 4, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VSafetyTimeout.setStatus('mandatory')
wt_webio_ea2x2_24_v_power_supply_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 4, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VPowerSupplyEnable.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmCount.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 2))
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmIfTable.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmIfEntry.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmNo.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3))
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmTable.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmEntry.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(12, 12)).setFixedLength(12)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmInputTrigger.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_output_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(12, 12)).setFixedLength(12)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmOutputTrigger.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_system_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmSystemTrigger.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_max_counter_value = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmMaxCounterValue.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmInterval.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmEnable.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_mail_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmMailAddr.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_mail_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmMailSubject.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_mail_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 9), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmMailText.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_snmp_manager_ip = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 10), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmSnmpManagerIP.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_snmp_trap_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 11), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmSnmpTrapText.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_udp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 12), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmUdpIpAddr.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_udp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmUdpPort.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_udp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 14), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmUdpText.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_tcp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 15), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmTcpIpAddr.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_tcp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmTcpPort.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_tcp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 17), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmTcpText.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_syslog_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 18), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmSyslogIpAddr.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_syslog_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmSyslogPort.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_syslog_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 20), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmSyslogText.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_ftp_data_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 21), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmFtpDataPort.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_ftp_file_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 22), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmFtpFileName.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_ftp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 23), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmFtpText.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_ftp_option = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 24), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmFtpOption.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_timer_cron = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 25), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmTimerCron.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_mail_release_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 26), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmMailReleaseSubject.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_mail_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 27), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmMailReleaseText.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_snmp_trap_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 28), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmSnmpTrapReleaseText.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_udp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 29), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmUdpReleaseText.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_tcp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 30), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmTcpReleaseText.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_syslog_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 31), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmSyslogReleaseText.setStatus('mandatory')
wt_webio_ea2x2_24_v_alarm_ftp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 1, 5, 3, 1, 32), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VAlarmFtpReleaseText.setStatus('mandatory')
wt_webio_ea2x2_24_v_input_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 1))
if mibBuilder.loadTexts:
wtWebioEA2x2_24VInputPortTable.setStatus('mandatory')
wt_webio_ea2x2_24_v_input_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2_24VInputNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2_24VInputPortEntry.setStatus('mandatory')
wt_webio_ea2x2_24_v_port_input_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VPortInputName.setStatus('mandatory')
wt_webio_ea2x2_24_v_port_input_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VPortInputText.setStatus('mandatory')
wt_webio_ea2x2_24_v_port_input_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VPortInputMode.setStatus('mandatory')
wt_webio_ea2x2_24_v_port_input_filter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 1, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VPortInputFilter.setStatus('mandatory')
wt_webio_ea2x2_24_v_port_input_bicount_pulse_polarity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VPortInputBicountPulsePolarity.setStatus('mandatory')
wt_webio_ea2x2_24_v_port_input_bicount_inactiv_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 1, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VPortInputBicountInactivTimeout.setStatus('mandatory')
wt_webio_ea2x2_24_v_output_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2))
if mibBuilder.loadTexts:
wtWebioEA2x2_24VOutputPortTable.setStatus('mandatory')
wt_webio_ea2x2_24_v_output_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2_24VOutputNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2_24VOutputPortEntry.setStatus('mandatory')
wt_webio_ea2x2_24_v_port_output_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VPortOutputName.setStatus('mandatory')
wt_webio_ea2x2_24_v_port_output_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VPortOutputText.setStatus('mandatory')
wt_webio_ea2x2_24_v_port_output_group_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VPortOutputGroupMode.setStatus('mandatory')
wt_webio_ea2x2_24_v_port_output_safety_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VPortOutputSafetyState.setStatus('mandatory')
wt_webio_ea2x2_24_v_port_logic_input_mask = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VPortLogicInputMask.setStatus('mandatory')
wt_webio_ea2x2_24_v_port_logic_input_inverter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VPortLogicInputInverter.setStatus('mandatory')
wt_webio_ea2x2_24_v_port_logic_function = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VPortLogicFunction.setStatus('mandatory')
wt_webio_ea2x2_24_v_port_logic_output_inverter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VPortLogicOutputInverter.setStatus('mandatory')
wt_webio_ea2x2_24_v_port_pulse_duration = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VPortPulseDuration.setStatus('mandatory')
wt_webio_ea2x2_24_v_port_pulse_polarity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 2, 2, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VPortPulsePolarity.setStatus('mandatory')
wt_webio_ea2x2_24_v_mf_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VMfName.setStatus('mandatory')
wt_webio_ea2x2_24_v_mf_addr = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VMfAddr.setStatus('mandatory')
wt_webio_ea2x2_24_v_mf_hotline = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VMfHotline.setStatus('mandatory')
wt_webio_ea2x2_24_v_mf_internet = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VMfInternet.setStatus('mandatory')
wt_webio_ea2x2_24_v_mf_device_typ = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 3, 3, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VMfDeviceTyp.setStatus('mandatory')
wt_webio_ea2x2_24_v_diag_error_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VDiagErrorCount.setStatus('mandatory')
wt_webio_ea2x2_24_v_diag_binary_error = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 4, 2), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VDiagBinaryError.setStatus('mandatory')
wt_webio_ea2x2_24_v_diag_error_index = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 4, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VDiagErrorIndex.setStatus('mandatory')
wt_webio_ea2x2_24_v_diag_error_message = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 4, 4), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VDiagErrorMessage.setStatus('mandatory')
wt_webio_ea2x2_24_v_diag_error_clear = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30, 4, 5), integer32()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
wtWebioEA2x2_24VDiagErrorClear.setStatus('mandatory')
wt_webio_ea2x2_24_v_alert1 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 41)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_24_v_alert2 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 42)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_24_v_alert3 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 43)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_24_v_alert4 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 44)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_24_v_alert5 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 45)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_24_v_alert6 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 46)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_24_v_alert7 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 47)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_24_v_alert8 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 48)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_24_v_alert9 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 49)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_24_v_alert10 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 50)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_24_v_alert11 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 51)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_24_v_alert12 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 52)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_24_v_alert13 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 71)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_24_v_alert14 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 72)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_24_v_alert15 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 73)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_24_v_alert16 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 74)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_24_v_alert17 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 75)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_24_v_alert18 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 76)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_24_v_alert19 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 77)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_24_v_alert20 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 78)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_24_v_alert21 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 79)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_24_v_alert22 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 80)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_24_v_alert23 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 81)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_24_v_alert24 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 82)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_24_v_alert_diag = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 30) + (0, 110)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VDiagErrorIndex'), ('Webio-Digital-MIB-US', 'wtWebioEA2x2_24VDiagErrorMessage'))
wt_webio_ea2x2_erp_24_v_inputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VInputs.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_outputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VOutputs.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_input_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 3))
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VInputTable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_input_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VInputNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VInputEntry.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_input_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VInputNo.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_input_counter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VInputCounter.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_input_counter_clear = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 3, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VInputCounterClear.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_input_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA2x2ERP_24VInputState-OFF', 0), ('wtWebioEA2x2ERP_24VInputState-ON', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VInputState.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_input_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VInputValue.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_output_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 5))
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VOutputTable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 5, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VOutputNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VOutputEntry.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_output_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VOutputNo.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_output_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 5, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA2x2ERP_24VOutputState-OFF', 0), ('wtWebioEA2x2ERP_24VOutputState-ON', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VOutputState.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_output_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VOutputValue.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_set_output = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VSetOutput.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_sess_cntrl_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VSessCntrlPassword.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_sess_cntrl_config_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtWebioEA2x2ERP_24VSessCntrl-NoSession', 0), ('wtWebioEA2x2ERP_24VSessCntrl-Session', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VSessCntrlConfigMode.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_sess_cntrl_logout = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 2, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VSessCntrlLogout.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_sess_cntrl_admin_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 2, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VSessCntrlAdminPassword.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_sess_cntrl_config_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 2, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VSessCntrlConfigPassword.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_device_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VDeviceName.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_device_text = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VDeviceText.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_device_location = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VDeviceLocation.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_device_contact = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VDeviceContact.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VTzOffsetHrs.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VTzOffsetMin.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VTzEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_st_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VStTzOffsetHrs.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_st_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VStTzOffsetMin.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_st_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VStTzEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_st_tz_start_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA2x2ERP_24VStartMonth-January', 1), ('wtWebioEA2x2ERP_24VStartMonth-February', 2), ('wtWebioEA2x2ERP_24VStartMonth-March', 3), ('wtWebioEA2x2ERP_24VStartMonth-April', 4), ('wtWebioEA2x2ERP_24VStartMonth-May', 5), ('wtWebioEA2x2ERP_24VStartMonth-June', 6), ('wtWebioEA2x2ERP_24VStartMonth-July', 7), ('wtWebioEA2x2ERP_24VStartMonth-August', 8), ('wtWebioEA2x2ERP_24VStartMonth-September', 9), ('wtWebioEA2x2ERP_24VStartMonth-October', 10), ('wtWebioEA2x2ERP_24VStartMonth-November', 11), ('wtWebioEA2x2ERP_24VStartMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VStTzStartMonth.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_st_tz_start_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtWebioEA2x2ERP_24VStartMode-first', 1), ('wtWebioEA2x2ERP_24VStartMode-second', 2), ('wtWebioEA2x2ERP_24VStartMode-third', 3), ('wtWebioEA2x2ERP_24VStartMode-fourth', 4), ('wtWebioEA2x2ERP_24VStartMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VStTzStartMode.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_st_tz_start_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtWebioEA2x2ERP_24VStartWday-Sunday', 1), ('wtWebioEA2x2ERP_24VStartWday-Monday', 2), ('wtWebioEA2x2ERP_24VStartWday-Tuesday', 3), ('wtWebioEA2x2ERP_24VStartWday-Thursday', 4), ('wtWebioEA2x2ERP_24VStartWday-Wednesday', 5), ('wtWebioEA2x2ERP_24VStartWday-Friday', 6), ('wtWebioEA2x2ERP_24VStartWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VStTzStartWday.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_st_tz_start_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 10), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VStTzStartHrs.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_st_tz_start_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 11), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VStTzStartMin.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_st_tz_stop_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA2x2ERP_24VStopMonth-January', 1), ('wtWebioEA2x2ERP_24VStopMonth-February', 2), ('wtWebioEA2x2ERP_24VStopMonth-March', 3), ('wtWebioEA2x2ERP_24VStopMonth-April', 4), ('wtWebioEA2x2ERP_24VStopMonth-May', 5), ('wtWebioEA2x2ERP_24VStopMonth-June', 6), ('wtWebioEA2x2ERP_24VStopMonth-July', 7), ('wtWebioEA2x2ERP_24VStopMonth-August', 8), ('wtWebioEA2x2ERP_24VStopMonth-September', 9), ('wtWebioEA2x2ERP_24VStopMonth-October', 10), ('wtWebioEA2x2ERP_24VStopMonth-November', 11), ('wtWebioEA2x2ERP_24VStopMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VStTzStopMonth.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_st_tz_stop_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtWebioEA2x2ERP_24VStopMode-first', 1), ('wtWebioEA2x2ERP_24VStopMode-second', 2), ('wtWebioEA2x2ERP_24VStopMode-third', 3), ('wtWebioEA2x2ERP_24VStopMode-fourth', 4), ('wtWebioEA2x2ERP_24VStopMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VStTzStopMode.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_st_tz_stop_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtWebioEA2x2ERP_24VStopWday-Sunday', 1), ('wtWebioEA2x2ERP_24VStopWday-Monday', 2), ('wtWebioEA2x2ERP_24VStopWday-Tuesday', 3), ('wtWebioEA2x2ERP_24VStopWday-Thursday', 4), ('wtWebioEA2x2ERP_24VStopWday-Wednesday', 5), ('wtWebioEA2x2ERP_24VStopWday-Friday', 6), ('wtWebioEA2x2ERP_24VStopWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VStTzStopWday.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_st_tz_stop_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 15), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VStTzStopHrs.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_st_tz_stop_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 1, 16), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VStTzStopMin.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_time_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VTimeServer1.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_time_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 2, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VTimeServer2.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_ts_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 2, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VTsEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_ts_sync_time = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 2, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VTsSyncTime.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_clock_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 3, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 23))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VClockHrs.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_clock_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 3, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 59))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VClockMin.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_clock_day = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 3, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VClockDay.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_clock_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 3, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtWebioEA2x2ERP_24VClockMonth-January', 1), ('wtWebioEA2x2ERP_24VClockMonth-February', 2), ('wtWebioEA2x2ERP_24VClockMonth-March', 3), ('wtWebioEA2x2ERP_24VClockMonth-April', 4), ('wtWebioEA2x2ERP_24VClockMonth-May', 5), ('wtWebioEA2x2ERP_24VClockMonth-June', 6), ('wtWebioEA2x2ERP_24VClockMonth-July', 7), ('wtWebioEA2x2ERP_24VClockMonth-August', 8), ('wtWebioEA2x2ERP_24VClockMonth-September', 9), ('wtWebioEA2x2ERP_24VClockMonth-October', 10), ('wtWebioEA2x2ERP_24VClockMonth-November', 11), ('wtWebioEA2x2ERP_24VClockMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VClockMonth.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_clock_year = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 2, 3, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VClockYear.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VIpAddress.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_subnet_mask = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VSubnetMask.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_gateway = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VGateway.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_dns_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VDnsServer1.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_dns_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VDnsServer2.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_add_config = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 1, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAddConfig.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_startup = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VStartup.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_get_header_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 2, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VGetHeaderEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_http_input_trigger = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 2, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VHttpInputTrigger.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_http_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 2, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VHttpPort.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_mail_ad_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VMailAdName.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_mail_reply = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VMailReply.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_mail_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VMailServer.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_mail_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VMailEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_mail_authentication = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 3, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VMailAuthentication.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_mail_auth_user = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 3, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VMailAuthUser.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_mail_auth_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 3, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VMailAuthPassword.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_mail_pop3_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 3, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VMailPop3Server.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_snmp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 4, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VSnmpEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_snmp_community_string_read = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 4, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VSnmpCommunityStringRead.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_snmp_community_string_read_write = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 4, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VSnmpCommunityStringReadWrite.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_snmp_system_trap_manager_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 4, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VSnmpSystemTrapManagerIP.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_snmp_system_trap_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 4, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VSnmpSystemTrapEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_udp_admin_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 5, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VUdpAdminPort.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_udp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 5, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VUdpEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_udp_remote_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 5, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VUdpRemotePort.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_mode_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryModeCount.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 2))
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryIfTable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VBinaryModeNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryIfEntry.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_mode_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryModeNo.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3))
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryTable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VBinaryModeNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryEntry.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_operation_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryOperationMode.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_tcp_server_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryTcpServerLocalPort.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_tcp_server_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryTcpServerInputTrigger.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_tcp_server_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryTcpServerApplicationMode.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_tcp_client_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryTcpClientLocalPort.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_tcp_client_server_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryTcpClientServerPort.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_tcp_client_server_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryTcpClientServerIpAddr.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_tcp_client_server_password = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryTcpClientServerPassword.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_tcp_client_inactivity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryTcpClientInactivity.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_tcp_client_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryTcpClientInputTrigger.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_tcp_client_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryTcpClientInterval.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_tcp_client_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 12), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryTcpClientApplicationMode.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_udp_peer_local_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryUdpPeerLocalPort.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_udp_peer_remote_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryUdpPeerRemotePort.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_udp_peer_remote_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 15), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryUdpPeerRemoteIpAddr.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_udp_peer_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 16), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryUdpPeerInputTrigger.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_udp_peer_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryUdpPeerInterval.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_udp_peer_application_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 18), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryUdpPeerApplicationMode.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_connected_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryConnectedPort.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_connected_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 20), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryConnectedIpAddr.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_tcp_server_client_http_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryTcpServerClientHttpPort.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_binary_tcp_client_server_http_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 6, 3, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VBinaryTcpClientServerHttpPort.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_syslog_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 7, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VSyslogServerIP.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_syslog_server_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 7, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VSyslogServerPort.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_syslog_system_messages_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 7, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VSyslogSystemMessagesEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_syslog_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 7, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VSyslogEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_vftp_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 8, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VFTPServerIP.setStatus('mandatory')
wt_webio_ea2x2_erp_24_vftp_server_control_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 8, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VFTPServerControlPort.setStatus('mandatory')
wt_webio_ea2x2_erp_24_vftp_user_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 8, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VFTPUserName.setStatus('mandatory')
wt_webio_ea2x2_erp_24_vftp_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 8, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VFTPPassword.setStatus('mandatory')
wt_webio_ea2x2_erp_24_vftp_account = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 8, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VFTPAccount.setStatus('mandatory')
wt_webio_ea2x2_erp_24_vftp_option = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 8, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VFTPOption.setStatus('mandatory')
wt_webio_ea2x2_erp_24_vftp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 8, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VFTPEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_way_back_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 10, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VWayBackEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_way_back_server_control_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 10, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VWayBackServerControlPort.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_way_back_ftp_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 10, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VWayBackFTPPassword.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_way_back_ftp_response = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 10, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VWayBackFTPResponse.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_way_back_ftp_time_out = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 3, 10, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VWayBackFTPTimeOut.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_output_mode_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 4, 1))
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VOutputModeTable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_output_mode_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 4, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VOutputNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VOutputModeEntry.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_output_mode_bit = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 4, 1, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VOutputModeBit.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_safety_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 4, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VSafetyTimeout.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_load_control_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 4, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VLoadControlEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_power_supply_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 4, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VPowerSupplyEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmCount.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 2))
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmIfTable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmIfEntry.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmNo.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3))
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmTable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmEntry.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(12, 12)).setFixedLength(12)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmInputTrigger.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_output_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(12, 12)).setFixedLength(12)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmOutputTrigger.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_system_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmSystemTrigger.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_max_counter_value = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmMaxCounterValue.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmInterval.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmEnable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_mail_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmMailAddr.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_mail_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmMailSubject.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_mail_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 9), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmMailText.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_snmp_manager_ip = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 10), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmSnmpManagerIP.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_snmp_trap_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 11), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmSnmpTrapText.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_udp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 12), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmUdpIpAddr.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_udp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmUdpPort.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_udp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 14), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmUdpText.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_tcp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 15), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmTcpIpAddr.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_tcp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmTcpPort.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_tcp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 17), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmTcpText.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_syslog_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 18), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmSyslogIpAddr.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_syslog_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmSyslogPort.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_syslog_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 20), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmSyslogText.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_ftp_data_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 21), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmFtpDataPort.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_ftp_file_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 22), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmFtpFileName.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_ftp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 23), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmFtpText.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_ftp_option = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 24), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmFtpOption.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_timer_cron = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 25), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmTimerCron.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_mail_release_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 26), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmMailReleaseSubject.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_mail_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 27), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmMailReleaseText.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_snmp_trap_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 28), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_udp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 29), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmUdpReleaseText.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_tcp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 30), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmTcpReleaseText.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_syslog_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 31), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmSyslogReleaseText.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alarm_ftp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 3, 1, 32), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VAlarmFtpReleaseText.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_load_control_view = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 4), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VLoadControlView.setStatus('mandatory')
wt_webio_ea2x2_erp_24_vlc_shut_down_view = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 1, 5, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VLCShutDownView.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_input_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 1))
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VInputPortTable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_input_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VInputNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VInputPortEntry.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_port_input_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VPortInputName.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_port_input_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VPortInputText.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_port_input_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VPortInputMode.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_port_input_filter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 1, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VPortInputFilter.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_port_input_bicount_pulse_polarity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VPortInputBicountPulsePolarity.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_port_input_bicount_inactiv_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 1, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VPortInputBicountInactivTimeout.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_output_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2))
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VOutputPortTable.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_output_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VOutputNo'))
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VOutputPortEntry.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_port_output_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VPortOutputName.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_port_output_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VPortOutputText.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_port_output_group_mode = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VPortOutputGroupMode.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_port_output_safety_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VPortOutputSafetyState.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_port_logic_input_mask = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VPortLogicInputMask.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_port_logic_input_inverter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VPortLogicInputInverter.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_port_logic_function = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VPortLogicFunction.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_port_logic_output_inverter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VPortLogicOutputInverter.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_port_pulse_duration = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VPortPulseDuration.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_port_pulse_polarity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 2, 2, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VPortPulsePolarity.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_mf_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VMfName.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_mf_addr = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VMfAddr.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_mf_hotline = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VMfHotline.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_mf_internet = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VMfInternet.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_mf_device_typ = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 3, 3, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VMfDeviceTyp.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_diag_error_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VDiagErrorCount.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_diag_binary_error = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 4, 2), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VDiagBinaryError.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_diag_error_index = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 4, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VDiagErrorIndex.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_diag_error_message = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 4, 4), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VDiagErrorMessage.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_diag_error_clear = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31, 4, 5), integer32()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
wtWebioEA2x2ERP_24VDiagErrorClear.setStatus('mandatory')
wt_webio_ea2x2_erp_24_v_alert1 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 41)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_24_v_alert2 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 42)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_24_v_alert3 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 43)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_24_v_alert4 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 44)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_24_v_alert5 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 45)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_24_v_alert6 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 46)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_24_v_alert7 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 47)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_24_v_alert8 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 48)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_24_v_alert9 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 49)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_24_v_alert10 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 50)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_24_v_alert11 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 51)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_24_v_alert12 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 52)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapText'))
wt_webio_ea2x2_erp_24_v_alert13 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 71)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_24_v_alert14 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 72)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_24_v_alert15 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 73)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_24_v_alert16 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 74)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_24_v_alert17 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 75)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_24_v_alert18 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 76)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_24_v_alert19 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 77)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_24_v_alert20 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 78)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_24_v_alert21 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 79)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_24_v_alert22 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 80)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_24_v_alert23 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 81)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_24_v_alert24 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 82)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText'))
wt_webio_ea2x2_erp_24_v_alert_diag = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 31) + (0, 110)).setObjects(('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VDiagErrorIndex'), ('Webio-Digital-MIB-US', 'wtWebioEA2x2ERP_24VDiagErrorMessage'))
wt_ip_watcher_24_v_inputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcher_24VInputs.setStatus('mandatory')
wt_ip_watcher_24_v_outputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcher_24VOutputs.setStatus('mandatory')
wt_ip_watcher_24_v_input_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 3))
if mibBuilder.loadTexts:
wtIpWatcher_24VInputTable.setStatus('mandatory')
wt_ip_watcher_24_v_input_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtIpWatcher_24VInputNo'))
if mibBuilder.loadTexts:
wtIpWatcher_24VInputEntry.setStatus('mandatory')
wt_ip_watcher_24_v_input_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcher_24VInputNo.setStatus('mandatory')
wt_ip_watcher_24_v_input_counter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcher_24VInputCounter.setStatus('mandatory')
wt_ip_watcher_24_v_input_counter_clear = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 3, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcher_24VInputCounterClear.setStatus('mandatory')
wt_ip_watcher_24_v_input_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtIpWatcher_24VInputState-OFF', 0), ('wtIpWatcher_24VInputState-ON', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcher_24VInputState.setStatus('mandatory')
wt_ip_watcher_24_v_input_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcher_24VInputValue.setStatus('mandatory')
wt_ip_watcher_24_v_output_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 5))
if mibBuilder.loadTexts:
wtIpWatcher_24VOutputTable.setStatus('mandatory')
wt_ip_watcher_24_v_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 5, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtIpWatcher_24VOutputNo'))
if mibBuilder.loadTexts:
wtIpWatcher_24VOutputEntry.setStatus('mandatory')
wt_ip_watcher_24_v_output_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcher_24VOutputNo.setStatus('mandatory')
wt_ip_watcher_24_v_output_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 5, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtIpWatcher_24VOutputState-OFF', 0), ('wtIpWatcher_24VOutputState-ON', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VOutputState.setStatus('mandatory')
wt_ip_watcher_24_v_output_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VOutputValue.setStatus('mandatory')
wt_ip_watcher_24_v_set_output = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VSetOutput.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_output_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 8))
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmOutputTable.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 8, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmNo'))
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmOutputEntry.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_output_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 8, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtIpWatcher_24VAlarmOutputState-OFF', 0), ('wtIpWatcher_24VAlarmOutputState-ON', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmOutputState.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_trigger_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 1, 8, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtIpWatcher_24VAlarmTriggerState-OFF', 0), ('wtIpWatcher_24VAlarmTriggerState-ON', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmTriggerState.setStatus('mandatory')
wt_ip_watcher_24_v_sess_cntrl_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VSessCntrlPassword.setStatus('mandatory')
wt_ip_watcher_24_v_sess_cntrl_config_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtIpWatcher_24VSessCntrl-NoSession', 0), ('wtIpWatcher_24VSessCntrl-Session', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcher_24VSessCntrlConfigMode.setStatus('mandatory')
wt_ip_watcher_24_v_sess_cntrl_logout = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 2, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VSessCntrlLogout.setStatus('mandatory')
wt_ip_watcher_24_v_sess_cntrl_admin_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 2, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VSessCntrlAdminPassword.setStatus('mandatory')
wt_ip_watcher_24_v_sess_cntrl_config_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 2, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VSessCntrlConfigPassword.setStatus('mandatory')
wt_ip_watcher_24_v_device_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VDeviceName.setStatus('mandatory')
wt_ip_watcher_24_v_device_text = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VDeviceText.setStatus('mandatory')
wt_ip_watcher_24_v_device_location = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VDeviceLocation.setStatus('mandatory')
wt_ip_watcher_24_v_device_contact = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VDeviceContact.setStatus('mandatory')
wt_ip_watcher_24_v_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VTzOffsetHrs.setStatus('mandatory')
wt_ip_watcher_24_v_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VTzOffsetMin.setStatus('mandatory')
wt_ip_watcher_24_v_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VTzEnable.setStatus('mandatory')
wt_ip_watcher_24_v_st_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VStTzOffsetHrs.setStatus('mandatory')
wt_ip_watcher_24_v_st_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VStTzOffsetMin.setStatus('mandatory')
wt_ip_watcher_24_v_st_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VStTzEnable.setStatus('mandatory')
wt_ip_watcher_24_v_st_tz_start_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtIpWatcher_24VStartMonth-January', 1), ('wtIpWatcher_24VStartMonth-February', 2), ('wtIpWatcher_24VStartMonth-March', 3), ('wtIpWatcher_24VStartMonth-April', 4), ('wtIpWatcher_24VStartMonth-May', 5), ('wtIpWatcher_24VStartMonth-June', 6), ('wtIpWatcher_24VStartMonth-July', 7), ('wtIpWatcher_24VStartMonth-August', 8), ('wtIpWatcher_24VStartMonth-September', 9), ('wtIpWatcher_24VStartMonth-October', 10), ('wtIpWatcher_24VStartMonth-November', 11), ('wtIpWatcher_24VStartMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VStTzStartMonth.setStatus('mandatory')
wt_ip_watcher_24_v_st_tz_start_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtIpWatcher_24VStartMode-first', 1), ('wtIpWatcher_24VStartMode-second', 2), ('wtIpWatcher_24VStartMode-third', 3), ('wtIpWatcher_24VStartMode-fourth', 4), ('wtIpWatcher_24VStartMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VStTzStartMode.setStatus('mandatory')
wt_ip_watcher_24_v_st_tz_start_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtIpWatcher_24VStartWday-Sunday', 1), ('wtIpWatcher_24VStartWday-Monday', 2), ('wtIpWatcher_24VStartWday-Tuesday', 3), ('wtIpWatcher_24VStartWday-Thursday', 4), ('wtIpWatcher_24VStartWday-Wednesday', 5), ('wtIpWatcher_24VStartWday-Friday', 6), ('wtIpWatcher_24VStartWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VStTzStartWday.setStatus('mandatory')
wt_ip_watcher_24_v_st_tz_start_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 10), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VStTzStartHrs.setStatus('mandatory')
wt_ip_watcher_24_v_st_tz_start_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 11), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VStTzStartMin.setStatus('mandatory')
wt_ip_watcher_24_v_st_tz_stop_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtIpWatcher_24VStopMonth-January', 1), ('wtIpWatcher_24VStopMonth-February', 2), ('wtIpWatcher_24VStopMonth-March', 3), ('wtIpWatcher_24VStopMonth-April', 4), ('wtIpWatcher_24VStopMonth-May', 5), ('wtIpWatcher_24VStopMonth-June', 6), ('wtIpWatcher_24VStopMonth-July', 7), ('wtIpWatcher_24VStopMonth-August', 8), ('wtIpWatcher_24VStopMonth-September', 9), ('wtIpWatcher_24VStopMonth-October', 10), ('wtIpWatcher_24VStopMonth-November', 11), ('wtIpWatcher_24VStopMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VStTzStopMonth.setStatus('mandatory')
wt_ip_watcher_24_v_st_tz_stop_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtIpWatcher_24VStopMode-first', 1), ('wtIpWatcher_24VStopMode-second', 2), ('wtIpWatcher_24VStopMode-third', 3), ('wtIpWatcher_24VStopMode-fourth', 4), ('wtIpWatcher_24VStopMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VStTzStopMode.setStatus('mandatory')
wt_ip_watcher_24_v_st_tz_stop_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtIpWatcher_24VStopWday-Sunday', 1), ('wtIpWatcher_24VStopWday-Monday', 2), ('wtIpWatcher_24VStopWday-Tuesday', 3), ('wtIpWatcher_24VStopWday-Thursday', 4), ('wtIpWatcher_24VStopWday-Wednesday', 5), ('wtIpWatcher_24VStopWday-Friday', 6), ('wtIpWatcher_24VStopWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VStTzStopWday.setStatus('mandatory')
wt_ip_watcher_24_v_st_tz_stop_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 15), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VStTzStopHrs.setStatus('mandatory')
wt_ip_watcher_24_v_st_tz_stop_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 1, 16), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VStTzStopMin.setStatus('mandatory')
wt_ip_watcher_24_v_time_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VTimeServer1.setStatus('mandatory')
wt_ip_watcher_24_v_time_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 2, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VTimeServer2.setStatus('mandatory')
wt_ip_watcher_24_v_ts_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 2, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VTsEnable.setStatus('mandatory')
wt_ip_watcher_24_v_ts_sync_time = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 2, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VTsSyncTime.setStatus('mandatory')
wt_ip_watcher_24_v_clock_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 3, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 23))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VClockHrs.setStatus('mandatory')
wt_ip_watcher_24_v_clock_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 3, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 59))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VClockMin.setStatus('mandatory')
wt_ip_watcher_24_v_clock_day = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 3, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VClockDay.setStatus('mandatory')
wt_ip_watcher_24_v_clock_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 3, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtIpWatcher_24VClockMonth-January', 1), ('wtIpWatcher_24VClockMonth-February', 2), ('wtIpWatcher_24VClockMonth-March', 3), ('wtIpWatcher_24VClockMonth-April', 4), ('wtIpWatcher_24VClockMonth-May', 5), ('wtIpWatcher_24VClockMonth-June', 6), ('wtIpWatcher_24VClockMonth-July', 7), ('wtIpWatcher_24VClockMonth-August', 8), ('wtIpWatcher_24VClockMonth-September', 9), ('wtIpWatcher_24VClockMonth-October', 10), ('wtIpWatcher_24VClockMonth-November', 11), ('wtIpWatcher_24VClockMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VClockMonth.setStatus('mandatory')
wt_ip_watcher_24_v_clock_year = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 2, 3, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VClockYear.setStatus('mandatory')
wt_ip_watcher_24_v_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VIpAddress.setStatus('mandatory')
wt_ip_watcher_24_v_subnet_mask = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VSubnetMask.setStatus('mandatory')
wt_ip_watcher_24_v_gateway = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VGateway.setStatus('mandatory')
wt_ip_watcher_24_v_dns_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VDnsServer1.setStatus('mandatory')
wt_ip_watcher_24_v_dns_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VDnsServer2.setStatus('mandatory')
wt_ip_watcher_24_v_add_config = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 1, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAddConfig.setStatus('mandatory')
wt_ip_watcher_24_v_http_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 2, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VHttpPort.setStatus('mandatory')
wt_ip_watcher_24_v_mail_ad_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VMailAdName.setStatus('mandatory')
wt_ip_watcher_24_v_mail_reply = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VMailReply.setStatus('mandatory')
wt_ip_watcher_24_v_mail_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VMailServer.setStatus('mandatory')
wt_ip_watcher_24_v_mail_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VMailEnable.setStatus('mandatory')
wt_ip_watcher_24_v_mail_authentication = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 3, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VMailAuthentication.setStatus('mandatory')
wt_ip_watcher_24_v_mail_auth_user = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 3, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VMailAuthUser.setStatus('mandatory')
wt_ip_watcher_24_v_mail_auth_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 3, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VMailAuthPassword.setStatus('mandatory')
wt_ip_watcher_24_v_mail_pop3_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 3, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VMailPop3Server.setStatus('mandatory')
wt_ip_watcher_24_v_snmp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 4, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VSnmpEnable.setStatus('mandatory')
wt_ip_watcher_24_v_snmp_community_string_read = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 4, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VSnmpCommunityStringRead.setStatus('mandatory')
wt_ip_watcher_24_v_snmp_community_string_read_write = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 4, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VSnmpCommunityStringReadWrite.setStatus('mandatory')
wt_ip_watcher_24_v_snmp_system_trap_manager_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 4, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VSnmpSystemTrapManagerIP.setStatus('mandatory')
wt_ip_watcher_24_v_snmp_system_trap_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 4, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VSnmpSystemTrapEnable.setStatus('mandatory')
wt_ip_watcher_24_v_udp_admin_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 5, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VUdpAdminPort.setStatus('mandatory')
wt_ip_watcher_24_v_udp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 5, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VUdpEnable.setStatus('mandatory')
wt_ip_watcher_24_v_udp_remote_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 5, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VUdpRemotePort.setStatus('mandatory')
wt_ip_watcher_24_v_syslog_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 7, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VSyslogServerIP.setStatus('mandatory')
wt_ip_watcher_24_v_syslog_server_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 7, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VSyslogServerPort.setStatus('mandatory')
wt_ip_watcher_24_v_syslog_system_messages_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 7, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VSyslogSystemMessagesEnable.setStatus('mandatory')
wt_ip_watcher_24_v_syslog_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 7, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VSyslogEnable.setStatus('mandatory')
wt_ip_watcher_24_vftp_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 8, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VFTPServerIP.setStatus('mandatory')
wt_ip_watcher_24_vftp_server_control_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 8, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VFTPServerControlPort.setStatus('mandatory')
wt_ip_watcher_24_vftp_user_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 8, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VFTPUserName.setStatus('mandatory')
wt_ip_watcher_24_vftp_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 8, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VFTPPassword.setStatus('mandatory')
wt_ip_watcher_24_vftp_account = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 8, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VFTPAccount.setStatus('mandatory')
wt_ip_watcher_24_vftp_option = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 8, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VFTPOption.setStatus('mandatory')
wt_ip_watcher_24_vftp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 8, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VFTPEnable.setStatus('mandatory')
wt_ip_watcher_24_v_ip_list_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcher_24VIpListCount.setStatus('mandatory')
wt_ip_watcher_24_v_ip_list_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11, 2))
if mibBuilder.loadTexts:
wtIpWatcher_24VIpListIfTable.setStatus('mandatory')
wt_ip_watcher_24_v_ip_list_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtIpWatcher_24VIpListNo'))
if mibBuilder.loadTexts:
wtIpWatcher_24VIpListIfEntry.setStatus('mandatory')
wt_ip_watcher_24_v_ip_list_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 999))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcher_24VIpListNo.setStatus('mandatory')
wt_ip_watcher_24_v_ip_list_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11, 3))
if mibBuilder.loadTexts:
wtIpWatcher_24VIpListTable.setStatus('mandatory')
wt_ip_watcher_24_v_ip_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtIpWatcher_24VIpListNo'))
if mibBuilder.loadTexts:
wtIpWatcher_24VIpListEntry.setStatus('mandatory')
wt_ip_watcher_24_v_ip_list_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11, 3, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VIpListName.setStatus('mandatory')
wt_ip_watcher_24_v_ip_list_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11, 3, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VIpListPort.setStatus('mandatory')
wt_ip_watcher_24_v_ip_list_service = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11, 3, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VIpListService.setStatus('mandatory')
wt_ip_watcher_24_v_ip_list_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VIpListEnable.setStatus('mandatory')
wt_ip_watcher_24_v_ip_list_alias = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 3, 11, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VIpListAlias.setStatus('mandatory')
wt_ip_watcher_24_v_power_supply_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 4, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VPowerSupplyEnable.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmCount.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 2))
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmIfTable.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmNo'))
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmIfEntry.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmNo.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3))
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmTable.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmNo'))
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmEntry.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmInterval.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmEnable.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_mail_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmMailAddr.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_mail_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmMailSubject.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_mail_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 9), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmMailText.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_snmp_manager_ip = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 10), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmSnmpManagerIP.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_snmp_trap_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 11), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmSnmpTrapText.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_udp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 12), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmUdpIpAddr.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_udp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmUdpPort.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_udp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 14), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmUdpText.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_tcp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 15), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmTcpIpAddr.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_tcp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmTcpPort.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_tcp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 17), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmTcpText.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_syslog_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 18), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmSyslogIpAddr.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_syslog_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmSyslogPort.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_syslog_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 20), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmSyslogText.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_ftp_data_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 21), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmFtpDataPort.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_ftp_file_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 22), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmFtpFileName.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_ftp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 23), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmFtpText.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_ftp_option = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 24), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmFtpOption.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_timer_cron = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 25), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmTimerCron.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_mail_release_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 26), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmMailReleaseSubject.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_mail_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 27), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmMailReleaseText.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_snmp_trap_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 28), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmSnmpTrapReleaseText.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_udp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 29), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmUdpReleaseText.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_tcp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 30), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmTcpReleaseText.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_syslog_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 31), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmSyslogReleaseText.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_ftp_release_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 32), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmFtpReleaseText.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 33), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmName.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_global_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 34), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmGlobalEnable.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_counter_clear = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 35), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmCounterClear.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_ack_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 36), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmAckEnable.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_ack_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 37), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmAckPort.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_set_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 38), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmSetPort.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_mail_trg_clear_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 39), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmMailTrgClearSubject.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_mail_trg_clear_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 40), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmMailTrgClearText.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_snmp_trap_trg_clear_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 41), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmSnmpTrapTrgClearText.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_udp_trg_clear_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 42), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmUdpTrgClearText.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_tcp_trg_clear_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 43), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmTcpTrgClearText.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_syslog_trg_clear_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 44), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmSyslogTrgClearText.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_ftp_trg_clear_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 45), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmFtpTrgClearText.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_mail_trap_tx_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 46), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmMailTrapTxEnable.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_snmp_trap_trap_tx_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 47), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmSnmpTrapTrapTxEnable.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_udp_trap_tx_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 48), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmUdpTrapTxEnable.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_tcp_trap_tx_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 49), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmTcpTrapTxEnable.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_syslog_trap_tx_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 50), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmSyslogTrapTxEnable.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_ftp_trap_tx_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 51), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmFtpTrapTxEnable.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_trigger_count = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 52), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmTriggerCount.setStatus('mandatory')
wt_ip_watcher_24_v_alarm_polling_rate = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 1, 5, 3, 1, 53), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VAlarmPollingRate.setStatus('mandatory')
wt_ip_watcher_24_v_input_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2, 1))
if mibBuilder.loadTexts:
wtIpWatcher_24VInputPortTable.setStatus('mandatory')
wt_ip_watcher_24_v_input_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtIpWatcher_24VInputNo'))
if mibBuilder.loadTexts:
wtIpWatcher_24VInputPortEntry.setStatus('mandatory')
wt_ip_watcher_24_v_port_input_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VPortInputName.setStatus('mandatory')
wt_ip_watcher_24_v_port_input_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VPortInputText.setStatus('mandatory')
wt_ip_watcher_24_v_port_input_filter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2, 1, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VPortInputFilter.setStatus('mandatory')
wt_ip_watcher_24_v_output_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2, 2))
if mibBuilder.loadTexts:
wtIpWatcher_24VOutputPortTable.setStatus('mandatory')
wt_ip_watcher_24_v_output_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtIpWatcher_24VOutputNo'))
if mibBuilder.loadTexts:
wtIpWatcher_24VOutputPortEntry.setStatus('mandatory')
wt_ip_watcher_24_v_port_output_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2, 2, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VPortOutputName.setStatus('mandatory')
wt_ip_watcher_24_v_port_output_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2, 2, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VPortOutputText.setStatus('mandatory')
wt_ip_watcher_24_v_port_pulse_duration = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2, 2, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VPortPulseDuration.setStatus('mandatory')
wt_ip_watcher_24_v_port_pulse_polarity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 2, 2, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VPortPulsePolarity.setStatus('mandatory')
wt_ip_watcher_24_v_mf_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VMfName.setStatus('mandatory')
wt_ip_watcher_24_v_mf_addr = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VMfAddr.setStatus('mandatory')
wt_ip_watcher_24_v_mf_hotline = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VMfHotline.setStatus('mandatory')
wt_ip_watcher_24_v_mf_internet = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VMfInternet.setStatus('mandatory')
wt_ip_watcher_24_v_mf_device_typ = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 3, 3, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VMfDeviceTyp.setStatus('mandatory')
wt_ip_watcher_24_v_diag_error_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcher_24VDiagErrorCount.setStatus('mandatory')
wt_ip_watcher_24_v_diag_binary_error = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 4, 2), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcher_24VDiagBinaryError.setStatus('mandatory')
wt_ip_watcher_24_v_diag_error_index = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 4, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtIpWatcher_24VDiagErrorIndex.setStatus('mandatory')
wt_ip_watcher_24_v_diag_error_message = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 4, 4), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtIpWatcher_24VDiagErrorMessage.setStatus('mandatory')
wt_ip_watcher_24_v_diag_error_clear = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32, 4, 5), integer32()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
wtIpWatcher_24VDiagErrorClear.setStatus('mandatory')
wt_ip_watcher_24_v_alert1 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 41)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapText'))
wt_ip_watcher_24_v_alert2 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 42)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapText'))
wt_ip_watcher_24_v_alert3 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 43)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapText'))
wt_ip_watcher_24_v_alert4 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 44)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapText'))
wt_ip_watcher_24_v_alert5 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 45)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapText'))
wt_ip_watcher_24_v_alert6 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 46)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapText'))
wt_ip_watcher_24_v_alert7 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 47)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapText'))
wt_ip_watcher_24_v_alert8 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 48)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapText'))
wt_ip_watcher_24_v_alert9 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 49)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapText'))
wt_ip_watcher_24_v_alert10 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 50)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapText'))
wt_ip_watcher_24_v_alert11 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 51)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapText'))
wt_ip_watcher_24_v_alert12 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 52)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapText'))
wt_ip_watcher_24_v_alert13 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 71)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapReleaseText'))
wt_ip_watcher_24_v_alert14 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 72)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapReleaseText'))
wt_ip_watcher_24_v_alert15 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 73)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapReleaseText'))
wt_ip_watcher_24_v_alert16 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 74)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapReleaseText'))
wt_ip_watcher_24_v_alert17 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 75)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapReleaseText'))
wt_ip_watcher_24_v_alert18 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 76)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapReleaseText'))
wt_ip_watcher_24_v_alert19 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 77)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapReleaseText'))
wt_ip_watcher_24_v_alert20 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 78)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapReleaseText'))
wt_ip_watcher_24_v_alert21 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 79)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapReleaseText'))
wt_ip_watcher_24_v_alert22 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 80)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapReleaseText'))
wt_ip_watcher_24_v_alert23 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 81)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapReleaseText'))
wt_ip_watcher_24_v_alert24 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 82)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapReleaseText'))
wt_ip_watcher_24_v_alert25 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 91)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_24_v_alert26 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 92)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_24_v_alert27 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 93)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_24_v_alert28 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 94)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_24_v_alert29 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 95)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_24_v_alert30 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 96)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_24_v_alert31 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 97)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_24_v_alert32 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 98)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_24_v_alert33 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 99)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_24_v_alert34 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 100)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_24_v_alert35 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 101)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_24_v_alert36 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 102)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VAlarmSnmpTrapTrgClearText'))
wt_ip_watcher_24_v_alert_diag = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 32) + (0, 110)).setObjects(('Webio-Digital-MIB-US', 'wtIpWatcher_24VDiagErrorIndex'), ('Webio-Digital-MIB-US', 'wtIpWatcher_24VDiagErrorMessage'))
wt_trap_receiver2x2_inputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtTrapReceiver2x2Inputs.setStatus('mandatory')
wt_trap_receiver2x2_outputs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtTrapReceiver2x2Outputs.setStatus('mandatory')
wt_trap_receiver2x2_input_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 3))
if mibBuilder.loadTexts:
wtTrapReceiver2x2InputTable.setStatus('mandatory')
wt_trap_receiver2x2_input_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtTrapReceiver2x2InputNo'))
if mibBuilder.loadTexts:
wtTrapReceiver2x2InputEntry.setStatus('mandatory')
wt_trap_receiver2x2_input_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtTrapReceiver2x2InputNo.setStatus('mandatory')
wt_trap_receiver2x2_input_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtTrapReceiver2x2InputState-OFF', 0), ('wtTrapReceiver2x2InputState-ON', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtTrapReceiver2x2InputState.setStatus('mandatory')
wt_trap_receiver2x2_input_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtTrapReceiver2x2InputValue.setStatus('mandatory')
wt_trap_receiver2x2_output_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 5))
if mibBuilder.loadTexts:
wtTrapReceiver2x2OutputTable.setStatus('mandatory')
wt_trap_receiver2x2_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 5, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtTrapReceiver2x2OutputNo'))
if mibBuilder.loadTexts:
wtTrapReceiver2x2OutputEntry.setStatus('mandatory')
wt_trap_receiver2x2_output_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtTrapReceiver2x2OutputNo.setStatus('mandatory')
wt_trap_receiver2x2_output_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 5, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtTrapReceiver2x2OutputState-OFF', 0), ('wtTrapReceiver2x2OutputState-ON', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2OutputState.setStatus('mandatory')
wt_trap_receiver2x2_output_value = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtTrapReceiver2x2OutputValue.setStatus('mandatory')
wt_trap_receiver2x2_action_output_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 8))
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionOutputTable.setStatus('mandatory')
wt_trap_receiver2x2_action_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 8, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtTrapReceiver2x2ActionNo'))
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionOutputEntry.setStatus('mandatory')
wt_trap_receiver2x2_action_output_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 8, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtTrapReceiver2x2ActionOutputState-OFF', 0), ('wtTrapReceiver2x2ActionOutputState-ON', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionOutputState.setStatus('mandatory')
wt_trap_receiver2x2_action_trigger_state = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 8, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtTrapReceiver2x2ActionTriggerState-OFF', 0), ('wtTrapReceiver2x2ActionTriggerState-ON', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionTriggerState.setStatus('mandatory')
wt_trap_receiver2x2_system_timer_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 9))
if mibBuilder.loadTexts:
wtTrapReceiver2x2SystemTimerTable.setStatus('mandatory')
wt_trap_receiver2x2_system_timer_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 9, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtTrapReceiver2x2SystemTimerNo'))
if mibBuilder.loadTexts:
wtTrapReceiver2x2SystemTimerEntry.setStatus('mandatory')
wt_trap_receiver2x2_system_timer_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 9, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtTrapReceiver2x2SystemTimerNo.setStatus('mandatory')
wt_trap_receiver2x2_button_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 10))
if mibBuilder.loadTexts:
wtTrapReceiver2x2ButtonTable.setStatus('mandatory')
wt_trap_receiver2x2_button_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 10, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtTrapReceiver2x2ButtonNo'))
if mibBuilder.loadTexts:
wtTrapReceiver2x2ButtonEntry.setStatus('mandatory')
wt_trap_receiver2x2_button_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 1, 10, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ButtonNo.setStatus('mandatory')
wt_trap_receiver2x2_sess_cntrl_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2SessCntrlPassword.setStatus('mandatory')
wt_trap_receiver2x2_sess_cntrl_config_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('wtTrapReceiver2x2SessCntrl-NoSession', 0), ('wtTrapReceiver2x2SessCntrl-Session', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtTrapReceiver2x2SessCntrlConfigMode.setStatus('mandatory')
wt_trap_receiver2x2_sess_cntrl_logout = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 2, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2SessCntrlLogout.setStatus('mandatory')
wt_trap_receiver2x2_sess_cntrl_admin_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 2, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2SessCntrlAdminPassword.setStatus('mandatory')
wt_trap_receiver2x2_sess_cntrl_config_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 2, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2SessCntrlConfigPassword.setStatus('mandatory')
wt_trap_receiver2x2_device_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2DeviceName.setStatus('mandatory')
wt_trap_receiver2x2_device_text = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2DeviceText.setStatus('mandatory')
wt_trap_receiver2x2_device_location = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2DeviceLocation.setStatus('mandatory')
wt_trap_receiver2x2_device_contact = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2DeviceContact.setStatus('mandatory')
wt_trap_receiver2x2_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2TzOffsetHrs.setStatus('mandatory')
wt_trap_receiver2x2_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2TzOffsetMin.setStatus('mandatory')
wt_trap_receiver2x2_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2TzEnable.setStatus('mandatory')
wt_trap_receiver2x2_st_tz_offset_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2StTzOffsetHrs.setStatus('mandatory')
wt_trap_receiver2x2_st_tz_offset_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2StTzOffsetMin.setStatus('mandatory')
wt_trap_receiver2x2_st_tz_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2StTzEnable.setStatus('mandatory')
wt_trap_receiver2x2_st_tz_start_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtTrapReceiver2x2StartMonth-January', 1), ('wtTrapReceiver2x2StartMonth-February', 2), ('wtTrapReceiver2x2StartMonth-March', 3), ('wtTrapReceiver2x2StartMonth-April', 4), ('wtTrapReceiver2x2StartMonth-May', 5), ('wtTrapReceiver2x2StartMonth-June', 6), ('wtTrapReceiver2x2StartMonth-July', 7), ('wtTrapReceiver2x2StartMonth-August', 8), ('wtTrapReceiver2x2StartMonth-September', 9), ('wtTrapReceiver2x2StartMonth-October', 10), ('wtTrapReceiver2x2StartMonth-November', 11), ('wtTrapReceiver2x2StartMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2StTzStartMonth.setStatus('mandatory')
wt_trap_receiver2x2_st_tz_start_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtTrapReceiver2x2StartMode-first', 1), ('wtTrapReceiver2x2StartMode-second', 2), ('wtTrapReceiver2x2StartMode-third', 3), ('wtTrapReceiver2x2StartMode-fourth', 4), ('wtTrapReceiver2x2StartMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2StTzStartMode.setStatus('mandatory')
wt_trap_receiver2x2_st_tz_start_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtTrapReceiver2x2StartWday-Sunday', 1), ('wtTrapReceiver2x2StartWday-Monday', 2), ('wtTrapReceiver2x2StartWday-Tuesday', 3), ('wtTrapReceiver2x2StartWday-Thursday', 4), ('wtTrapReceiver2x2StartWday-Wednesday', 5), ('wtTrapReceiver2x2StartWday-Friday', 6), ('wtTrapReceiver2x2StartWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2StTzStartWday.setStatus('mandatory')
wt_trap_receiver2x2_st_tz_start_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 10), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2StTzStartHrs.setStatus('mandatory')
wt_trap_receiver2x2_st_tz_start_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 11), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2StTzStartMin.setStatus('mandatory')
wt_trap_receiver2x2_st_tz_stop_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtTrapReceiver2x2StopMonth-January', 1), ('wtTrapReceiver2x2StopMonth-February', 2), ('wtTrapReceiver2x2StopMonth-March', 3), ('wtTrapReceiver2x2StopMonth-April', 4), ('wtTrapReceiver2x2StopMonth-May', 5), ('wtTrapReceiver2x2StopMonth-June', 6), ('wtTrapReceiver2x2StopMonth-July', 7), ('wtTrapReceiver2x2StopMonth-August', 8), ('wtTrapReceiver2x2StopMonth-September', 9), ('wtTrapReceiver2x2StopMonth-October', 10), ('wtTrapReceiver2x2StopMonth-November', 11), ('wtTrapReceiver2x2StopMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2StTzStopMonth.setStatus('mandatory')
wt_trap_receiver2x2_st_tz_stop_mode = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('wtTrapReceiver2x2StopMode-first', 1), ('wtTrapReceiver2x2StopMode-second', 2), ('wtTrapReceiver2x2StopMode-third', 3), ('wtTrapReceiver2x2StopMode-fourth', 4), ('wtTrapReceiver2x2StopMode-last', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2StTzStopMode.setStatus('mandatory')
wt_trap_receiver2x2_st_tz_stop_wday = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtTrapReceiver2x2StopWday-Sunday', 1), ('wtTrapReceiver2x2StopWday-Monday', 2), ('wtTrapReceiver2x2StopWday-Tuesday', 3), ('wtTrapReceiver2x2StopWday-Thursday', 4), ('wtTrapReceiver2x2StopWday-Wednesday', 5), ('wtTrapReceiver2x2StopWday-Friday', 6), ('wtTrapReceiver2x2StopWday-Saturday', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2StTzStopWday.setStatus('mandatory')
wt_trap_receiver2x2_st_tz_stop_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 15), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2StTzStopHrs.setStatus('mandatory')
wt_trap_receiver2x2_st_tz_stop_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 1, 16), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2StTzStopMin.setStatus('mandatory')
wt_trap_receiver2x2_time_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 2, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2TimeServer1.setStatus('mandatory')
wt_trap_receiver2x2_time_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 2, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2TimeServer2.setStatus('mandatory')
wt_trap_receiver2x2_ts_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 2, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2TsEnable.setStatus('mandatory')
wt_trap_receiver2x2_ts_sync_time = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 2, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2TsSyncTime.setStatus('mandatory')
wt_trap_receiver2x2_clock_hrs = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 3, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 23))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ClockHrs.setStatus('mandatory')
wt_trap_receiver2x2_clock_min = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 3, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 59))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ClockMin.setStatus('mandatory')
wt_trap_receiver2x2_clock_day = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 3, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ClockDay.setStatus('mandatory')
wt_trap_receiver2x2_clock_month = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 3, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('wtTrapReceiver2x2ClockMonth-January', 1), ('wtTrapReceiver2x2ClockMonth-February', 2), ('wtTrapReceiver2x2ClockMonth-March', 3), ('wtTrapReceiver2x2ClockMonth-April', 4), ('wtTrapReceiver2x2ClockMonth-May', 5), ('wtTrapReceiver2x2ClockMonth-June', 6), ('wtTrapReceiver2x2ClockMonth-July', 7), ('wtTrapReceiver2x2ClockMonth-August', 8), ('wtTrapReceiver2x2ClockMonth-September', 9), ('wtTrapReceiver2x2ClockMonth-October', 10), ('wtTrapReceiver2x2ClockMonth-November', 11), ('wtTrapReceiver2x2ClockMonth-December', 12)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ClockMonth.setStatus('mandatory')
wt_trap_receiver2x2_clock_year = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 2, 3, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ClockYear.setStatus('mandatory')
wt_trap_receiver2x2_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2IpAddress.setStatus('mandatory')
wt_trap_receiver2x2_subnet_mask = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2SubnetMask.setStatus('mandatory')
wt_trap_receiver2x2_gateway = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2Gateway.setStatus('mandatory')
wt_trap_receiver2x2_dns_server1 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2DnsServer1.setStatus('mandatory')
wt_trap_receiver2x2_dns_server2 = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2DnsServer2.setStatus('mandatory')
wt_trap_receiver2x2_add_config = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 1, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2AddConfig.setStatus('mandatory')
wt_trap_receiver2x2_http_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 2, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2HttpPort.setStatus('mandatory')
wt_trap_receiver2x2_mail_ad_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2MailAdName.setStatus('mandatory')
wt_trap_receiver2x2_mail_reply = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2MailReply.setStatus('mandatory')
wt_trap_receiver2x2_mail_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2MailServer.setStatus('mandatory')
wt_trap_receiver2x2_mail_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2MailEnable.setStatus('mandatory')
wt_trap_receiver2x2_mail_authentication = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 3, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2MailAuthentication.setStatus('mandatory')
wt_trap_receiver2x2_mail_auth_user = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 3, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2MailAuthUser.setStatus('mandatory')
wt_trap_receiver2x2_mail_auth_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 3, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2MailAuthPassword.setStatus('mandatory')
wt_trap_receiver2x2_mail_pop3_server = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 3, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2MailPop3Server.setStatus('mandatory')
wt_trap_receiver2x2_snmp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 4, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2SnmpEnable.setStatus('mandatory')
wt_trap_receiver2x2_snmp_community_string_read = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 4, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2SnmpCommunityStringRead.setStatus('mandatory')
wt_trap_receiver2x2_snmp_community_string_read_write = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 4, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2SnmpCommunityStringReadWrite.setStatus('mandatory')
wt_trap_receiver2x2_snmp_system_trap_manager_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 4, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2SnmpSystemTrapManagerIP.setStatus('mandatory')
wt_trap_receiver2x2_snmp_system_trap_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 4, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2SnmpSystemTrapEnable.setStatus('mandatory')
wt_trap_receiver2x2_udp_admin_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 5, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2UdpAdminPort.setStatus('mandatory')
wt_trap_receiver2x2_udp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 5, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2UdpEnable.setStatus('mandatory')
wt_trap_receiver2x2_udp_remote_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 5, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2UdpRemotePort.setStatus('mandatory')
wt_trap_receiver2x2_syslog_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 7, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2SyslogServerIP.setStatus('mandatory')
wt_trap_receiver2x2_syslog_server_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 7, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2SyslogServerPort.setStatus('mandatory')
wt_trap_receiver2x2_syslog_system_messages_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 7, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2SyslogSystemMessagesEnable.setStatus('mandatory')
wt_trap_receiver2x2_syslog_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 7, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2SyslogEnable.setStatus('mandatory')
wt_trap_receiver2x2_ftp_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 8, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2FTPServerIP.setStatus('mandatory')
wt_trap_receiver2x2_ftp_server_control_port = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 8, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2FTPServerControlPort.setStatus('mandatory')
wt_trap_receiver2x2_ftp_user_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 8, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2FTPUserName.setStatus('mandatory')
wt_trap_receiver2x2_ftp_password = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 8, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2FTPPassword.setStatus('mandatory')
wt_trap_receiver2x2_ftp_account = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 8, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2FTPAccount.setStatus('mandatory')
wt_trap_receiver2x2_ftp_option = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 8, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2FTPOption.setStatus('mandatory')
wt_trap_receiver2x2_ftp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 3, 8, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2FTPEnable.setStatus('mandatory')
wt_trap_receiver2x2_watch_list_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtTrapReceiver2x2WatchListCount.setStatus('mandatory')
wt_trap_receiver2x2_watch_list_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 2))
if mibBuilder.loadTexts:
wtTrapReceiver2x2WatchListIfTable.setStatus('mandatory')
wt_trap_receiver2x2_watch_list_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtTrapReceiver2x2WatchListNo'))
if mibBuilder.loadTexts:
wtTrapReceiver2x2WatchListIfEntry.setStatus('mandatory')
wt_trap_receiver2x2_watch_list_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 999))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtTrapReceiver2x2WatchListNo.setStatus('mandatory')
wt_trap_receiver2x2_watch_list_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 3))
if mibBuilder.loadTexts:
wtTrapReceiver2x2WatchListTable.setStatus('mandatory')
wt_trap_receiver2x2_watch_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtTrapReceiver2x2WatchListNo'))
if mibBuilder.loadTexts:
wtTrapReceiver2x2WatchListEntry.setStatus('mandatory')
wt_trap_receiver2x2_watch_list_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 3, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2WatchListName.setStatus('mandatory')
wt_trap_receiver2x2_watch_list_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 3, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2WatchListPort.setStatus('mandatory')
wt_trap_receiver2x2_watch_list_service = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 3, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2WatchListService.setStatus('mandatory')
wt_trap_receiver2x2_watch_list_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 3, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2WatchListEnable.setStatus('mandatory')
wt_trap_receiver2x2_watch_list_alias = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2WatchListAlias.setStatus('mandatory')
wt_trap_receiver2x2_watch_list_trap_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 3, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('wtTrapReceiver2x2WatchListTrapNo-ColdStart', 0), ('wtTrapReceiver2x2WatchListTrapNo-WarmStart', 1), ('wtTrapReceiver2x2WatchListTrapNo-LinkDown', 2), ('wtTrapReceiver2x2WatchListTrapNo-LinkUp', 3), ('wtTrapReceiver2x2WatchListTrapNo-AuthFailure', 4), ('wtTrapReceiver2x2WatchListTrapNo-EPGneighborLoss', 5), ('wtTrapReceiver2x2WatchListTrapNo-EnterpriseSpecific', 6), ('wtTrapReceiver2x2WatchListTrapNo-WildCard', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2WatchListTrapNo.setStatus('mandatory')
wt_trap_receiver2x2_watch_list_specific_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 3, 1, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2WatchListSpecificNo.setStatus('mandatory')
wt_trap_receiver2x2_watch_list_facility = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 3, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('wtTrapReceiver2x2WatchListFacility-Emergency', 0), ('wtTrapReceiver2x2WatchListFacility-Alert', 1), ('wtTrapReceiver2x2WatchListFacility-Critical', 2), ('wtTrapReceiver2x2WatchListFacility-Error', 3), ('wtTrapReceiver2x2WatchListFacility-Warning', 4), ('wtTrapReceiver2x2WatchListFacility-Notice', 5), ('wtTrapReceiver2x2WatchListFacility-Informational', 6), ('wtTrapReceiver2x2WatchListFacility-Debug', 7), ('wtTrapReceiver2x2WatchListFacility-WildCard', 8)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2WatchListFacility.setStatus('mandatory')
wt_trap_receiver2x2_watch_list_severity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 1, 3, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24))).clone(namedValues=named_values(('wtTrapReceiver2x2WatchListSeverity-kernel_messages', 0), ('wtTrapReceiver2x2WatchListSeverity-user_level_messages', 1), ('wtTrapReceiver2x2WatchListSeverity-mail_system', 2), ('wtTrapReceiver2x2WatchListSeverity-system_daemons', 3), ('wtTrapReceiver2x2WatchListSeverity-security_authorization_messages', 4), ('wtTrapReceiver2x2WatchListSeverity-messages_generated_internaly_by_syslogd', 5), ('wtTrapReceiver2x2WatchListSeverity-line_printer_subsystem', 6), ('wtTrapReceiver2x2WatchListSeverity-network_news_subsystem', 7), ('wtTrapReceiver2x2WatchListSeverity-UUCP_subsystem', 8), ('wtTrapReceiver2x2WatchListSeverity-clock_daemon', 9), ('wtTrapReceiver2x2WatchListSeverity-security_authorization_messages_private', 10), ('wtTrapReceiver2x2WatchListSeverity-FTP_daemon', 11), ('wtTrapReceiver2x2WatchListSeverity-NTP_subsystem', 12), ('wtTrapReceiver2x2WatchListSeverity-log_audit', 13), ('wtTrapReceiver2x2WatchListSeverity-log_alert', 14), ('wtTrapReceiver2x2WatchListSeverity-clock_daemon_15', 15), ('wtTrapReceiver2x2WatchListSeverity-local0', 16), ('wtTrapReceiver2x2WatchListSeverity-local1', 17), ('wtTrapReceiver2x2WatchListSeverity-local2', 18), ('wtTrapReceiver2x2WatchListSeverity-local3', 19), ('wtTrapReceiver2x2WatchListSeverity-local4', 20), ('wtTrapReceiver2x2WatchListSeverity-local5', 21), ('wtTrapReceiver2x2WatchListSeverity-local6', 22), ('wtTrapReceiver2x2WatchListSeverity-local7', 23), ('wtTrapReceiver2x2WatchListSeverity-WildCard', 24)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2WatchListSeverity.setStatus('mandatory')
wt_trap_receiver2x2_power_supply_enable = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 4, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2PowerSupplyEnable.setStatus('mandatory')
wt_trap_receiver2x2_action_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionCount.setStatus('mandatory')
wt_trap_receiver2x2_action_if_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 2))
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionIfTable.setStatus('mandatory')
wt_trap_receiver2x2_action_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 2, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtTrapReceiver2x2ActionNo'))
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionIfEntry.setStatus('mandatory')
wt_trap_receiver2x2_action_no = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionNo.setStatus('mandatory')
wt_trap_receiver2x2_action_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3))
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionTable.setStatus('mandatory')
wt_trap_receiver2x2_action_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtTrapReceiver2x2ActionNo'))
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionEntry.setStatus('mandatory')
wt_trap_receiver2x2_action_input_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(12, 12)).setFixedLength(12)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionInputTrigger.setStatus('mandatory')
wt_trap_receiver2x2_action_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionInterval.setStatus('mandatory')
wt_trap_receiver2x2_action_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionEnable.setStatus('mandatory')
wt_trap_receiver2x2_action_mail_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionMailAddr.setStatus('mandatory')
wt_trap_receiver2x2_action_mail_subject = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 8), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionMailSubject.setStatus('mandatory')
wt_trap_receiver2x2_action_mail_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 9), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionMailText.setStatus('mandatory')
wt_trap_receiver2x2_action_snmp_manager_ip = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 10), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionSnmpManagerIP.setStatus('mandatory')
wt_trap_receiver2x2_action_snmp_trap_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 11), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionSnmpTrapText.setStatus('mandatory')
wt_trap_receiver2x2_action_udp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 12), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionUdpIpAddr.setStatus('mandatory')
wt_trap_receiver2x2_action_udp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionUdpPort.setStatus('mandatory')
wt_trap_receiver2x2_action_udp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 14), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionUdpText.setStatus('mandatory')
wt_trap_receiver2x2_action_tcp_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 15), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionTcpIpAddr.setStatus('mandatory')
wt_trap_receiver2x2_action_tcp_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionTcpPort.setStatus('mandatory')
wt_trap_receiver2x2_action_tcp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 17), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionTcpText.setStatus('mandatory')
wt_trap_receiver2x2_action_syslog_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 18), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionSyslogIpAddr.setStatus('mandatory')
wt_trap_receiver2x2_action_syslog_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionSyslogPort.setStatus('mandatory')
wt_trap_receiver2x2_action_syslog_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 20), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionSyslogText.setStatus('mandatory')
wt_trap_receiver2x2_action_ftp_data_port = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 21), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionFtpDataPort.setStatus('mandatory')
wt_trap_receiver2x2_action_ftp_file_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 22), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionFtpFileName.setStatus('mandatory')
wt_trap_receiver2x2_action_ftp_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 23), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionFtpText.setStatus('mandatory')
wt_trap_receiver2x2_action_ftp_option = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 24), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionFtpOption.setStatus('mandatory')
wt_trap_receiver2x2_action_timer_cron = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 25), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionTimerCron.setStatus('mandatory')
wt_trap_receiver2x2_action_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 33), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionName.setStatus('mandatory')
wt_trap_receiver2x2_action_global_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 34), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionGlobalEnable.setStatus('mandatory')
wt_trap_receiver2x2_action_system_timer_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 55), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionSystemTimerTrigger.setStatus('mandatory')
wt_trap_receiver2x2_action_system_button_trigger = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 56), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionSystemButtonTrigger.setStatus('mandatory')
wt_trap_receiver2x2_action_output_action = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 5, 3, 1, 57), octet_string().subtype(subtypeSpec=value_size_constraint(12, 12)).setFixedLength(12)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2ActionOutputAction.setStatus('mandatory')
wt_trap_receiver2x2_system_timer_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 2, 1))
if mibBuilder.loadTexts:
wtTrapReceiver2x2SystemTimerPortTable.setStatus('mandatory')
wt_trap_receiver2x2_system_timer_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 2, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtTrapReceiver2x2SystemTimerNo'))
if mibBuilder.loadTexts:
wtTrapReceiver2x2SystemTimerPortEntry.setStatus('mandatory')
wt_trap_receiver2x2_port_system_timer_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 2, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2PortSystemTimerEnable.setStatus('mandatory')
wt_trap_receiver2x2_port_system_timer_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 2, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2PortSystemTimerName.setStatus('mandatory')
wt_trap_receiver2x2_port_system_timer_cron = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 2, 1, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2PortSystemTimerCron.setStatus('mandatory')
wt_trap_receiver2x2_button_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 3, 1))
if mibBuilder.loadTexts:
wtTrapReceiver2x2ButtonPortTable.setStatus('mandatory')
wt_trap_receiver2x2_button_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 3, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtTrapReceiver2x2ButtonNo'))
if mibBuilder.loadTexts:
wtTrapReceiver2x2ButtonPortEntry.setStatus('mandatory')
wt_trap_receiver2x2_port_button_enable = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 3, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2PortButtonEnable.setStatus('mandatory')
wt_trap_receiver2x2_port_button_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 3, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2PortButtonName.setStatus('mandatory')
wt_trap_receiver2x2_port_button_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 3, 1, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2PortButtonText.setStatus('mandatory')
wt_trap_receiver2x2_port_button_access = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 3, 1, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2PortButtonAccess.setStatus('mandatory')
wt_trap_receiver2x2_input_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 4, 1))
if mibBuilder.loadTexts:
wtTrapReceiver2x2InputPortTable.setStatus('mandatory')
wt_trap_receiver2x2_input_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 4, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtTrapReceiver2x2InputNo'))
if mibBuilder.loadTexts:
wtTrapReceiver2x2InputPortEntry.setStatus('mandatory')
wt_trap_receiver2x2_port_input_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 4, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2PortInputName.setStatus('mandatory')
wt_trap_receiver2x2_port_input_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 4, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2PortInputText.setStatus('mandatory')
wt_trap_receiver2x2_port_input_filter = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 6, 4, 1, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2PortInputFilter.setStatus('mandatory')
wt_trap_receiver2x2_output_port_table = mib_table((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 7, 1, 1))
if mibBuilder.loadTexts:
wtTrapReceiver2x2OutputPortTable.setStatus('mandatory')
wt_trap_receiver2x2_output_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 7, 1, 1, 1)).setIndexNames((0, 'Webio-Digital-MIB-US', 'wtTrapReceiver2x2OutputNo'))
if mibBuilder.loadTexts:
wtTrapReceiver2x2OutputPortEntry.setStatus('mandatory')
wt_trap_receiver2x2_port_output_name = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 7, 1, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2PortOutputName.setStatus('mandatory')
wt_trap_receiver2x2_port_output_text = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 7, 1, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2PortOutputText.setStatus('mandatory')
wt_trap_receiver2x2_port_pulse_duration = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 7, 1, 1, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2PortPulseDuration.setStatus('mandatory')
wt_trap_receiver2x2_port_pulse_polarity = mib_table_column((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 1, 7, 1, 1, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2PortPulsePolarity.setStatus('mandatory')
wt_trap_receiver2x2_mf_name = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 3, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2MfName.setStatus('mandatory')
wt_trap_receiver2x2_mf_addr = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 3, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2MfAddr.setStatus('mandatory')
wt_trap_receiver2x2_mf_hotline = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 3, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2MfHotline.setStatus('mandatory')
wt_trap_receiver2x2_mf_internet = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 3, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2MfInternet.setStatus('mandatory')
wt_trap_receiver2x2_mf_device_typ = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 3, 3, 5), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2MfDeviceTyp.setStatus('mandatory')
wt_trap_receiver2x2_diag_error_count = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtTrapReceiver2x2DiagErrorCount.setStatus('mandatory')
wt_trap_receiver2x2_diag_binary_error = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 4, 2), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtTrapReceiver2x2DiagBinaryError.setStatus('mandatory')
wt_trap_receiver2x2_diag_error_index = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 4, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wtTrapReceiver2x2DiagErrorIndex.setStatus('mandatory')
wt_trap_receiver2x2_diag_error_message = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 4, 4), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wtTrapReceiver2x2DiagErrorMessage.setStatus('mandatory')
wt_trap_receiver2x2_diag_error_clear = mib_scalar((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33, 4, 5), integer32()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
wtTrapReceiver2x2DiagErrorClear.setStatus('mandatory')
wt_trap_receiver2x2_alert1 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0, 41)).setObjects(('Webio-Digital-MIB-US', 'wtTrapReceiver2x2ReportSnmpTrapText'))
wt_trap_receiver2x2_alert2 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0, 42)).setObjects(('Webio-Digital-MIB-US', 'wtTrapReceiver2x2ActionSnmpTrapText'))
wt_trap_receiver2x2_alert3 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0, 43)).setObjects(('Webio-Digital-MIB-US', 'wtTrapReceiver2x2ActionSnmpTrapText'))
wt_trap_receiver2x2_alert4 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0, 44)).setObjects(('Webio-Digital-MIB-US', 'wtTrapReceiver2x2ActionSnmpTrapText'))
wt_trap_receiver2x2_alert5 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0, 45)).setObjects(('Webio-Digital-MIB-US', 'wtTrapReceiver2x2ActionSnmpTrapText'))
wt_trap_receiver2x2_alert6 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0, 46)).setObjects(('Webio-Digital-MIB-US', 'wtTrapReceiver2x2ActionSnmpTrapText'))
wt_trap_receiver2x2_alert7 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0, 47)).setObjects(('Webio-Digital-MIB-US', 'wtTrapReceiver2x2ActionSnmpTrapText'))
wt_trap_receiver2x2_alert8 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0, 48)).setObjects(('Webio-Digital-MIB-US', 'wtTrapReceiver2x2ActionSnmpTrapText'))
wt_trap_receiver2x2_alert9 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0, 49)).setObjects(('Webio-Digital-MIB-US', 'wtTrapReceiver2x2ActionSnmpTrapText'))
wt_trap_receiver2x2_alert10 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0, 50)).setObjects(('Webio-Digital-MIB-US', 'wtTrapReceiver2x2ActionSnmpTrapText'))
wt_trap_receiver2x2_alert11 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0, 51)).setObjects(('Webio-Digital-MIB-US', 'wtTrapReceiver2x2ActionSnmpTrapText'))
wt_trap_receiver2x2_alert12 = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0, 52)).setObjects(('Webio-Digital-MIB-US', 'wtTrapReceiver2x2ActionSnmpTrapText'))
wt_trap_receiver2x2_alert_diag = notification_type((1, 3, 6, 1, 4, 1, 5040, 1, 2, 33) + (0, 110)).setObjects(('Webio-Digital-MIB-US', 'wtTrapReceiver2x2DiagErrorIndex'), ('Webio-Digital-MIB-US', 'wtTrapReceiver2x2DiagErrorMessage'))
mibBuilder.exportSymbols('Webio-Digital-MIB-US', wtWebioEA12x12SnmpCommunityStringReadWrite=wtWebioEA12x12SnmpCommunityStringReadWrite, wtWebioEA24oemLCShutDownView=wtWebioEA24oemLCShutDownView, wtWebioEA12x6RelDiag=wtWebioEA12x6RelDiag, wtWebioEA2x2LoadControlView=wtWebioEA2x2LoadControlView, wtWebioEA24oemTimeServer=wtWebioEA24oemTimeServer, wtWebioEA12x6RelERPPortInputBicountPulsePolarity=wtWebioEA12x6RelERPPortInputBicountPulsePolarity, wtIpWatcher_24VAlarmSnmpTrapTrapTxEnable=wtIpWatcher_24VAlarmSnmpTrapTrapTxEnable, wtWebioEA2x2ERP_24VAlarmCount=wtWebioEA2x2ERP_24VAlarmCount, wtTrapReceiver2x2MailAdName=wtTrapReceiver2x2MailAdName, wtIpWatcher_24VTimeServer2=wtIpWatcher_24VTimeServer2, wtWebioEA2x2_24VPortPulseDuration=wtWebioEA2x2_24VPortPulseDuration, wtWebioEA12x12Alert5=wtWebioEA12x12Alert5, wtWebioEA12x6RelSyslogEnable=wtWebioEA12x6RelSyslogEnable, wtIpWatcherAlert15=wtIpWatcherAlert15, wtWebioEA2x2ERPAlert12=wtWebioEA2x2ERPAlert12, wtWebioEA2x2ERP_24VAlarmEntry=wtWebioEA2x2ERP_24VAlarmEntry, wtWebioEA12x6RelMail=wtWebioEA12x6RelMail, wtIpWatcher_24VMailAuthPassword=wtIpWatcher_24VMailAuthPassword, wtTrapReceiver2x2DiagErrorMessage=wtTrapReceiver2x2DiagErrorMessage, wtWebioEA12x12StTzStopMode=wtWebioEA12x12StTzStopMode, wtWebioEA24oemStTzEnable=wtWebioEA24oemStTzEnable, wtWebioEA12x6RelERPMfDeviceTyp=wtWebioEA12x6RelERPMfDeviceTyp, wtWebioEA24oemInputValue=wtWebioEA24oemInputValue, wtWebioEA2x2MailEnable=wtWebioEA2x2MailEnable, wtWebioEA2x2_24VBinaryTcpClientServerHttpPort=wtWebioEA2x2_24VBinaryTcpClientServerHttpPort, wtWebioEA2x2ERPOutputState=wtWebioEA2x2ERPOutputState, wtWebioEA12x6RelDeviceContact=wtWebioEA12x6RelDeviceContact, wtWebioEA2x2_24VStTzStopMonth=wtWebioEA2x2_24VStTzStopMonth, wtTrapReceiver2x2HttpPort=wtTrapReceiver2x2HttpPort, wtWebAlarm6x6UDP=wtWebAlarm6x6UDP, wtWebioEA2x2ERPManufact=wtWebioEA2x2ERPManufact, wtWebioEA2x2BinaryTcpClientInterval=wtWebioEA2x2BinaryTcpClientInterval, wtWebioEA2x2Alert8=wtWebioEA2x2Alert8, wtWebioEA12x12AlertDiag=wtWebioEA12x12AlertDiag, wtWebioEA24oemAlarmMaxCounterValue=wtWebioEA24oemAlarmMaxCounterValue, wtWebioEA12x6RelERPInputValue=wtWebioEA12x6RelERPInputValue, wtWebioEA2x2HttpInputTrigger=wtWebioEA2x2HttpInputTrigger, wtWebAlarm6x6ClockMonth=wtWebAlarm6x6ClockMonth, wtTrapReceiver2x2SyslogServerIP=wtTrapReceiver2x2SyslogServerIP, wtWebioEA2x2BinaryIfEntry=wtWebioEA2x2BinaryIfEntry, wtTrapReceiver2x2MailServer=wtTrapReceiver2x2MailServer, wtWebioEA2x2ClockDay=wtWebioEA2x2ClockDay, wtWebAlarm6x6ClockMin=wtWebAlarm6x6ClockMin, wtWebioEA12x6RelERPAlarm=wtWebioEA12x6RelERPAlarm, wtWebioEA2x2ERPOutputs=wtWebioEA2x2ERPOutputs, wtIpWatcherAlarmFtpFileName=wtIpWatcherAlarmFtpFileName, wtIpWatcher_24VUdpRemotePort=wtIpWatcher_24VUdpRemotePort, wtWebioEA2x2ERPLoadControlEnable=wtWebioEA2x2ERPLoadControlEnable, wtWebioEA12x12AlarmUdpReleaseText=wtWebioEA12x12AlarmUdpReleaseText, wtWebioEA12x6RelERPWayBack=wtWebioEA12x6RelERPWayBack, wtIpWatcher_24VOutputMode=wtIpWatcher_24VOutputMode, wtWebioEA12x6RelMailAuthUser=wtWebioEA12x6RelMailAuthUser, wtIpWatcherDiagErrorCount=wtIpWatcherDiagErrorCount, wtIpWatcherAlarmEntry=wtIpWatcherAlarmEntry, wtWebioEA2x2ERPOutputTable=wtWebioEA2x2ERPOutputTable, wtWebioEA6x6IpAddress=wtWebioEA6x6IpAddress, wtWebioEA2x2DiagErrorClear=wtWebioEA2x2DiagErrorClear, wtWebioEA12x12Inputs=wtWebioEA12x12Inputs, wtWebioEA2x2MailServer=wtWebioEA2x2MailServer, wtWebioEA12x6RelERPPorts=wtWebioEA12x6RelERPPorts, wtWebioEA2x2ERPAlarmTable=wtWebioEA2x2ERPAlarmTable, wtIpWatcher_24VAlert23=wtIpWatcher_24VAlert23, wtWebioEA2x2Basic=wtWebioEA2x2Basic, wtTrapReceiver2x2WatchListNo=wtTrapReceiver2x2WatchListNo, wtIpWatcher_24VInputCounterClear=wtIpWatcher_24VInputCounterClear, wtWebioEA24oemDiagErrorMessage=wtWebioEA24oemDiagErrorMessage, wtIpWatcherAlert33=wtIpWatcherAlert33, wtWebioEA12x12OutputModeTable=wtWebioEA12x12OutputModeTable, wtWebioEA2x2ERP_24VAlert19=wtWebioEA2x2ERP_24VAlert19, wtWebioEA6x6Alert11=wtWebioEA6x6Alert11, wtWebCount6TimeServer2=wtWebCount6TimeServer2, wtWebioEA12x6RelAlert16=wtWebioEA12x6RelAlert16, wtWebioEA12x12TzOffsetHrs=wtWebioEA12x12TzOffsetHrs, wtWebioEA2x2ERP_24VFTPServerIP=wtWebioEA2x2ERP_24VFTPServerIP, wtWebioEA2x2ERPAlarmFtpOption=wtWebioEA2x2ERPAlarmFtpOption, wtWebioEA2x2PortLogicInputMask=wtWebioEA2x2PortLogicInputMask, wtWebioEA12x12InputTable=wtWebioEA12x12InputTable, wtWebAlarm6x6InputTable=wtWebAlarm6x6InputTable, wtTrapReceiver2x2Basic=wtTrapReceiver2x2Basic, wtWebioEA2x2SetOutput=wtWebioEA2x2SetOutput, wtWebioEA24oemSessCntrlConfigMode=wtWebioEA24oemSessCntrlConfigMode, wtWebCount6PortInputCounterUnit=wtWebCount6PortInputCounterUnit, wtIpWatcher_24VConfig=wtIpWatcher_24VConfig, wtIpWatcher_24VAlarmFtpText=wtIpWatcher_24VAlarmFtpText, wtWebioEA2x2_24VClockDay=wtWebioEA2x2_24VClockDay, wtWebAlarm6x6TimeDate=wtWebAlarm6x6TimeDate, wtWebioEA12x6RelAlarmUdpPort=wtWebioEA12x6RelAlarmUdpPort, wut=wut, wtTrapReceiver2x2Syslog=wtTrapReceiver2x2Syslog, wtWebioEA2x2ERP_24VBinaryTcpServerLocalPort=wtWebioEA2x2ERP_24VBinaryTcpServerLocalPort, wtWebioEA2x2ERPOutputPortTable=wtWebioEA2x2ERPOutputPortTable, wtWebioEA12x6RelERPBinaryTcpClientServerPort=wtWebioEA12x6RelERPBinaryTcpClientServerPort, wtWebioEA2x2ERP_24VInputTable=wtWebioEA2x2ERP_24VInputTable, wtWebAlarm6x6DiagErrorMessage=wtWebAlarm6x6DiagErrorMessage, wtWebioEA2x2ERP_24VBinary=wtWebioEA2x2ERP_24VBinary, wtWebAlarm6x6SyslogEnable=wtWebAlarm6x6SyslogEnable, wtIpWatcherOutputPortEntry=wtIpWatcherOutputPortEntry, wtWebioEA12x6RelERPPortLogicInputInverter=wtWebioEA12x6RelERPPortLogicInputInverter, wtTrapReceiver2x2OutputPortEntry=wtTrapReceiver2x2OutputPortEntry, wtWebioEA2x2StTzStopMode=wtWebioEA2x2StTzStopMode, wtWebAlarm6x6AlarmSyslogReleaseText=wtWebAlarm6x6AlarmSyslogReleaseText, wtWebAlarm6x6AlarmUdpText=wtWebAlarm6x6AlarmUdpText, wtIpWatcher_24VPortInputName=wtIpWatcher_24VPortInputName, wtWebioEA6x6TzEnable=wtWebioEA6x6TzEnable, wtWebioEA6x6BinaryUdpPeerInterval=wtWebioEA6x6BinaryUdpPeerInterval, wtWebioEA2x2ERPHTTP=wtWebioEA2x2ERPHTTP, wtWebioEA2x2_24VBinaryTcpClientServerPassword=wtWebioEA2x2_24VBinaryTcpClientServerPassword, wtWebioEA24oemPortPulseDuration=wtWebioEA24oemPortPulseDuration, wtWebioEA2x2ERPBinaryUdpPeerLocalPort=wtWebioEA2x2ERPBinaryUdpPeerLocalPort, wtWebioEA12x12BinaryTcpClientServerHttpPort=wtWebioEA12x12BinaryTcpClientServerHttpPort, wtWebioEA12x6RelDeviceLocation=wtWebioEA12x6RelDeviceLocation, wtWebioEA2x2_24VDeviceName=wtWebioEA2x2_24VDeviceName, wtIpWatcher_24VAlarmTriggerCount=wtIpWatcher_24VAlarmTriggerCount, wtWebioEA12x6RelAlarmEntry=wtWebioEA12x6RelAlarmEntry, wtWebCount6HTTP=wtWebCount6HTTP, wtIpWatcher_24VSnmpSystemTrapEnable=wtIpWatcher_24VSnmpSystemTrapEnable, wtIpWatcherClockHrs=wtIpWatcherClockHrs, wtWebioEA2x2ERP_24VSNMP=wtWebioEA2x2ERP_24VSNMP, wtWebioEA12x6RelERPClockHrs=wtWebioEA12x6RelERPClockHrs, wtWebioEA2x2ERPStTzStartMin=wtWebioEA2x2ERPStTzStartMin, wtWebioEA12x6RelERPDiag=wtWebioEA12x6RelERPDiag, wtWebioEA2x2_24VPortLogicInputInverter=wtWebioEA2x2_24VPortLogicInputInverter, wtWebioEA12x12AlarmFtpText=wtWebioEA12x12AlarmFtpText, wtWebAlarm6x6DeviceName=wtWebAlarm6x6DeviceName, wtWebCount6SessCntrlAdminPassword=wtWebCount6SessCntrlAdminPassword, wtTrapReceiver2x2DeviceName=wtTrapReceiver2x2DeviceName, wtWebioEA2x2_24VAlarmUdpText=wtWebioEA2x2_24VAlarmUdpText, wtTrapReceiver2x2UdpAdminPort=wtTrapReceiver2x2UdpAdminPort, wtWebAlarm6x6AlarmAckEnable=wtWebAlarm6x6AlarmAckEnable, wtWebioEA12x12PortLogicOutputInverter=wtWebioEA12x12PortLogicOutputInverter, wtWebioEA2x2ERPSyslogSystemMessagesEnable=wtWebioEA2x2ERPSyslogSystemMessagesEnable, wtWebioEA6x6PortInputFilter=wtWebioEA6x6PortInputFilter, wtIpWatcherFTPUserName=wtIpWatcherFTPUserName, wtWebioEA2x2ERP_24VFTPOption=wtWebioEA2x2ERP_24VFTPOption, wtTrapReceiver2x2ActionInputTrigger=wtTrapReceiver2x2ActionInputTrigger, wtTrapReceiver2x2PortSystemTimerEnable=wtTrapReceiver2x2PortSystemTimerEnable, wtIpWatcher_24VDiag=wtIpWatcher_24VDiag, wtWebioEA12x6RelMailAuthPassword=wtWebioEA12x6RelMailAuthPassword, wtWebAlarm6x6AlarmInputTrigger=wtWebAlarm6x6AlarmInputTrigger, wtTrapReceiver2x2Gateway=wtTrapReceiver2x2Gateway, wtWebCount6MailPop3Server=wtWebCount6MailPop3Server, wtWebioEA12x6RelERPInputPortEntry=wtWebioEA12x6RelERPInputPortEntry, wtWebCount6StTzStartMonth=wtWebCount6StTzStartMonth, wtWebioEA24oemAlarmCount=wtWebioEA24oemAlarmCount, wtIpWatcherIpListEntry=wtIpWatcherIpListEntry, wtWebCount6StTzStartMin=wtWebCount6StTzStartMin, wtWebioEA6x6Alert19=wtWebioEA6x6Alert19, wtWebioEA2x2_24VSessCntrl=wtWebioEA2x2_24VSessCntrl, wtWebCount6PortInputFilter=wtWebCount6PortInputFilter, wtWebioEA12x6RelAlarmSnmpTrapText=wtWebioEA12x6RelAlarmSnmpTrapText, wtWebCount6Alert5=wtWebCount6Alert5, wtWebioEA12x6RelERPBinaryUdpPeerInputTrigger=wtWebioEA12x6RelERPBinaryUdpPeerInputTrigger, wtWebioEA12x6RelERPAlarmFtpDataPort=wtWebioEA12x6RelERPAlarmFtpDataPort, wtWebioEA24oemHttpInputTrigger=wtWebioEA24oemHttpInputTrigger, wtWebAlarm6x6FTPServerControlPort=wtWebAlarm6x6FTPServerControlPort, wtWebioEA12x12AlarmUdpText=wtWebioEA12x12AlarmUdpText, wtWebioEA2x2StTzOffsetMin=wtWebioEA2x2StTzOffsetMin, wtIpWatcherSessCntrlConfigMode=wtIpWatcherSessCntrlConfigMode, wtWebioEA2x2Alert23=wtWebioEA2x2Alert23, wtWebioEA2x2BinaryTcpClientServerPort=wtWebioEA2x2BinaryTcpClientServerPort, wtWebioEA6x6InputValue=wtWebioEA6x6InputValue, wtWebioEA2x2ERPLCShutDownView=wtWebioEA2x2ERPLCShutDownView, wtIpWatcherSnmpCommunityStringReadWrite=wtIpWatcherSnmpCommunityStringReadWrite, wtWebioEA2x2_24VStTzStartHrs=wtWebioEA2x2_24VStTzStartHrs, wtWebioEA24oemStTzStartHrs=wtWebioEA24oemStTzStartHrs, wtTrapReceiver2x2SessCntrlLogout=wtTrapReceiver2x2SessCntrlLogout, wtWebioEA24oemAlert10=wtWebioEA24oemAlert10, wtIpWatcher_24VOutputPortEntry=wtIpWatcher_24VOutputPortEntry, wtWebioEA24oemClockMin=wtWebioEA24oemClockMin, wtTrapReceiver2x2ActionFtpDataPort=wtTrapReceiver2x2ActionFtpDataPort, wtWebioEA12x12SnmpEnable=wtWebioEA12x12SnmpEnable, wtWebioEA12x6RelERPMfHotline=wtWebioEA12x6RelERPMfHotline, wtWebioEA24oemInputTable=wtWebioEA24oemInputTable, wtWebioEA6x6MailPop3Server=wtWebioEA6x6MailPop3Server, wtWebioEA6x6AlarmUdpPort=wtWebioEA6x6AlarmUdpPort, wtWebioEA12x6RelOutputPortEntry=wtWebioEA12x6RelOutputPortEntry, wtWebioEA12x6RelERPOutputValue=wtWebioEA12x6RelERPOutputValue, wtWebioEA12x12OutputNo=wtWebioEA12x12OutputNo, wtWebioEA12x6RelERPBinaryTcpClientInterval=wtWebioEA12x6RelERPBinaryTcpClientInterval, wtIpWatcherMfDeviceTyp=wtIpWatcherMfDeviceTyp, wtWebioEA24oemAlarmTcpPort=wtWebioEA24oemAlarmTcpPort, wtWebioEA6x6BinaryTcpClientServerPassword=wtWebioEA6x6BinaryTcpClientServerPassword, wtWebioEA2x2_24VTzEnable=wtWebioEA2x2_24VTzEnable, wtWebioEA12x6RelSessCntrlConfigPassword=wtWebioEA12x6RelSessCntrlConfigPassword, wtWebioEA12x6RelAlarmTcpText=wtWebioEA12x6RelAlarmTcpText, wtWebioEA24oemFTPOption=wtWebioEA24oemFTPOption, wtWebioEA12x12MailAuthPassword=wtWebioEA12x12MailAuthPassword, wtWebioEA2x2_24VAlarmTable=wtWebioEA2x2_24VAlarmTable, wtWebioEA12x12PortInputName=wtWebioEA12x12PortInputName, wtWebCount6PortInputCounterSet=wtWebCount6PortInputCounterSet, wtWebAlarm6x6Alert13=wtWebAlarm6x6Alert13, wtWebioEA12x6RelFTP=wtWebioEA12x6RelFTP, wtWebCount6SnmpSystemTrapManagerIP=wtWebCount6SnmpSystemTrapManagerIP, wtWebioEA6x6AlarmTcpIpAddr=wtWebioEA6x6AlarmTcpIpAddr, wtWebioEA12x12TimeServer=wtWebioEA12x12TimeServer, wtWebAlarm6x6AlarmCount=wtWebAlarm6x6AlarmCount, wtWebioEA24oemMailEnable=wtWebioEA24oemMailEnable, wtWebioEA24oemMailAuthPassword=wtWebioEA24oemMailAuthPassword, wtWebioEA12x6RelERPOutputModeBit=wtWebioEA12x6RelERPOutputModeBit, wtWebioEA12x12PortLogicFunction=wtWebioEA12x12PortLogicFunction, wtIpWatcherTimeZone=wtIpWatcherTimeZone, wtWebioEA12x12InputPortEntry=wtWebioEA12x12InputPortEntry, wtWebioEA2x2_24VBinaryOperationMode=wtWebioEA2x2_24VBinaryOperationMode, wtWebioEA2x2ERPSafetyTimeout=wtWebioEA2x2ERPSafetyTimeout, wtWebioEA24oemTsSyncTime=wtWebioEA24oemTsSyncTime, wtIpWatcher_24VMailAuthUser=wtIpWatcher_24VMailAuthUser, wtWebioEA2x2_24VGetHeaderEnable=wtWebioEA2x2_24VGetHeaderEnable, wtWebioEA12x12MfName=wtWebioEA12x12MfName, wtIpWatcher_24VAlarmUdpTrapTxEnable=wtIpWatcher_24VAlarmUdpTrapTxEnable, wtWebioEA2x2AlarmTcpReleaseText=wtWebioEA2x2AlarmTcpReleaseText, wtWebioEA12x6RelERPHttpInputTrigger=wtWebioEA12x6RelERPHttpInputTrigger, wtTrapReceiver2x2SessCntrl=wtTrapReceiver2x2SessCntrl, wtWebioEA6x6SyslogServerIP=wtWebioEA6x6SyslogServerIP, wtWebioEA12x12AlarmSyslogReleaseText=wtWebioEA12x12AlarmSyslogReleaseText, wtWebioEA2x2ERPMailReply=wtWebioEA2x2ERPMailReply, wtWebioEA12x6RelERPMfOrderNo=wtWebioEA12x6RelERPMfOrderNo, wtWebioEA24oemNetwork=wtWebioEA24oemNetwork, wtTrapReceiver2x2DeviceClock=wtTrapReceiver2x2DeviceClock, wtWebioEA2x2ERPStTzStartHrs=wtWebioEA2x2ERPStTzStartHrs, wtWebioEA12x6RelAlarmInputTrigger=wtWebioEA12x6RelAlarmInputTrigger, wtWebioEA2x2_24VAlarmFtpText=wtWebioEA2x2_24VAlarmFtpText, wtWebioEA24oemAlarmIfTable=wtWebioEA24oemAlarmIfTable, wtWebioEA2x2ERP_24VAlert12=wtWebioEA2x2ERP_24VAlert12, wtWebioEA12x12FTP=wtWebioEA12x12FTP, wtWebioEA2x2ERPDiagErrorCount=wtWebioEA2x2ERPDiagErrorCount, wtWebioEA2x2ERPAlert5=wtWebioEA2x2ERPAlert5, wtIpWatcherGateway=wtIpWatcherGateway, wtIpWatcher_24VStTzStartMonth=wtIpWatcher_24VStTzStartMonth, wtTrapReceiver2x2MailReply=wtTrapReceiver2x2MailReply, wtWebioEA2x2Alert7=wtWebioEA2x2Alert7, wtWebioEA2x2ERPInOut=wtWebioEA2x2ERPInOut, wtWebAlarm6x6TzOffsetHrs=wtWebAlarm6x6TzOffsetHrs, wtIpWatcher_24VIpListIfEntry=wtIpWatcher_24VIpListIfEntry, wtWebioEA12x12AlarmEntry=wtWebioEA12x12AlarmEntry, wtWebioEA12x6RelAlarmFtpDataPort=wtWebioEA12x6RelAlarmFtpDataPort, wtWebioEA24oemAlert7=wtWebioEA24oemAlert7, wtWebioEA12x6RelERPAlarmIfEntry=wtWebioEA12x6RelERPAlarmIfEntry, wtWebioEA12x6RelBinaryOperationMode=wtWebioEA12x6RelBinaryOperationMode, wtWebAlarm6x6Alert10=wtWebAlarm6x6Alert10, wtWebioEA2x2ERPMfAddr=wtWebioEA2x2ERPMfAddr, wtWebioEA12x12StTzOffsetHrs=wtWebioEA12x12StTzOffsetHrs, wtWebioEA12x6RelERPAlarmTcpPort=wtWebioEA12x6RelERPAlarmTcpPort, wtWebCount6SubnetMask=wtWebCount6SubnetMask, wtWebioEA12x12AlarmCount=wtWebioEA12x12AlarmCount, wtWebAlarm6x6IpAddress=wtWebAlarm6x6IpAddress, wtWebioEA2x2ERP_24VConfig=wtWebioEA2x2ERP_24VConfig, wtIpWatcherAlert26=wtIpWatcherAlert26, wtWebioEA6x6BinaryUdpPeerInputTrigger=wtWebioEA6x6BinaryUdpPeerInputTrigger, wtWebioEA12x6RelERPClockYear=wtWebioEA12x6RelERPClockYear, wtWebioEA2x2ERPAlarmSystemTrigger=wtWebioEA2x2ERPAlarmSystemTrigger, wtWebioEA12x12DnsServer2=wtWebioEA12x12DnsServer2, wtWebioEA12x6RelERPNetwork=wtWebioEA12x6RelERPNetwork, wtWebioEA2x2_24VAlarmMaxCounterValue=wtWebioEA2x2_24VAlarmMaxCounterValue, wtWebioEA2x2_24VAlert21=wtWebioEA2x2_24VAlert21)
mibBuilder.exportSymbols('Webio-Digital-MIB-US', wtWebioEA12x6RelBinaryTcpClientServerPassword=wtWebioEA12x6RelBinaryTcpClientServerPassword, wtWebioEA2x2ERPTimeServer2=wtWebioEA2x2ERPTimeServer2, wtTrapReceiver2x2MailAuthUser=wtTrapReceiver2x2MailAuthUser, wtWebCount6FTP=wtWebCount6FTP, wtWebioEA24oemAlert1=wtWebioEA24oemAlert1, wtWebioEA12x12SessCntrlPassword=wtWebioEA12x12SessCntrlPassword, wtWebioEA12x6RelERPBinaryConnectedIpAddr=wtWebioEA12x6RelERPBinaryConnectedIpAddr, wtWebioEA2x2SnmpSystemTrapEnable=wtWebioEA2x2SnmpSystemTrapEnable, wtWebioEA12x6RelUdpEnable=wtWebioEA12x6RelUdpEnable, wtWebioEA2x2ERPAlert8=wtWebioEA2x2ERPAlert8, wtIpWatcher_24VAlarmFtpFileName=wtIpWatcher_24VAlarmFtpFileName, wtWebioEA2x2HTTP=wtWebioEA2x2HTTP, wtIpWatcher_24VTzEnable=wtIpWatcher_24VTzEnable, wtWebioEA24oemDnsServer1=wtWebioEA24oemDnsServer1, wtWebCount6Config=wtWebCount6Config, wtWebioEA6x6Alarm=wtWebioEA6x6Alarm, wtWebioEA2x2ERPAlarmIfTable=wtWebioEA2x2ERPAlarmIfTable, wtWebioEA2x2ERPMailServer=wtWebioEA2x2ERPMailServer, wtWebioEA12x6RelERPText=wtWebioEA12x6RelERPText, wtWebioEA2x2_24VOutputNo=wtWebioEA2x2_24VOutputNo, wtIpWatcherNetwork=wtIpWatcherNetwork, wtWebioEA6x6AlarmIfEntry=wtWebioEA6x6AlarmIfEntry, wtTrapReceiver2x2SyslogServerPort=wtTrapReceiver2x2SyslogServerPort, wtWebioEA12x12TimeServer2=wtWebioEA12x12TimeServer2, wtIpWatcher_24VAlarmFtpDataPort=wtIpWatcher_24VAlarmFtpDataPort, wtWebioEA12x6RelERPDnsServer1=wtWebioEA12x6RelERPDnsServer1, wtWebAlarm6x6AlarmNo=wtWebAlarm6x6AlarmNo, wtWebioEA2x2InputPortEntry=wtWebioEA2x2InputPortEntry, wtWebioEA6x6AlarmCount=wtWebioEA6x6AlarmCount, wtWebioEA12x6RelERPBinaryIfEntry=wtWebioEA12x6RelERPBinaryIfEntry, wtTrapReceiver2x2TimeServer=wtTrapReceiver2x2TimeServer, wtWebioEA2x2_24VBinaryTcpServerLocalPort=wtWebioEA2x2_24VBinaryTcpServerLocalPort, wtIpWatcherStTzOffsetMin=wtIpWatcherStTzOffsetMin, wtWebioEA12x6RelBinaryTcpClientInterval=wtWebioEA12x6RelBinaryTcpClientInterval, wtWebioEA12x6RelERPAlert22=wtWebioEA12x6RelERPAlert22, wtTrapReceiver2x2SessCntrlAdminPassword=wtTrapReceiver2x2SessCntrlAdminPassword, wtIpWatcherAlarmUdpText=wtIpWatcherAlarmUdpText, wtWebioEA12x6RelERPAlert14=wtWebioEA12x6RelERPAlert14, wtIpWatcherAlarmPollingRate=wtIpWatcherAlarmPollingRate, wtIpWatcher_24VFTPServerIP=wtIpWatcher_24VFTPServerIP, wtIpWatcherStTzOffsetHrs=wtIpWatcherStTzOffsetHrs, wtWebioEA2x2ERP_24VAlert3=wtWebioEA2x2ERP_24VAlert3, wtIpWatcherMfHotline=wtIpWatcherMfHotline, wtWebioEA12x12BinaryUdpPeerApplicationMode=wtWebioEA12x12BinaryUdpPeerApplicationMode, wtWebioEA2x2ERPBasic=wtWebioEA2x2ERPBasic, wtIpWatcher_24VStTzStopWday=wtIpWatcher_24VStTzStopWday, wtWebioEA2x2ERPDiagErrorClear=wtWebioEA2x2ERPDiagErrorClear, wtTrapReceiver2x2ActionEntry=wtTrapReceiver2x2ActionEntry, wtTrapReceiver2x2FTPUserName=wtTrapReceiver2x2FTPUserName, wtWebioEA12x12ClockMin=wtWebioEA12x12ClockMin, wtTrapReceiver2x2Network=wtTrapReceiver2x2Network, wtWebioEA2x2ERP_24VInputNo=wtWebioEA2x2ERP_24VInputNo, wtWebioEA2x2ERPDiag=wtWebioEA2x2ERPDiag, wtWebioEA12x6RelSessCntrlPassword=wtWebioEA12x6RelSessCntrlPassword, wtWebioEA2x2ERPFTP=wtWebioEA2x2ERPFTP, wtIpWatcher_24VNetwork=wtIpWatcher_24VNetwork, wtWebAlarm6x6StTzStopMonth=wtWebAlarm6x6StTzStopMonth, wtWebCount6ReportFtpText=wtWebCount6ReportFtpText, wtWebioEA12x6RelERPPortPulseDuration=wtWebioEA12x6RelERPPortPulseDuration, wtIpWatcherDiagBinaryError=wtIpWatcherDiagBinaryError, wtWebioEA12x6RelAlarmMailSubject=wtWebioEA12x6RelAlarmMailSubject, wtWebioEA12x12BinaryOperationMode=wtWebioEA12x12BinaryOperationMode, wtWebioEA24oemText=wtWebioEA24oemText, wtWebCount6HttpPort=wtWebCount6HttpPort, wtWebioEA12x6RelERPFTPOption=wtWebioEA12x6RelERPFTPOption, wtWebioEA12x6RelAlarmSystemTrigger=wtWebioEA12x6RelAlarmSystemTrigger, wtWebioEA2x2ERP_24VWayBackFTPResponse=wtWebioEA2x2ERP_24VWayBackFTPResponse, wtWebioEA2x2MailReply=wtWebioEA2x2MailReply, wtWebioEA2x2BinaryIfTable=wtWebioEA2x2BinaryIfTable, wtWebioEA12x6RelBinaryTcpClientServerIpAddr=wtWebioEA12x6RelBinaryTcpClientServerIpAddr, wtWebioEA12x6RelERPInputPortTable=wtWebioEA12x6RelERPInputPortTable, wtTrapReceiver2x2DeviceLocation=wtTrapReceiver2x2DeviceLocation, wtWebioEA24oemStTzStartWday=wtWebioEA24oemStTzStartWday, wtWebioEA2x2ERPWayBack=wtWebioEA2x2ERPWayBack, wtIpWatcherAlarmTriggerState=wtIpWatcherAlarmTriggerState, wtWebioEA12x6RelClockMonth=wtWebioEA12x6RelClockMonth, wtWebioEA12x6RelSnmpEnable=wtWebioEA12x6RelSnmpEnable, wtIpWatcherMailAdName=wtIpWatcherMailAdName, wtWebioEA24oemDnsServer2=wtWebioEA24oemDnsServer2, wtWebioEA12x6RelERPOutputNo=wtWebioEA12x6RelERPOutputNo, wtWebioEA2x2AlarmSyslogText=wtWebioEA2x2AlarmSyslogText, wtWebioEA2x2ERP_24VAlert18=wtWebioEA2x2ERP_24VAlert18, wtWebioEA24oemSyslog=wtWebioEA24oemSyslog, wtTrapReceiver2x2ActionGlobalEnable=wtTrapReceiver2x2ActionGlobalEnable, wtWebAlarm6x6TsEnable=wtWebAlarm6x6TsEnable, wtWebioEA12x6RelERPMfName=wtWebioEA12x6RelERPMfName, wtWebioEA2x2ERPAlarmOutputTrigger=wtWebioEA2x2ERPAlarmOutputTrigger, wtWebioEA12x6RelERPWayBackEnable=wtWebioEA12x6RelERPWayBackEnable, wtWebioEA2x2ERP_24VDeviceText=wtWebioEA2x2ERP_24VDeviceText, wtWebioEA12x6RelERPFTPServerIP=wtWebioEA12x6RelERPFTPServerIP, wtWebioEA24oemMfName=wtWebioEA24oemMfName, wtWebioEA2x2ERP_24VBinaryIfEntry=wtWebioEA2x2ERP_24VBinaryIfEntry, wtWebioEA12x6RelDnsServer1=wtWebioEA12x6RelDnsServer1, wtWebioEA2x2ERPTsSyncTime=wtWebioEA2x2ERPTsSyncTime, wtWebioEA2x2_24VNetwork=wtWebioEA2x2_24VNetwork, wtWebioEA12x12BinaryConnectedIpAddr=wtWebioEA12x12BinaryConnectedIpAddr, wtWebAlarm6x6StTzStartWday=wtWebAlarm6x6StTzStartWday, wtWebioEA2x2ERP_24VIpAddress=wtWebioEA2x2ERP_24VIpAddress, wtWebioEA6x6AlarmOutputTrigger=wtWebioEA6x6AlarmOutputTrigger, wtWebioEA2x2_24VAlert10=wtWebioEA2x2_24VAlert10, wtWebioEA2x2ERPStTzEnable=wtWebioEA2x2ERPStTzEnable, wtWebioEA24oemStTzStartMin=wtWebioEA24oemStTzStartMin, wtWebioEA2x2FTPServerIP=wtWebioEA2x2FTPServerIP, wtWebioEA12x6RelOutputEntry=wtWebioEA12x6RelOutputEntry, wtWebioEA12x12MfInternet=wtWebioEA12x12MfInternet, wtWebioEA12x6RelERPInputNo=wtWebioEA12x6RelERPInputNo, wtWebioEA6x6AlarmTcpText=wtWebioEA6x6AlarmTcpText, wtWebioEA24oemDeviceClock=wtWebioEA24oemDeviceClock, wtWebAlarm6x6Alert26=wtWebAlarm6x6Alert26, wtWebCount6ReportSyslogIpAddr=wtWebCount6ReportSyslogIpAddr, wtIpWatcher_24VIpListNo=wtIpWatcher_24VIpListNo, wtWebioEA2x2_24VDeviceText=wtWebioEA2x2_24VDeviceText, wtIpWatcher_24VTimeServer1=wtIpWatcher_24VTimeServer1, wtWebioEA12x6RelHttpInputTrigger=wtWebioEA12x6RelHttpInputTrigger, wtWebioEA12x6RelERPFTPAccount=wtWebioEA12x6RelERPFTPAccount, wtWebAlarm6x6FTP=wtWebAlarm6x6FTP, wtWebioEA12x6RelERPBinaryConnectedPort=wtWebioEA12x6RelERPBinaryConnectedPort, wtWebioEA12x6RelERPAlarmSyslogReleaseText=wtWebioEA12x6RelERPAlarmSyslogReleaseText, wtWebioEA12x6RelBinaryUdpPeerInputTrigger=wtWebioEA12x6RelBinaryUdpPeerInputTrigger, wtWebioEA2x2_24VAlert23=wtWebioEA2x2_24VAlert23, wtWebCount6DiagBinaryError=wtWebCount6DiagBinaryError, wtWebioEA12x6RelERPSubnetMask=wtWebioEA12x6RelERPSubnetMask, wtIpWatcherAlert9=wtIpWatcherAlert9, wtWebioEA12x12MailServer=wtWebioEA12x12MailServer, wtWebCount6IpAddress=wtWebCount6IpAddress, wtWebioEA2x2_24V=wtWebioEA2x2_24V, wtIpWatcherAlarmFtpOption=wtIpWatcherAlarmFtpOption, wtWebioEA12x6RelAlarmTable=wtWebioEA12x6RelAlarmTable, wtWebioEA12x6RelERPSyslogServerPort=wtWebioEA12x6RelERPSyslogServerPort, wtIpWatcher_24VPortPulseDuration=wtIpWatcher_24VPortPulseDuration, wtWebioEA12x12Mail=wtWebioEA12x12Mail, wtWebioEA12x6RelAlarmCount=wtWebioEA12x6RelAlarmCount, wtTrapReceiver2x2OutputTable=wtTrapReceiver2x2OutputTable, wtWebioEA2x2_24VAlert19=wtWebioEA2x2_24VAlert19, wtWebCount6StTzStartHrs=wtWebCount6StTzStartHrs, wtWebioEA6x6OutputModeBit=wtWebioEA6x6OutputModeBit, wtIpWatcherAlarmSyslogText=wtIpWatcherAlarmSyslogText, wtWebioEA2x2ERPBinaryTcpClientInterval=wtWebioEA2x2ERPBinaryTcpClientInterval, wtTrapReceiver2x2InputValue=wtTrapReceiver2x2InputValue, wtTrapReceiver2x2MfName=wtTrapReceiver2x2MfName, wtWebioEA12x6RelERPPortPulsePolarity=wtWebioEA12x6RelERPPortPulsePolarity, wtWebioEA6x6AlarmFtpText=wtWebioEA6x6AlarmFtpText, wtWebioEA2x2ERP_24VInputCounterClear=wtWebioEA2x2ERP_24VInputCounterClear, wtTrapReceiver2x2WatchListAlias=wtTrapReceiver2x2WatchListAlias, wtWebioEA6x6PortPulsePolarity=wtWebioEA6x6PortPulsePolarity, wtWebioEA2x2Alert18=wtWebioEA2x2Alert18, wtWebAlarm6x6AlarmTcpPort=wtWebAlarm6x6AlarmTcpPort, wtWebioEA12x12ClockYear=wtWebioEA12x12ClockYear, wtWebioEA12x12Alert12=wtWebioEA12x12Alert12, wtWebioEA2x2AlarmTcpIpAddr=wtWebioEA2x2AlarmTcpIpAddr, wtWebioEA12x6RelERPAlarmFtpText=wtWebioEA12x6RelERPAlarmFtpText, wtIpWatcher_24VAlert35=wtIpWatcher_24VAlert35, wtWebioEA2x2ERPPortInputMode=wtWebioEA2x2ERPPortInputMode, wtWebAlarm6x6Alert21=wtWebAlarm6x6Alert21, wtWebioEA12x6RelERPAlert3=wtWebioEA12x6RelERPAlert3, wtIpWatcher_24VMail=wtIpWatcher_24VMail, wtWebioEA2x2_24VInputPortEntry=wtWebioEA2x2_24VInputPortEntry, wtTrapReceiver2x2ActionSyslogIpAddr=wtTrapReceiver2x2ActionSyslogIpAddr, wtWebioEA2x2_24VDeviceContact=wtWebioEA2x2_24VDeviceContact, wtWebioEA2x2ERPPortInputFilter=wtWebioEA2x2ERPPortInputFilter, wtWebioEA12x6RelBinaryTable=wtWebioEA12x6RelBinaryTable, wtIpWatcherAlert22=wtIpWatcherAlert22, wtWebioEA2x2ERP_24VAlarmTimerCron=wtWebioEA2x2ERP_24VAlarmTimerCron, wtWebioEA12x12AlarmIfEntry=wtWebioEA12x12AlarmIfEntry, wtWebioEA12x6RelAlert2=wtWebioEA12x6RelAlert2, wtWebioEA2x2_24VMfName=wtWebioEA2x2_24VMfName, wtIpWatcher_24VUDP=wtIpWatcher_24VUDP, wtWebAlarm6x6InputNo=wtWebAlarm6x6InputNo, wtTrapReceiver2x2Manufact=wtTrapReceiver2x2Manufact, wtWebCount6TimeDate=wtWebCount6TimeDate, wtWebioEA2x2StTzStartWday=wtWebioEA2x2StTzStartWday, wtWebioEA12x6RelERPInputCounter=wtWebioEA12x6RelERPInputCounter, wtIpWatcher_24VInputValue=wtIpWatcher_24VInputValue, wtIpWatcher_24VFTPEnable=wtIpWatcher_24VFTPEnable, wtIpWatcher_24VHttpPort=wtIpWatcher_24VHttpPort, wtWebioEA24oemPortLogicOutputInverter=wtWebioEA24oemPortLogicOutputInverter, wtWebioEA2x2StTzStopMin=wtWebioEA2x2StTzStopMin, wtIpWatcher_24VAlert18=wtIpWatcher_24VAlert18, wtWebioEA24oemFTPUserName=wtWebioEA24oemFTPUserName, wtIpWatcher_24VSyslogServerIP=wtIpWatcher_24VSyslogServerIP, wtWebCount6PortInputCounterScale=wtWebCount6PortInputCounterScale, wtWebioEA2x2_24VBinaryTcpClientInputTrigger=wtWebioEA2x2_24VBinaryTcpClientInputTrigger, wtIpWatcher_24VAlarmTable=wtIpWatcher_24VAlarmTable, wtWebioEA2x2ERPSnmpEnable=wtWebioEA2x2ERPSnmpEnable, wtWebioEA2x2ERP_24VBinaryIfTable=wtWebioEA2x2ERP_24VBinaryIfTable, wtWebioEA24oemUdpAdminPort=wtWebioEA24oemUdpAdminPort, wtWebioEA6x6=wtWebioEA6x6, wtWebioEA6x6Alert14=wtWebioEA6x6Alert14, wtWebioEA6x6MailAuthentication=wtWebioEA6x6MailAuthentication, wtWebioEA12x6RelERPFTPUserName=wtWebioEA12x6RelERPFTPUserName, wtIpWatcher_24VUdpEnable=wtIpWatcher_24VUdpEnable, wtTrapReceiver2x2ButtonEntry=wtTrapReceiver2x2ButtonEntry, wtWebioEA2x2ERP_24VBinaryTcpClientInputTrigger=wtWebioEA2x2ERP_24VBinaryTcpClientInputTrigger, wtWebioEA2x2_24VAlert11=wtWebioEA2x2_24VAlert11, wtWebioEA24oemClockHrs=wtWebioEA24oemClockHrs, wtWebioEA2x2TimeZone=wtWebioEA2x2TimeZone, wtWebioEA2x2AlarmFtpText=wtWebioEA2x2AlarmFtpText, wtIpWatcher_24VDiagErrorMessage=wtIpWatcher_24VDiagErrorMessage, wtIpWatcherAlert19=wtIpWatcherAlert19, wtWebioEA12x6RelERPAlert18=wtWebioEA12x6RelERPAlert18, wtWebCount6SessCntrl=wtWebCount6SessCntrl, wtTrapReceiver2x2StTzEnable=wtTrapReceiver2x2StTzEnable, wtIpWatcherIpListName=wtIpWatcherIpListName, wtTrapReceiver2x2FTPServerControlPort=wtTrapReceiver2x2FTPServerControlPort, wtWebioEA24oemStTzStartMonth=wtWebioEA24oemStTzStartMonth, wtWebioEA12x6RelERPTimeServer2=wtWebioEA12x6RelERPTimeServer2, wtWebioEA2x2ERPWayBackServerControlPort=wtWebioEA2x2ERPWayBackServerControlPort, wtWebioEA2x2ERP_24VClockMonth=wtWebioEA2x2ERP_24VClockMonth, wtWebioEA12x12SessCntrlConfigMode=wtWebioEA12x12SessCntrlConfigMode, wtIpWatcher_24VAlarmUdpIpAddr=wtIpWatcher_24VAlarmUdpIpAddr, wtWebioEA24oemStTzStopMode=wtWebioEA24oemStTzStopMode, wtWebioEA2x2ERP_24VMailAuthUser=wtWebioEA2x2ERP_24VMailAuthUser, wtWebioEA24oemAlert31=wtWebioEA24oemAlert31, wtWebCount6Mail=wtWebCount6Mail, wtWebioEA2x2_24VBinaryIfTable=wtWebioEA2x2_24VBinaryIfTable, wtWebCount6DnsServer1=wtWebCount6DnsServer1, wtTrapReceiver2x2OutEvOutputs=wtTrapReceiver2x2OutEvOutputs, wtWebioEA6x6SnmpCommunityStringReadWrite=wtWebioEA6x6SnmpCommunityStringReadWrite, wtIpWatcher_24VAlarmUdpTrgClearText=wtIpWatcher_24VAlarmUdpTrgClearText, wtWebAlarm6x6AlarmAckPort=wtWebAlarm6x6AlarmAckPort, wtWebioEA24oemAlert5=wtWebioEA24oemAlert5, wtWebioEA12x6RelAlert15=wtWebioEA12x6RelAlert15, wtWebioEA2x2BinaryUdpPeerInputTrigger=wtWebioEA2x2BinaryUdpPeerInputTrigger, wtWebioEA2x2Alert16=wtWebioEA2x2Alert16, wtWebioEA24oemBinaryUdpPeerLocalPort=wtWebioEA24oemBinaryUdpPeerLocalPort, wtIpWatcherIpListNo=wtIpWatcherIpListNo, wtIpWatcherAlarmSnmpTrapReleaseText=wtIpWatcherAlarmSnmpTrapReleaseText, wtWebioEA2x2ERPAlarmTcpIpAddr=wtWebioEA2x2ERPAlarmTcpIpAddr, wtWebioEA2x2_24VBinaryUdpPeerLocalPort=wtWebioEA2x2_24VBinaryUdpPeerLocalPort, wtWebioEA12x12DiagErrorClear=wtWebioEA12x12DiagErrorClear, wtIpWatcherSyslogServerIP=wtIpWatcherSyslogServerIP, wtTrapReceiver2x2Text=wtTrapReceiver2x2Text, wtWebioEA2x2ERP_24VPortOutputSafetyState=wtWebioEA2x2ERP_24VPortOutputSafetyState, wtWebioEA2x2_24VPortInputMode=wtWebioEA2x2_24VPortInputMode, wtWebioEA24oemAlarmUdpPort=wtWebioEA24oemAlarmUdpPort, wtWebAlarm6x6Alert7=wtWebAlarm6x6Alert7, wtIpWatcherDnsServer1=wtIpWatcherDnsServer1, wtIpWatcherPortPulsePolarity=wtIpWatcherPortPulsePolarity, wtWebioEA24oemAlert28=wtWebioEA24oemAlert28, wtWebioEA2x2ERPBinaryTcpClientServerIpAddr=wtWebioEA2x2ERPBinaryTcpClientServerIpAddr, wtWebioEA2x2_24VBinaryEntry=wtWebioEA2x2_24VBinaryEntry, wtWebioEA6x6Device=wtWebioEA6x6Device, wtWebioEA2x2ERPBinaryIfTable=wtWebioEA2x2ERPBinaryIfTable, wtWebioEA2x2_24VAlarmSystemTrigger=wtWebioEA2x2_24VAlarmSystemTrigger, wtWebioEA12x12SessCntrlLogout=wtWebioEA12x12SessCntrlLogout, wtWebioEA2x2_24VOutputValue=wtWebioEA2x2_24VOutputValue, wtWebioEA6x6BinaryTcpClientInterval=wtWebioEA6x6BinaryTcpClientInterval, wtWebioEA2x2ERP_24VAlarmIfTable=wtWebioEA2x2ERP_24VAlarmIfTable, wtWebioEA2x2BinaryConnectedPort=wtWebioEA2x2BinaryConnectedPort, wtIpWatcher_24VAlarmPollingRate=wtIpWatcher_24VAlarmPollingRate, wtWebioEA6x6InputPortEntry=wtWebioEA6x6InputPortEntry, wtWebioEA24oemTimeServer1=wtWebioEA24oemTimeServer1, wtWebCount6ReportUdpIpAddr=wtWebCount6ReportUdpIpAddr, wtWebioEA2x2ERPAlarmFtpDataPort=wtWebioEA2x2ERPAlarmFtpDataPort)
mibBuilder.exportSymbols('Webio-Digital-MIB-US', wtIpWatcher_24VGateway=wtIpWatcher_24VGateway, wtWebAlarm6x6Alert2=wtWebAlarm6x6Alert2, wtWebCount6AlertDiag=wtWebCount6AlertDiag, wtWebioEA24oemInputState=wtWebioEA24oemInputState, wtTrapReceiver2x2ActionTcpIpAddr=wtTrapReceiver2x2ActionTcpIpAddr, wtWebAlarm6x6TimeZone=wtWebAlarm6x6TimeZone, wtTrapReceiver2x2WatchListSeverity=wtTrapReceiver2x2WatchListSeverity, wtWebioEA12x12DeviceLocation=wtWebioEA12x12DeviceLocation, wtWebioEA2x2ERPBinaryTcpServerClientHttpPort=wtWebioEA2x2ERPBinaryTcpServerClientHttpPort, wtIpWatcher_24VOutputState=wtIpWatcher_24VOutputState, wtWebioEA6x6DeviceContact=wtWebioEA6x6DeviceContact, wtWebioEA2x2ERP_24VMailEnable=wtWebioEA2x2ERP_24VMailEnable, wtIpWatcherMailReply=wtIpWatcherMailReply, wtWebioEA6x6ClockMonth=wtWebioEA6x6ClockMonth, wtWebioEA6x6BinaryModeCount=wtWebioEA6x6BinaryModeCount, wtWebioEA12x12TimeServer1=wtWebioEA12x12TimeServer1, wtWebioEA12x6RelAlarmMailReleaseText=wtWebioEA12x6RelAlarmMailReleaseText, wtWebioEA6x6Alert23=wtWebioEA6x6Alert23, wtTrapReceiver2x2ActionInterval=wtTrapReceiver2x2ActionInterval, wtWebioEA12x6RelERPAlert16=wtWebioEA12x6RelERPAlert16, wtWebioEA12x12BinaryConnectedPort=wtWebioEA12x12BinaryConnectedPort, wtWebioEA2x2InputValue=wtWebioEA2x2InputValue, wtWebioEA2x2ERPAlarmSyslogIpAddr=wtWebioEA2x2ERPAlarmSyslogIpAddr, wtWebioEA2x2_24VMfHotline=wtWebioEA2x2_24VMfHotline, wtWebioEA2x2InputCounterClear=wtWebioEA2x2InputCounterClear, wtWebCount6MailAdName=wtWebCount6MailAdName, wtWebioEA12x6RelERPSyslogSystemMessagesEnable=wtWebioEA12x6RelERPSyslogSystemMessagesEnable, wtWebioEA12x6RelERPBinaryEntry=wtWebioEA12x6RelERPBinaryEntry, wtWebioEA2x2ERP_24VStTzStartMin=wtWebioEA2x2ERP_24VStTzStartMin, wtWebioEA12x6RelMfHotline=wtWebioEA12x6RelMfHotline, wtIpWatcherStTzStopMonth=wtIpWatcherStTzStopMonth, wtWebioEA6x6TzOffsetHrs=wtWebioEA6x6TzOffsetHrs, wtWebioEA12x12MailPop3Server=wtWebioEA12x12MailPop3Server, wtWebioEA12x6RelOutputTable=wtWebioEA12x6RelOutputTable, wtWebioEA2x2_24VBinaryUdpPeerInputTrigger=wtWebioEA2x2_24VBinaryUdpPeerInputTrigger, wtWebioEA2x2_24VPortOutputName=wtWebioEA2x2_24VPortOutputName, wtWebioEA2x2ERP_24VDeviceClock=wtWebioEA2x2ERP_24VDeviceClock, wtWebioEA2x2AlarmUdpReleaseText=wtWebioEA2x2AlarmUdpReleaseText, wtWebAlarm6x6SnmpSystemTrapEnable=wtWebAlarm6x6SnmpSystemTrapEnable, wtWebCount6UdpEnable=wtWebCount6UdpEnable, wtWebioEA6x6OutputValue=wtWebioEA6x6OutputValue, wtIpWatcherSubnetMask=wtIpWatcherSubnetMask, wtWebioEA2x2BinaryUdpPeerRemotePort=wtWebioEA2x2BinaryUdpPeerRemotePort, wtIpWatcher_24VAlarmCount=wtIpWatcher_24VAlarmCount, wtWebioEA12x12OutputEntry=wtWebioEA12x12OutputEntry, wtTrapReceiver2x2WatchListCount=wtTrapReceiver2x2WatchListCount, wtWebAlarm6x6Alert29=wtWebAlarm6x6Alert29, wtWebioEA2x2ERP_24VAlert5=wtWebioEA2x2ERP_24VAlert5, wtIpWatcher_24VAlarmSnmpTrapText=wtIpWatcher_24VAlarmSnmpTrapText, wtWebioEA2x2ERP_24VAlarmSnmpManagerIP=wtWebioEA2x2ERP_24VAlarmSnmpManagerIP, wtWebioEA12x6RelUDP=wtWebioEA12x6RelUDP, wtWebioEA2x2ERPSnmpCommunityStringRead=wtWebioEA2x2ERPSnmpCommunityStringRead, wtWebioEA2x2_24VAlert13=wtWebioEA2x2_24VAlert13, wtWebioEA12x6RelERPGateway=wtWebioEA12x6RelERPGateway, wtWebioEA2x2_24VBinaryTcpClientServerPort=wtWebioEA2x2_24VBinaryTcpClientServerPort, wtWebioEA2x2ERPDeviceContact=wtWebioEA2x2ERPDeviceContact, wtIpWatcher_24VAlert36=wtIpWatcher_24VAlert36, wtTrapReceiver2x2TimeServer2=wtTrapReceiver2x2TimeServer2, wtWebioEA2x2ERPUdpEnable=wtWebioEA2x2ERPUdpEnable, wtIpWatcherStTzStartMin=wtIpWatcherStTzStartMin, wtWebCount6Diag=wtWebCount6Diag, wtWebAlarm6x6Alert27=wtWebAlarm6x6Alert27, wtWebioEA6x6DiagErrorMessage=wtWebioEA6x6DiagErrorMessage, wtIpWatcherAlarmInterval=wtIpWatcherAlarmInterval, wtIpWatcherAlert5=wtIpWatcherAlert5, wtIpWatcher_24VDnsServer2=wtIpWatcher_24VDnsServer2, wtWebioEA2x2Alert15=wtWebioEA2x2Alert15, wtWebioEA2x2ERPAlarmMailAddr=wtWebioEA2x2ERPAlarmMailAddr, wtWebioEA2x2ERPDiagErrorIndex=wtWebioEA2x2ERPDiagErrorIndex, wtWebioEA24oemManufact=wtWebioEA24oemManufact, wtWebAlarm6x6StTzStartHrs=wtWebAlarm6x6StTzStartHrs, wtWebioEA2x2BinaryEntry=wtWebioEA2x2BinaryEntry, wtWebioEA2x2ERPPortOutputText=wtWebioEA2x2ERPPortOutputText, wtWebioEA12x12HttpInputTrigger=wtWebioEA12x12HttpInputTrigger, wtWebioEA24oemSnmpSystemTrapManagerIP=wtWebioEA24oemSnmpSystemTrapManagerIP, wtWebioEA2x2PortInputBicountInactivTimeout=wtWebioEA2x2PortInputBicountInactivTimeout, wtWebioEA2x2ERPAlert7=wtWebioEA2x2ERPAlert7, wtWebioEA6x6OutputModeEntry=wtWebioEA6x6OutputModeEntry, wtWebAlarm6x6AlarmMailAddr=wtWebAlarm6x6AlarmMailAddr, wtIpWatcher_24VAlarmEnable=wtIpWatcher_24VAlarmEnable, wtWebioEA12x6RelERPAlert10=wtWebioEA12x6RelERPAlert10, wtWebioEA2x2InputNo=wtWebioEA2x2InputNo, wtWebioEA12x6RelTimeServer=wtWebioEA12x6RelTimeServer, wtWebioEA12x6RelMailEnable=wtWebioEA12x6RelMailEnable, wtWebAlarm6x6MailAuthUser=wtWebAlarm6x6MailAuthUser, wtWebioEA12x12PortOutputName=wtWebioEA12x12PortOutputName, wtWebioEA12x12AlarmIfTable=wtWebioEA12x12AlarmIfTable, wtWebioEA2x2AlarmSystemTrigger=wtWebioEA2x2AlarmSystemTrigger, wtWebAlarm6x6FTPAccount=wtWebAlarm6x6FTPAccount, wtWebioEA2x2ERPSyslogEnable=wtWebioEA2x2ERPSyslogEnable, wtWebAlarm6x6OutputState=wtWebAlarm6x6OutputState, wtWebioEA2x2_24VTimeServer2=wtWebioEA2x2_24VTimeServer2, wtWebioEA2x2ERP_24VAlarmSyslogText=wtWebioEA2x2ERP_24VAlarmSyslogText, wtIpWatcherAlarmTcpTrgClearText=wtIpWatcherAlarmTcpTrgClearText, wtWebioEA2x2Diag=wtWebioEA2x2Diag, wtWebioEA24oemAlert24=wtWebioEA24oemAlert24, wtWebioEA24oemMfInternet=wtWebioEA24oemMfInternet, wtWebioEA12x12AlarmMaxCounterValue=wtWebioEA12x12AlarmMaxCounterValue, wtWebioEA12x6RelERPOutputModeTable=wtWebioEA12x6RelERPOutputModeTable, wtWebioEA2x2ERP_24VTzEnable=wtWebioEA2x2ERP_24VTzEnable, wtTrapReceiver2x2ActionSystemButtonTrigger=wtTrapReceiver2x2ActionSystemButtonTrigger, wtIpWatcherAlarmTimerCron=wtIpWatcherAlarmTimerCron, wtIpWatcherAlert29=wtIpWatcherAlert29, wtWebioEA2x2ERP_24VAlarmSyslogReleaseText=wtWebioEA2x2ERP_24VAlarmSyslogReleaseText, wtWebioEA2x2ERPStTzStartMonth=wtWebioEA2x2ERPStTzStartMonth, wtIpWatcherAlert3=wtIpWatcherAlert3, wtWebioEA2x2TimeDate=wtWebioEA2x2TimeDate, wtWebioEA2x2LoadControlEnable=wtWebioEA2x2LoadControlEnable, wtWebAlarm6x6Ports=wtWebAlarm6x6Ports, wtIpWatcherInputValue=wtIpWatcherInputValue, wtWebioEA2x2ERP_24VAlert6=wtWebioEA2x2ERP_24VAlert6, wtWebioEA12x6RelERPOutputModeEntry=wtWebioEA12x6RelERPOutputModeEntry, wtWebioEA2x2BinaryTcpClientServerPassword=wtWebioEA2x2BinaryTcpClientServerPassword, wtWebioEA2x2ERPTimeServer=wtWebioEA2x2ERPTimeServer, wtIpWatcher_24VOutputs=wtIpWatcher_24VOutputs, wtWebioEA2x2ERP_24VUdpRemotePort=wtWebioEA2x2ERP_24VUdpRemotePort, wtIpWatcher_24VAlarmSyslogIpAddr=wtIpWatcher_24VAlarmSyslogIpAddr, wtIpWatcherInputCounter=wtIpWatcherInputCounter, wtTrapReceiver2x2Outputs=wtTrapReceiver2x2Outputs, wtIpWatcherIpListIfEntry=wtIpWatcherIpListIfEntry, wtWebioEA12x12Alert23=wtWebioEA12x12Alert23, wtWebAlarm6x6AlarmFtpReleaseText=wtWebAlarm6x6AlarmFtpReleaseText, wtWebAlarm6x6AlarmMailReleaseText=wtWebAlarm6x6AlarmMailReleaseText, wtWebioEA12x12DnsServer1=wtWebioEA12x12DnsServer1, wtWebioEA12x6RelERPStTzStopMin=wtWebioEA12x6RelERPStTzStopMin, wtWebioEA2x2TimeServer=wtWebioEA2x2TimeServer, wtWebCount6MailAuthUser=wtWebCount6MailAuthUser, wtWebioEA2x2ERPAlert21=wtWebioEA2x2ERPAlert21, wtWebioEA6x6InputState=wtWebioEA6x6InputState, wtIpWatcher_24VDevice=wtIpWatcher_24VDevice, wtWebioEA2x2_24VClockHrs=wtWebioEA2x2_24VClockHrs, wtWebioEA12x12InputCounter=wtWebioEA12x12InputCounter, wtWebioEA12x12DiagErrorCount=wtWebioEA12x12DiagErrorCount, wtWebioEA2x2_24VAlarmNo=wtWebioEA2x2_24VAlarmNo, wtIpWatcher_24VSnmpEnable=wtIpWatcher_24VSnmpEnable, wtWebioEA2x2ERP_24VTzOffsetMin=wtWebioEA2x2ERP_24VTzOffsetMin, wtWebioEA2x2ERP_24VMailServer=wtWebioEA2x2ERP_24VMailServer, wtWebAlarm6x6Alarm=wtWebAlarm6x6Alarm, wtWebioEA12x12MailAuthentication=wtWebioEA12x12MailAuthentication, wtWebCount6MailReply=wtWebCount6MailReply, wtWebioEA12x6RelFTPServerControlPort=wtWebioEA12x6RelFTPServerControlPort, wtWebioEA12x12StTzStartWday=wtWebioEA12x12StTzStartWday, wtWebioEA2x2ERP_24VBinaryTcpClientLocalPort=wtWebioEA2x2ERP_24VBinaryTcpClientLocalPort, wtWebioEA2x2ERP_24VSyslogEnable=wtWebioEA2x2ERP_24VSyslogEnable, wtWebioEA12x6RelAlert13=wtWebioEA12x6RelAlert13, wtWebCount6StTzStopHrs=wtWebCount6StTzStopHrs, wtWebioEA2x2_24VBinaryTable=wtWebioEA2x2_24VBinaryTable, wtWebioEA12x6RelInputTable=wtWebioEA12x6RelInputTable, wtTrapReceiver2x2Alert6=wtTrapReceiver2x2Alert6, wtWebioEA2x2ERP_24VDiagErrorMessage=wtWebioEA2x2ERP_24VDiagErrorMessage, wtWebioEA12x6RelHttpPort=wtWebioEA12x6RelHttpPort, wtWebioEA2x2Mail=wtWebioEA2x2Mail, wtWebioEA2x2OutputModeBit=wtWebioEA2x2OutputModeBit, wtTrapReceiver2x2StTzStartMin=wtTrapReceiver2x2StTzStartMin, wtWebCount6Inputs=wtWebCount6Inputs, wtWebAlarm6x6SyslogServerIP=wtWebAlarm6x6SyslogServerIP, wtWebioEA12x6RelERPAlert6=wtWebioEA12x6RelERPAlert6, wtIpWatcherAlert24=wtIpWatcherAlert24, wtWebioEA6x6AlarmSnmpManagerIP=wtWebioEA6x6AlarmSnmpManagerIP, wtWebioEA12x6RelOutputPortTable=wtWebioEA12x6RelOutputPortTable, wtTrapReceiver2x2ActionCount=wtTrapReceiver2x2ActionCount, wtWebioEA12x12Alert22=wtWebioEA12x12Alert22, wtIpWatcher_24VAlarmMailSubject=wtIpWatcher_24VAlarmMailSubject, wtWebioEA12x6RelERPStTzOffsetMin=wtWebioEA12x6RelERPStTzOffsetMin, wtWebioEA2x2AddConfig=wtWebioEA2x2AddConfig, wtIpWatcher_24VIpAddress=wtIpWatcher_24VIpAddress, wtWebioEA12x6RelERPDeviceContact=wtWebioEA12x6RelERPDeviceContact, wtWebCount6ClockDay=wtWebCount6ClockDay, wtWebAlarm6x6SnmpCommunityStringReadWrite=wtWebAlarm6x6SnmpCommunityStringReadWrite, wtWebioEA2x2Alert17=wtWebioEA2x2Alert17, wtTrapReceiver2x2FTPPassword=wtTrapReceiver2x2FTPPassword, wtIpWatcherAlarmSyslogTrgClearText=wtIpWatcherAlarmSyslogTrgClearText, wtWebioEA12x6RelERPSyslogServerIP=wtWebioEA12x6RelERPSyslogServerIP, wtWebAlarm6x6Syslog=wtWebAlarm6x6Syslog, wtWebioEA2x2ERP_24VInOut=wtWebioEA2x2ERP_24VInOut, wtIpWatcherAlarmMailSubject=wtIpWatcherAlarmMailSubject, wtTrapReceiver2x2UdpRemotePort=wtTrapReceiver2x2UdpRemotePort, wtWebioEA2x2InputState=wtWebioEA2x2InputState, wtWebioEA2x2Outputs=wtWebioEA2x2Outputs, wtIpWatcher_24VAlarmOutputTable=wtIpWatcher_24VAlarmOutputTable, wtTrapReceiver2x2ActionIfEntry=wtTrapReceiver2x2ActionIfEntry, wtWebioEA12x12AlarmMailSubject=wtWebioEA12x12AlarmMailSubject, wtWebioEA12x6RelPortPulseDuration=wtWebioEA12x6RelPortPulseDuration, wtIpWatcher_24VOutputValue=wtIpWatcher_24VOutputValue, wtWebioEA2x2ERPStTzStopMonth=wtWebioEA2x2ERPStTzStopMonth, wtWebioEA24oemInputCounter=wtWebioEA24oemInputCounter, wtWebioEA2x2_24VUDP=wtWebioEA2x2_24VUDP, wtWebioEA12x12Network=wtWebioEA12x12Network, wtWebioEA6x6BinaryTcpServerApplicationMode=wtWebioEA6x6BinaryTcpServerApplicationMode, wtWebioEA2x2_24VStTzOffsetMin=wtWebioEA2x2_24VStTzOffsetMin, wtWebioEA2x2ERPAlarm=wtWebioEA2x2ERPAlarm, wtWebioEA12x6RelFTPPassword=wtWebioEA12x6RelFTPPassword, wtWebioEA2x2_24VFTPEnable=wtWebioEA2x2_24VFTPEnable, wtWebCount6FTPUserName=wtWebCount6FTPUserName, wtWebAlarm6x6InputValue=wtWebAlarm6x6InputValue, wtWebioEA12x6RelERPBinaryModeCount=wtWebioEA12x6RelERPBinaryModeCount, wtIpWatcher_24VIpListTable=wtIpWatcher_24VIpListTable, wtWebioEA12x6RelOutputNo=wtWebioEA12x6RelOutputNo, wtWebioEA12x12OutputModeBit=wtWebioEA12x12OutputModeBit, wtWebioEA2x2ERPAlarmSyslogText=wtWebioEA2x2ERPAlarmSyslogText, wtWebAlarm6x6Alert19=wtWebAlarm6x6Alert19, wtWebioEA2x2ERP_24VSetOutput=wtWebioEA2x2ERP_24VSetOutput, wtWebioEA24oemClockYear=wtWebioEA24oemClockYear, wtWebioEA12x12PortInputFilter=wtWebioEA12x12PortInputFilter, wtWebioEA2x2ERP_24VAlert13=wtWebioEA2x2ERP_24VAlert13, wtWebAlarm6x6AlarmUdpTrapTxEnable=wtWebAlarm6x6AlarmUdpTrapTxEnable, wtIpWatcherAlarmFtpDataPort=wtIpWatcherAlarmFtpDataPort, wtIpWatcherMailAuthUser=wtIpWatcherMailAuthUser, wtWebioEA2x2SessCntrlLogout=wtWebioEA2x2SessCntrlLogout, wtWebioEA2x2ERP_24VAlarmMailAddr=wtWebioEA2x2ERP_24VAlarmMailAddr, wtWebioEA12x6RelAlarmOutputTrigger=wtWebioEA12x6RelAlarmOutputTrigger, wtWebioEA2x2InputCounter=wtWebioEA2x2InputCounter, wtTrapReceiver2x2FTPEnable=wtTrapReceiver2x2FTPEnable, wtWebioEA12x6RelStTzStopMin=wtWebioEA12x6RelStTzStopMin, wtWebioEA6x6AlarmMaxCounterValue=wtWebioEA6x6AlarmMaxCounterValue, wtWebioEA2x2ERPPortPulseDuration=wtWebioEA2x2ERPPortPulseDuration, wtWebioEA24oemPortLogicInputMask=wtWebioEA24oemPortLogicInputMask, wtWebioEA12x12AlarmTcpText=wtWebioEA12x12AlarmTcpText, wtWebioEA2x2_24VAlarmIfEntry=wtWebioEA2x2_24VAlarmIfEntry, wtWebioEA12x12BinaryUdpPeerLocalPort=wtWebioEA12x12BinaryUdpPeerLocalPort, wtWebioEA12x6RelERPWayBackFTPResponse=wtWebioEA12x6RelERPWayBackFTPResponse, wtWebioEA2x2ERP_24VInputPortEntry=wtWebioEA2x2ERP_24VInputPortEntry, wtIpWatcher_24VBasic=wtIpWatcher_24VBasic, wtWebioEA2x2ERPAlarmTcpText=wtWebioEA2x2ERPAlarmTcpText, wtWebioEA24oemDevice=wtWebioEA24oemDevice, wtWebioEA2x2ERPTzOffsetMin=wtWebioEA2x2ERPTzOffsetMin, wtIpWatcherStTzStartHrs=wtIpWatcherStTzStartHrs, wtWebioEA2x2_24VTsSyncTime=wtWebioEA2x2_24VTsSyncTime, wtWebioEA12x12OutputValue=wtWebioEA12x12OutputValue, wtWebioEA12x6RelAlertDiag=wtWebioEA12x6RelAlertDiag, wtWebioEA6x6StTzOffsetHrs=wtWebioEA6x6StTzOffsetHrs, wtWebioEA2x2BinaryUdpPeerInterval=wtWebioEA2x2BinaryUdpPeerInterval, wtWebioEA2x2_24VStTzStartMonth=wtWebioEA2x2_24VStTzStartMonth, wtWebioEA2x2Alarm=wtWebioEA2x2Alarm, wtTrapReceiver2x2Alert2=wtTrapReceiver2x2Alert2, wtWebioEA12x12Alert24=wtWebioEA12x12Alert24, wtWebioEA2x2Manufact=wtWebioEA2x2Manufact, wtWebioEA6x6AlarmSnmpTrapText=wtWebioEA6x6AlarmSnmpTrapText, wtWebAlarm6x6MfOrderNo=wtWebAlarm6x6MfOrderNo, wtWebioEA2x2ERP_24VPortInputBicountPulsePolarity=wtWebioEA2x2ERP_24VPortInputBicountPulsePolarity, wtTrapReceiver2x2StTzStartMode=wtTrapReceiver2x2StTzStartMode, wtWebAlarm6x6SessCntrlAdminPassword=wtWebAlarm6x6SessCntrlAdminPassword, wtWebioEA6x6SnmpCommunityStringRead=wtWebioEA6x6SnmpCommunityStringRead, wtWebioEA12x6RelAlarmMailAddr=wtWebioEA12x6RelAlarmMailAddr, wtIpWatcher_24VAlarmMailReleaseSubject=wtIpWatcher_24VAlarmMailReleaseSubject, wtWebCount6Report=wtWebCount6Report, wtWebCount6ReportEnable=wtWebCount6ReportEnable, wtWebioEA2x2ERP_24VLoadControlView=wtWebioEA2x2ERP_24VLoadControlView, wtIpWatcherAlarmOutputState=wtIpWatcherAlarmOutputState, wtWebioEA12x12PortOutputSafetyState=wtWebioEA12x12PortOutputSafetyState, wtWebAlarm6x6FTPEnable=wtWebAlarm6x6FTPEnable, wtWebCount6ReportFtpFileName=wtWebCount6ReportFtpFileName, wtIpWatcherAlarmOutputTable=wtIpWatcherAlarmOutputTable, wtWebioEA12x6RelAlert7=wtWebioEA12x6RelAlert7)
mibBuilder.exportSymbols('Webio-Digital-MIB-US', wtWebioEA12x6RelBinaryTcpClientLocalPort=wtWebioEA12x6RelBinaryTcpClientLocalPort, wtWebioEA12x6RelERPAlarmFtpFileName=wtWebioEA12x6RelERPAlarmFtpFileName, wtWebioEA2x2_24VDnsServer1=wtWebioEA2x2_24VDnsServer1, wtWebioEA2x2ERP_24VAlarmMaxCounterValue=wtWebioEA2x2ERP_24VAlarmMaxCounterValue, wtWebioEA12x12MailEnable=wtWebioEA12x12MailEnable, wtWebioEA2x2ERPWayBackFTPResponse=wtWebioEA2x2ERPWayBackFTPResponse, wtWebioEA2x2_24VInputValue=wtWebioEA2x2_24VInputValue, wtIpWatcherStTzStopWday=wtIpWatcherStTzStopWday, wtWebioEA2x2ERP_24VAlarmTcpText=wtWebioEA2x2ERP_24VAlarmTcpText, wtWebioEA12x6RelBinaryTcpClientInputTrigger=wtWebioEA12x6RelBinaryTcpClientInputTrigger, wtWebAlarm6x6OutputPortTable=wtWebAlarm6x6OutputPortTable, wtWebioEA12x6RelERPAlarmMailReleaseSubject=wtWebioEA12x6RelERPAlarmMailReleaseSubject, wtIpWatcherAlert17=wtIpWatcherAlert17, wtWebioEA12x6RelStTzStopMode=wtWebioEA12x6RelStTzStopMode, wtWebioEA2x2ERP_24VAlarmMailSubject=wtWebioEA2x2ERP_24VAlarmMailSubject, wtWebioEA12x6RelERPTsEnable=wtWebioEA12x6RelERPTsEnable, wtWebioEA12x6RelERPBinaryTcpClientApplicationMode=wtWebioEA12x6RelERPBinaryTcpClientApplicationMode, wtWebioEA2x2AlarmMailReleaseText=wtWebioEA2x2AlarmMailReleaseText, wtWebioEA12x6RelFTPAccount=wtWebioEA12x6RelFTPAccount, wtWebioEA2x2_24VBinaryTcpClientServerIpAddr=wtWebioEA2x2_24VBinaryTcpClientServerIpAddr, wtIpWatcherFTP=wtIpWatcherFTP, wtIpWatcher_24VPortInputText=wtIpWatcher_24VPortInputText, wtIpWatcher_24VInputEntry=wtIpWatcher_24VInputEntry, wtWebioEA2x2StTzOffsetHrs=wtWebioEA2x2StTzOffsetHrs, wtTrapReceiver2x2TsSyncTime=wtTrapReceiver2x2TsSyncTime, wtWebioEA24oemGetHeaderEnable=wtWebioEA24oemGetHeaderEnable, wtWebioEA12x6RelERPTzOffsetMin=wtWebioEA12x6RelERPTzOffsetMin, wtWebioEA12x6RelDeviceName=wtWebioEA12x6RelDeviceName, wtWebioEA2x2_24VAlert4=wtWebioEA2x2_24VAlert4, wtWebioEA2x2_24VOutputModeTable=wtWebioEA2x2_24VOutputModeTable, wtWebioEA2x2_24VAlert8=wtWebioEA2x2_24VAlert8, wtWebioEA6x6BinaryTcpClientServerPort=wtWebioEA6x6BinaryTcpClientServerPort, wtIpWatcherStTzStopMode=wtIpWatcherStTzStopMode, wtWebCount6TzOffsetMin=wtWebCount6TzOffsetMin, wtWebioEA2x2ERP_24VMailReply=wtWebioEA2x2ERP_24VMailReply, wtTrapReceiver2x2SnmpSystemTrapManagerIP=wtTrapReceiver2x2SnmpSystemTrapManagerIP, wtWebioEA12x6RelAlarmSyslogReleaseText=wtWebioEA12x6RelAlarmSyslogReleaseText, wtWebioEA2x2Gateway=wtWebioEA2x2Gateway, wtWebioEA12x12FTPServerIP=wtWebioEA12x12FTPServerIP, wtWebioEA2x2AlarmIfEntry=wtWebioEA2x2AlarmIfEntry, wtWebAlarm6x6AlarmOutputEntry=wtWebAlarm6x6AlarmOutputEntry, wtWebAlarm6x6Alert9=wtWebAlarm6x6Alert9, wtWebCount6PortInputMode=wtWebCount6PortInputMode, wtWebioEA12x6RelAlert24=wtWebioEA12x6RelAlert24, wtWebioEA24oemStTzOffsetMin=wtWebioEA24oemStTzOffsetMin, wtWebioEA12x12BinaryTcpClientInterval=wtWebioEA12x12BinaryTcpClientInterval, wtWebioEA12x6RelSyslogServerPort=wtWebioEA12x6RelSyslogServerPort, wtWebioEA2x2ERP_24VStTzStopMin=wtWebioEA2x2ERP_24VStTzStopMin, wtIpWatcherAlert11=wtIpWatcherAlert11, wtWebCount6MailAuthentication=wtWebCount6MailAuthentication, wtWebioEA12x12AlarmSyslogText=wtWebioEA12x12AlarmSyslogText, wtWebioEA12x6RelERPPortInputBicountInactivTimeout=wtWebioEA12x6RelERPPortInputBicountInactivTimeout, wtWebioEA24oemFTP=wtWebioEA24oemFTP, wtWebioEA2x2IpAddress=wtWebioEA2x2IpAddress, wtIpWatcher_24VAlert27=wtIpWatcher_24VAlert27, wtWebioEA24oemOutputState=wtWebioEA24oemOutputState, wtWebioEA2x2ERPBinaryTcpClientServerPassword=wtWebioEA2x2ERPBinaryTcpClientServerPassword, wtWebCount6Syslog=wtWebCount6Syslog, wtIpWatcherText=wtIpWatcherText, wtWebioEA12x6RelBinaryIfEntry=wtWebioEA12x6RelBinaryIfEntry, wtWebioEA6x6MailEnable=wtWebioEA6x6MailEnable, wtWebioEA2x2ERPAlarmMaxCounterValue=wtWebioEA2x2ERPAlarmMaxCounterValue, wtWebioEA2x2ERP_24VAlarmIfEntry=wtWebioEA2x2ERP_24VAlarmIfEntry, wtWebAlarm6x6Alert18=wtWebAlarm6x6Alert18, wtIpWatcherAlarmFtpText=wtIpWatcherAlarmFtpText, wtTrapReceiver2x2ActionSyslogText=wtTrapReceiver2x2ActionSyslogText, wtIpWatcherManufact=wtIpWatcherManufact, wtWebioEA12x12FTPServerControlPort=wtWebioEA12x12FTPServerControlPort, wtWebioEA12x6RelClockDay=wtWebioEA12x6RelClockDay, wtWebAlarm6x6FTPPassword=wtWebAlarm6x6FTPPassword, wtWebioEA12x12Alert6=wtWebioEA12x12Alert6, wtWebCount6MailAuthPassword=wtWebCount6MailAuthPassword, wtWebioEA12x6RelInputNo=wtWebioEA12x6RelInputNo, wtWebioEA6x6AlarmTable=wtWebioEA6x6AlarmTable, wtWebioEA12x12FTPEnable=wtWebioEA12x12FTPEnable, wtWebioEA2x2ERP_24VAlert23=wtWebioEA2x2ERP_24VAlert23, wtWebioEA12x6RelAlarmMailReleaseSubject=wtWebioEA12x6RelAlarmMailReleaseSubject, wtWebAlarm6x6AlarmEntry=wtWebAlarm6x6AlarmEntry, wtWebioEA2x2ERP_24VAlarmUdpPort=wtWebioEA2x2ERP_24VAlarmUdpPort, wtWebCount6Network=wtWebCount6Network, wtWebCount6InputCounterClear=wtWebCount6InputCounterClear, wtIpWatcher_24VInputPortEntry=wtIpWatcher_24VInputPortEntry, wtTrapReceiver2x2ActionName=wtTrapReceiver2x2ActionName, wtWebioEA2x2ERP_24VAlarmNo=wtWebioEA2x2ERP_24VAlarmNo, wtWebioEA6x6StTzStopMin=wtWebioEA6x6StTzStopMin, wtWebioEA2x2_24VAlarmMailReleaseSubject=wtWebioEA2x2_24VAlarmMailReleaseSubject, wtWebioEA12x12StTzStopMonth=wtWebioEA12x12StTzStopMonth, wtWebioEA24oemOutputEntry=wtWebioEA24oemOutputEntry, wtWebioEA2x2FTP=wtWebioEA2x2FTP, wtWebAlarm6x6OutputPortEntry=wtWebAlarm6x6OutputPortEntry, wtWebioEA24oemConfig=wtWebioEA24oemConfig, wtWebAlarm6x6AlarmSetPort=wtWebAlarm6x6AlarmSetPort, wtWebioEA12x6RelERPAlarmUdpText=wtWebioEA12x6RelERPAlarmUdpText, wtWebioEA6x6Inputs=wtWebioEA6x6Inputs, wtIpWatcher_24VAlert9=wtIpWatcher_24VAlert9, wtWebAlarm6x6PortOutputText=wtWebAlarm6x6PortOutputText, wtWebioEA2x2ERP_24VSyslogSystemMessagesEnable=wtWebioEA2x2ERP_24VSyslogSystemMessagesEnable, wtWebioEA12x12ClockMonth=wtWebioEA12x12ClockMonth, wtTrapReceiver2x2ActionFtpText=wtTrapReceiver2x2ActionFtpText, wtWebioEA2x2SubnetMask=wtWebioEA2x2SubnetMask, wtIpWatcher_24VAlarmCounterClear=wtIpWatcher_24VAlarmCounterClear, wtWebioEA2x2MfAddr=wtWebioEA2x2MfAddr, wtIpWatcher_24VClockDay=wtIpWatcher_24VClockDay, wtWebCount6StTzStopMonth=wtWebCount6StTzStopMonth, wtWebioEA6x6TimeServer2=wtWebioEA6x6TimeServer2, wtWebioEA12x6RelAlarmMailText=wtWebioEA12x6RelAlarmMailText, wtWebioEA6x6SyslogSystemMessagesEnable=wtWebioEA6x6SyslogSystemMessagesEnable, wtWebioEA2x2_24VOutputModeEntry=wtWebioEA2x2_24VOutputModeEntry, wtWebCount6Alert6=wtWebCount6Alert6, wtIpWatcherSnmpSystemTrapManagerIP=wtIpWatcherSnmpSystemTrapManagerIP, wtWebioEA2x2HttpPort=wtWebioEA2x2HttpPort, wtIpWatcherAlert10=wtIpWatcherAlert10, wtIpWatcherTzOffsetMin=wtIpWatcherTzOffsetMin, wtWebioEA2x2_24VText=wtWebioEA2x2_24VText, wtWebioEA6x6StTzStopMonth=wtWebioEA6x6StTzStopMonth, wtWebioEA2x2ERP_24VAlarmSystemTrigger=wtWebioEA2x2ERP_24VAlarmSystemTrigger, wtWebioEA12x12Binary=wtWebioEA12x12Binary, wtWebioEA6x6AlarmInterval=wtWebioEA6x6AlarmInterval, wtTrapReceiver2x2DeviceContact=wtTrapReceiver2x2DeviceContact, wtWebioEA2x2ERP_24VSyslogServerIP=wtWebioEA2x2ERP_24VSyslogServerIP, wtWebAlarm6x6AlarmTriggerState=wtWebAlarm6x6AlarmTriggerState, wtWebAlarm6x6MailAuthentication=wtWebAlarm6x6MailAuthentication, wtWebioEA2x2ERPAlarmSnmpTrapReleaseText=wtWebioEA2x2ERPAlarmSnmpTrapReleaseText, wtWebioEA2x2_24VStTzStopHrs=wtWebioEA2x2_24VStTzStopHrs, wtWebioEA24oemUdpRemotePort=wtWebioEA24oemUdpRemotePort, wtWebioEA12x6RelBinaryTcpClientServerPort=wtWebioEA12x6RelBinaryTcpClientServerPort, wtWebioEA12x6RelGetHeaderEnable=wtWebioEA12x6RelGetHeaderEnable, wtWebioEA12x6RelERPAlarmMailText=wtWebioEA12x6RelERPAlarmMailText, wtWebAlarm6x6AlarmTcpTrgClearText=wtWebAlarm6x6AlarmTcpTrgClearText, wtWebioEA12x6RelMailServer=wtWebioEA12x6RelMailServer, wtWebioEA12x6RelERPAlert13=wtWebioEA12x6RelERPAlert13, wtWebioEA2x2ERP_24VPortPulseDuration=wtWebioEA2x2ERP_24VPortPulseDuration, wtWebioEA2x2ERP_24VDiagBinaryError=wtWebioEA2x2ERP_24VDiagBinaryError, wtTrapReceiver2x2Alert7=wtTrapReceiver2x2Alert7, wtIpWatcher_24VClockMin=wtIpWatcher_24VClockMin, wtWebioEA24oemAlert17=wtWebioEA24oemAlert17, wtWebCount6FTPPassword=wtWebCount6FTPPassword, wtIpWatcherSyslog=wtIpWatcherSyslog, wtWebCount6MfOrderNo=wtWebCount6MfOrderNo, wtWebioEA12x12Syslog=wtWebioEA12x12Syslog, wtWebAlarm6x6PortOutputName=wtWebAlarm6x6PortOutputName, wtWebioEA2x2_24VDiag=wtWebioEA2x2_24VDiag, wtIpWatcher_24VAlarmMailTrgClearSubject=wtIpWatcher_24VAlarmMailTrgClearSubject, wtIpWatcher_24VFTPOption=wtIpWatcher_24VFTPOption, wtWebioEA2x2ERPTzEnable=wtWebioEA2x2ERPTzEnable, wtWebioEA2x2ERP_24VAlarmEnable=wtWebioEA2x2ERP_24VAlarmEnable, wtWebioEA6x6Alert22=wtWebioEA6x6Alert22, wtWebioEA12x6RelAlert3=wtWebioEA12x6RelAlert3, wtWebioEA2x2ERPBinaryUdpPeerRemotePort=wtWebioEA2x2ERPBinaryUdpPeerRemotePort, wtWebioEA2x2OutputState=wtWebioEA2x2OutputState, wtWebioEA24oemOutputModeEntry=wtWebioEA24oemOutputModeEntry, wtIpWatcher_24VAlert24=wtIpWatcher_24VAlert24, wtWebioEA2x2ERP_24VAlarmUdpText=wtWebioEA2x2ERP_24VAlarmUdpText, wtWebAlarm6x6AlarmFtpFileName=wtWebAlarm6x6AlarmFtpFileName, wtIpWatcherAlarmSnmpTrapTrapTxEnable=wtIpWatcherAlarmSnmpTrapTrapTxEnable, wtWebioEA2x2_24VInputTable=wtWebioEA2x2_24VInputTable, wtWebioEA12x12PortInputBicountPulsePolarity=wtWebioEA12x12PortInputBicountPulsePolarity, wtWebioEA2x2_24VBinaryUdpPeerRemotePort=wtWebioEA2x2_24VBinaryUdpPeerRemotePort, wtWebioEA12x12BinaryIfEntry=wtWebioEA12x12BinaryIfEntry, wtWebioEA2x2_24VInputCounterClear=wtWebioEA2x2_24VInputCounterClear, wtWebioEA12x12BinaryTcpClientInputTrigger=wtWebioEA12x12BinaryTcpClientInputTrigger, wtWebAlarm6x6Alert36=wtWebAlarm6x6Alert36, wtWebioEA2x2ERPAlarmFtpFileName=wtWebioEA2x2ERPAlarmFtpFileName, wtWebioEA2x2Alert9=wtWebioEA2x2Alert9, wtIpWatcherTzOffsetHrs=wtIpWatcherTzOffsetHrs, wtWebioEA2x2AlarmUdpIpAddr=wtWebioEA2x2AlarmUdpIpAddr, wtWebioEA12x12PortLogicInputMask=wtWebioEA12x12PortLogicInputMask, wtWebioEA6x6MfName=wtWebioEA6x6MfName, wtWebioEA24oemSyslogEnable=wtWebioEA24oemSyslogEnable, wtIpWatcherInputNo=wtIpWatcherInputNo, wtWebAlarm6x6AlarmSyslogPort=wtWebAlarm6x6AlarmSyslogPort, wtWebCount6Alert3=wtWebCount6Alert3, wtWebioEA12x6RelInOut=wtWebioEA12x6RelInOut, wtWebioEA12x6RelERPAlarmUdpIpAddr=wtWebioEA12x6RelERPAlarmUdpIpAddr, wtTrapReceiver2x2UDP=wtTrapReceiver2x2UDP, wtWebioEA12x6RelERPAlarmIfTable=wtWebioEA12x6RelERPAlarmIfTable, wtWebioEA12x12SessCntrlConfigPassword=wtWebioEA12x12SessCntrlConfigPassword, wtTrapReceiver2x2PrepareInEvents=wtTrapReceiver2x2PrepareInEvents, wtWebioEA2x2FTPServerControlPort=wtWebioEA2x2FTPServerControlPort, wtIpWatcher_24VTsSyncTime=wtIpWatcher_24VTsSyncTime, wtTrapReceiver2x2InputTable=wtTrapReceiver2x2InputTable, wtTrapReceiver2x2PortSystemTimerName=wtTrapReceiver2x2PortSystemTimerName, wtWebioEA2x2_24VAlarmFtpReleaseText=wtWebioEA2x2_24VAlarmFtpReleaseText, wtWebioEA2x2_24VAlarmMailReleaseText=wtWebioEA2x2_24VAlarmMailReleaseText, wtWebioEA6x6MailAuthPassword=wtWebioEA6x6MailAuthPassword, wtWebioEA2x2ERP_24VOutputPortTable=wtWebioEA2x2ERP_24VOutputPortTable, wtWebioEA2x2AlarmTable=wtWebioEA2x2AlarmTable, wtWebAlarm6x6InputCounter=wtWebAlarm6x6InputCounter, wtWebioEA24oemAlertDiag=wtWebioEA24oemAlertDiag, wtWebioEA2x2ERPInputCounterClear=wtWebioEA2x2ERPInputCounterClear, wtTrapReceiver2x2SystemTimerNo=wtTrapReceiver2x2SystemTimerNo, wtWebCount6ClockMonth=wtWebCount6ClockMonth, wtWebioEA24oemBinaryConnectedIpAddr=wtWebioEA24oemBinaryConnectedIpAddr, wtWebioEA2x2_24VHTTP=wtWebioEA2x2_24VHTTP, wtIpWatcherDeviceText=wtIpWatcherDeviceText, wtWebioEA2x2ERP_24VPortInputMode=wtWebioEA2x2ERP_24VPortInputMode, wtWebioEA2x2ERPDeviceText=wtWebioEA2x2ERPDeviceText, wtWebAlarm6x6UdpAdminPort=wtWebAlarm6x6UdpAdminPort, wtWebAlarm6x6SnmpSystemTrapManagerIP=wtWebAlarm6x6SnmpSystemTrapManagerIP, wtWebioEA2x2ERPInputEntry=wtWebioEA2x2ERPInputEntry, wtTrapReceiver2x2WatchListTrapNo=wtTrapReceiver2x2WatchListTrapNo, wtWebioEA12x12AlarmTcpIpAddr=wtWebioEA12x12AlarmTcpIpAddr, wtTrapReceiver2x2ActionUdpIpAddr=wtTrapReceiver2x2ActionUdpIpAddr, wtWebAlarm6x6Device=wtWebAlarm6x6Device, wtWebioEA2x2_24VBinaryUdpPeerInterval=wtWebioEA2x2_24VBinaryUdpPeerInterval, wtWebioEA2x2AlarmFtpReleaseText=wtWebioEA2x2AlarmFtpReleaseText, wtWebioEA2x2ERP_24VSnmpSystemTrapManagerIP=wtWebioEA2x2ERP_24VSnmpSystemTrapManagerIP, wtWebioEA2x2Inputs=wtWebioEA2x2Inputs, wtWebioEA2x2_24VClockYear=wtWebioEA2x2_24VClockYear, wtIpWatcher_24VFTPAccount=wtIpWatcher_24VFTPAccount, wtIpWatcherTimeServer=wtIpWatcherTimeServer, wtWebAlarm6x6StTzOffsetHrs=wtWebAlarm6x6StTzOffsetHrs, wtIpWatcher_24VSyslog=wtIpWatcher_24VSyslog, wtIpWatcherClockMin=wtIpWatcherClockMin, wtWebioEA2x2_24VStTzStopWday=wtWebioEA2x2_24VStTzStopWday, wtWebioEA2x2_24VDeviceLocation=wtWebioEA2x2_24VDeviceLocation, wtWebioEA12x6RelERPAlarmUdpPort=wtWebioEA12x6RelERPAlarmUdpPort, wtIpWatcher_24VStTzStartWday=wtIpWatcher_24VStTzStartWday, wtWebioEA6x6AlertDiag=wtWebioEA6x6AlertDiag, wtWebioEA24oemInputNo=wtWebioEA24oemInputNo, wtWebioEA12x6RelOutputValue=wtWebioEA12x6RelOutputValue, wtWebioEA12x6RelBinaryUdpPeerApplicationMode=wtWebioEA12x6RelBinaryUdpPeerApplicationMode, wtWebioEA2x2Ports=wtWebioEA2x2Ports, wtWebioEA2x2_24VInputs=wtWebioEA2x2_24VInputs, wtWebioEA12x6RelStTzStartMonth=wtWebioEA12x6RelStTzStartMonth, wtWebioEA2x2ERP_24VBinaryEntry=wtWebioEA2x2ERP_24VBinaryEntry, wtIpWatcher_24VAlert21=wtIpWatcher_24VAlert21, wtTrapReceiver2x2WatchListPort=wtTrapReceiver2x2WatchListPort, wtWebioEA24oemSyslogServerPort=wtWebioEA24oemSyslogServerPort, wtTrapReceiver2x2TzOffsetMin=wtTrapReceiver2x2TzOffsetMin, wtWebioEA2x2ERPMailAdName=wtWebioEA2x2ERPMailAdName, wtWebioEA12x6RelERPAlarmFtpOption=wtWebioEA12x6RelERPAlarmFtpOption, wtWebioEA12x12TimeDate=wtWebioEA12x12TimeDate, wtWebioEA2x2ERPInputValue=wtWebioEA2x2ERPInputValue, wtWebioEA2x2ERPAlert16=wtWebioEA2x2ERPAlert16, wtWebioEA24oemAlarmMailSubject=wtWebioEA24oemAlarmMailSubject, wtWebioEA2x2PortLogicOutputInverter=wtWebioEA2x2PortLogicOutputInverter, wtWebAlarm6x6AlarmEnable=wtWebAlarm6x6AlarmEnable, wtWebioEA2x2SyslogServerIP=wtWebioEA2x2SyslogServerIP, wtWebioEA12x12Manufact=wtWebioEA12x12Manufact, wtWebioEA2x2_24VSessCntrlConfigMode=wtWebioEA2x2_24VSessCntrlConfigMode, wtWebioEA24oemAlarmInterval=wtWebioEA24oemAlarmInterval, wtIpWatcher_24VAlarmSyslogReleaseText=wtIpWatcher_24VAlarmSyslogReleaseText, wtWebioEA6x6AlarmFtpFileName=wtWebioEA6x6AlarmFtpFileName, wtWebioEA2x2ERPInputPortEntry=wtWebioEA2x2ERPInputPortEntry, wtWebioEA24oemOutputModeBit=wtWebioEA24oemOutputModeBit, wtWebioEA12x6RelERPPortInputText=wtWebioEA12x6RelERPPortInputText, wtWebioEA12x6RelERPAlarmOutputTrigger=wtWebioEA12x6RelERPAlarmOutputTrigger, wtWebAlarm6x6AlarmUdpReleaseText=wtWebAlarm6x6AlarmUdpReleaseText, wtIpWatcher_24VAlarmInterval=wtIpWatcher_24VAlarmInterval, wtWebAlarm6x6Network=wtWebAlarm6x6Network, wtTrapReceiver2x2ActionMailAddr=wtTrapReceiver2x2ActionMailAddr, wtWebioEA6x6PortInputName=wtWebioEA6x6PortInputName, wtWebioEA2x2ERP_24VMailPop3Server=wtWebioEA2x2ERP_24VMailPop3Server)
mibBuilder.exportSymbols('Webio-Digital-MIB-US', wtWebioEA2x2PortOutputSafetyState=wtWebioEA2x2PortOutputSafetyState, wtWebioEA2x2ERP_24VPortLogicInputInverter=wtWebioEA2x2ERP_24VPortLogicInputInverter, wtWebioEA12x6RelSnmpCommunityStringReadWrite=wtWebioEA12x6RelSnmpCommunityStringReadWrite, wtWebioEA2x2ERP_24VSessCntrlAdminPassword=wtWebioEA2x2ERP_24VSessCntrlAdminPassword, wtWebioEA12x6RelPorts=wtWebioEA12x6RelPorts, wtWebioEA2x2ERP_24VStTzStartMode=wtWebioEA2x2ERP_24VStTzStartMode, wtTrapReceiver2x2PortOutputText=wtTrapReceiver2x2PortOutputText, wtIpWatcherAlarmSnmpTrapTrgClearText=wtIpWatcherAlarmSnmpTrapTrgClearText, wtWebioEA2x2BinaryTable=wtWebioEA2x2BinaryTable, wtWebioEA2x2ERPAlarmFtpText=wtWebioEA2x2ERPAlarmFtpText, wtWebCount6MfName=wtWebCount6MfName, wtWebioEA12x12TzEnable=wtWebioEA12x12TzEnable, wtWebioEA2x2ERPDnsServer2=wtWebioEA2x2ERPDnsServer2, wtWebAlarm6x6AlarmUdpPort=wtWebAlarm6x6AlarmUdpPort, wtWebioEA2x2SNMP=wtWebioEA2x2SNMP, wtWebCount6ReportInputTrigger=wtWebCount6ReportInputTrigger, wtWebioEA2x2_24VBinaryTcpClientInactivity=wtWebioEA2x2_24VBinaryTcpClientInactivity, wtWebioEA2x2ERP_24VInputCounter=wtWebioEA2x2ERP_24VInputCounter, wtIpWatcherPortOutputText=wtIpWatcherPortOutputText, wtWebioEA12x6RelAlert19=wtWebioEA12x6RelAlert19, wtWebioEA2x2ERPBinaryTcpServerApplicationMode=wtWebioEA2x2ERPBinaryTcpServerApplicationMode, wtWebioEA12x6RelERPSnmpSystemTrapEnable=wtWebioEA12x6RelERPSnmpSystemTrapEnable, wtTrapReceiver2x2TsEnable=wtTrapReceiver2x2TsEnable, wtWebioEA2x2ERPPortInputName=wtWebioEA2x2ERPPortInputName, wtWebioEA24oemHTTP=wtWebioEA24oemHTTP, wtTrapReceiver2x2MfHotline=wtTrapReceiver2x2MfHotline, wtWebioEA2x2_24VMailPop3Server=wtWebioEA2x2_24VMailPop3Server, wtWebioEA12x6RelSyslogSystemMessagesEnable=wtWebioEA12x6RelSyslogSystemMessagesEnable, wtTrapReceiver2x2TimeServer1=wtTrapReceiver2x2TimeServer1, wtWebioEA12x6RelERPAlarmMailSubject=wtWebioEA12x6RelERPAlarmMailSubject, wtIpWatcher_24VSnmpCommunityStringRead=wtIpWatcher_24VSnmpCommunityStringRead, wtWebioEA2x2ERPMfInternet=wtWebioEA2x2ERPMfInternet, wtWebAlarm6x6PortInputFilter=wtWebAlarm6x6PortInputFilter, wtWebioEA12x6RelERPSnmpEnable=wtWebioEA12x6RelERPSnmpEnable, wtWebioEA6x6InputCounter=wtWebioEA6x6InputCounter, wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText=wtWebioEA2x2ERP_24VAlarmSnmpTrapReleaseText, wtWebioEA12x12Alert3=wtWebioEA12x12Alert3, wtWebioEA12x6RelAlarmTcpPort=wtWebioEA12x6RelAlarmTcpPort, wtIpWatcherIpListIfTable=wtIpWatcherIpListIfTable, wtWebioEA12x12HttpPort=wtWebioEA12x12HttpPort, wtIpWatcherStTzStartMonth=wtIpWatcherStTzStartMonth, wtWebioEA2x2ERP_24VAlert24=wtWebioEA2x2ERP_24VAlert24, wtTrapReceiver2x2PortInputFilter=wtTrapReceiver2x2PortInputFilter, wtWebioEA12x6RelMailPop3Server=wtWebioEA12x6RelMailPop3Server, wtWebioEA12x6RelAlarmIfEntry=wtWebioEA12x6RelAlarmIfEntry, wtIpWatcherInputPortEntry=wtIpWatcherInputPortEntry, wtWebAlarm6x6Alert24=wtWebAlarm6x6Alert24, wtIpWatcherAlarmSyslogIpAddr=wtIpWatcherAlarmSyslogIpAddr, wtWebioEA2x2ERP_24VAlarmTcpPort=wtWebioEA2x2ERP_24VAlarmTcpPort, wtWebioEA2x2SnmpSystemTrapManagerIP=wtWebioEA2x2SnmpSystemTrapManagerIP, wtWebioEA2x2ERPClockHrs=wtWebioEA2x2ERPClockHrs, wtWebioEA12x12Alert20=wtWebioEA12x12Alert20, wtTrapReceiver2x2ActionTimerCron=wtTrapReceiver2x2ActionTimerCron, wtWebioEA2x2PortOutputGroupMode=wtWebioEA2x2PortOutputGroupMode, wtTrapReceiver2x2OutputPortTable=wtTrapReceiver2x2OutputPortTable, wtWebioEA2x2AlarmInputTrigger=wtWebioEA2x2AlarmInputTrigger, wtWebioEA2x2ClockMin=wtWebioEA2x2ClockMin, wtWebioEA12x12AlarmEnable=wtWebioEA12x12AlarmEnable, wtIpWatcher_24V=wtIpWatcher_24V, wtWebioEA12x6RelERPUDP=wtWebioEA12x6RelERPUDP, wtWebioEA2x2ERPAlarmNo=wtWebioEA2x2ERPAlarmNo, wtIpWatcherConfig=wtIpWatcherConfig, wtWebioEA12x6RelERPAlert9=wtWebioEA12x6RelERPAlert9, wtWebioEA2x2_24VAlarmFtpDataPort=wtWebioEA2x2_24VAlarmFtpDataPort, wtTrapReceiver2x2DnsServer1=wtTrapReceiver2x2DnsServer1, wtIpWatcher_24VAlert10=wtIpWatcher_24VAlert10, wtWebioEA2x2_24VStTzStopMin=wtWebioEA2x2_24VStTzStopMin, wtWebioEA6x6PortOutputText=wtWebioEA6x6PortOutputText, wtWebCount6Alert7=wtWebCount6Alert7, wtWebioEA12x12OutputPortTable=wtWebioEA12x12OutputPortTable, wtWebioEA12x6RelDevice=wtWebioEA12x6RelDevice, wtIpWatcherDiagErrorClear=wtIpWatcherDiagErrorClear, wtWebioEA24oemClockDay=wtWebioEA24oemClockDay, wtWebioEA2x2_24VPortLogicOutputInverter=wtWebioEA2x2_24VPortLogicOutputInverter, wtWebioEA2x2_24VAlert16=wtWebioEA2x2_24VAlert16, wtTrapReceiver2x2WatchListFacility=wtTrapReceiver2x2WatchListFacility, wtWebioEA2x2ERPConfig=wtWebioEA2x2ERPConfig, wtIpWatcher_24VDeviceName=wtIpWatcher_24VDeviceName, wtIpWatcherSessCntrlAdminPassword=wtIpWatcherSessCntrlAdminPassword, wtIpWatcher_24VMailAdName=wtIpWatcher_24VMailAdName, wtIpWatcherAlert4=wtIpWatcherAlert4, wtIpWatcherAlert34=wtIpWatcherAlert34, wtWebioEA2x2ERP_24VBasic=wtWebioEA2x2ERP_24VBasic, wtWebioEA12x12StTzStopHrs=wtWebioEA12x12StTzStopHrs, wtIpWatcherAlarmUdpTrapTxEnable=wtIpWatcherAlarmUdpTrapTxEnable, wtWebCount6ReportSnmpTrapText=wtWebCount6ReportSnmpTrapText, wtWebioEA6x6PortLogicFunction=wtWebioEA6x6PortLogicFunction, wtTrapReceiver2x2MailEnable=wtTrapReceiver2x2MailEnable, wtWebioEA24oemAlert9=wtWebioEA24oemAlert9, wtWebioEA2x2ERPHttpInputTrigger=wtWebioEA2x2ERPHttpInputTrigger, wtWebioEA2x2ERP_24VAlert17=wtWebioEA2x2ERP_24VAlert17, wtWebioEA12x6RelERPAlarmMailReleaseText=wtWebioEA12x6RelERPAlarmMailReleaseText, wtWebioEA12x12AlarmMailReleaseSubject=wtWebioEA12x12AlarmMailReleaseSubject, wtWebioEA12x6RelAlarmNo=wtWebioEA12x6RelAlarmNo, wtWebioEA2x2ERP_24VStTzStopMode=wtWebioEA2x2ERP_24VStTzStopMode, wtWebAlarm6x6AlarmSyslogTrgClearText=wtWebAlarm6x6AlarmSyslogTrgClearText, wtWebioEA2x2ERPAlert6=wtWebioEA2x2ERPAlert6, wtWebioEA12x6RelERPSNMP=wtWebioEA12x6RelERPSNMP, wtWebioEA24oemAlarmEntry=wtWebioEA24oemAlarmEntry, wtWebioEA24oemPortInputMode=wtWebioEA24oemPortInputMode, wtWebioEA12x12UdpRemotePort=wtWebioEA12x12UdpRemotePort, wtWebioEA12x12Alert13=wtWebioEA12x12Alert13, wtWebioEA2x2_24VMfAddr=wtWebioEA2x2_24VMfAddr, wtWebioEA2x2ERPAlert2=wtWebioEA2x2ERPAlert2, wtWebCount6ReportMailAddr=wtWebCount6ReportMailAddr, wtWebioEA2x2ERP_24VBinaryTcpClientServerHttpPort=wtWebioEA2x2ERP_24VBinaryTcpClientServerHttpPort, wtIpWatcher_24VAlert8=wtIpWatcher_24VAlert8, wtWebioEA12x12PortOutputText=wtWebioEA12x12PortOutputText, wtWebAlarm6x6AlarmFtpDataPort=wtWebAlarm6x6AlarmFtpDataPort, wtWebioEA2x2ERPAlarmSyslogPort=wtWebioEA2x2ERPAlarmSyslogPort, wtWebioEA6x6UdpRemotePort=wtWebioEA6x6UdpRemotePort, wtIpWatcher_24VStTzStopMonth=wtIpWatcher_24VStTzStopMonth, wtWebioEA6x6DiagErrorClear=wtWebioEA6x6DiagErrorClear, wtWebioEA2x2ERP_24VPowerSupplyEnable=wtWebioEA2x2ERP_24VPowerSupplyEnable, wtIpWatcher_24VClockMonth=wtIpWatcher_24VClockMonth, wtIpWatcher_24VAlarmMailText=wtIpWatcher_24VAlarmMailText, wtWebioEA2x2ERP_24VDiagErrorCount=wtWebioEA2x2ERP_24VDiagErrorCount, wtWebAlarm6x6StTzEnable=wtWebAlarm6x6StTzEnable, wtWebioEA2x2OutputPortTable=wtWebioEA2x2OutputPortTable, wtWebioEA12x12AlarmFtpFileName=wtWebioEA12x12AlarmFtpFileName, wtWebAlarm6x6AlarmFtpOption=wtWebAlarm6x6AlarmFtpOption, wtWebAlarm6x6OutputTable=wtWebAlarm6x6OutputTable, wtWebioEA2x2PortInputFilter=wtWebioEA2x2PortInputFilter, wtWebAlarm6x6SessCntrlConfigPassword=wtWebAlarm6x6SessCntrlConfigPassword, wtWebioEA12x12OutputPortEntry=wtWebioEA12x12OutputPortEntry, wtIpWatcher_24VAlert34=wtIpWatcher_24VAlert34, wtWebioEA24oemBinaryTcpClientApplicationMode=wtWebioEA24oemBinaryTcpClientApplicationMode, wtIpWatcherAlert32=wtIpWatcherAlert32, wtWebioEA24oemUdpEnable=wtWebioEA24oemUdpEnable, wtIpWatcher_24VTimeZone=wtIpWatcher_24VTimeZone, wtWebioEA12x6RelERPAlarmSyslogPort=wtWebioEA12x6RelERPAlarmSyslogPort, wtWebCount6Alert9=wtWebCount6Alert9, wtTrapReceiver2x2ButtonNo=wtTrapReceiver2x2ButtonNo, wtWebioEA2x2ERP_24VUdpAdminPort=wtWebioEA2x2ERP_24VUdpAdminPort, wtWebioEA2x2ERP_24VOutputModeTable=wtWebioEA2x2ERP_24VOutputModeTable, wtWebioEA6x6BinaryTcpClientServerHttpPort=wtWebioEA6x6BinaryTcpClientServerHttpPort, wtIpWatcherIpListCount=wtIpWatcherIpListCount, wtTrapReceiver2x2PortSystemTimerCron=wtTrapReceiver2x2PortSystemTimerCron, wtWebioEA2x2ERP_24VMfName=wtWebioEA2x2ERP_24VMfName, wtWebioEA12x12SafetyTimeout=wtWebioEA12x12SafetyTimeout, wtIpWatcher_24VSessCntrlAdminPassword=wtIpWatcher_24VSessCntrlAdminPassword, wtWebioEA12x6RelERPBinaryUdpPeerLocalPort=wtWebioEA12x6RelERPBinaryUdpPeerLocalPort, wtWebioEA12x6RelAlert23=wtWebioEA12x6RelAlert23, wtWebioEA12x6RelERPAlarmNo=wtWebioEA12x6RelERPAlarmNo, wtWebioEA12x6RelTimeServer1=wtWebioEA12x6RelTimeServer1, wtWebioEA2x2ERP_24VTimeZone=wtWebioEA2x2ERP_24VTimeZone, wtWebioEA12x6RelDiagErrorIndex=wtWebioEA12x6RelDiagErrorIndex, wtWebCount6InputNo=wtWebCount6InputNo, wtWebioEA2x2ERP_24VBinaryTcpServerClientHttpPort=wtWebioEA2x2ERP_24VBinaryTcpServerClientHttpPort, wtWebioEA2x2ERP_24VDiagErrorIndex=wtWebioEA2x2ERP_24VDiagErrorIndex, wtWebioEA12x6RelClockYear=wtWebioEA12x6RelClockYear, wtWebioEA2x2ERP_24VStTzStopHrs=wtWebioEA2x2ERP_24VStTzStopHrs, wtWebioEA12x6RelERPDeviceText=wtWebioEA12x6RelERPDeviceText, wtWebioEA24oemSNMP=wtWebioEA24oemSNMP, wtWebioEA2x2ERPSessCntrl=wtWebioEA2x2ERPSessCntrl, wtWebAlarm6x6InputPortTable=wtWebAlarm6x6InputPortTable, wtIpWatcher_24VAlert29=wtIpWatcher_24VAlert29, wtWebAlarm6x6AlarmMailText=wtWebAlarm6x6AlarmMailText, wtWebioEA2x2AlarmEnable=wtWebioEA2x2AlarmEnable, wtWebioEA2x2ERPDeviceLocation=wtWebioEA2x2ERPDeviceLocation, wtIpWatcher_24VAlarmNo=wtIpWatcher_24VAlarmNo, wtWebioEA24oemAlarmMailText=wtWebioEA24oemAlarmMailText, wtWebioEA24oemBinaryTcpServerClientHttpPort=wtWebioEA24oemBinaryTcpServerClientHttpPort, wtWebioEA2x2_24VOutputTable=wtWebioEA2x2_24VOutputTable, wtWebioEA2x2_24VUdpAdminPort=wtWebioEA2x2_24VUdpAdminPort, wtWebioEA2x2AlarmCount=wtWebioEA2x2AlarmCount, wtIpWatcherSnmpSystemTrapEnable=wtIpWatcherSnmpSystemTrapEnable, wtIpWatcherAlarmEnable=wtIpWatcherAlarmEnable, wtIpWatcher_24VSessCntrlConfigPassword=wtIpWatcher_24VSessCntrlConfigPassword, wtWebAlarm6x6StTzStopMin=wtWebAlarm6x6StTzStopMin, wtWebioEA2x2ERP_24VTimeServer1=wtWebioEA2x2ERP_24VTimeServer1, wtWebAlarm6x6AlarmFtpTrapTxEnable=wtWebAlarm6x6AlarmFtpTrapTxEnable, wtWebioEA2x2MfName=wtWebioEA2x2MfName, wtWebioEA24oemTzOffsetMin=wtWebioEA24oemTzOffsetMin, wtWebioEA24oemOutputPortEntry=wtWebioEA24oemOutputPortEntry, wtWebCount6ReportMailText=wtWebCount6ReportMailText, wtWebioEA2x2_24VFTPUserName=wtWebioEA2x2_24VFTPUserName, wtWebAlarm6x6MailAdName=wtWebAlarm6x6MailAdName, wtIpWatcherAlarmFtpTrapTxEnable=wtIpWatcherAlarmFtpTrapTxEnable, wtTrapReceiver2x2ActionOutputTable=wtTrapReceiver2x2ActionOutputTable, wtTrapReceiver2x2AlertDiag=wtTrapReceiver2x2AlertDiag, wtWebioEA2x2_24VMailAuthUser=wtWebioEA2x2_24VMailAuthUser, wtWebioEA2x2BinaryTcpServerApplicationMode=wtWebioEA2x2BinaryTcpServerApplicationMode, wtWebioEA6x6MailAuthUser=wtWebioEA6x6MailAuthUser, wtWebAlarm6x6MfHotline=wtWebAlarm6x6MfHotline, wtIpWatcherAlarmSetPort=wtIpWatcherAlarmSetPort, wtWebioEA2x2_24VSyslogEnable=wtWebioEA2x2_24VSyslogEnable, wtIpWatcher_24VAlarmSnmpTrapReleaseText=wtIpWatcher_24VAlarmSnmpTrapReleaseText, wtIpWatcher_24VHTTP=wtIpWatcher_24VHTTP, wtWebioEA6x6OutputEntry=wtWebioEA6x6OutputEntry, wtWebioEA6x6BinaryTcpServerInputTrigger=wtWebioEA6x6BinaryTcpServerInputTrigger, wtWebCount6UDP=wtWebCount6UDP, wtWebioEA6x6PortLogicOutputInverter=wtWebioEA6x6PortLogicOutputInverter, wtWebioEA12x6RelAlert8=wtWebioEA12x6RelAlert8, wtIpWatcherInOut=wtIpWatcherInOut, wtWebioEA12x6RelBasic=wtWebioEA12x6RelBasic, wtWebioEA12x12BinaryEntry=wtWebioEA12x12BinaryEntry, wtWebioEA2x2ERP_24VAlarmMailText=wtWebioEA2x2ERP_24VAlarmMailText, wtWebioEA6x6StTzStartMonth=wtWebioEA6x6StTzStartMonth, wtIpWatcher_24VAlarmSyslogPort=wtIpWatcher_24VAlarmSyslogPort, wtWebioEA12x6RelERPAlarmSyslogIpAddr=wtWebioEA12x6RelERPAlarmSyslogIpAddr, wtWebioEA12x6RelPortOutputSafetyState=wtWebioEA12x6RelPortOutputSafetyState, wtWebCount6StTzStartMode=wtWebCount6StTzStartMode, wtWebioEA2x2AlarmUdpText=wtWebioEA2x2AlarmUdpText, wtWebioEA2x2Alert2=wtWebioEA2x2Alert2, wtWebioEA2x2ERPInputPortTable=wtWebioEA2x2ERPInputPortTable, wtWebioEA6x6StTzEnable=wtWebioEA6x6StTzEnable, wtWebioEA12x6RelERPDiagErrorMessage=wtWebioEA12x6RelERPDiagErrorMessage, wtWebioEA2x2_24VAlarmSnmpManagerIP=wtWebioEA2x2_24VAlarmSnmpManagerIP, wtWebioEA2x2BinaryTcpServerInputTrigger=wtWebioEA2x2BinaryTcpServerInputTrigger, wtWebioEA2x2ERPAlert1=wtWebioEA2x2ERPAlert1, wtWebioEA2x2ERPAlarmUdpIpAddr=wtWebioEA2x2ERPAlarmUdpIpAddr, wtWebioEA2x2ERP_24VPortLogicInputMask=wtWebioEA2x2ERP_24VPortLogicInputMask, wtWebioEA6x6PortInputBicountInactivTimeout=wtWebioEA6x6PortInputBicountInactivTimeout, wtWebAlarm6x6Alert3=wtWebAlarm6x6Alert3, wtWebioEA6x6Alert15=wtWebioEA6x6Alert15, wtWebioEA2x2MailPop3Server=wtWebioEA2x2MailPop3Server, wtWebCount6FTPOption=wtWebCount6FTPOption, wtWebioEA2x2_24VSafetyTimeout=wtWebioEA2x2_24VSafetyTimeout, wtWebioEA2x2ERPOutputValue=wtWebioEA2x2ERPOutputValue, wtWebioEA2x2ERP_24VGateway=wtWebioEA2x2ERP_24VGateway, wtWebCount6ReportOutputState=wtWebCount6ReportOutputState, wtWebioEA2x2ERPAlarmMailReleaseText=wtWebioEA2x2ERPAlarmMailReleaseText, wtWebCount6DiagErrorMessage=wtWebCount6DiagErrorMessage, wtWebCount6DiagErrorCount=wtWebCount6DiagErrorCount, wtWebCount6StTzStartWday=wtWebCount6StTzStartWday, wtWebioEA2x2UDP=wtWebioEA2x2UDP, wtWebioEA2x2_24VSubnetMask=wtWebioEA2x2_24VSubnetMask, wtWebioEA12x6RelTsSyncTime=wtWebioEA12x6RelTsSyncTime, wtWebioEA12x6RelERPSnmpCommunityStringReadWrite=wtWebioEA12x6RelERPSnmpCommunityStringReadWrite, wtIpWatcherInputPortTable=wtIpWatcherInputPortTable, wtWebioEA24oemStTzStopMin=wtWebioEA24oemStTzStopMin, wtWebCount6StTzOffsetMin=wtWebCount6StTzOffsetMin, wtTrapReceiver2x2SystemTimerPortTable=wtTrapReceiver2x2SystemTimerPortTable, wtWebioEA2x2Alert3=wtWebioEA2x2Alert3, wtWebioEA12x6RelAlarmFtpReleaseText=wtWebioEA12x6RelAlarmFtpReleaseText, wtWebioEA2x2StTzStartMode=wtWebioEA2x2StTzStartMode, wtIpWatcher_24VAlert5=wtIpWatcher_24VAlert5, wtWebioEA12x6RelERPFTP=wtWebioEA12x6RelERPFTP, wtIpWatcherInputState=wtIpWatcherInputState, wtWebCount6SnmpCommunityStringRead=wtWebCount6SnmpCommunityStringRead, wtWebioEA12x6RelBinaryConnectedIpAddr=wtWebioEA12x6RelBinaryConnectedIpAddr, wtWebAlarm6x6PortInputCounterSet=wtWebAlarm6x6PortInputCounterSet, wtWebioEA12x6RelBinaryTcpServerLocalPort=wtWebioEA12x6RelBinaryTcpServerLocalPort, wtWebioEA2x2ERPPortLogicOutputInverter=wtWebioEA2x2ERPPortLogicOutputInverter, wtWebAlarm6x6PortInputName=wtWebAlarm6x6PortInputName, wtWebioEA12x6RelERPWayBackServerControlPort=wtWebioEA12x6RelERPWayBackServerControlPort, wtWebioEA24oemOutputValue=wtWebioEA24oemOutputValue, wtWebioEA12x6RelNetwork=wtWebioEA12x6RelNetwork, wtWebioEA12x12BinaryUdpPeerInputTrigger=wtWebioEA12x12BinaryUdpPeerInputTrigger, wtWebioEA2x2_24VAlert2=wtWebioEA2x2_24VAlert2, wtTrapReceiver2x2StTzStartWday=wtTrapReceiver2x2StTzStartWday, wtWebioEA2x2PortLogicInputInverter=wtWebioEA2x2PortLogicInputInverter, wtIpWatcherFTPAccount=wtIpWatcherFTPAccount)
mibBuilder.exportSymbols('Webio-Digital-MIB-US', wtWebAlarm6x6DiagErrorCount=wtWebAlarm6x6DiagErrorCount, wtWebioEA2x2BinaryUdpPeerApplicationMode=wtWebioEA2x2BinaryUdpPeerApplicationMode, wtWebioEA2x2BinaryTcpClientInputTrigger=wtWebioEA2x2BinaryTcpClientInputTrigger, wtWebioEA12x6RelTzOffsetMin=wtWebioEA12x6RelTzOffsetMin, wtIpWatcherClockYear=wtIpWatcherClockYear, wtWebioEA2x2ERP_24VAlert15=wtWebioEA2x2ERP_24VAlert15, wtWebioEA24oemDiagErrorIndex=wtWebioEA24oemDiagErrorIndex, wtWebAlarm6x6AlarmTcpTrapTxEnable=wtWebAlarm6x6AlarmTcpTrapTxEnable, wtWebioEA2x2ERPWayBackEnable=wtWebioEA2x2ERPWayBackEnable, wtWebioEA2x2_24VAlert6=wtWebioEA2x2_24VAlert6, wtWebioEA2x2_24VAlert7=wtWebioEA2x2_24VAlert7, wtIpWatcher_24VInputs=wtIpWatcher_24VInputs, wtWebioEA2x2PortInputBicountPulsePolarity=wtWebioEA2x2PortInputBicountPulsePolarity, wtWebioEA2x2AlertDiag=wtWebioEA2x2AlertDiag, wtWebioEA12x6RelIpAddress=wtWebioEA12x6RelIpAddress, wtWebioEA6x6StTzStopMode=wtWebioEA6x6StTzStopMode, wtWebioEA12x12UdpEnable=wtWebioEA12x12UdpEnable, wtWebioEA12x12AlarmInterval=wtWebioEA12x12AlarmInterval, wtIpWatcherSessCntrlConfigPassword=wtIpWatcherSessCntrlConfigPassword, wtWebCount6ReportTimerCron=wtWebCount6ReportTimerCron, wtWebioEA6x6AlarmTcpPort=wtWebioEA6x6AlarmTcpPort, wtWebioEA12x6RelOutputModeEntry=wtWebioEA12x6RelOutputModeEntry, wtWebioEA2x2ERP_24VBinaryTcpClientServerPassword=wtWebioEA2x2ERP_24VBinaryTcpClientServerPassword, wtIpWatcher_24VInputNo=wtIpWatcher_24VInputNo, wtTrapReceiver2x2OutputEntry=wtTrapReceiver2x2OutputEntry, wtWebioEA24oemInputPortTable=wtWebioEA24oemInputPortTable, wtWebioEA2x2ERPInputs=wtWebioEA2x2ERPInputs, wtWebioEA6x6TsEnable=wtWebioEA6x6TsEnable, wtIpWatcherTzEnable=wtIpWatcherTzEnable, wtWebioEA2x2ERP_24VAlarmMailReleaseSubject=wtWebioEA2x2ERP_24VAlarmMailReleaseSubject, wtIpWatcher_24VAlert16=wtIpWatcher_24VAlert16, wtWebioEA2x2ERPPortLogicInputMask=wtWebioEA2x2ERPPortLogicInputMask, wtIpWatcherSetOutput=wtIpWatcherSetOutput, wtWebioEA2x2ERPPortOutputSafetyState=wtWebioEA2x2ERPPortOutputSafetyState, wtWebioEA2x2ERP_24VFTPAccount=wtWebioEA2x2ERP_24VFTPAccount, wtWebioEA2x2ERP_24VSessCntrlConfigPassword=wtWebioEA2x2ERP_24VSessCntrlConfigPassword, wtWebioEA6x6InputPortTable=wtWebioEA6x6InputPortTable, wtWebioEA12x6RelERPAlarmTimerCron=wtWebioEA12x6RelERPAlarmTimerCron, wtIpWatcher_24VAlert30=wtIpWatcher_24VAlert30, wtWebioEA2x2ERPAlert17=wtWebioEA2x2ERPAlert17, wtWebioEA12x6RelERPTimeServer=wtWebioEA12x6RelERPTimeServer, wtWebioEA24oemPortInputFilter=wtWebioEA24oemPortInputFilter, wtWebAlarm6x6Alert17=wtWebAlarm6x6Alert17, wtWebioEA12x6RelERPSnmpCommunityStringRead=wtWebioEA12x6RelERPSnmpCommunityStringRead, wtWebioEA6x6TimeServer=wtWebioEA6x6TimeServer, wtWebioEA2x2SessCntrlAdminPassword=wtWebioEA2x2SessCntrlAdminPassword, wtWebioEA2x2ERPBinaryUdpPeerApplicationMode=wtWebioEA2x2ERPBinaryUdpPeerApplicationMode, wtWebioEA12x6RelERPAlarmInputTrigger=wtWebioEA12x6RelERPAlarmInputTrigger, wtIpWatcher_24VSessCntrlPassword=wtIpWatcher_24VSessCntrlPassword, wtTrapReceiver2x2StTzOffsetMin=wtTrapReceiver2x2StTzOffsetMin, wtIpWatcher_24VAlert7=wtIpWatcher_24VAlert7, wtWebioEA2x2ERPDevice=wtWebioEA2x2ERPDevice, wtWebioEA2x2ERP_24VSnmpEnable=wtWebioEA2x2ERP_24VSnmpEnable, wtWebAlarm6x6StTzOffsetMin=wtWebAlarm6x6StTzOffsetMin, wtWebAlarm6x6Alert20=wtWebAlarm6x6Alert20, wtIpWatcher_24VPowerSupplyEnable=wtIpWatcher_24VPowerSupplyEnable, wtWebioEA24oemLoadControlEnable=wtWebioEA24oemLoadControlEnable, wtWebioEA12x12PortOutputGroupMode=wtWebioEA12x12PortOutputGroupMode, wtWebioEA12x6RelBinaryModeNo=wtWebioEA12x6RelBinaryModeNo, wtIpWatcherAlarmSyslogTrapTxEnable=wtIpWatcherAlarmSyslogTrapTxEnable, wtWebioEA6x6Basic=wtWebioEA6x6Basic, wtWebCount6SessCntrlConfigMode=wtWebCount6SessCntrlConfigMode, wtWebCount6Alert4=wtWebCount6Alert4, wtWebioEA12x6RelERPBinaryTcpServerClientHttpPort=wtWebioEA12x6RelERPBinaryTcpServerClientHttpPort, wtWebioEA6x6ClockDay=wtWebioEA6x6ClockDay, wtWebioEA6x6BinaryTcpClientInactivity=wtWebioEA6x6BinaryTcpClientInactivity, wtWebioEA2x2AlarmEntry=wtWebioEA2x2AlarmEntry, wtIpWatcherAlert21=wtIpWatcherAlert21, wtWebioEA6x6ClockHrs=wtWebioEA6x6ClockHrs, wtWebCount6InputState=wtWebCount6InputState, wtWebioEA12x12AlarmFtpReleaseText=wtWebioEA12x12AlarmFtpReleaseText, wtWebioEA2x2ERP_24VAlarmUdpReleaseText=wtWebioEA2x2ERP_24VAlarmUdpReleaseText, wtWebioEA24oemSessCntrlConfigPassword=wtWebioEA24oemSessCntrlConfigPassword, wtWebioEA24oemSnmpEnable=wtWebioEA24oemSnmpEnable, wtWebioEA12x12AlarmOutputTrigger=wtWebioEA12x12AlarmOutputTrigger, wtWebioEA24oemIpAddress=wtWebioEA24oemIpAddress, wtIpWatcherClockDay=wtIpWatcherClockDay, wtWebioEA2x2ERPStTzStopHrs=wtWebioEA2x2ERPStTzStopHrs, wtWebioEA2x2Alert22=wtWebioEA2x2Alert22, wtTrapReceiver2x2MfDeviceTyp=wtTrapReceiver2x2MfDeviceTyp, wtWebioEA24oemAlarmTable=wtWebioEA24oemAlarmTable, wtWebioEA6x6OutputPortEntry=wtWebioEA6x6OutputPortEntry, wtIpWatcherAlert14=wtIpWatcherAlert14, wtWebioEA2x2_24VDiagErrorCount=wtWebioEA2x2_24VDiagErrorCount, wtWebioEA24oemAlert11=wtWebioEA24oemAlert11, wtWebioEA12x6RelBinaryUdpPeerInterval=wtWebioEA12x6RelBinaryUdpPeerInterval, wtWebioEA2x2_24VPortLogicFunction=wtWebioEA2x2_24VPortLogicFunction, wtWebAlarm6x6AlarmSnmpTrapTrgClearText=wtWebAlarm6x6AlarmSnmpTrapTrgClearText, wtWebioEA2x2ERPBinaryConnectedPort=wtWebioEA2x2ERPBinaryConnectedPort, wtTrapReceiver2x2MailAuthPassword=wtTrapReceiver2x2MailAuthPassword, wtWebioEA2x2_24VPowerSupplyEnable=wtWebioEA2x2_24VPowerSupplyEnable, wtWebioEA2x2_24VSnmpCommunityStringReadWrite=wtWebioEA2x2_24VSnmpCommunityStringReadWrite, wtTrapReceiver2x2InputState=wtTrapReceiver2x2InputState, wtIpWatcher_24VAlert3=wtIpWatcher_24VAlert3, wtWebioEA12x12Alert21=wtWebioEA12x12Alert21, wtWebioEA12x6RelERPMail=wtWebioEA12x6RelERPMail, wtWebioEA12x12ClockDay=wtWebioEA12x12ClockDay, wtWebioEA24oemStTzStopMonth=wtWebioEA24oemStTzStopMonth, wtWebCount6ReportOutputEntry=wtWebCount6ReportOutputEntry, wtWebioEA12x6RelOutputState=wtWebioEA12x6RelOutputState, wtIpWatcher_24VPortOutputText=wtIpWatcher_24VPortOutputText, wtWebioEA2x2OutputModeTable=wtWebioEA2x2OutputModeTable, wtIpWatcherHTTP=wtIpWatcherHTTP, wtWebioEA2x2ERP_24VAlarmTcpIpAddr=wtWebioEA2x2ERP_24VAlarmTcpIpAddr, wtWebioEA2x2ERPSyslogServerIP=wtWebioEA2x2ERPSyslogServerIP, wtWebioEA24oemAlarmSyslogIpAddr=wtWebioEA24oemAlarmSyslogIpAddr, wtIpWatcher_24VMailAuthentication=wtIpWatcher_24VMailAuthentication, wtWebioEA2x2StTzStartMonth=wtWebioEA2x2StTzStartMonth, wtWebAlarm6x6StTzStopWday=wtWebAlarm6x6StTzStopWday, wtWebioEA12x6RelBinaryUdpPeerLocalPort=wtWebioEA12x6RelBinaryUdpPeerLocalPort, wtIpWatcher_24VDnsServer1=wtIpWatcher_24VDnsServer1, wtIpWatcherPortPulseDuration=wtIpWatcherPortPulseDuration, wtTrapReceiver2x2ButtonPortTable=wtTrapReceiver2x2ButtonPortTable, wtWebAlarm6x6Alert33=wtWebAlarm6x6Alert33, wtWebioEA6x6Startup=wtWebioEA6x6Startup, wtWebAlarm6x6Alert31=wtWebAlarm6x6Alert31, wtWebioEA6x6Network=wtWebioEA6x6Network, wtWebioEA12x12StTzStopMin=wtWebioEA12x12StTzStopMin, wtWebioEA2x2AlarmFtpDataPort=wtWebioEA2x2AlarmFtpDataPort, wtWebioEA2x2ERP=wtWebioEA2x2ERP, wtWebioEA2x2_24VAlarmInputTrigger=wtWebioEA2x2_24VAlarmInputTrigger, wtIpWatcher_24VAlarmName=wtIpWatcher_24VAlarmName, wtWebioEA2x2PortOutputName=wtWebioEA2x2PortOutputName, wtWebioEA2x2_24VInputEntry=wtWebioEA2x2_24VInputEntry, wtWebioEA24oemSnmpCommunityStringRead=wtWebioEA24oemSnmpCommunityStringRead, wtTrapReceiver2x2Alert12=wtTrapReceiver2x2Alert12, wtWebioEA24oemSessCntrlPassword=wtWebioEA24oemSessCntrlPassword, wtWebioEA24oemBinaryTcpServerApplicationMode=wtWebioEA24oemBinaryTcpServerApplicationMode, wtWebioEA2x2ERP_24VMfInternet=wtWebioEA2x2ERP_24VMfInternet, wtWebioEA6x6SessCntrlConfigMode=wtWebioEA6x6SessCntrlConfigMode, wtWebioEA12x6RelClockMin=wtWebioEA12x6RelClockMin, wtIpWatcherAlarmMailAddr=wtIpWatcherAlarmMailAddr, wtWebioEA24oemPortInputText=wtWebioEA24oemPortInputText, wtWebAlarm6x6AlertDiag=wtWebAlarm6x6AlertDiag, wtTrapReceiver2x2StTzStartHrs=wtTrapReceiver2x2StTzStartHrs, wtWebioEA24oemDeviceName=wtWebioEA24oemDeviceName, wtWebioEA12x6RelERPHttpPort=wtWebioEA12x6RelERPHttpPort, wtWebioEA2x2BinaryTcpClientServerIpAddr=wtWebioEA2x2BinaryTcpClientServerIpAddr, wtWebioEA2x2ERPClockMonth=wtWebioEA2x2ERPClockMonth, wtWebioEA12x12Alert9=wtWebioEA12x12Alert9, wtWebAlarm6x6AlarmSyslogTrapTxEnable=wtWebAlarm6x6AlarmSyslogTrapTxEnable, wtWebioEA12x6RelERPAlert12=wtWebioEA12x6RelERPAlert12, wtWebioEA6x6SnmpSystemTrapEnable=wtWebioEA6x6SnmpSystemTrapEnable, wtWebioEA24oemUDP=wtWebioEA24oemUDP, wtIpWatcher_24VText=wtIpWatcher_24VText, wtWebioEA2x2_24VFTPOption=wtWebioEA2x2_24VFTPOption, wtWebioEA12x12DeviceContact=wtWebioEA12x12DeviceContact, wtWebioEA2x2_24VTzOffsetHrs=wtWebioEA2x2_24VTzOffsetHrs, wtWebioEA2x2ERP_24VSubnetMask=wtWebioEA2x2ERP_24VSubnetMask, wtWebioEA12x6RelDnsServer2=wtWebioEA12x6RelDnsServer2, wtWebioEA24oemOutputMode=wtWebioEA24oemOutputMode, wtWebioEA6x6DiagErrorCount=wtWebioEA6x6DiagErrorCount, wtIpWatcher_24VAlarmMailTrapTxEnable=wtIpWatcher_24VAlarmMailTrapTxEnable, wtWebioEA12x6RelERPAlert1=wtWebioEA12x6RelERPAlert1, wtWebAlarm6x6DeviceContact=wtWebAlarm6x6DeviceContact, wtIpWatcher_24VMailPop3Server=wtIpWatcher_24VMailPop3Server, wtWebioEA2x2ERP_24VAlarmSyslogIpAddr=wtWebioEA2x2ERP_24VAlarmSyslogIpAddr, wtWebioEA2x2ERPInputNo=wtWebioEA2x2ERPInputNo, wtWebioEA24oemInputCounterClear=wtWebioEA24oemInputCounterClear, wtWebioEA12x6RelERPWayBackFTPTimeOut=wtWebioEA12x6RelERPWayBackFTPTimeOut, wtTrapReceiver2x2PortInputText=wtTrapReceiver2x2PortInputText, wtWebioEA2x2ERPNetwork=wtWebioEA2x2ERPNetwork, wtWebioEA12x6RelERPBinaryUdpPeerInterval=wtWebioEA12x6RelERPBinaryUdpPeerInterval, wtWebioEA24oemBinaryIfEntry=wtWebioEA24oemBinaryIfEntry, wtWebAlarm6x6AlarmTcpIpAddr=wtWebAlarm6x6AlarmTcpIpAddr, wtWebAlarm6x6Text=wtWebAlarm6x6Text, wtWebio=wtWebio, wtWebAlarm6x6AlarmIfTable=wtWebAlarm6x6AlarmIfTable, wtWebioEA12x12InputCounterClear=wtWebioEA12x12InputCounterClear, wtWebioEA2x2ERPOutputNo=wtWebioEA2x2ERPOutputNo, wtWebioEA12x6RelAlarmUdpReleaseText=wtWebioEA12x6RelAlarmUdpReleaseText, wtWebioEA24oemMfDeviceTyp=wtWebioEA24oemMfDeviceTyp, wtWebioEA12x6RelERPBinary=wtWebioEA12x6RelERPBinary, wtWebioEA2x2ERPAlarmUdpText=wtWebioEA2x2ERPAlarmUdpText, wtWebioEA12x6RelBinaryTcpClientServerHttpPort=wtWebioEA12x6RelBinaryTcpClientServerHttpPort, wtWebioEA12x12Alarm=wtWebioEA12x12Alarm, wtIpWatcherMail=wtIpWatcherMail, wtIpWatcherFTPEnable=wtIpWatcherFTPEnable, wtIpWatcher_24VIpListName=wtIpWatcher_24VIpListName, wtTrapReceiver2x2PortButtonName=wtTrapReceiver2x2PortButtonName, wtWebioEA2x2ERPOutputEntry=wtWebioEA2x2ERPOutputEntry, wtWebioEA12x12Alert15=wtWebioEA12x12Alert15, wtWebioEA6x6StTzStartWday=wtWebioEA6x6StTzStartWday, wtIpWatcher_24VIpListCount=wtIpWatcher_24VIpListCount, wtIpWatcher_24VAlarmIfEntry=wtIpWatcher_24VAlarmIfEntry, wtWebioEA24oemMfAddr=wtWebioEA24oemMfAddr, wtWebAlarm6x6AlarmTcpText=wtWebAlarm6x6AlarmTcpText, wtIpWatcherAlert20=wtIpWatcherAlert20, wtWebioEA12x6RelERPBinaryOperationMode=wtWebioEA12x6RelERPBinaryOperationMode, wtWebioEA2x2ERPDeviceClock=wtWebioEA2x2ERPDeviceClock, wtWebioEA6x6AlarmInputTrigger=wtWebioEA6x6AlarmInputTrigger, wtWebioEA2x2ERP_24VPortPulsePolarity=wtWebioEA2x2ERP_24VPortPulsePolarity, wtWebioEA6x6FTPServerIP=wtWebioEA6x6FTPServerIP, wtWebioEA2x2ERPSessCntrlPassword=wtWebioEA2x2ERPSessCntrlPassword, wtTrapReceiver2x2PortPulseDuration=wtTrapReceiver2x2PortPulseDuration, wtWebioEA2x2ERP_24VAlarmFtpText=wtWebioEA2x2ERP_24VAlarmFtpText, wtWebioEA12x12Alert1=wtWebioEA12x12Alert1, wtWebioEA12x6RelERPPortOutputSafetyState=wtWebioEA12x6RelERPPortOutputSafetyState, wtWebioEA12x6RelAlert12=wtWebioEA12x6RelAlert12, wtWebioEA2x2ERP_24VBinaryUdpPeerApplicationMode=wtWebioEA2x2ERP_24VBinaryUdpPeerApplicationMode, wtWebioEA6x6StTzStopHrs=wtWebioEA6x6StTzStopHrs, wtWebioEA12x12AlarmSystemTrigger=wtWebioEA12x12AlarmSystemTrigger, wtIpWatcher_24VAlert1=wtIpWatcher_24VAlert1, wtWebioEA24oemBinaryModeCount=wtWebioEA24oemBinaryModeCount, wtIpWatcherAlert30=wtIpWatcherAlert30, wtWebioEA12x6RelMfInternet=wtWebioEA12x6RelMfInternet, wtWebioEA2x2_24VAlarmSyslogText=wtWebioEA2x2_24VAlarmSyslogText, wtTrapReceiver2x2=wtTrapReceiver2x2, wtWebioEA12x6RelERPAlert5=wtWebioEA12x6RelERPAlert5, wtWebCount6ClockMin=wtWebCount6ClockMin, wtWebioEA12x6RelPortOutputGroupMode=wtWebioEA12x6RelPortOutputGroupMode, wtWebioEA2x2PortInputText=wtWebioEA2x2PortInputText, wtWebioEA2x2Startup=wtWebioEA2x2Startup, wtTrapReceiver2x2DiagErrorClear=wtTrapReceiver2x2DiagErrorClear, wtWebAlarm6x6Alert34=wtWebAlarm6x6Alert34, wtWebioEA12x6RelERPInputTable=wtWebioEA12x6RelERPInputTable, wtWebioEA12x6RelERPOutputMode=wtWebioEA12x6RelERPOutputMode, wtWebAlarm6x6DeviceClock=wtWebAlarm6x6DeviceClock, wtWebAlarm6x6AlarmOutputState=wtWebAlarm6x6AlarmOutputState, wtWebioEA2x2_24VOutputMode=wtWebioEA2x2_24VOutputMode, wtWebioEA12x12Config=wtWebioEA12x12Config, wtIpWatcherAlert31=wtIpWatcherAlert31, wtWebioEA6x6DeviceLocation=wtWebioEA6x6DeviceLocation, wtWebioEA24oemAlarmNo=wtWebioEA24oemAlarmNo, wtIpWatcherAlarmUdpIpAddr=wtIpWatcherAlarmUdpIpAddr, wtIpWatcher_24VMfName=wtIpWatcher_24VMfName, wtTrapReceiver2x2OutputValue=wtTrapReceiver2x2OutputValue, wtWebioEA2x2ERP_24VStartup=wtWebioEA2x2ERP_24VStartup, wtWebioEA2x2ERP_24VTzOffsetHrs=wtWebioEA2x2ERP_24VTzOffsetHrs, wtWebioEA2x2_24VPortLogicInputMask=wtWebioEA2x2_24VPortLogicInputMask, wtWebioEA24oemBinaryTcpClientServerPort=wtWebioEA24oemBinaryTcpClientServerPort, wtWebioEA2x2Alert6=wtWebioEA2x2Alert6, wtWebioEA6x6OutputState=wtWebioEA6x6OutputState, wtTrapReceiver2x2OutputNo=wtTrapReceiver2x2OutputNo, wtWebCount6TzOffsetHrs=wtWebCount6TzOffsetHrs, wtWebioEA6x6MailReply=wtWebioEA6x6MailReply, wtWebioEA2x2AlarmIfTable=wtWebioEA2x2AlarmIfTable, wtWebCount6ReportFtpDataPort=wtWebCount6ReportFtpDataPort, wtWebioEA12x6RelPortInputName=wtWebioEA12x6RelPortInputName, wtWebioEA2x2_24VAlertDiag=wtWebioEA2x2_24VAlertDiag, wtWebioEA12x6RelERPStTzStopMonth=wtWebioEA12x6RelERPStTzStopMonth, wtIpWatcher_24VAlert31=wtIpWatcher_24VAlert31, wtWebioEA12x6RelERPWayBackFTPPassword=wtWebioEA12x6RelERPWayBackFTPPassword, wtWebioEA24oemStartup=wtWebioEA24oemStartup, wtIpWatcher_24VAlarmMailAddr=wtIpWatcher_24VAlarmMailAddr, wtIpWatcherAlarmMailText=wtIpWatcherAlarmMailText, wtWebioEA2x2_24VFTPPassword=wtWebioEA2x2_24VFTPPassword, wtWebAlarm6x6Alert11=wtWebAlarm6x6Alert11, wtWebioEA6x6SnmpSystemTrapManagerIP=wtWebioEA6x6SnmpSystemTrapManagerIP, wtWebioEA2x2ERP_24VHttpPort=wtWebioEA2x2ERP_24VHttpPort, wtWebioEA2x2SessCntrlPassword=wtWebioEA2x2SessCntrlPassword, wtWebCount6StTzStopMin=wtWebCount6StTzStopMin, wtWebioEA12x6RelERPDnsServer2=wtWebioEA12x6RelERPDnsServer2, wtWebioEA12x12DiagErrorMessage=wtWebioEA12x12DiagErrorMessage)
mibBuilder.exportSymbols('Webio-Digital-MIB-US', wtIpWatcher_24VIpListIfTable=wtIpWatcher_24VIpListIfTable, wtWebioEA2x2DiagBinaryError=wtWebioEA2x2DiagBinaryError, wtWebioEA12x6RelERPSessCntrlConfigMode=wtWebioEA12x6RelERPSessCntrlConfigMode, wtWebioEA2x2_24VMail=wtWebioEA2x2_24VMail, wtWebioEA12x6RelAlarmTcpIpAddr=wtWebioEA12x6RelAlarmTcpIpAddr, wtWebAlarm6x6Alert16=wtWebAlarm6x6Alert16, wtWebioEA12x6RelInputCounterClear=wtWebioEA12x6RelInputCounterClear, wtWebAlarm6x6MfInternet=wtWebAlarm6x6MfInternet, wtWebioEA2x2ERP_24VPorts=wtWebioEA2x2ERP_24VPorts, wtWebioEA6x6AlarmTimerCron=wtWebioEA6x6AlarmTimerCron, wtWebioEA2x2SnmpCommunityStringReadWrite=wtWebioEA2x2SnmpCommunityStringReadWrite, wtWebioEA12x6RelStTzStartHrs=wtWebioEA12x6RelStTzStartHrs, wtWebioEA2x2ERP_24VSessCntrlConfigMode=wtWebioEA2x2ERP_24VSessCntrlConfigMode, wtWebioEA12x6RelAlarmSyslogText=wtWebioEA12x6RelAlarmSyslogText, wtWebioEA2x2ERP_24VInputValue=wtWebioEA2x2ERP_24VInputValue, wtWebioEA2x2ERPIpAddress=wtWebioEA2x2ERPIpAddress, wtWebioEA12x12InputState=wtWebioEA12x12InputState, wtWebAlarm6x6DeviceText=wtWebAlarm6x6DeviceText, wtWebioEA12x6RelERPSessCntrl=wtWebioEA12x6RelERPSessCntrl, wtWebioEA6x6Mail=wtWebioEA6x6Mail, wtWebioEA6x6TsSyncTime=wtWebioEA6x6TsSyncTime, wtWebioEA2x2_24VFTP=wtWebioEA2x2_24VFTP, wtWebioEA2x2AlarmNo=wtWebioEA2x2AlarmNo, wtTrapReceiver2x2FTPOption=wtTrapReceiver2x2FTPOption, wtWebioEA12x12SyslogServerPort=wtWebioEA12x12SyslogServerPort, wtWebioEA12x6RelERPGetHeaderEnable=wtWebioEA12x6RelERPGetHeaderEnable, wtTrapReceiver2x2InEvInputs=wtTrapReceiver2x2InEvInputs, wtWebioEA12x6RelERPBinaryIfTable=wtWebioEA12x6RelERPBinaryIfTable, wtWebioEA12x12Alert4=wtWebioEA12x12Alert4, wtIpWatcher_24VOutputEntry=wtIpWatcher_24VOutputEntry, wtTrapReceiver2x2Alert10=wtTrapReceiver2x2Alert10, wtWebioEA2x2_24VFTPServerIP=wtWebioEA2x2_24VFTPServerIP, wtWebioEA12x12AlarmTimerCron=wtWebioEA12x12AlarmTimerCron, wtWebioEA12x6RelERPPortInputName=wtWebioEA12x6RelERPPortInputName, wtWebioEA24oemTimeDate=wtWebioEA24oemTimeDate, wtIpWatcher_24VAlarmTcpTrapTxEnable=wtIpWatcher_24VAlarmTcpTrapTxEnable, wtWebAlarm6x6DiagErrorClear=wtWebAlarm6x6DiagErrorClear, wtWebioEA6x6BinaryModeNo=wtWebioEA6x6BinaryModeNo, wtWebioEA2x2ERPMailAuthUser=wtWebioEA2x2ERPMailAuthUser, wtWebioEA6x6FTPUserName=wtWebioEA6x6FTPUserName, wtWebioEA6x6FTPPassword=wtWebioEA6x6FTPPassword, wtWebioEA2x2ERP_24VAlert2=wtWebioEA2x2ERP_24VAlert2, wtTrapReceiver2x2PowerSupplyEnable=wtTrapReceiver2x2PowerSupplyEnable, wtWebioEA12x6RelERPOutputPortTable=wtWebioEA12x6RelERPOutputPortTable, wtWebioEA12x12SyslogEnable=wtWebioEA12x12SyslogEnable, wtWebioEA24oemOutputNo=wtWebioEA24oemOutputNo, wtWebAlarm6x6MailEnable=wtWebAlarm6x6MailEnable, wtWebioEA2x2Alert1=wtWebioEA2x2Alert1, wtWebioEA24oemAlert6=wtWebioEA24oemAlert6, wtIpWatcherDiagErrorMessage=wtIpWatcherDiagErrorMessage, wtWebCount6InOut=wtWebCount6InOut, wtWebioEA24oemMailPop3Server=wtWebioEA24oemMailPop3Server, wtWebCount6ReportUdpPort=wtWebCount6ReportUdpPort, wtIpWatcher_24VAlert33=wtIpWatcher_24VAlert33, wtWebioEA24oemSyslogServerIP=wtWebioEA24oemSyslogServerIP, wtWebioEA2x2ERP_24VStTzStopMonth=wtWebioEA2x2ERP_24VStTzStopMonth, wtWebioEA2x2AlarmOutputTrigger=wtWebioEA2x2AlarmOutputTrigger, wtWebioEA12x6RelERPAlarmTcpIpAddr=wtWebioEA12x6RelERPAlarmTcpIpAddr, wtWebioEA2x2_24VAlarmSyslogPort=wtWebioEA2x2_24VAlarmSyslogPort, wtWebioEA2x2_24VMailAdName=wtWebioEA2x2_24VMailAdName, wtWebioEA6x6AlarmUdpText=wtWebioEA6x6AlarmUdpText, wtIpWatcher_24VMailServer=wtIpWatcher_24VMailServer, wtWebioEA2x2ERPAlarmTcpReleaseText=wtWebioEA2x2ERPAlarmTcpReleaseText, wtWebioEA6x6BinaryUdpPeerApplicationMode=wtWebioEA6x6BinaryUdpPeerApplicationMode, wtWebioEA2x2_24VSnmpEnable=wtWebioEA2x2_24VSnmpEnable, wtWebioEA24oemAlert16=wtWebioEA24oemAlert16, wtWebioEA2x2ERP_24VBinaryTcpServerInputTrigger=wtWebioEA2x2ERP_24VBinaryTcpServerInputTrigger, wtWebioEA6x6Alert10=wtWebioEA6x6Alert10, wtWebioEA2x2ERPDeviceName=wtWebioEA2x2ERPDeviceName, wtWebioEA12x6RelERPBinaryTcpServerLocalPort=wtWebioEA12x6RelERPBinaryTcpServerLocalPort, wtWebCount6ReportUdpText=wtWebCount6ReportUdpText, wtWebAlarm6x6MfName=wtWebAlarm6x6MfName, wtWebioEA6x6PortInputBicountPulsePolarity=wtWebioEA6x6PortInputBicountPulsePolarity, wtWebioEA2x2SnmpCommunityStringRead=wtWebioEA2x2SnmpCommunityStringRead, wtWebioEA12x6RelERPBinaryTcpClientLocalPort=wtWebioEA12x6RelERPBinaryTcpClientLocalPort, wtWebioEA6x6OutputMode=wtWebioEA6x6OutputMode, wtWebioEA12x12DiagErrorIndex=wtWebioEA12x12DiagErrorIndex, wtWebCount6ReportInterval=wtWebCount6ReportInterval, wtWebioEA2x2_24VFTPAccount=wtWebioEA2x2_24VFTPAccount, wtTrapReceiver2x2FTP=wtTrapReceiver2x2FTP, wtIpWatcher_24VAlarmIfTable=wtIpWatcher_24VAlarmIfTable, wtWebioEA24oemAlert3=wtWebioEA24oemAlert3, wtWebioEA2x2MfDeviceTyp=wtWebioEA2x2MfDeviceTyp, wtTrapReceiver2x2StTzStopWday=wtTrapReceiver2x2StTzStopWday, wtWebioEA12x12SnmpCommunityStringRead=wtWebioEA12x12SnmpCommunityStringRead, wtIpWatcher_24VDeviceClock=wtIpWatcher_24VDeviceClock, wtWebioEA2x2_24VAlarmMailSubject=wtWebioEA2x2_24VAlarmMailSubject, wtWebioEA12x12BinaryUdpPeerRemotePort=wtWebioEA12x12BinaryUdpPeerRemotePort, wtWebioEA12x6RelAlert18=wtWebioEA12x6RelAlert18, wtWebioEA2x2ERP_24VAlert21=wtWebioEA2x2ERP_24VAlert21, wtWebAlarm6x6AlarmMailTrapTxEnable=wtWebAlarm6x6AlarmMailTrapTxEnable, wtIpWatcherOutputEntry=wtIpWatcherOutputEntry, wtWebioEA24oemBinaryTcpClientServerPassword=wtWebioEA24oemBinaryTcpClientServerPassword, wtWebioEA12x6RelAlarmSnmpTrapReleaseText=wtWebioEA12x6RelAlarmSnmpTrapReleaseText, wtWebioEA2x2ERPSessCntrlConfigPassword=wtWebioEA2x2ERPSessCntrlConfigPassword, wtWebCount6DnsServer2=wtWebCount6DnsServer2, wtIpWatcher_24VAlert12=wtIpWatcher_24VAlert12, wtWebioEA24oemDiagBinaryError=wtWebioEA24oemDiagBinaryError, wtWebAlarm6x6Alert14=wtWebAlarm6x6Alert14, wtIpWatcher_24VAlertDiag=wtIpWatcher_24VAlertDiag, wtWebioEA2x2_24VOutputState=wtWebioEA2x2_24VOutputState, wtWebioEA24oemTzEnable=wtWebioEA24oemTzEnable, wtWebioEA12x6RelERPAlarmSystemTrigger=wtWebioEA12x6RelERPAlarmSystemTrigger, wtIpWatcherAddConfig=wtIpWatcherAddConfig, wtTrapReceiver2x2MfInternet=wtTrapReceiver2x2MfInternet, wtWebioEA2x2ERP_24VLCShutDownView=wtWebioEA2x2ERP_24VLCShutDownView, wtIpWatcher_24VAlert17=wtIpWatcher_24VAlert17, wtWebioEA2x2InputTable=wtWebioEA2x2InputTable, wtWebioEA6x6BinaryUdpPeerRemotePort=wtWebioEA6x6BinaryUdpPeerRemotePort, wtWebioEA24oemSafetyTimeout=wtWebioEA24oemSafetyTimeout, wtWebioEA2x2ERP_24VBinaryUdpPeerRemotePort=wtWebioEA2x2ERP_24VBinaryUdpPeerRemotePort, wtTrapReceiver2x2SessCntrlConfigPassword=wtTrapReceiver2x2SessCntrlConfigPassword, wtIpWatcher_24VMfInternet=wtIpWatcher_24VMfInternet, wtWebioEA6x6PortLogicInputInverter=wtWebioEA6x6PortLogicInputInverter, wtWebioEA2x2ERP_24VInputPortTable=wtWebioEA2x2ERP_24VInputPortTable, wtWebioEA6x6Diag=wtWebioEA6x6Diag, wtWebioEA2x2ERP_24VUdpEnable=wtWebioEA2x2ERP_24VUdpEnable, wtTrapReceiver2x2SystemTimerPortEntry=wtTrapReceiver2x2SystemTimerPortEntry, wtWebioEA6x6StTzStopWday=wtWebioEA6x6StTzStopWday, wtWebCount6ReportMaxCounterValue=wtWebCount6ReportMaxCounterValue, wtIpWatcher_24VSyslogServerPort=wtIpWatcher_24VSyslogServerPort, wtTrapReceiver2x2MailAuthentication=wtTrapReceiver2x2MailAuthentication, wtWebioEA2x2Syslog=wtWebioEA2x2Syslog, wtWebioEA12x6RelMfOrderNo=wtWebioEA12x6RelMfOrderNo, wtWebioEA6x6MfHotline=wtWebioEA6x6MfHotline, wtWebioEA12x6RelStartup=wtWebioEA12x6RelStartup, wtWebioEA24oemDeviceLocation=wtWebioEA24oemDeviceLocation, wtWebioEA6x6Alert3=wtWebioEA6x6Alert3, wtWebioEA6x6Alert1=wtWebioEA6x6Alert1, wtWebioEA12x6RelERPFTPPassword=wtWebioEA12x6RelERPFTPPassword, wtWebioEA2x2_24VAlert9=wtWebioEA2x2_24VAlert9, wtWebCount6SessCntrlLogout=wtWebCount6SessCntrlLogout, wtWebioEA2x2ERPTzOffsetHrs=wtWebioEA2x2ERPTzOffsetHrs, wtWebioEA24oemFTPEnable=wtWebioEA24oemFTPEnable, wtWebioEA12x6RelAddConfig=wtWebioEA12x6RelAddConfig, wtTrapReceiver2x2ActionSnmpManagerIP=wtTrapReceiver2x2ActionSnmpManagerIP, wtWebioEA2x2ERPBinary=wtWebioEA2x2ERPBinary, wtWebioEA6x6FTP=wtWebioEA6x6FTP, wtWebioEA12x12SyslogSystemMessagesEnable=wtWebioEA12x12SyslogSystemMessagesEnable, wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText=wtWebioEA12x6RelERPAlarmSnmpTrapReleaseText, wtWebioEA2x2ERPStTzStartWday=wtWebioEA2x2ERPStTzStartWday, wtWebioEA2x2ERPMfHotline=wtWebioEA2x2ERPMfHotline, wtWebioEA2x2MailAuthPassword=wtWebioEA2x2MailAuthPassword, wtWebioEA2x2ERPSNMP=wtWebioEA2x2ERPSNMP, wtWebAlarm6x6StTzStopHrs=wtWebAlarm6x6StTzStopHrs, wtWebioEA6x6HttpInputTrigger=wtWebioEA6x6HttpInputTrigger, wtWebioEA2x2ERP_24VOutputModeBit=wtWebioEA2x2ERP_24VOutputModeBit, wtTrapReceiver2x2ClockYear=wtTrapReceiver2x2ClockYear, wtIpWatcherDiagErrorIndex=wtIpWatcherDiagErrorIndex, wtTrapReceiver2x2PortButtonAccess=wtTrapReceiver2x2PortButtonAccess, wtWebAlarm6x6Alert12=wtWebAlarm6x6Alert12, wtTrapReceiver2x2WatchListService=wtTrapReceiver2x2WatchListService, wtWebioEA2x2_24VIpAddress=wtWebioEA2x2_24VIpAddress, wtWebioEA2x2BinaryModeNo=wtWebioEA2x2BinaryModeNo, wtWebioEA12x6RelPortInputFilter=wtWebioEA12x6RelPortInputFilter, wtIpWatcherPortInputText=wtIpWatcherPortInputText, wtWebioEA2x2ERP_24VAlarmTable=wtWebioEA2x2ERP_24VAlarmTable, wtTrapReceiver2x2InputNo=wtTrapReceiver2x2InputNo, wtWebioEA12x6RelSnmpSystemTrapEnable=wtWebioEA12x6RelSnmpSystemTrapEnable, wtTrapReceiver2x2ActionUdpPort=wtTrapReceiver2x2ActionUdpPort, wtTrapReceiver2x2MfAddr=wtTrapReceiver2x2MfAddr, wtWebioEA2x2ERPAlarmMailText=wtWebioEA2x2ERPAlarmMailText, wtWebioEA2x2TimeServer2=wtWebioEA2x2TimeServer2, wtWebioEA12x12AlarmSnmpTrapText=wtWebioEA12x12AlarmSnmpTrapText, wtWebioEA6x6GetHeaderEnable=wtWebioEA6x6GetHeaderEnable, wtWebioEA6x6Alert7=wtWebioEA6x6Alert7, wtWebioEA12x12Alert8=wtWebioEA12x12Alert8, wtWebioEA2x2ERP_24VWayBackEnable=wtWebioEA2x2ERP_24VWayBackEnable, wtWebioEA2x2Alert5=wtWebioEA2x2Alert5, wtWebioEA2x2_24VAlarmIfTable=wtWebioEA2x2_24VAlarmIfTable, wtWebCount6TzEnable=wtWebCount6TzEnable, wtWebioEA2x2PortLogicFunction=wtWebioEA2x2PortLogicFunction, wtWebCount6ReportIfTable=wtWebCount6ReportIfTable, wtWebioEA2x2ERPFTPPassword=wtWebioEA2x2ERPFTPPassword, wtWebioEA2x2ERP_24VMailAuthentication=wtWebioEA2x2ERP_24VMailAuthentication, wtWebioEA2x2SyslogSystemMessagesEnable=wtWebioEA2x2SyslogSystemMessagesEnable, wtWebioEA2x2ERPTimeDate=wtWebioEA2x2ERPTimeDate, wtWebCount6StTzStopWday=wtWebCount6StTzStopWday, wtWebioEA12x6RelERPDiagErrorIndex=wtWebioEA12x6RelERPDiagErrorIndex, wtWebioEA12x6RelERPAlert7=wtWebioEA12x6RelERPAlert7, wtWebioEA12x6RelERPAlert21=wtWebioEA12x6RelERPAlert21, wtWebioEA2x2TzEnable=wtWebioEA2x2TzEnable, wtWebAlarm6x6StTzStartMode=wtWebAlarm6x6StTzStartMode, wtWebioEA2x2ERPTimeServer1=wtWebioEA2x2ERPTimeServer1, wtWebioEA2x2_24VBinaryTcpClientInterval=wtWebioEA2x2_24VBinaryTcpClientInterval, wtWebioEA24oemAlert26=wtWebioEA24oemAlert26, wtWebioEA6x6InOut=wtWebioEA6x6InOut, wtWebioEA2x2ERP_24VTimeServer=wtWebioEA2x2ERP_24VTimeServer, wtWebioEA24oemBinary=wtWebioEA24oemBinary, wtWebAlarm6x6ClockYear=wtWebAlarm6x6ClockYear, wtWebioEA2x2TsEnable=wtWebioEA2x2TsEnable, wtWebCount6ReportCounterClear=wtWebCount6ReportCounterClear, wtTrapReceiver2x2PortOutputName=wtTrapReceiver2x2PortOutputName, wtWebioEA2x2ERPTimeZone=wtWebioEA2x2ERPTimeZone, wtWebioEA24oemMailAdName=wtWebioEA24oemMailAdName, wtWebioEA2x2_24VBasic=wtWebioEA2x2_24VBasic, wtIpWatcher_24VFTPUserName=wtIpWatcher_24VFTPUserName, wtWebioEA2x2_24VTimeServer1=wtWebioEA2x2_24VTimeServer1, wtWebioEA6x6MailAdName=wtWebioEA6x6MailAdName, wtWebioEA12x12=wtWebioEA12x12, wtWebioEA24oemAlarmSnmpTrapText=wtWebioEA24oemAlarmSnmpTrapText, wtWebioEA6x6Binary=wtWebioEA6x6Binary, wtWebioEA2x2ERPClockDay=wtWebioEA2x2ERPClockDay, wtWebioEA12x12OutputTable=wtWebioEA12x12OutputTable, wtTrapReceiver2x2Config=wtTrapReceiver2x2Config, wtWebCount6ReportGlobalEnable=wtWebCount6ReportGlobalEnable, wtWebioEA2x2AlarmSyslogReleaseText=wtWebioEA2x2AlarmSyslogReleaseText, wtIpWatcherInputCounterClear=wtIpWatcherInputCounterClear, wtWebioEA12x12HTTP=wtWebioEA12x12HTTP, wtWebioEA2x2AlarmInterval=wtWebioEA2x2AlarmInterval, wtWebioEA12x6RelERPTimeZone=wtWebioEA12x6RelERPTimeZone, wtWebioEA12x6RelConfig=wtWebioEA12x6RelConfig, wtWebioEA12x6RelPortInputMode=wtWebioEA12x6RelPortInputMode, wtWebCount6ReportEntry=wtWebCount6ReportEntry, wtWebioEA12x6RelERPOutputPortEntry=wtWebioEA12x6RelERPOutputPortEntry, wtWebioEA2x2_24VGateway=wtWebioEA2x2_24VGateway, wtIpWatcher_24VStTzEnable=wtIpWatcher_24VStTzEnable, wtWebAlarm6x6AlarmCounterClear=wtWebAlarm6x6AlarmCounterClear, wtIpWatcherDeviceName=wtIpWatcherDeviceName, wtWebioEA12x6RelERPStTzStartMin=wtWebioEA12x6RelERPStTzStartMin, wtTrapReceiver2x2InOut=wtTrapReceiver2x2InOut, wtWebioEA12x12Alert10=wtWebioEA12x12Alert10, wtIpWatcher_24VPorts=wtIpWatcher_24VPorts, wtWebioEA24oemAlert29=wtWebioEA24oemAlert29, wtWebioEA6x6Alert24=wtWebioEA6x6Alert24, wtIpWatcher_24VSessCntrlConfigMode=wtIpWatcher_24VSessCntrlConfigMode, wtIpWatcher_24VStTzStopMode=wtIpWatcher_24VStTzStopMode, wtWebioEA12x12Diag=wtWebioEA12x12Diag, wtWebioEA24oemAlarmInputTrigger=wtWebioEA24oemAlarmInputTrigger, wtWebioEA2x2ERPAlert24=wtWebioEA2x2ERPAlert24, wtWebioEA2x2ERP_24VTsSyncTime=wtWebioEA2x2ERP_24VTsSyncTime, wtWebioEA12x6RelAlarmTimerCron=wtWebioEA12x6RelAlarmTimerCron, wtIpWatcherMfName=wtIpWatcherMfName, wtTrapReceiver2x2InEvSystemTimer=wtTrapReceiver2x2InEvSystemTimer, wtWebioEA2x2ERP_24VBinaryConnectedIpAddr=wtWebioEA2x2ERP_24VBinaryConnectedIpAddr, wtWebioEA12x12BinaryModeNo=wtWebioEA12x12BinaryModeNo, wtTrapReceiver2x2ActionEnable=wtTrapReceiver2x2ActionEnable, wtWebioEA6x6InputEntry=wtWebioEA6x6InputEntry, wtWebioEA12x6RelTzOffsetHrs=wtWebioEA12x6RelTzOffsetHrs, wtWebioEA12x6RelERPInputCounterClear=wtWebioEA12x6RelERPInputCounterClear, wtWebioEA6x6DiagErrorIndex=wtWebioEA6x6DiagErrorIndex, wtTrapReceiver2x2StTzStartMonth=wtTrapReceiver2x2StTzStartMonth, wtWebCount6Gateway=wtWebCount6Gateway, wtWebioEA2x2_24VAddConfig=wtWebioEA2x2_24VAddConfig, wtWebioEA12x6RelFTPServerIP=wtWebioEA12x6RelFTPServerIP, wtWebAlarm6x6DnsServer2=wtWebAlarm6x6DnsServer2, wtWebioEA2x2ERPAlert10=wtWebioEA2x2ERPAlert10, wtIpWatcherAlert25=wtIpWatcherAlert25, wtWebCount6TimeZone=wtWebCount6TimeZone, wtIpWatcher_24VTzOffsetHrs=wtIpWatcher_24VTzOffsetHrs, wtWebioEA6x6BinaryTable=wtWebioEA6x6BinaryTable, wtTrapReceiver2x2MailPop3Server=wtTrapReceiver2x2MailPop3Server, wtIpWatcher_24VMfHotline=wtIpWatcher_24VMfHotline, wtWebioEA2x2_24VMailAuthPassword=wtWebioEA2x2_24VMailAuthPassword)
mibBuilder.exportSymbols('Webio-Digital-MIB-US', wtWebioEA2x2FTPPassword=wtWebioEA2x2FTPPassword, wtWebioEA12x12DeviceText=wtWebioEA12x12DeviceText, wtWebioEA2x2_24VAlarmUdpReleaseText=wtWebioEA2x2_24VAlarmUdpReleaseText, wtWebioEA2x2ERP_24VBinaryTcpClientApplicationMode=wtWebioEA2x2ERP_24VBinaryTcpClientApplicationMode, wtTrapReceiver2x2DnsServer2=wtTrapReceiver2x2DnsServer2, wtWebioEA12x6RelUdpRemotePort=wtWebioEA12x6RelUdpRemotePort, wtWebioEA2x2AlarmMaxCounterValue=wtWebioEA2x2AlarmMaxCounterValue, wtWebioEA12x6RelERPAlarmFtpReleaseText=wtWebioEA12x6RelERPAlarmFtpReleaseText, wtWebioEA6x6Alert8=wtWebioEA6x6Alert8, wtWebioEA2x2ERPBinaryUdpPeerInterval=wtWebioEA2x2ERPBinaryUdpPeerInterval, wtTrapReceiver2x2PortInputName=wtTrapReceiver2x2PortInputName, wtWebioEA12x6RelBinary=wtWebioEA12x6RelBinary, wtTrapReceiver2x2WatchList=wtTrapReceiver2x2WatchList, wtWebioEA2x2_24VInputPortTable=wtWebioEA2x2_24VInputPortTable, wtWebioEA2x2_24VBinaryTcpServerInputTrigger=wtWebioEA2x2_24VBinaryTcpServerInputTrigger, wtWebioEA2x2_24VAlert20=wtWebioEA2x2_24VAlert20, wtWebioEA2x2SyslogEnable=wtWebioEA2x2SyslogEnable, wtTrapReceiver2x2ActionOutputEntry=wtTrapReceiver2x2ActionOutputEntry, wtWebioEA2x2OutputMode=wtWebioEA2x2OutputMode, wtWebioEA24oemInputs=wtWebioEA24oemInputs, wtWebioEA2x2ERPMfDeviceTyp=wtWebioEA2x2ERPMfDeviceTyp, wtIpWatcherAlarmSyslogPort=wtIpWatcherAlarmSyslogPort, wtWebioEA2x2ERPInputCounter=wtWebioEA2x2ERPInputCounter, wtWebioEA2x2_24VPortInputBicountInactivTimeout=wtWebioEA2x2_24VPortInputBicountInactivTimeout, wtWebioEA2x2ERP_24VDnsServer1=wtWebioEA2x2ERP_24VDnsServer1, wtWebioEA2x2_24VBinaryConnectedPort=wtWebioEA2x2_24VBinaryConnectedPort, wtWebioEA2x2ClockMonth=wtWebioEA2x2ClockMonth, wtWebCount6ReportTriggerState=wtWebCount6ReportTriggerState, wtWebioEA12x6RelAlarmUdpIpAddr=wtWebioEA12x6RelAlarmUdpIpAddr, wtWebioEA6x6AlarmNo=wtWebioEA6x6AlarmNo, wtWebioEA24oemAlarmFtpFileName=wtWebioEA24oemAlarmFtpFileName, wtTrapReceiver2x2WatchListSpecificNo=wtTrapReceiver2x2WatchListSpecificNo, wtWebioEA2x2ERP_24VBinaryTcpClientInactivity=wtWebioEA2x2ERP_24VBinaryTcpClientInactivity, wtWebioEA12x6RelInputPortTable=wtWebioEA12x6RelInputPortTable, wtWebCount6SnmpEnable=wtWebCount6SnmpEnable, wtWebioEA12x6RelAlert6=wtWebioEA12x6RelAlert6, wtWebioEA6x6SubnetMask=wtWebioEA6x6SubnetMask, wtWebioEA2x2ERP_24VAlertDiag=wtWebioEA2x2ERP_24VAlertDiag, wtWebioEA24oemSessCntrl=wtWebioEA24oemSessCntrl, wtWebioEA2x2ERPStTzStopWday=wtWebioEA2x2ERPStTzStopWday, wtWebioEA6x6AlarmMailReleaseSubject=wtWebioEA6x6AlarmMailReleaseSubject, wtWebioEA2x2Device=wtWebioEA2x2Device, wtIpWatcher_24VStTzOffsetHrs=wtIpWatcher_24VStTzOffsetHrs, wtWebioEA2x2BinaryTcpClientInactivity=wtWebioEA2x2BinaryTcpClientInactivity, wtWebioEA24oemAlert12=wtWebioEA24oemAlert12, wtWebioEA12x12AlarmTcpReleaseText=wtWebioEA12x12AlarmTcpReleaseText, wtWebAlarm6x6TimeServer=wtWebAlarm6x6TimeServer, wtWebioEA2x2ERPBinaryTcpClientLocalPort=wtWebioEA2x2ERPBinaryTcpClientLocalPort, wtWebioEA2x2ERP_24VAlert4=wtWebioEA2x2ERP_24VAlert4, wtWebioEA2x2ERPBinaryOperationMode=wtWebioEA2x2ERPBinaryOperationMode, wtWebioEA2x2_24VAlarmTimerCron=wtWebioEA2x2_24VAlarmTimerCron, wtWebioEA2x2_24VStTzOffsetHrs=wtWebioEA2x2_24VStTzOffsetHrs, wtWebioEA12x6RelMfName=wtWebioEA12x6RelMfName, wtWebioEA12x12OutputState=wtWebioEA12x12OutputState, wtIpWatcher_24VOutputPortTable=wtIpWatcher_24VOutputPortTable, wtWebioEA2x2_24VAlert3=wtWebioEA2x2_24VAlert3, wtWebioEA2x2ERP_24VUDP=wtWebioEA2x2ERP_24VUDP, wtWebioEA12x6RelERPPortOutputText=wtWebioEA12x6RelERPPortOutputText, wtWebCount6TsSyncTime=wtWebCount6TsSyncTime, wtIpWatcher_24VAlarmSyslogTrgClearText=wtIpWatcher_24VAlarmSyslogTrgClearText, wtWebioEA12x12TsSyncTime=wtWebioEA12x12TsSyncTime, wtTrapReceiver2x2Alert4=wtTrapReceiver2x2Alert4, wtWebioEA6x6MfInternet=wtWebioEA6x6MfInternet, wtWebioEA24oemBinaryTcpClientServerIpAddr=wtWebioEA24oemBinaryTcpClientServerIpAddr, wtIpWatcherTimeDate=wtIpWatcherTimeDate, wtIpWatcher_24VIpListAlias=wtIpWatcher_24VIpListAlias, wtTrapReceiver2x2ActionFtpFileName=wtTrapReceiver2x2ActionFtpFileName, wtWebioEA2x2BinaryTcpClientServerHttpPort=wtWebioEA2x2BinaryTcpClientServerHttpPort, wtIpWatcherMailServer=wtIpWatcherMailServer, wtWebioEA6x6BinaryUdpPeerLocalPort=wtWebioEA6x6BinaryUdpPeerLocalPort, wtWebioEA2x2ERPPortOutputName=wtWebioEA2x2ERPPortOutputName, wtWebAlarm6x6Alert30=wtWebAlarm6x6Alert30, wtWebioEA2x2_24VBinaryTcpClientApplicationMode=wtWebioEA2x2_24VBinaryTcpClientApplicationMode, wtIpWatcher_24VSetOutput=wtIpWatcher_24VSetOutput, wtWebioEA2x2ERPMailAuthPassword=wtWebioEA2x2ERPMailAuthPassword, wtWebioEA12x12Outputs=wtWebioEA12x12Outputs, wtWebioEA2x2_24VAlarmSyslogReleaseText=wtWebioEA2x2_24VAlarmSyslogReleaseText, wtWebioEA12x6RelManufact=wtWebioEA12x6RelManufact, wtWebioEA24oemAlarmUdpIpAddr=wtWebioEA24oemAlarmUdpIpAddr, wtIpWatcherAlarmSyslogReleaseText=wtIpWatcherAlarmSyslogReleaseText, wtWebioEA24oemMailReply=wtWebioEA24oemMailReply, wtWebioEA12x6RelAlarmSyslogPort=wtWebioEA12x6RelAlarmSyslogPort, wtWebioEA12x6RelSubnetMask=wtWebioEA12x6RelSubnetMask, wtWebAlarm6x6StTzStartMin=wtWebAlarm6x6StTzStartMin, wtWebioEA6x6BinaryUdpPeerRemoteIpAddr=wtWebioEA6x6BinaryUdpPeerRemoteIpAddr, wtWebioEA2x2_24VMailEnable=wtWebioEA2x2_24VMailEnable, wtWebioEA2x2_24VAlarmFtpOption=wtWebioEA2x2_24VAlarmFtpOption, wtWebioEA12x6RelERPTzEnable=wtWebioEA12x6RelERPTzEnable, wtWebAlarm6x6Basic=wtWebAlarm6x6Basic, wtWebioEA6x6SetOutput=wtWebioEA6x6SetOutput, wtWebCount6ReportRateOfChange=wtWebCount6ReportRateOfChange, wtWebAlarm6x6Alert5=wtWebAlarm6x6Alert5, wtWebioEA6x6Alert6=wtWebioEA6x6Alert6, wtWebioEA12x6RelERPAlarmSnmpManagerIP=wtWebioEA12x6RelERPAlarmSnmpManagerIP, wtWebioEA2x2SafetyTimeout=wtWebioEA2x2SafetyTimeout, wtWebioEA12x6RelERPConfig=wtWebioEA12x6RelERPConfig, wtWebioEA12x12BinaryTcpServerApplicationMode=wtWebioEA12x12BinaryTcpServerApplicationMode, wtWebioEA2x2MailAdName=wtWebioEA2x2MailAdName, wtTrapReceiver2x2Ports=wtTrapReceiver2x2Ports, wtWebioEA2x2ERP_24VOutputState=wtWebioEA2x2ERP_24VOutputState, wtWebCount6ReportMailSubject=wtWebCount6ReportMailSubject, wtWebioEA2x2ERP_24VMfHotline=wtWebioEA2x2ERP_24VMfHotline, wtWebioEA2x2AlarmSnmpTrapReleaseText=wtWebioEA2x2AlarmSnmpTrapReleaseText, wtWebAlarm6x6AlarmMaxCounterValue=wtWebAlarm6x6AlarmMaxCounterValue, wtWebioEA24oemAlarmTimerCron=wtWebioEA24oemAlarmTimerCron, wtWebioEA12x6RelTzEnable=wtWebioEA12x6RelTzEnable, wtWebioEA12x6RelOutputMode=wtWebioEA12x6RelOutputMode, wtWebioEA2x2ERPHttpPort=wtWebioEA2x2ERPHttpPort, wtWebioEA2x2_24VAlert22=wtWebioEA2x2_24VAlert22, wtWebioEA2x2Alert20=wtWebioEA2x2Alert20, wtWebCount6ReportRateOfChangeWindow=wtWebCount6ReportRateOfChangeWindow, wtWebioEA2x2_24VMailServer=wtWebioEA2x2_24VMailServer, wtWebioEA2x2_24VAlert1=wtWebioEA2x2_24VAlert1, wtWebioEA24oemAlarmOutputTrigger=wtWebioEA24oemAlarmOutputTrigger, wtWebioEA24oemBinaryConnectedPort=wtWebioEA24oemBinaryConnectedPort, wtWebioEA12x12StTzEnable=wtWebioEA12x12StTzEnable, wtWebioEA2x2_24VUdpEnable=wtWebioEA2x2_24VUdpEnable, wtWebCount6Alert1=wtWebCount6Alert1, wtWebioEA2x2DeviceContact=wtWebioEA2x2DeviceContact, wtIpWatcherIpListTable=wtIpWatcherIpListTable, wtWebioEA6x6StTzOffsetMin=wtWebioEA6x6StTzOffsetMin, wtIpWatcherClockMonth=wtIpWatcherClockMonth, wtWebioEA2x2_24VInputState=wtWebioEA2x2_24VInputState, wtIpWatcher_24VAlarmUdpReleaseText=wtIpWatcher_24VAlarmUdpReleaseText, wtWebAlarm6x6AlarmUdpTrgClearText=wtWebAlarm6x6AlarmUdpTrgClearText, wtWebioEA2x2_24VDiagErrorClear=wtWebioEA2x2_24VDiagErrorClear, wtIpWatcher_24VDiagErrorCount=wtIpWatcher_24VDiagErrorCount, wtWebAlarm6x6AlarmTcpReleaseText=wtWebAlarm6x6AlarmTcpReleaseText, wtWebioEA24oemFTPServerIP=wtWebioEA24oemFTPServerIP, wtIpWatcher_24VStTzStopHrs=wtIpWatcher_24VStTzStopHrs, wtWebioEA24oemMailAuthentication=wtWebioEA24oemMailAuthentication, wtWebioEA12x6RelERPSnmpSystemTrapManagerIP=wtWebioEA12x6RelERPSnmpSystemTrapManagerIP, wtWebioEA12x12Device=wtWebioEA12x12Device, wtWebioEA24oemDiagErrorClear=wtWebioEA24oemDiagErrorClear, wtWebCount6Text=wtWebCount6Text, wtWebioEA12x6RelERPAlert11=wtWebioEA12x6RelERPAlert11, wtWebioEA2x2SessCntrlConfigMode=wtWebioEA2x2SessCntrlConfigMode, wtTrapReceiver2x2WatchListEntry=wtTrapReceiver2x2WatchListEntry, wtWebioEA12x6RelERPStTzEnable=wtWebioEA12x6RelERPStTzEnable, wtWebioEA2x2_24VBinaryTcpServerClientHttpPort=wtWebioEA2x2_24VBinaryTcpServerClientHttpPort, wtWebioEA12x6RelAlarmInterval=wtWebioEA12x6RelAlarmInterval, wtWebioEA6x6BinaryTcpClientLocalPort=wtWebioEA6x6BinaryTcpClientLocalPort, wtWebioEA12x6RelStTzStopHrs=wtWebioEA12x6RelStTzStopHrs, wtWebioEA2x2BinaryTcpClientLocalPort=wtWebioEA2x2BinaryTcpClientLocalPort, wtIpWatcherMfInternet=wtIpWatcherMfInternet, wtWebioEA2x2FTPOption=wtWebioEA2x2FTPOption, wtWebAlarm6x6Alert25=wtWebAlarm6x6Alert25, wtIpWatcher_24VDiagErrorIndex=wtIpWatcher_24VDiagErrorIndex, wtTrapReceiver2x2InputPortEntry=wtTrapReceiver2x2InputPortEntry, wtWebioEA2x2ERPAlert14=wtWebioEA2x2ERPAlert14, wtWebioEA24oemPorts=wtWebioEA24oemPorts, wtWebioEA2x2Alert12=wtWebioEA2x2Alert12, wtWebioEA12x12AlarmUdpPort=wtWebioEA12x12AlarmUdpPort, wtIpWatcherOutputValue=wtIpWatcherOutputValue, wtIpWatcherInputs=wtIpWatcherInputs, wtWebCount6SyslogServerPort=wtWebCount6SyslogServerPort, wtWebioEA12x12PortPulseDuration=wtWebioEA12x12PortPulseDuration, wtIpWatcherBasic=wtIpWatcherBasic, wtWebioEA12x12AlarmFtpDataPort=wtWebioEA12x12AlarmFtpDataPort, wtWebioEA2x2AlarmMailSubject=wtWebioEA2x2AlarmMailSubject, wtWebioEA12x6RelERPFTPEnable=wtWebioEA12x6RelERPFTPEnable, wtWebAlarm6x6Outputs=wtWebAlarm6x6Outputs, wtWebioEA2x2ERP_24VBinaryUdpPeerRemoteIpAddr=wtWebioEA2x2ERP_24VBinaryUdpPeerRemoteIpAddr, wtTrapReceiver2x2ClockMonth=wtTrapReceiver2x2ClockMonth, wtWebioEA12x6RelBinaryUdpPeerRemotePort=wtWebioEA12x6RelBinaryUdpPeerRemotePort, wtWebioEA12x6RelERPAlert19=wtWebioEA12x6RelERPAlert19, wtWebioEA6x6SessCntrlPassword=wtWebioEA6x6SessCntrlPassword, wtWebioEA2x2_24VAlarmUdpIpAddr=wtWebioEA2x2_24VAlarmUdpIpAddr, wtWebAlarm6x6AlarmTable=wtWebAlarm6x6AlarmTable, wtWebioEA2x2ERPBinaryTcpClientServerHttpPort=wtWebioEA2x2ERPBinaryTcpClientServerHttpPort, wtWebioEA12x6RelERPStTzStopHrs=wtWebioEA12x6RelERPStTzStopHrs, wtWebioEA12x12AddConfig=wtWebioEA12x12AddConfig, wtWebioEA6x6Outputs=wtWebioEA6x6Outputs, wtIpWatcherIpListAlias=wtIpWatcherIpListAlias, wtWebioEA24oemSnmpCommunityStringReadWrite=wtWebioEA24oemSnmpCommunityStringReadWrite, wtWebioEA2x2ERP_24VClockHrs=wtWebioEA2x2ERP_24VClockHrs, wtWebAlarm6x6Alert15=wtWebAlarm6x6Alert15, wtWebAlarm6x6AlarmSyslogText=wtWebAlarm6x6AlarmSyslogText, wtWebioEA12x12StTzOffsetMin=wtWebioEA12x12StTzOffsetMin, wtWebCount6ReportIfEntry=wtWebCount6ReportIfEntry, wtWebioEA6x6TimeServer1=wtWebioEA6x6TimeServer1, wtTrapReceiver2x2OutputState=wtTrapReceiver2x2OutputState, wtIpWatcher_24VIpListService=wtIpWatcher_24VIpListService, wtWebioEA6x6SessCntrlLogout=wtWebioEA6x6SessCntrlLogout, wtWebAlarm6x6InOut=wtWebAlarm6x6InOut, wtWebioEA12x6RelStTzStopMonth=wtWebioEA12x6RelStTzStopMonth, wtWebioEA6x6BinaryEntry=wtWebioEA6x6BinaryEntry, wtWebioEA24oemBinaryTcpServerLocalPort=wtWebioEA24oemBinaryTcpServerLocalPort, wtWebioEA6x6DnsServer1=wtWebioEA6x6DnsServer1, wtWebioEA2x2_24VBinaryModeNo=wtWebioEA2x2_24VBinaryModeNo, wtWebioEA2x2ERP_24VDiagErrorClear=wtWebioEA2x2ERP_24VDiagErrorClear, wtWebioEA2x2ERP_24VBinaryUdpPeerInputTrigger=wtWebioEA2x2ERP_24VBinaryUdpPeerInputTrigger, wtWebioEA12x6RelERPTsSyncTime=wtWebioEA12x6RelERPTsSyncTime, wtWebioEA2x2DiagErrorMessage=wtWebioEA2x2DiagErrorMessage, wtIpWatcherIpListPort=wtIpWatcherIpListPort, wtWebioEA2x2ERP_24VAlert22=wtWebioEA2x2ERP_24VAlert22, wtWebCount6InputPortEntry=wtWebCount6InputPortEntry, wtWebioEA12x6RelERPStTzOffsetHrs=wtWebioEA12x6RelERPStTzOffsetHrs, wtWebioEA24oemStTzOffsetHrs=wtWebioEA24oemStTzOffsetHrs, wtWebioEA2x2_24VInputNo=wtWebioEA2x2_24VInputNo, wtWebioEA12x12FTPPassword=wtWebioEA12x12FTPPassword, wtWebCount6MfAddr=wtWebCount6MfAddr, wtWebioEA6x6Gateway=wtWebioEA6x6Gateway, wtWebioEA24oemAlert25=wtWebioEA24oemAlert25, wtTrapReceiver2x2ActionSnmpTrapText=wtTrapReceiver2x2ActionSnmpTrapText, wtWebCount6StTzStopMode=wtWebCount6StTzStopMode, wtTrapReceiver2x2ActionOutputState=wtTrapReceiver2x2ActionOutputState, wtWebioEA2x2_24VOutputPortEntry=wtWebioEA2x2_24VOutputPortEntry, wtWebioEA2x2DeviceName=wtWebioEA2x2DeviceName, wtWebioEA2x2ERPBinaryModeCount=wtWebioEA2x2ERPBinaryModeCount, wtIpWatcherAlarmTcpReleaseText=wtIpWatcherAlarmTcpReleaseText, wtWebioEA12x6RelERPStTzStopMode=wtWebioEA12x6RelERPStTzStopMode, wtWebCount6Outputs=wtWebCount6Outputs, wtWebioEA12x6RelERPTimeDate=wtWebioEA12x6RelERPTimeDate, wtWebAlarm6x6UdpEnable=wtWebAlarm6x6UdpEnable, wtWebAlarm6x6SessCntrlConfigMode=wtWebAlarm6x6SessCntrlConfigMode, wtWebioEA24oem=wtWebioEA24oem, wtWebioEA2x2ERPClockYear=wtWebioEA2x2ERPClockYear, wtWebioEA12x6Rel=wtWebioEA12x6Rel, wtTrapReceiver2x2TzEnable=wtTrapReceiver2x2TzEnable, wtWebioEA12x6RelERPAlert15=wtWebioEA12x6RelERPAlert15, wtWebioEA2x2_24VOutputModeBit=wtWebioEA2x2_24VOutputModeBit, wtWebioEA12x6RelSnmpCommunityStringRead=wtWebioEA12x6RelSnmpCommunityStringRead, wtIpWatcher_24VAlert2=wtIpWatcher_24VAlert2, wtWebioEA24oemAlert15=wtWebioEA24oemAlert15, wtWebioEA24oemAlarmUdpText=wtWebioEA24oemAlarmUdpText, wtWebAlarm6x6AlarmMailReleaseSubject=wtWebAlarm6x6AlarmMailReleaseSubject, wtWebioEA12x6RelAlarmSyslogIpAddr=wtWebioEA12x6RelAlarmSyslogIpAddr, wtWebioEA24oemBinaryTcpClientInactivity=wtWebioEA24oemBinaryTcpClientInactivity, wtTrapReceiver2x2PortButtonText=wtTrapReceiver2x2PortButtonText, wtWebioEA12x12LCShutDownView=wtWebioEA12x12LCShutDownView, wtWebioEA12x6RelERPMailReply=wtWebioEA12x6RelERPMailReply, wtWebioEA12x12FTPUserName=wtWebioEA12x12FTPUserName, wtWebAlarm6x6Alert4=wtWebAlarm6x6Alert4, wtWebioEA12x6RelDiagErrorCount=wtWebioEA12x6RelDiagErrorCount, wtWebioEA12x12Alert17=wtWebioEA12x12Alert17, wtWebCount6InputValue=wtWebCount6InputValue, wtWebioEA2x2ERP_24VAlarmTcpReleaseText=wtWebioEA2x2ERP_24VAlarmTcpReleaseText, wtWebioEA12x6RelStTzEnable=wtWebioEA12x6RelStTzEnable, wtWebAlarm6x6InputPortEntry=wtWebAlarm6x6InputPortEntry, wtIpWatcher_24VSnmpSystemTrapManagerIP=wtIpWatcher_24VSnmpSystemTrapManagerIP, wtWebioEA2x2BinaryConnectedIpAddr=wtWebioEA2x2BinaryConnectedIpAddr, wtIpWatcherPortInputFilter=wtIpWatcherPortInputFilter, wtWebioEA12x12Alert18=wtWebioEA12x12Alert18, wtWebCount6UdpAdminPort=wtWebCount6UdpAdminPort, wtWebioEA12x6RelERPSessCntrlAdminPassword=wtWebioEA12x6RelERPSessCntrlAdminPassword, wtTrapReceiver2x2PortPulsePolarity=wtTrapReceiver2x2PortPulsePolarity, wtWebioEA2x2ERPSessCntrlLogout=wtWebioEA2x2ERPSessCntrlLogout, wtWebAlarm6x6PortInputText=wtWebAlarm6x6PortInputText, wtWebioEA6x6HttpPort=wtWebioEA6x6HttpPort, wtWebioEA12x6RelInputs=wtWebioEA12x6RelInputs, wtWebCount6FTPServerIP=wtWebCount6FTPServerIP, wtWebioEA2x2_24VManufact=wtWebioEA2x2_24VManufact, wtWebioEA2x2ERPAlarmFtpReleaseText=wtWebioEA2x2ERPAlarmFtpReleaseText)
mibBuilder.exportSymbols('Webio-Digital-MIB-US', wtWebioEA12x12DeviceName=wtWebioEA12x12DeviceName, wtWebioEA6x6BinaryTcpClientServerIpAddr=wtWebioEA6x6BinaryTcpClientServerIpAddr, wtIpWatcherAlarmSnmpManagerIP=wtIpWatcherAlarmSnmpManagerIP, wtWebioEA12x12BinaryUdpPeerInterval=wtWebioEA12x12BinaryUdpPeerInterval, wtWebioEA2x2ERPPortPulsePolarity=wtWebioEA2x2ERPPortPulsePolarity, wtWebioEA12x12IpAddress=wtWebioEA12x12IpAddress, wtWebioEA2x2ERP_24VBinaryTcpClientServerPort=wtWebioEA2x2ERP_24VBinaryTcpClientServerPort, wtWebioEA12x6RelPortOutputName=wtWebioEA12x6RelPortOutputName, wtWebioEA12x6RelSessCntrlConfigMode=wtWebioEA12x6RelSessCntrlConfigMode, wtWebioEA12x12MfDeviceTyp=wtWebioEA12x12MfDeviceTyp, wtTrapReceiver2x2ActionTable=wtTrapReceiver2x2ActionTable, wtWebCount6PortInputPulsePolarity=wtWebCount6PortInputPulsePolarity, wtWebioEA2x2ERPPortInputBicountInactivTimeout=wtWebioEA2x2ERPPortInputBicountInactivTimeout, wtWebioEA2x2_24VBinaryTcpClientLocalPort=wtWebioEA2x2_24VBinaryTcpClientLocalPort, wtWebioEA2x2ERP_24VWayBackFTPPassword=wtWebioEA2x2ERP_24VWayBackFTPPassword, wtWebioEA12x6RelOutputs=wtWebioEA12x6RelOutputs, wtIpWatcherFTPServerControlPort=wtIpWatcherFTPServerControlPort, wtIpWatcherUdpRemotePort=wtIpWatcherUdpRemotePort, wtWebioEA2x2_24VUdpRemotePort=wtWebioEA2x2_24VUdpRemotePort, wtWebioEA2x2ERP_24VBinaryTcpServerApplicationMode=wtWebioEA2x2ERP_24VBinaryTcpServerApplicationMode, wtTrapReceiver2x2SnmpCommunityStringReadWrite=wtTrapReceiver2x2SnmpCommunityStringReadWrite, wtWebioEA12x6RelInputCounter=wtWebioEA12x6RelInputCounter, wtIpWatcherPortInputName=wtIpWatcherPortInputName, wtIpWatcher_24VAlarmOutputState=wtIpWatcher_24VAlarmOutputState, wtWebioEA24oemTimeServer2=wtWebioEA24oemTimeServer2, wtIpWatcherTimeServer1=wtIpWatcherTimeServer1, wtWebioEA24oemAlarmSnmpManagerIP=wtWebioEA24oemAlarmSnmpManagerIP, wtIpWatcher_24VAlarm=wtIpWatcher_24VAlarm, wtWebCount6InputCounter=wtWebCount6InputCounter, wtWebioEA2x2_24VMfDeviceTyp=wtWebioEA2x2_24VMfDeviceTyp, wtIpWatcherStTzEnable=wtIpWatcherStTzEnable, wtTrapReceiver2x2InEvButtons=wtTrapReceiver2x2InEvButtons, wtWebioEA2x2ERPBinaryEntry=wtWebioEA2x2ERPBinaryEntry, wtIpWatcherDeviceLocation=wtIpWatcherDeviceLocation, wtIpWatcher_24VStTzStartHrs=wtIpWatcher_24VStTzStartHrs, wtWebAlarm6x6TimeServer2=wtWebAlarm6x6TimeServer2, wtWebCount6ReportSnmpManagerIP=wtWebCount6ReportSnmpManagerIP, wtIpWatcherAlarmGlobalEnable=wtIpWatcherAlarmGlobalEnable, wtWebioEA12x6RelERPBinaryUdpPeerApplicationMode=wtWebioEA12x6RelERPBinaryUdpPeerApplicationMode, wtWebioEA12x6RelERPMailEnable=wtWebioEA12x6RelERPMailEnable, wtWebioEA2x2ERPFTPAccount=wtWebioEA2x2ERPFTPAccount, wtWebioEA24oemPortInputName=wtWebioEA24oemPortInputName, wtWebAlarm6x6HTTP=wtWebAlarm6x6HTTP, wtIpWatcher_24VStTzOffsetMin=wtIpWatcher_24VStTzOffsetMin, wtWebioEA24oemAlarmMailAddr=wtWebioEA24oemAlarmMailAddr, wtTrapReceiver2x2DiagErrorCount=wtTrapReceiver2x2DiagErrorCount, wtIpWatcher_24VTsEnable=wtIpWatcher_24VTsEnable, wtWebioEA2x2FTPUserName=wtWebioEA2x2FTPUserName, wtWebioEA2x2AlarmSnmpTrapText=wtWebioEA2x2AlarmSnmpTrapText, wtWebioEA12x12AlarmMailAddr=wtWebioEA12x12AlarmMailAddr, wtWebioEA2x2_24VOutputPortTable=wtWebioEA2x2_24VOutputPortTable, wtWebioEA2x2ERP_24VBinaryUdpPeerInterval=wtWebioEA2x2ERP_24VBinaryUdpPeerInterval, wtWebioEA6x6AlarmSyslogPort=wtWebioEA6x6AlarmSyslogPort, wtWebioEA2x2AlarmFtpFileName=wtWebioEA2x2AlarmFtpFileName, wtWebioEA24oemAlarmSyslogText=wtWebioEA24oemAlarmSyslogText, wtWebioEA2x2_24VAlert12=wtWebioEA2x2_24VAlert12, wtWebAlarm6x6SubnetMask=wtWebAlarm6x6SubnetMask, wtIpWatcher_24VOutputTable=wtIpWatcher_24VOutputTable, wtWebioEA12x6RelERPTzOffsetHrs=wtWebioEA12x6RelERPTzOffsetHrs, wtIpWatcherSessCntrlPassword=wtIpWatcherSessCntrlPassword, wtTrapReceiver2x2InputEntry=wtTrapReceiver2x2InputEntry, wtWebioEA2x2ERPPortLogicFunction=wtWebioEA2x2ERPPortLogicFunction, wtWebioEA2x2ERPUdpRemotePort=wtWebioEA2x2ERPUdpRemotePort, wtWebioEA12x6RelERPAlert8=wtWebioEA12x6RelERPAlert8, wtWebioEA2x2ERP_24VFTPEnable=wtWebioEA2x2ERP_24VFTPEnable, wtWebioEA2x2ERP_24VBinaryConnectedPort=wtWebioEA2x2ERP_24VBinaryConnectedPort, wtWebioEA12x12AlarmNo=wtWebioEA12x12AlarmNo, wtWebioEA12x6RelInputValue=wtWebioEA12x6RelInputValue, wtWebioEA2x2ERP_24VStTzOffsetHrs=wtWebioEA2x2ERP_24VStTzOffsetHrs, wtWebioEA12x12Alert7=wtWebioEA12x12Alert7, wtIpWatcher_24VInOut=wtIpWatcher_24VInOut, wtWebioEA2x2ERPAlarmCount=wtWebioEA2x2ERPAlarmCount, wtWebioEA12x12DeviceClock=wtWebioEA12x12DeviceClock, wtWebAlarm6x6DnsServer1=wtWebAlarm6x6DnsServer1, wtIpWatcherAlarmAckPort=wtIpWatcherAlarmAckPort, wtWebioEA12x12BinaryTcpServerClientHttpPort=wtWebioEA12x12BinaryTcpServerClientHttpPort, wtWebioEA2x2_24VPortInputBicountPulsePolarity=wtWebioEA2x2_24VPortInputBicountPulsePolarity, wtWebioEA2x2ERPSyslog=wtWebioEA2x2ERPSyslog, wtWebioEA2x2_24VTimeDate=wtWebioEA2x2_24VTimeDate, wtIpWatcherAlarmNo=wtIpWatcherAlarmNo, wtWebCount6Alert12=wtWebCount6Alert12, wtWebioEA12x6RelERPAlarmTcpText=wtWebioEA12x6RelERPAlarmTcpText, wtWebioEA2x2ERPSnmpCommunityStringReadWrite=wtWebioEA2x2ERPSnmpCommunityStringReadWrite, wtWebioEA12x6RelERPMailAuthPassword=wtWebioEA12x6RelERPMailAuthPassword, wtWebioEA2x2ERPMailAuthentication=wtWebioEA2x2ERPMailAuthentication, wtWebioEA24oemBinaryTcpClientServerHttpPort=wtWebioEA24oemBinaryTcpClientServerHttpPort, wtWebioEA2x2_24VDiagBinaryError=wtWebioEA2x2_24VDiagBinaryError, wtWebioEA2x2_24VPortInputText=wtWebioEA2x2_24VPortInputText, wtWebioEA12x12SetOutput=wtWebioEA12x12SetOutput, wtWebioEA12x12PortInputMode=wtWebioEA12x12PortInputMode, wtWebioEA12x6RelTimeServer2=wtWebioEA12x6RelTimeServer2, wtWebioEA12x6RelGateway=wtWebioEA12x6RelGateway, wtWebioEA2x2ERP_24VOutputEntry=wtWebioEA2x2ERP_24VOutputEntry, wtWebioEA2x2ERPAlert4=wtWebioEA2x2ERPAlert4, wtIpWatcherUdpEnable=wtIpWatcherUdpEnable, wtTrapReceiver2x2IpAddress=wtTrapReceiver2x2IpAddress, wtWebioEA12x6RelERPUdpAdminPort=wtWebioEA12x6RelERPUdpAdminPort, wtWebAlarm6x6Gateway=wtWebAlarm6x6Gateway, wtWebioEA2x2_24VFTPServerControlPort=wtWebioEA2x2_24VFTPServerControlPort, wtTrapReceiver2x2StTzStopMode=wtTrapReceiver2x2StTzStopMode, wtWebCount6MfInternet=wtWebCount6MfInternet, wtIpWatcherAlert16=wtIpWatcherAlert16, wtWebioEA2x2_24VStTzEnable=wtWebioEA2x2_24VStTzEnable, wtWebioEA12x6RelERPBinaryTable=wtWebioEA12x6RelERPBinaryTable, wtWebioEA24oemAlarmFtpText=wtWebioEA24oemAlarmFtpText, wtWebioEA2x2_24VInputCounter=wtWebioEA2x2_24VInputCounter, wtWebioEA12x6RelERPMfAddr=wtWebioEA12x6RelERPMfAddr, wtWebioEA2x2ERPAlert20=wtWebioEA2x2ERPAlert20, wtWebioEA2x2ERP_24VSessCntrl=wtWebioEA2x2ERP_24VSessCntrl, wtWebioEA12x6RelStTzStopWday=wtWebioEA12x6RelStTzStopWday, wtWebioEA24oemDeviceContact=wtWebioEA24oemDeviceContact, wtWebioEA2x2_24VDevice=wtWebioEA2x2_24VDevice, wtWebioEA12x6RelERPPortInputFilter=wtWebioEA12x6RelERPPortInputFilter, wtWebCount6Alert2=wtWebCount6Alert2, wtWebAlarm6x6AlarmSnmpTrapReleaseText=wtWebAlarm6x6AlarmSnmpTrapReleaseText, wtWebioEA12x6RelERPDevice=wtWebioEA12x6RelERPDevice, wtWebioEA24oemMailServer=wtWebioEA24oemMailServer, wtWebioEA12x6RelClockHrs=wtWebioEA12x6RelClockHrs, wtWebAlarm6x6DiagErrorIndex=wtWebAlarm6x6DiagErrorIndex, wtWebioEA6x6PortPulseDuration=wtWebioEA6x6PortPulseDuration, wtIpWatcherMailPop3Server=wtIpWatcherMailPop3Server, wtWebioEA24oemAlarmTcpIpAddr=wtWebioEA24oemAlarmTcpIpAddr, wtIpWatcher_24VAlarmEntry=wtIpWatcher_24VAlarmEntry, wtWebioEA12x6RelFTPUserName=wtWebioEA12x6RelFTPUserName, wtWebioEA2x2ERPAlertDiag=wtWebioEA2x2ERPAlertDiag, wtWebioEA12x6RelAlarmUdpText=wtWebioEA12x6RelAlarmUdpText, wtWebAlarm6x6Alert23=wtWebAlarm6x6Alert23, wtWebioEA2x2_24VPortOutputGroupMode=wtWebioEA2x2_24VPortOutputGroupMode, wtWebioEA2x2ERP_24VDeviceContact=wtWebioEA2x2ERP_24VDeviceContact, wtWebioEA12x12OutputMode=wtWebioEA12x12OutputMode, wtIpWatcherOutputState=wtIpWatcherOutputState, wtWebioEA2x2ERP_24VStTzOffsetMin=wtWebioEA2x2ERP_24VStTzOffsetMin, wtWebioEA12x12SnmpSystemTrapManagerIP=wtWebioEA12x12SnmpSystemTrapManagerIP, wtIpWatcherAlert28=wtIpWatcherAlert28, wtIpWatcherDevice=wtIpWatcherDevice, wtWebioEA2x2_24VTimeServer=wtWebioEA2x2_24VTimeServer, wtWebioEA12x12StTzStartMin=wtWebioEA12x12StTzStartMin, wtWebioEA12x6RelStTzOffsetMin=wtWebioEA12x6RelStTzOffsetMin, wtWebioEA2x2ERP_24VBinaryModeNo=wtWebioEA2x2ERP_24VBinaryModeNo, wtIpWatcher_24VSyslogEnable=wtIpWatcher_24VSyslogEnable, wtWebioEA12x12BinaryModeCount=wtWebioEA12x12BinaryModeCount, wtWebioEA6x6ClockYear=wtWebioEA6x6ClockYear, wtWebioEA12x6RelMailAuthentication=wtWebioEA12x6RelMailAuthentication, wtWebioEA2x2_24VMailAuthentication=wtWebioEA2x2_24VMailAuthentication, wtIpWatcher_24VInputTable=wtIpWatcher_24VInputTable, wtWebioEA2x2_24VAlarmEnable=wtWebioEA2x2_24VAlarmEnable, wtTrapReceiver2x2TzOffsetHrs=wtTrapReceiver2x2TzOffsetHrs, wtWebioEA2x2ERP_24VBinaryOperationMode=wtWebioEA2x2ERP_24VBinaryOperationMode, wtWebCount6StTzEnable=wtWebCount6StTzEnable, wtWebioEA2x2BinaryTcpServerClientHttpPort=wtWebioEA2x2BinaryTcpServerClientHttpPort, wtWebCount6SnmpSystemTrapEnable=wtWebCount6SnmpSystemTrapEnable, wtWebAlarm6x6MailPop3Server=wtWebAlarm6x6MailPop3Server, wtWebioEA2x2ERPTsEnable=wtWebioEA2x2ERPTsEnable, wtWebioEA2x2ERPMailEnable=wtWebioEA2x2ERPMailEnable, wtWebioEA24oemInOut=wtWebioEA24oemInOut, wtWebioEA2x2ERP_24VAlert11=wtWebioEA2x2ERP_24VAlert11, wtWebioEA2x2ERP_24VAlert16=wtWebioEA2x2ERP_24VAlert16, wtTrapReceiver2x2ActionSystemTimerTrigger=wtTrapReceiver2x2ActionSystemTimerTrigger, wtWebioEA2x2ERP_24VSessCntrlPassword=wtWebioEA2x2ERP_24VSessCntrlPassword, wtIpWatcherAlarmUdpTrgClearText=wtIpWatcherAlarmUdpTrgClearText, wtWebioEA2x2ERPSnmpSystemTrapEnable=wtWebioEA2x2ERPSnmpSystemTrapEnable, wtWebioEA2x2FTPEnable=wtWebioEA2x2FTPEnable, wtWebioEA2x2Alert11=wtWebioEA2x2Alert11, wtWebioEA6x6Text=wtWebioEA6x6Text, wtWebioEA2x2ERPAlarmSyslogReleaseText=wtWebioEA2x2ERPAlarmSyslogReleaseText, wtWebioEA2x2ERPAlarmUdpPort=wtWebioEA2x2ERPAlarmUdpPort, wtIpWatcherPortOutputName=wtIpWatcherPortOutputName, wtWebioEA2x2AlarmSyslogPort=wtWebioEA2x2AlarmSyslogPort, wtWebioEA12x12InputValue=wtWebioEA12x12InputValue, wtIpWatcherStTzStopMin=wtIpWatcherStTzStopMin, wtWebioEA12x12InputPortTable=wtWebioEA12x12InputPortTable, wtWebioEA6x6OutputPortTable=wtWebioEA6x6OutputPortTable, wtWebioEA2x2ERPBinaryTcpClientApplicationMode=wtWebioEA2x2ERPBinaryTcpClientApplicationMode, wtWebioEA2x2AlarmMailText=wtWebioEA2x2AlarmMailText, wtIpWatcherAlert35=wtIpWatcherAlert35, wtTrapReceiver2x2StTzOffsetHrs=wtTrapReceiver2x2StTzOffsetHrs, wtWebCount6ReportRateOfChangeMode=wtWebCount6ReportRateOfChangeMode, wtWebAlarm6x6SnmpEnable=wtWebAlarm6x6SnmpEnable, wtWebioEA2x2ERP_24V=wtWebioEA2x2ERP_24V, wtWebioEA24oemPortOutputText=wtWebioEA24oemPortOutputText, wtWebAlarm6x6AlarmMailSubject=wtWebAlarm6x6AlarmMailSubject, wtWebioEA12x6RelERPBinaryTcpServerInputTrigger=wtWebioEA12x6RelERPBinaryTcpServerInputTrigger, wtWebioEA2x2_24VClockMonth=wtWebioEA2x2_24VClockMonth, wtTrapReceiver2x2ClockMin=wtTrapReceiver2x2ClockMin, wtWebioEA2x2ERPFTPServerControlPort=wtWebioEA2x2ERPFTPServerControlPort, wtWebioEA24oemBinaryUdpPeerInterval=wtWebioEA24oemBinaryUdpPeerInterval, wtWebioEA12x6RelERPUdpEnable=wtWebioEA12x6RelERPUdpEnable, wtWebioEA2x2StTzStopWday=wtWebioEA2x2StTzStopWday, wtWebioEA2x2_24VSyslog=wtWebioEA2x2_24VSyslog, wtTrapReceiver2x2Mail=wtTrapReceiver2x2Mail, wtIpWatcherDiag=wtIpWatcherDiag, wtWebioEA12x6RelERPAlarmSyslogText=wtWebioEA12x6RelERPAlarmSyslogText, wtWebioEA12x6RelERPDiagBinaryError=wtWebioEA12x6RelERPDiagBinaryError, wtWebioEA2x2ERP_24VPortInputFilter=wtWebioEA2x2ERP_24VPortInputFilter, wtWebioEA12x12DiagBinaryError=wtWebioEA12x12DiagBinaryError, wtWebioEA24oemAlarmEnable=wtWebioEA24oemAlarmEnable, wtWebioEA12x6RelFTPOption=wtWebioEA12x6RelFTPOption, wtTrapReceiver2x2Device=wtTrapReceiver2x2Device, wtWebioEA6x6PortOutputName=wtWebioEA6x6PortOutputName, wtIpWatcherHttpPort=wtIpWatcherHttpPort, wtIpWatcher_24VDeviceLocation=wtIpWatcher_24VDeviceLocation, wtWebioEA12x12MfAddr=wtWebioEA12x12MfAddr, wtWebioEA24oemBinaryOperationMode=wtWebioEA24oemBinaryOperationMode, wtWebioEA2x2_24VBinaryConnectedIpAddr=wtWebioEA2x2_24VBinaryConnectedIpAddr, wtIpWatcherMailEnable=wtIpWatcherMailEnable, wtWebioEA12x6RelERPManufact=wtWebioEA12x6RelERPManufact, wtWebioEA2x2Alert14=wtWebioEA2x2Alert14, wtWebioEA2x2_24VPortOutputText=wtWebioEA2x2_24VPortOutputText, wtWebioEA2x2Text=wtWebioEA2x2Text, wtWebioEA2x2MailAuthentication=wtWebioEA2x2MailAuthentication, wtWebCount6PortInputText=wtWebCount6PortInputText, wtTrapReceiver2x2Alert11=wtTrapReceiver2x2Alert11, wtIpWatcherUdpAdminPort=wtIpWatcherUdpAdminPort, wtWebioEA2x2ERPMfName=wtWebioEA2x2ERPMfName, wtIpWatcherMailAuthPassword=wtIpWatcherMailAuthPassword, wtIpWatcher_24VAlert19=wtIpWatcher_24VAlert19, wtWebioEA2x2ERPBinaryTcpClientInactivity=wtWebioEA2x2ERPBinaryTcpClientInactivity, wtWebioEA2x2ERPOutputMode=wtWebioEA2x2ERPOutputMode, wtWebioEA12x12GetHeaderEnable=wtWebioEA12x12GetHeaderEnable, wtWebioEA12x6RelSessCntrl=wtWebioEA12x6RelSessCntrl, wtTrapReceiver2x2TimeZone=wtTrapReceiver2x2TimeZone, wtWebioEA2x2AlarmFtpOption=wtWebioEA2x2AlarmFtpOption, wtWebioEA24oemTsEnable=wtWebioEA24oemTsEnable, wtWebioEA24oemAddConfig=wtWebioEA24oemAddConfig, wtWebioEA2x2ERPStTzOffsetMin=wtWebioEA2x2ERPStTzOffsetMin, wtWebioEA2x2_24VAlarmSnmpTrapText=wtWebioEA2x2_24VAlarmSnmpTrapText, wtWebioEA2x2StTzStartHrs=wtWebioEA2x2StTzStartHrs, wtWebioEA12x12BinaryTable=wtWebioEA12x12BinaryTable, wtWebioEA2x2ERPBinaryTcpServerInputTrigger=wtWebioEA2x2ERPBinaryTcpServerInputTrigger, wtWebioEA2x2_24VSnmpSystemTrapEnable=wtWebioEA2x2_24VSnmpSystemTrapEnable, wtWebioEA12x6RelStTzStartMode=wtWebioEA12x6RelStTzStartMode, wtWebioEA12x6RelERPStTzStopWday=wtWebioEA12x6RelERPStTzStopWday, wtWebAlarm6x6StTzStartMonth=wtWebAlarm6x6StTzStartMonth, wtWebioEA2x2ERPDiagErrorMessage=wtWebioEA2x2ERPDiagErrorMessage, wtIpWatcherAlarmSnmpTrapText=wtIpWatcherAlarmSnmpTrapText, wtWebioEA12x12MailAdName=wtWebioEA12x12MailAdName, wtWebioEA24oemDiagErrorCount=wtWebioEA24oemDiagErrorCount, wtWebioEA12x6RelStTzStartWday=wtWebioEA12x6RelStTzStartWday, wtWebAlarm6x6TzOffsetMin=wtWebAlarm6x6TzOffsetMin, wtWebAlarm6x6Alert6=wtWebAlarm6x6Alert6, wtWebioEA12x6RelBinaryEntry=wtWebioEA12x6RelBinaryEntry, wtWebioEA6x6Alert18=wtWebioEA6x6Alert18, wtWebioEA12x6RelMfAddr=wtWebioEA12x6RelMfAddr, wtWebioEA12x6RelERPMfInternet=wtWebioEA12x6RelERPMfInternet, wtWebioEA12x12MailReply=wtWebioEA12x12MailReply, wtWebioEA2x2PortPulsePolarity=wtWebioEA2x2PortPulsePolarity, wtWebioEA24oemInputPortEntry=wtWebioEA24oemInputPortEntry, wtWebioEA24oemDiag=wtWebioEA24oemDiag, wtWebioEA2x2ERP_24VNetwork=wtWebioEA2x2ERP_24VNetwork, wtIpWatcher_24VIpListEnable=wtIpWatcher_24VIpListEnable, wtWebioEA12x6RelERPBasic=wtWebioEA12x6RelERPBasic, wtWebioEA2x2ERPFTPEnable=wtWebioEA2x2ERPFTPEnable, wtWebioEA2x2ERPPortLogicInputInverter=wtWebioEA2x2ERPPortLogicInputInverter, wtWebioEA24oemAlert4=wtWebioEA24oemAlert4)
mibBuilder.exportSymbols('Webio-Digital-MIB-US', wtWebioEA6x6PortOutputGroupMode=wtWebioEA6x6PortOutputGroupMode, wtIpWatcher_24VAlarmTriggerState=wtIpWatcher_24VAlarmTriggerState, wtIpWatcherSnmpCommunityStringRead=wtIpWatcherSnmpCommunityStringRead, wtWebioEA6x6Alert17=wtWebioEA6x6Alert17, wtWebioEA6x6AlarmFtpOption=wtWebioEA6x6AlarmFtpOption, wtWebioEA2x2SessCntrl=wtWebioEA2x2SessCntrl, wtWebioEA2x2ERP_24VOutputs=wtWebioEA2x2ERP_24VOutputs, wtWebioEA6x6UdpAdminPort=wtWebioEA6x6UdpAdminPort, wtIpWatcher_24VAlarmMailTrgClearText=wtIpWatcher_24VAlarmMailTrgClearText, wtWebioEA2x2ERPPortInputBicountPulsePolarity=wtWebioEA2x2ERPPortInputBicountPulsePolarity, wtWebioEA12x6RelInputPortEntry=wtWebioEA12x6RelInputPortEntry, wtWebioEA12x6RelPortInputBicountInactivTimeout=wtWebioEA12x6RelPortInputBicountInactivTimeout, wtIpWatcherAlarmAckEnable=wtIpWatcherAlarmAckEnable, wtWebioEA2x2_24VBinaryIfEntry=wtWebioEA2x2_24VBinaryIfEntry, wtIpWatcher_24VIpListEntry=wtIpWatcher_24VIpListEntry, wtIpWatcherInputEntry=wtIpWatcherInputEntry, wtWebioEA12x12Basic=wtWebioEA12x12Basic, wtWebioEA6x6SessCntrlConfigPassword=wtWebioEA6x6SessCntrlConfigPassword, wtWebioEA24oemOutputs=wtWebioEA24oemOutputs, wtTrapReceiver2x2WatchListTable=wtTrapReceiver2x2WatchListTable, wtWebioEA24oemMfHotline=wtWebioEA24oemMfHotline, wtWebioEA2x2ERPPorts=wtWebioEA2x2ERPPorts, wtWebioEA2x2ERP_24VMailAuthPassword=wtWebioEA2x2ERP_24VMailAuthPassword, wtWebioEA2x2ERPAlarmEnable=wtWebioEA2x2ERPAlarmEnable, wtWebAlarm6x6Manufact=wtWebAlarm6x6Manufact, wtWebioEA2x2ERP_24VBinaryTcpClientInterval=wtWebioEA2x2ERP_24VBinaryTcpClientInterval, wtWebioEA2x2ERP_24VAlarmFtpReleaseText=wtWebioEA2x2ERP_24VAlarmFtpReleaseText, wtWebioEA6x6AlarmIfTable=wtWebioEA6x6AlarmIfTable, wtWebioEA6x6OutputModeTable=wtWebioEA6x6OutputModeTable, wtIpWatcher_24VAlert32=wtIpWatcher_24VAlert32, wtWebioEA24oemDeviceText=wtWebioEA24oemDeviceText, wtWebioEA12x6RelBinaryTcpServerApplicationMode=wtWebioEA12x6RelBinaryTcpServerApplicationMode, wtIpWatcherStTzStopHrs=wtIpWatcherStTzStopHrs, wtWebAlarm6x6SessCntrlPassword=wtWebAlarm6x6SessCntrlPassword, wtWebioEA12x12AlarmSnmpManagerIP=wtWebioEA12x12AlarmSnmpManagerIP, wtWebioEA2x2ERP_24VSnmpCommunityStringReadWrite=wtWebioEA2x2ERP_24VSnmpCommunityStringReadWrite, wtIpWatcherSyslogSystemMessagesEnable=wtIpWatcherSyslogSystemMessagesEnable, wtWebAlarm6x6TsSyncTime=wtWebAlarm6x6TsSyncTime, wtIpWatcherAlertDiag=wtIpWatcherAlertDiag, wtWebioEA12x12AlarmFtpOption=wtWebioEA12x12AlarmFtpOption, wtWebioEA2x2ERPPortInputText=wtWebioEA2x2ERPPortInputText, wtWebioEA2x2AlarmSyslogIpAddr=wtWebioEA2x2AlarmSyslogIpAddr, wtIpWatcherAlarmMailTrgClearSubject=wtIpWatcherAlarmMailTrgClearSubject, wtWebioEA12x6RelERPAlert20=wtWebioEA12x6RelERPAlert20, wtWebioEA2x2_24VAlarmOutputTrigger=wtWebioEA2x2_24VAlarmOutputTrigger, wtWebioEA6x6UdpEnable=wtWebioEA6x6UdpEnable, wtWebioEA2x2GetHeaderEnable=wtWebioEA2x2GetHeaderEnable, wtWebioEA2x2PortInputName=wtWebioEA2x2PortInputName, wtWebCount6Alert10=wtWebCount6Alert10, wtWebioEA12x12Alert14=wtWebioEA12x12Alert14, wtIpWatcherAlert13=wtIpWatcherAlert13, wtWebioEA2x2_24VConfig=wtWebioEA2x2_24VConfig, wtIpWatcher_24VAlarmUdpText=wtIpWatcher_24VAlarmUdpText, wtWebioEA12x6RelERPSyslog=wtWebioEA12x6RelERPSyslog, wtWebioEA24oemBinaryUdpPeerInputTrigger=wtWebioEA24oemBinaryUdpPeerInputTrigger, wtIpWatcher_24VAlert6=wtIpWatcher_24VAlert6, wtIpWatcher_24VAlert13=wtIpWatcher_24VAlert13, wtTrapReceiver2x2StTzStopHrs=wtTrapReceiver2x2StTzStopHrs, wtWebioEA12x6RelAlert5=wtWebioEA12x6RelAlert5, wtWebCount6MailEnable=wtWebCount6MailEnable, wtTrapReceiver2x2WatchListIfEntry=wtTrapReceiver2x2WatchListIfEntry, wtIpWatcherSNMP=wtIpWatcherSNMP, wtWebioEA2x2ERPAlert23=wtWebioEA2x2ERPAlert23, wtTrapReceiver2x2FTPServerIP=wtTrapReceiver2x2FTPServerIP, wtWebioEA12x6RelSessCntrlAdminPassword=wtWebioEA12x6RelSessCntrlAdminPassword, wtIpWatcher_24VIpListPort=wtIpWatcher_24VIpListPort, wtWebioEA12x12TimeZone=wtWebioEA12x12TimeZone, wtWebioEA2x2InOut=wtWebioEA2x2InOut, wtWebCount6MfHotline=wtWebCount6MfHotline, wtWebioEA2x2_24VSessCntrlPassword=wtWebioEA2x2_24VSessCntrlPassword, wtWebioEA2x2ERPAlert3=wtWebioEA2x2ERPAlert3, wtWebioEA6x6BinaryTcpServerClientHttpPort=wtWebioEA6x6BinaryTcpServerClientHttpPort, wtWebAlarm6x6OutputNo=wtWebAlarm6x6OutputNo, wtWebioEA2x2InputPortTable=wtWebioEA2x2InputPortTable, wtWebAlarm6x6SyslogSystemMessagesEnable=wtWebAlarm6x6SyslogSystemMessagesEnable, wtWebioEA12x6RelPortLogicInputMask=wtWebioEA12x6RelPortLogicInputMask, wtWebioEA12x6RelERPDeviceLocation=wtWebioEA12x6RelERPDeviceLocation, wtWebioEA2x2ERP_24VSnmpSystemTrapEnable=wtWebioEA2x2ERP_24VSnmpSystemTrapEnable, wtWebAlarm6x6Diag=wtWebAlarm6x6Diag, wtWebioEA2x2ERP_24VAlarmFtpFileName=wtWebioEA2x2ERP_24VAlarmFtpFileName, wtWebioEA2x2_24VAlarmTcpReleaseText=wtWebioEA2x2_24VAlarmTcpReleaseText, wtIpWatcherAlarm=wtIpWatcherAlarm, wtWebioEA2x2_24VPortOutputSafetyState=wtWebioEA2x2_24VPortOutputSafetyState, wtIpWatcher_24VStTzStopMin=wtIpWatcher_24VStTzStopMin, wtIpWatcher_24VFTPServerControlPort=wtIpWatcher_24VFTPServerControlPort, wtWebioEA2x2ERP_24VAlert10=wtWebioEA2x2ERP_24VAlert10, wtIpWatcher_24VAlert20=wtIpWatcher_24VAlert20, wtTrapReceiver2x2SyslogSystemMessagesEnable=wtTrapReceiver2x2SyslogSystemMessagesEnable, wtWebioEA12x6RelTimeZone=wtWebioEA12x6RelTimeZone, wtWebAlarm6x6TimeServer1=wtWebAlarm6x6TimeServer1, wtWebioEA12x6RelERPBinaryTcpClientServerPassword=wtWebioEA12x6RelERPBinaryTcpClientServerPassword, wtWebioEA2x2ERP_24VManufact=wtWebioEA2x2ERP_24VManufact, wtWebAlarm6x6HttpPort=wtWebAlarm6x6HttpPort, wtIpWatcherIpListEnable=wtIpWatcherIpListEnable, wtTrapReceiver2x2ActionNo=wtTrapReceiver2x2ActionNo, wtWebioEA2x2ERPAlarmMailSubject=wtWebioEA2x2ERPAlarmMailSubject, wtWebAlarm6x6OutputValue=wtWebAlarm6x6OutputValue, wtWebioEA24oemAlarmIfEntry=wtWebioEA24oemAlarmIfEntry, wtWebAlarm6x6UdpRemotePort=wtWebAlarm6x6UdpRemotePort, wtIpWatcherAlert8=wtIpWatcherAlert8, wtWebioEA12x12Alert19=wtWebioEA12x12Alert19, wtWebioEA2x2_24VAlarmTcpIpAddr=wtWebioEA2x2_24VAlarmTcpIpAddr, wtWebioEA12x6RelERPPortLogicInputMask=wtWebioEA12x6RelERPPortLogicInputMask, wtWebioEA12x6RelERPAlarmUdpReleaseText=wtWebioEA12x6RelERPAlarmUdpReleaseText, wtWebioEA2x2ERP_24VGetHeaderEnable=wtWebioEA2x2ERP_24VGetHeaderEnable, wtWebioEA12x6RelERPStTzStartWday=wtWebioEA12x6RelERPStTzStartWday, wtIpWatcher_24VDiagBinaryError=wtIpWatcher_24VDiagBinaryError, wtWebioEA6x6BinaryTcpClientInputTrigger=wtWebioEA6x6BinaryTcpClientInputTrigger, wtIpWatcher_24VFTP=wtIpWatcher_24VFTP, wtWebioEA24oemClockMonth=wtWebioEA24oemClockMonth, wtIpWatcher=wtIpWatcher, wtWebioEA2x2ERP_24VFTPPassword=wtWebioEA2x2ERP_24VFTPPassword, wtTrapReceiver2x2TimeDate=wtTrapReceiver2x2TimeDate, wtWebioEA12x12AlarmTcpPort=wtWebioEA12x12AlarmTcpPort, wtWebioEA24oemOutputModeTable=wtWebioEA24oemOutputModeTable, wtWebioEA2x2ERPAlert13=wtWebioEA2x2ERPAlert13, wtWebioEA6x6AlarmUdpReleaseText=wtWebioEA6x6AlarmUdpReleaseText, wtWebCount6MailServer=wtWebCount6MailServer, wtWebioEA2x2DnsServer1=wtWebioEA2x2DnsServer1, wtWebioEA2x2ERP_24VFTPServerControlPort=wtWebioEA2x2ERP_24VFTPServerControlPort, wtWebioEA2x2ERP_24VTsEnable=wtWebioEA2x2ERP_24VTsEnable, wtIpWatcherAlarmTriggerCount=wtIpWatcherAlarmTriggerCount, wtWebioEA6x6MailServer=wtWebioEA6x6MailServer, wtWebioEA2x2ERP_24VHTTP=wtWebioEA2x2ERP_24VHTTP, wtWebAlarm6x6SnmpCommunityStringRead=wtWebAlarm6x6SnmpCommunityStringRead, wtWebAlarm6x6AlarmGlobalEnable=wtWebAlarm6x6AlarmGlobalEnable, wtWebCount6SessCntrlConfigPassword=wtWebCount6SessCntrlConfigPassword, wtWebioEA12x6RelERPAlarmEnable=wtWebioEA12x6RelERPAlarmEnable, wtWebioEA6x6BinaryTcpClientApplicationMode=wtWebioEA6x6BinaryTcpClientApplicationMode, wtWebioEA2x2UdpAdminPort=wtWebioEA2x2UdpAdminPort, wtWebioEA12x12UDP=wtWebioEA12x12UDP, wtWebCount6DeviceText=wtWebCount6DeviceText, wtWebioEA12x6RelERPBinaryTcpClientInactivity=wtWebioEA12x6RelERPBinaryTcpClientInactivity, wtWebioEA2x2ERP_24VAlarm=wtWebioEA2x2ERP_24VAlarm, wtWebioEA2x2ERPWayBackFTPTimeOut=wtWebioEA2x2ERPWayBackFTPTimeOut, wtWebioEA2x2ERP_24VStTzStartMonth=wtWebioEA2x2ERP_24VStTzStartMonth, wtWebioEA2x2ERP_24VBinaryTcpClientServerIpAddr=wtWebioEA2x2ERP_24VBinaryTcpClientServerIpAddr, wtWebioEA2x2ERPUDP=wtWebioEA2x2ERPUDP, wtWebCount6DeviceLocation=wtWebCount6DeviceLocation, wtTrapReceiver2x2SessCntrlConfigMode=wtTrapReceiver2x2SessCntrlConfigMode, wtWebioEA12x6RelERPAlert24=wtWebioEA12x6RelERPAlert24, wtWebioEA12x6RelERPIpAddress=wtWebioEA12x6RelERPIpAddress, wtWebioEA2x2_24VSessCntrlLogout=wtWebioEA2x2_24VSessCntrlLogout, wtIpWatcherSessCntrlLogout=wtIpWatcherSessCntrlLogout, wtWebioEA24oemBinaryTcpClientInterval=wtWebioEA24oemBinaryTcpClientInterval, wtWebioEA6x6TimeDate=wtWebioEA6x6TimeDate, wtWebioEA12x6RelERPInputEntry=wtWebioEA12x6RelERPInputEntry, wtWebCount6SNMP=wtWebCount6SNMP, wtWebioEA12x6RelOutputModeTable=wtWebioEA12x6RelOutputModeTable, wtWebioEA12x6RelAlert11=wtWebioEA12x6RelAlert11, wtWebioEA2x2_24VBinaryUdpPeerRemoteIpAddr=wtWebioEA2x2_24VBinaryUdpPeerRemoteIpAddr, wtWebioEA12x6RelERPAlarmCount=wtWebioEA12x6RelERPAlarmCount, wtWebioEA2x2ERP_24VTimeDate=wtWebioEA2x2ERP_24VTimeDate, wtWebioEA12x6RelStTzOffsetHrs=wtWebioEA12x6RelStTzOffsetHrs, wtWebioEA2x2SyslogServerPort=wtWebioEA2x2SyslogServerPort, wtWebioEA12x12ClockHrs=wtWebioEA12x12ClockHrs, wtWebioEA2x2StTzEnable=wtWebioEA2x2StTzEnable, wtWebioEA24oemMail=wtWebioEA24oemMail, wtWebioEA2x2ERP_24VDeviceName=wtWebioEA2x2ERP_24VDeviceName, wtIpWatcher_24VAlarmAckEnable=wtIpWatcher_24VAlarmAckEnable, wtWebioEA2x2ERPText=wtWebioEA2x2ERPText, wtTrapReceiver2x2Alert5=wtTrapReceiver2x2Alert5, wtWebioEA2x2_24VInOut=wtWebioEA2x2_24VInOut, wtWebioEA12x12BinaryTcpClientLocalPort=wtWebioEA12x12BinaryTcpClientLocalPort, wtWebioEA2x2_24VSNMP=wtWebioEA2x2_24VSNMP, wtWebioEA12x6RelERPMailAdName=wtWebioEA12x6RelERPMailAdName, wtWebCount6DeviceName=wtWebCount6DeviceName, wtWebioEA12x6RelERPDeviceName=wtWebioEA12x6RelERPDeviceName, wtWebioEA12x6RelBinaryConnectedPort=wtWebioEA12x6RelBinaryConnectedPort, wtWebioEA2x2ERPAlert15=wtWebioEA2x2ERPAlert15, wtWebioEA12x6RelERPClockDay=wtWebioEA12x6RelERPClockDay, wtWebioEA2x2ERP_24VOutputTable=wtWebioEA2x2ERP_24VOutputTable, wtWebioEA2x2ERPBinaryTcpClientServerPort=wtWebioEA2x2ERPBinaryTcpClientServerPort, wtWebioEA2x2ERPAlarmTcpPort=wtWebioEA2x2ERPAlarmTcpPort, wtWebioEA6x6ClockMin=wtWebioEA6x6ClockMin, wtWebioEA12x6RelERPFTPServerControlPort=wtWebioEA12x6RelERPFTPServerControlPort, wtWebioEA24oemSyslogSystemMessagesEnable=wtWebioEA24oemSyslogSystemMessagesEnable, wtWebioEA12x6RelStTzStartMin=wtWebioEA12x6RelStTzStartMin, wtWebioEA24oemAlarmFtpOption=wtWebioEA24oemAlarmFtpOption, wtWebioEA2x2ERP_24VHttpInputTrigger=wtWebioEA2x2ERP_24VHttpInputTrigger, wtTrapReceiver2x2InputPortTable=wtTrapReceiver2x2InputPortTable, wtIpWatcherAlarmMailTrapTxEnable=wtIpWatcherAlarmMailTrapTxEnable, wtTrapReceiver2x2Diag=wtTrapReceiver2x2Diag, wtWebioEA2x2_24VAlarmUdpPort=wtWebioEA2x2_24VAlarmUdpPort, wtIpWatcherAlarmIfTable=wtIpWatcherAlarmIfTable, wtWebAlarm6x6MailReply=wtWebAlarm6x6MailReply, wtWebioEA24oemAlert18=wtWebioEA24oemAlert18, wtWebioEA12x6RelERPAddConfig=wtWebioEA12x6RelERPAddConfig, wtTrapReceiver2x2ButtonTable=wtTrapReceiver2x2ButtonTable, wtTrapReceiver2x2StTzStopMonth=wtTrapReceiver2x2StTzStopMonth, wtWebCount6Alert8=wtWebCount6Alert8, wtWebioEA12x12AlarmTable=wtWebioEA12x12AlarmTable, wtWebioEA24oemPortOutputSafetyState=wtWebioEA24oemPortOutputSafetyState, wtIpWatcherOutputs=wtIpWatcherOutputs, wtIpWatcherAlert6=wtIpWatcherAlert6, wtWebioEA12x6RelBinaryModeCount=wtWebioEA12x6RelBinaryModeCount, wtWebioEA24oemAlert21=wtWebioEA24oemAlert21, wtWebioEA2x2ERP_24VDevice=wtWebioEA2x2ERP_24VDevice, wtWebioEA2x2AlarmMailReleaseSubject=wtWebioEA2x2AlarmMailReleaseSubject, wtTrapReceiver2x2Alert3=wtTrapReceiver2x2Alert3, wtWebioEA12x6RelBinaryTcpServerClientHttpPort=wtWebioEA12x6RelBinaryTcpServerClientHttpPort, wtWebioEA6x6TzOffsetMin=wtWebioEA6x6TzOffsetMin, wtWebCount6ClockHrs=wtWebCount6ClockHrs, wtWebioEA24oemOutputPortTable=wtWebioEA24oemOutputPortTable, wtWebioEA12x6RelERPBinaryTcpServerApplicationMode=wtWebioEA12x6RelERPBinaryTcpServerApplicationMode, wtWebAlarm6x6Inputs=wtWebAlarm6x6Inputs, wtWebCount6FTPAccount=wtWebCount6FTPAccount, wtWebioEA12x6RelERPPortOutputName=wtWebioEA12x6RelERPPortOutputName, wtWebioEA2x2OutputValue=wtWebioEA2x2OutputValue, wtWebioEA6x6BinaryIfEntry=wtWebioEA6x6BinaryIfEntry, wtWebioEA2x2ERP_24VAlarmMailReleaseText=wtWebioEA2x2ERP_24VAlarmMailReleaseText, wtWebioEA2x2_24VAlert14=wtWebioEA2x2_24VAlert14, wtWebioEA2x2AlarmSnmpManagerIP=wtWebioEA2x2AlarmSnmpManagerIP, wtWebioEA12x6RelERPAlarmTable=wtWebioEA12x6RelERPAlarmTable, wtWebioEA12x12InputNo=wtWebioEA12x12InputNo, wtWebAlarm6x6Alert22=wtWebAlarm6x6Alert22, wtWebioEA6x6Alert12=wtWebioEA6x6Alert12, wtWebioEA12x6RelERPDiagErrorClear=wtWebioEA12x6RelERPDiagErrorClear, wtWebioEA12x6RelERPOutputEntry=wtWebioEA12x6RelERPOutputEntry, wtWebioEA2x2ERPBinaryUdpPeerInputTrigger=wtWebioEA2x2ERPBinaryUdpPeerInputTrigger, wtWebioEA2x2ERP_24VInputEntry=wtWebioEA2x2ERP_24VInputEntry, wtWebioEA2x2DiagErrorCount=wtWebioEA2x2DiagErrorCount, wtIpWatcherFTPPassword=wtIpWatcherFTPPassword, wtWebioEA12x6RelSyslogServerIP=wtWebioEA12x6RelSyslogServerIP, wtWebioEA6x6UDP=wtWebioEA6x6UDP, wtWebioEA12x12AlarmSnmpTrapReleaseText=wtWebioEA12x12AlarmSnmpTrapReleaseText, wtWebioEA2x2_24VStartup=wtWebioEA2x2_24VStartup, wtWebioEA24oemStTzStopHrs=wtWebioEA24oemStTzStopHrs, wtWebioEA2x2ERP_24VFTPUserName=wtWebioEA2x2ERP_24VFTPUserName, wtWebioEA24oemBinaryIfTable=wtWebioEA24oemBinaryIfTable, wtWebioEA2x2ERP_24VMail=wtWebioEA2x2ERP_24VMail, wtWebioEA6x6DeviceText=wtWebioEA6x6DeviceText, wtWebioEA2x2DnsServer2=wtWebioEA2x2DnsServer2, wtIpWatcherAlert23=wtIpWatcherAlert23, wtIpWatcherAlarmTcpPort=wtIpWatcherAlarmTcpPort, wtWebAlarm6x6AlarmMailTrgClearSubject=wtWebAlarm6x6AlarmMailTrgClearSubject, wtWebioEA2x2ERPPortOutputGroupMode=wtWebioEA2x2ERPPortOutputGroupMode, wtIpWatcherIpAddress=wtIpWatcherIpAddress, wtWebioEA2x2_24VSnmpCommunityStringRead=wtWebioEA2x2_24VSnmpCommunityStringRead, wtTrapReceiver2x2ActionMailSubject=wtTrapReceiver2x2ActionMailSubject, wtWebioEA2x2_24VSnmpSystemTrapManagerIP=wtWebioEA2x2_24VSnmpSystemTrapManagerIP, wtWebioEA12x12LoadControlEnable=wtWebioEA12x12LoadControlEnable, wtWebioEA12x6RelERPPortLogicFunction=wtWebioEA12x6RelERPPortLogicFunction, wtWebioEA2x2ERP_24VPortInputName=wtWebioEA2x2ERP_24VPortInputName, wtWebioEA12x6RelMfDeviceTyp=wtWebioEA12x6RelMfDeviceTyp, wtWebioEA24oemPortLogicInputInverter=wtWebioEA24oemPortLogicInputInverter, wtIpWatcher_24VAlarmMailReleaseText=wtIpWatcher_24VAlarmMailReleaseText, wtWebioEA12x6RelAlert10=wtWebioEA12x6RelAlert10, wtWebioEA2x2ERP_24VInputState=wtWebioEA2x2ERP_24VInputState, wtWebioEA2x2ERPOutputModeEntry=wtWebioEA2x2ERPOutputModeEntry, wtWebioEA2x2ERP_24VFTP=wtWebioEA2x2ERP_24VFTP, wtWebioEA12x6RelAlert1=wtWebioEA12x6RelAlert1, wtWebCount6TimeServer1=wtWebCount6TimeServer1, wtWebCount6DiagErrorClear=wtWebCount6DiagErrorClear)
mibBuilder.exportSymbols('Webio-Digital-MIB-US', wtWebioEA6x6Alert21=wtWebioEA6x6Alert21, wtWebioEA2x2ERPAlarmInputTrigger=wtWebioEA2x2ERPAlarmInputTrigger, wtWebAlarm6x6AlarmSnmpTrapTrapTxEnable=wtWebAlarm6x6AlarmSnmpTrapTrapTxEnable, wtWebioEA6x6MfDeviceTyp=wtWebioEA6x6MfDeviceTyp, wtWebioEA2x2ERP_24VInputs=wtWebioEA2x2ERP_24VInputs, wtWebioEA12x6RelERPDiagErrorCount=wtWebioEA12x6RelERPDiagErrorCount, wtIpWatcher_24VStTzStartMin=wtIpWatcher_24VStTzStartMin, wtWebioEA2x2ERPAlert19=wtWebioEA2x2ERPAlert19, wtIpWatcher_24VAlarmSnmpTrapTrgClearText=wtIpWatcher_24VAlarmSnmpTrapTrgClearText, wtIpWatcher_24VAlarmTcpText=wtIpWatcher_24VAlarmTcpText, wtWebCount6DeviceClock=wtWebCount6DeviceClock, wtWebCount6ReportSyslogPort=wtWebCount6ReportSyslogPort, wtWebioEA6x6InputCounterClear=wtWebioEA6x6InputCounterClear, wtWebCount6UdpRemotePort=wtWebCount6UdpRemotePort, wtIpWatcher_24VAlarmSetPort=wtIpWatcher_24VAlarmSetPort, wtWebCount6=wtWebCount6, wtWebAlarm6x6AlarmSyslogIpAddr=wtWebAlarm6x6AlarmSyslogIpAddr, wtWebioEA2x2ERP_24VAlert14=wtWebioEA2x2ERP_24VAlert14, wtTrapReceiver2x2PortButtonEnable=wtTrapReceiver2x2PortButtonEnable, wtWebCount6Manufact=wtWebCount6Manufact, wtWebioEA6x6TimeZone=wtWebioEA6x6TimeZone, wtWebAlarm6x6SessCntrl=wtWebAlarm6x6SessCntrl, wtWebAlarm6x6=wtWebAlarm6x6, wtIpWatcherDnsServer2=wtIpWatcherDnsServer2, wtWebioEA2x2BinaryUdpPeerRemoteIpAddr=wtWebioEA2x2BinaryUdpPeerRemoteIpAddr, wtWebioEA2x2_24VDiagErrorIndex=wtWebioEA2x2_24VDiagErrorIndex, wtWebioEA2x2_24VAlarmMailAddr=wtWebioEA2x2_24VAlarmMailAddr, wtIpWatcherSyslogServerPort=wtIpWatcherSyslogServerPort, wtWebioEA12x6RelERPMailPop3Server=wtWebioEA12x6RelERPMailPop3Server, wtWebioEA2x2ERP_24VPortInputText=wtWebioEA2x2ERP_24VPortInputText, wtWebAlarm6x6StTzStopMode=wtWebAlarm6x6StTzStopMode, wtWebCount6TimeServer=wtWebCount6TimeServer, wtWebioEA12x6RelAlarmMaxCounterValue=wtWebioEA12x6RelAlarmMaxCounterValue, wtWebioEA12x6RelFTPEnable=wtWebioEA12x6RelFTPEnable, wtWebioEA12x6RelERPMailAuthUser=wtWebioEA12x6RelERPMailAuthUser, wtWebioEA24oemTzOffsetHrs=wtWebioEA24oemTzOffsetHrs, wtWebAlarm6x6InputState=wtWebAlarm6x6InputState, wtTrapReceiver2x2SnmpEnable=wtTrapReceiver2x2SnmpEnable, wtWebAlarm6x6SessCntrlLogout=wtWebAlarm6x6SessCntrlLogout, wtTrapReceiver2x2ActionFtpOption=wtTrapReceiver2x2ActionFtpOption, wtWebioEA12x6RelERPBinaryUdpPeerRemotePort=wtWebioEA12x6RelERPBinaryUdpPeerRemotePort, wtWebioEA24oemSetOutput=wtWebioEA24oemSetOutput, wtTrapReceiver2x2WatchListEnable=wtTrapReceiver2x2WatchListEnable, wtWebioEA6x6AlarmEnable=wtWebioEA6x6AlarmEnable, wtWebioEA2x2ERP_24VStTzStartHrs=wtWebioEA2x2ERP_24VStTzStartHrs, wtWebioEA6x6PortInputText=wtWebioEA6x6PortInputText, wtIpWatcherFTPServerIP=wtIpWatcherFTPServerIP, wtIpWatcher_24VInputCounter=wtIpWatcher_24VInputCounter, wtWebioEA2x2OutputModeEntry=wtWebioEA2x2OutputModeEntry, wtWebioEA12x6RelERPAlarmEntry=wtWebioEA12x6RelERPAlarmEntry, wtWebioEA12x6RelTsEnable=wtWebioEA12x6RelTsEnable, wtWebCount6StTzOffsetHrs=wtWebCount6StTzOffsetHrs, wtWebioEA12x6RelERPOutputs=wtWebioEA12x6RelERPOutputs, wtIpWatcher_24VAlert4=wtIpWatcher_24VAlert4, wtIpWatcher_24VAlarmOutputEntry=wtIpWatcher_24VAlarmOutputEntry, wtWebCount6Device=wtWebCount6Device, wtWebioEA12x12SubnetMask=wtWebioEA12x12SubnetMask, wtIpWatcherAlert7=wtIpWatcherAlert7, wtWebioEA12x6RelMailAdName=wtWebioEA12x6RelMailAdName, wtIpWatcherAlarmTable=wtIpWatcherAlarmTable, wtWebioEA2x2ERP_24VSnmpCommunityStringRead=wtWebioEA2x2ERP_24VSnmpCommunityStringRead, wtTrapReceiver2x2Alert9=wtTrapReceiver2x2Alert9, wtWebioEA6x6Alert4=wtWebioEA6x6Alert4, wtWebCount6FTPServerControlPort=wtWebCount6FTPServerControlPort, wtWebioEA2x2_24VAlarmInterval=wtWebioEA2x2_24VAlarmInterval, wtWebioEA2x2PortPulseDuration=wtWebioEA2x2PortPulseDuration, wtWebioEA6x6AlarmMailSubject=wtWebioEA6x6AlarmMailSubject, wtWebioEA2x2_24VStTzStopMode=wtWebioEA2x2_24VStTzStopMode, wtWebioEA6x6MfAddr=wtWebioEA6x6MfAddr, wtWebioEA2x2_24VPortInputName=wtWebioEA2x2_24VPortInputName, wtWebioEA12x12BinaryIfTable=wtWebioEA12x12BinaryIfTable, wtWebioEA12x12SyslogServerIP=wtWebioEA12x12SyslogServerIP, wtWebioEA12x12FTPAccount=wtWebioEA12x12FTPAccount, wtWebioEA24oemAlert2=wtWebioEA24oemAlert2, wtWebioEA2x2SessCntrlConfigPassword=wtWebioEA2x2SessCntrlConfigPassword, wtWebioEA24oemAlert23=wtWebioEA24oemAlert23, wtWebioEA2x2ERPOutputPortEntry=wtWebioEA2x2ERPOutputPortEntry, wtWebioEA12x6RelERPAlert4=wtWebioEA12x6RelERPAlert4, wtIpWatcher_24VTimeServer=wtIpWatcher_24VTimeServer, wtWebioEA2x2_24VAlert15=wtWebioEA2x2_24VAlert15, wtWebioEA12x6RelERPSessCntrlConfigPassword=wtWebioEA12x6RelERPSessCntrlConfigPassword, wtIpWatcher_24VAlarmSyslogText=wtIpWatcher_24VAlarmSyslogText, wtIpWatcher_24VAlert22=wtIpWatcher_24VAlert22, wtWebioEA2x2_24VBinaryTcpServerApplicationMode=wtWebioEA2x2_24VBinaryTcpServerApplicationMode, wtWebioEA2x2StTzStopHrs=wtWebioEA2x2StTzStopHrs, wtWebioEA2x2_24VStTzStartWday=wtWebioEA2x2_24VStTzStartWday, wtWebioEA6x6Syslog=wtWebioEA6x6Syslog, wtWebioEA2x2ERP_24VAlert7=wtWebioEA2x2ERP_24VAlert7, wtIpWatcher_24VAlarmAckPort=wtIpWatcher_24VAlarmAckPort, wtTrapReceiver2x2SnmpCommunityStringRead=wtTrapReceiver2x2SnmpCommunityStringRead, wtWebAlarm6x6MailAuthPassword=wtWebAlarm6x6MailAuthPassword, wtIpWatcherAlert18=wtIpWatcherAlert18, wtIpWatcher_24VAlert26=wtIpWatcher_24VAlert26, wtWebioEA12x6RelDiagErrorClear=wtWebioEA12x6RelDiagErrorClear, wtWebioEA6x6AlarmFtpReleaseText=wtWebioEA6x6AlarmFtpReleaseText, wtWebioEA12x6RelERPBinaryTcpClientInputTrigger=wtWebioEA12x6RelERPBinaryTcpClientInputTrigger, wtWebioEA12x12SnmpSystemTrapEnable=wtWebioEA12x12SnmpSystemTrapEnable, wtWebioEA2x2ERP_24VAlarmFtpOption=wtWebioEA2x2ERP_24VAlarmFtpOption, wtWebAlarm6x6PortPulseDuration=wtWebAlarm6x6PortPulseDuration, wtWebioEA2x2_24VAlert5=wtWebioEA2x2_24VAlert5, wtWebioEA2x2ERPSnmpSystemTrapManagerIP=wtWebioEA2x2ERPSnmpSystemTrapManagerIP, wtWebioEA2x2ERPAlarmTimerCron=wtWebioEA2x2ERPAlarmTimerCron, wtWebAlarm6x6AlarmUdpIpAddr=wtWebAlarm6x6AlarmUdpIpAddr, wtIpWatcherAlarmMailReleaseSubject=wtIpWatcherAlarmMailReleaseSubject, wtWebioEA24oemBinaryTcpServerInputTrigger=wtWebioEA24oemBinaryTcpServerInputTrigger, wtWebioEA2x2ERPBinaryTcpServerLocalPort=wtWebioEA2x2ERPBinaryTcpServerLocalPort, wtWebioEA12x6RelERPInOut=wtWebioEA12x6RelERPInOut, wtWebCount6InputTable=wtWebCount6InputTable, wtWebioEA6x6Alert20=wtWebioEA6x6Alert20, wtWebioEA2x2ERPAlert18=wtWebioEA2x2ERPAlert18, wtIpWatcher_24VAddConfig=wtIpWatcher_24VAddConfig, wtIpWatcher_24VAlarmTcpPort=wtIpWatcher_24VAlarmTcpPort, wtWebioEA6x6InputTable=wtWebioEA6x6InputTable, wtWebioEA2x2ERPBinaryIfEntry=wtWebioEA2x2ERPBinaryIfEntry, wtWebioEA2x2ERP_24VAlarmFtpDataPort=wtWebioEA2x2ERP_24VAlarmFtpDataPort, wtWebioEA12x6RelERPSessCntrlLogout=wtWebioEA12x6RelERPSessCntrlLogout, wtIpWatcherDeviceContact=wtIpWatcherDeviceContact, wtWebioEA12x6RelMailReply=wtWebioEA12x6RelMailReply, wtWebCount6ClockYear=wtWebCount6ClockYear, wtIpWatcher_24VAlert11=wtIpWatcher_24VAlert11, wtWebioEA24oemFTPServerControlPort=wtWebioEA24oemFTPServerControlPort, wtWebAlarm6x6Alert32=wtWebAlarm6x6Alert32, wtWebioEA12x12BinaryTcpServerInputTrigger=wtWebioEA12x12BinaryTcpServerInputTrigger, wtIpWatcherOutputNo=wtIpWatcherOutputNo, wtTrapReceiver2x2SyslogEnable=wtTrapReceiver2x2SyslogEnable, wtWebioEA12x12InputEntry=wtWebioEA12x12InputEntry, wtIpWatcher_24VPortPulsePolarity=wtIpWatcher_24VPortPulsePolarity, wtWebioEA12x6RelAlert22=wtWebioEA12x6RelAlert22, wtWebioEA24oemAlarmTcpText=wtWebioEA24oemAlarmTcpText, wtWebioEA12x12PortPulsePolarity=wtWebioEA12x12PortPulsePolarity, wtWebioEA12x12SessCntrl=wtWebioEA12x12SessCntrl, wtIpWatcher_24VMailEnable=wtIpWatcher_24VMailEnable, wtTrapReceiver2x2ActionTriggerState=wtTrapReceiver2x2ActionTriggerState, wtTrapReceiver2x2SnmpSystemTrapEnable=wtTrapReceiver2x2SnmpSystemTrapEnable, wtWebioEA6x6OutputNo=wtWebioEA6x6OutputNo, wtWebioEA2x2ERPStTzStopMin=wtWebioEA2x2ERPStTzStopMin, wtWebioEA2x2ERP_24VBinaryModeCount=wtWebioEA2x2ERP_24VBinaryModeCount, wtIpWatcher_24VDeviceText=wtIpWatcher_24VDeviceText, wtWebioEA6x6AlarmSyslogReleaseText=wtWebioEA6x6AlarmSyslogReleaseText, wtWebioEA24oemAlert8=wtWebioEA24oemAlert8, wtWebioEA2x2ERP_24VAlarmUdpIpAddr=wtWebioEA2x2ERP_24VAlarmUdpIpAddr, wtWebCount6ReportSystemTrigger=wtWebCount6ReportSystemTrigger, wtWebioEA2x2ERP_24VPortOutputName=wtWebioEA2x2ERP_24VPortOutputName, wtWebioEA24oemInputEntry=wtWebioEA24oemInputEntry, wtWebioEA2x2ERP_24VAlarmInterval=wtWebioEA2x2ERP_24VAlarmInterval, wtComServer=wtComServer, wtWebioEA2x2ERPAlarmEntry=wtWebioEA2x2ERPAlarmEntry, wtWebioEA2x2StTzStopMonth=wtWebioEA2x2StTzStopMonth, wtWebioEA24oemHttpPort=wtWebioEA24oemHttpPort, wtWebioEA2x2Alert19=wtWebioEA2x2Alert19, wtWebioEA12x6RelERPStTzStartMode=wtWebioEA12x6RelERPStTzStartMode, wtIpWatcherTimeServer2=wtIpWatcherTimeServer2, wtWebioEA12x6RelERPBinaryModeNo=wtWebioEA12x6RelERPBinaryModeNo, wtWebioEA12x12LoadControlView=wtWebioEA12x12LoadControlView, wtWebCount6ReportCount=wtWebCount6ReportCount, wtWebioEA2x2OutputTable=wtWebioEA2x2OutputTable, wtWebioEA2x2OutputEntry=wtWebioEA2x2OutputEntry, wtWebioEA24oemBinaryTcpClientInputTrigger=wtWebioEA24oemBinaryTcpClientInputTrigger, wtWebioEA12x6RelERPHTTP=wtWebioEA12x6RelERPHTTP, wtWebioEA24oemAlarmFtpDataPort=wtWebioEA24oemAlarmFtpDataPort, wtWebioEA2x2_24VAlert24=wtWebioEA2x2_24VAlert24, wtWebioEA12x12Startup=wtWebioEA12x12Startup, wtWebioEA2x2ERP_24VWayBackServerControlPort=wtWebioEA2x2ERP_24VWayBackServerControlPort, wtWebAlarm6x6AlarmFtpText=wtWebAlarm6x6AlarmFtpText, wtWebioEA12x12BinaryUdpPeerRemoteIpAddr=wtWebioEA12x12BinaryUdpPeerRemoteIpAddr, wtTrapReceiver2x2Inputs=wtTrapReceiver2x2Inputs, wtIpWatcherIpListService=wtIpWatcherIpListService, wtWebioEA6x6AlarmMailAddr=wtWebioEA6x6AlarmMailAddr, wtWebioEA2x2UdpEnable=wtWebioEA2x2UdpEnable, wtWebAlarm6x6FTPUserName=wtWebAlarm6x6FTPUserName, wtIpWatcherMailAuthentication=wtIpWatcherMailAuthentication, wtWebioEA12x6RelAlert14=wtWebioEA12x6RelAlert14, wtWebioEA12x6RelERPSetOutput=wtWebioEA12x6RelERPSetOutput, wtWebioEA2x2DeviceLocation=wtWebioEA2x2DeviceLocation, wtWebioEA2x2_24VMfInternet=wtWebioEA2x2_24VMfInternet, wtWebioEA12x12Gateway=wtWebioEA12x12Gateway, wtWebioEA6x6DnsServer2=wtWebioEA6x6DnsServer2, wtWebioEA2x2BinaryUdpPeerLocalPort=wtWebioEA2x2BinaryUdpPeerLocalPort, wtWebioEA2x2ERPWayBackFTPPassword=wtWebioEA2x2ERPWayBackFTPPassword, wtWebioEA6x6OutputTable=wtWebioEA6x6OutputTable, wtTrapReceiver2x2DiagErrorIndex=wtTrapReceiver2x2DiagErrorIndex, wtWebioEA2x2_24VSyslogServerPort=wtWebioEA2x2_24VSyslogServerPort, wtWebioEA2x2ERPBinaryModeNo=wtWebioEA2x2ERPBinaryModeNo, wtTrapReceiver2x2DeviceText=wtTrapReceiver2x2DeviceText, wtWebioEA2x2UdpRemotePort=wtWebioEA2x2UdpRemotePort, wtWebioEA12x6RelERPBinaryUdpPeerRemoteIpAddr=wtWebioEA12x6RelERPBinaryUdpPeerRemoteIpAddr, wtIpWatcher_24VInputPortTable=wtIpWatcher_24VInputPortTable, wtWebioEA2x2ERP_24VWayBackFTPTimeOut=wtWebioEA2x2ERP_24VWayBackFTPTimeOut, wtWebAlarm6x6PortInputPulsePolarity=wtWebAlarm6x6PortInputPulsePolarity, wtWebioEA12x6RelERPMailAuthentication=wtWebioEA12x6RelERPMailAuthentication, wtIpWatcher_24VAlarmTcpReleaseText=wtIpWatcher_24VAlarmTcpReleaseText, wtWebioEA12x12AlarmSyslogIpAddr=wtWebioEA12x12AlarmSyslogIpAddr, wtWebioEA12x6RelAlert4=wtWebioEA12x6RelAlert4, wtIpWatcherAlert36=wtIpWatcherAlert36, wtTrapReceiver2x2StTzStopMin=wtTrapReceiver2x2StTzStopMin, wtWebioEA6x6SyslogEnable=wtWebioEA6x6SyslogEnable, wtWebAlarm6x6AlarmInterval=wtWebAlarm6x6AlarmInterval, wtWebioEA12x6RelERPUdpRemotePort=wtWebioEA12x6RelERPUdpRemotePort, wtWebioEA2x2_24VAlarmSyslogIpAddr=wtWebioEA2x2_24VAlarmSyslogIpAddr, wtWebioEA24oemBasic=wtWebioEA24oemBasic, wtIpWatcher_24VAlarmUdpPort=wtIpWatcher_24VAlarmUdpPort, wtWebCount6ReportName=wtWebCount6ReportName, wtWebioEA2x2ERPStTzStopMode=wtWebioEA2x2ERPStTzStopMode, wtWebioEA2x2ERP_24VClockMin=wtWebioEA2x2ERP_24VClockMin, wtIpWatcher_24VAlarmTcpTrgClearText=wtIpWatcher_24VAlarmTcpTrgClearText, wtWebioEA2x2Alert21=wtWebioEA2x2Alert21, wtWebCount6PortInputBicountInactivTimeout=wtWebCount6PortInputBicountInactivTimeout, wtWebioEA2x2ERPAlarmUdpReleaseText=wtWebioEA2x2ERPAlarmUdpReleaseText, wtWebioEA2x2ERP_24VDeviceLocation=wtWebioEA2x2ERP_24VDeviceLocation, wtWebioEA2x2DeviceText=wtWebioEA2x2DeviceText, wtWebioEA6x6Alert9=wtWebioEA6x6Alert9, wtWebioEA6x6AlarmSystemTrigger=wtWebioEA6x6AlarmSystemTrigger, wtWebioEA2x2ERPFTPOption=wtWebioEA2x2ERPFTPOption, wtWebioEA2x2OutputPortEntry=wtWebioEA2x2OutputPortEntry, wtTrapReceiver2x2DiagBinaryError=wtTrapReceiver2x2DiagBinaryError, wtIpWatcherStTzStartWday=wtIpWatcherStTzStartWday, wtWebioEA2x2BinaryModeCount=wtWebioEA2x2BinaryModeCount, wtWebAlarm6x6DiagBinaryError=wtWebAlarm6x6DiagBinaryError, wtWebioEA24oemAlarm=wtWebioEA24oemAlarm, wtWebioEA2x2ERPUdpAdminPort=wtWebioEA2x2ERPUdpAdminPort, wtIpWatcher_24VIpList=wtIpWatcher_24VIpList, wtWebioEA12x12StTzStartHrs=wtWebioEA12x12StTzStartHrs, wtWebioEA12x6RelERPDeviceClock=wtWebioEA12x6RelERPDeviceClock, wtWebioEA12x6RelAlert9=wtWebioEA12x6RelAlert9, wtIpWatcherAlert27=wtIpWatcherAlert27, wtIpWatcherIpList=wtIpWatcherIpList, wtWebioEA24oemPortOutputGroupMode=wtWebioEA24oemPortOutputGroupMode, wtWebioEA2x2ERPSubnetMask=wtWebioEA2x2ERPSubnetMask, wtWebioEA2x2ERP_24VOutputMode=wtWebioEA2x2ERP_24VOutputMode, wtTrapReceiver2x2ActionMailText=wtTrapReceiver2x2ActionMailText, wtWebioEA12x6RelSnmpSystemTrapManagerIP=wtWebioEA12x6RelSnmpSystemTrapManagerIP, wtWebAlarm6x6MailServer=wtWebAlarm6x6MailServer, wtWebioEA2x2ERPAlert22=wtWebioEA2x2ERPAlert22, wtWebAlarm6x6InputCounterClear=wtWebAlarm6x6InputCounterClear, wtWebioEA2x2ERP_24VOutputPortEntry=wtWebioEA2x2ERP_24VOutputPortEntry, wtWebioEA6x6AlarmEntry=wtWebioEA6x6AlarmEntry, wtWebAlarm6x6Alert28=wtWebAlarm6x6Alert28, wtWebioEA12x12FTPOption=wtWebioEA12x12FTPOption, wtWebioEA2x2ERP_24VStTzEnable=wtWebioEA2x2ERP_24VStTzEnable, wtIpWatcher_24VClockYear=wtIpWatcher_24VClockYear, wtWebioEA12x12TzOffsetMin=wtWebioEA12x12TzOffsetMin, wtTrapReceiver2x2ActionTcpText=wtTrapReceiver2x2ActionTcpText, wtWebAlarm6x6AlarmOutputTable=wtWebAlarm6x6AlarmOutputTable, wtIpWatcherAlert1=wtIpWatcherAlert1, wtIpWatcher_24VUdpAdminPort=wtIpWatcher_24VUdpAdminPort, wtWebioEA6x6Manufact=wtWebioEA6x6Manufact, wtWebioEA12x12Ports=wtWebioEA12x12Ports, wtWebioEA12x12AlarmMailReleaseText=wtWebioEA12x12AlarmMailReleaseText, wtWebioEA12x12MailAuthUser=wtWebioEA12x12MailAuthUser, wtWebioEA12x12Text=wtWebioEA12x12Text, wtWebAlarm6x6PortPulsePolarity=wtWebAlarm6x6PortPulsePolarity, wtWebioEA2x2MfHotline=wtWebioEA2x2MfHotline, wtWebioEA2x2_24VMailReply=wtWebioEA2x2_24VMailReply, wtWebioEA2x2_24VAlarmCount=wtWebioEA2x2_24VAlarmCount)
mibBuilder.exportSymbols('Webio-Digital-MIB-US', wtWebioEA2x2ClockHrs=wtWebioEA2x2ClockHrs, wtTrapReceiver2x2HTTP=wtTrapReceiver2x2HTTP, wtWebCount6SessCntrlPassword=wtWebCount6SessCntrlPassword, wtWebioEA2x2ERP_24VPortInputBicountInactivTimeout=wtWebioEA2x2ERP_24VPortInputBicountInactivTimeout, wtWebioEA24oemOutputTable=wtWebioEA24oemOutputTable, wtWebCount6DiagErrorIndex=wtWebCount6DiagErrorIndex, wtWebioEA12x12Alert11=wtWebioEA12x12Alert11, wtWebioEA2x2_24VAlarmTcpText=wtWebioEA2x2_24VAlarmTcpText, wtIpWatcher_24VMfDeviceTyp=wtIpWatcher_24VMfDeviceTyp, wtIpWatcherUDP=wtIpWatcherUDP, wtWebioEA6x6Alert2=wtWebioEA6x6Alert2, wtIpWatcher_24VSessCntrlLogout=wtIpWatcher_24VSessCntrlLogout, wtWebioEA6x6SyslogServerPort=wtWebioEA6x6SyslogServerPort, wtWebCount6Ports=wtWebCount6Ports, wtWebioEA2x2ERP_24VText=wtWebioEA2x2ERP_24VText, wtWebioEA2x2ERPBinaryTcpClientInputTrigger=wtWebioEA2x2ERPBinaryTcpClientInputTrigger, wtWebioEA12x6RelERPStTzStartHrs=wtWebioEA12x6RelERPStTzStartHrs, wtWebioEA2x2ERPOutputModeTable=wtWebioEA2x2ERPOutputModeTable, wtWebioEA2x2ERP_24VClockYear=wtWebioEA2x2ERP_24VClockYear, wtWebioEA2x2_24VAlarmSnmpTrapReleaseText=wtWebioEA2x2_24VAlarmSnmpTrapReleaseText, wtTrapReceiver2x2UdpEnable=wtTrapReceiver2x2UdpEnable, wtWebioEA24oemAlert20=wtWebioEA24oemAlert20, wtWebioEA12x6RelText=wtWebioEA12x6RelText, wtWebioEA12x12AlarmUdpIpAddr=wtWebioEA12x12AlarmUdpIpAddr, wtWebAlarm6x6MfAddr=wtWebAlarm6x6MfAddr, wtWebioEA6x6BinaryOperationMode=wtWebioEA6x6BinaryOperationMode, wtWebioEA2x2_24VDeviceClock=wtWebioEA2x2_24VDeviceClock, wtWebioEA2x2ERPOutputModeBit=wtWebioEA2x2ERPOutputModeBit, wtIpWatcherInputTable=wtIpWatcherInputTable, wtWebioEA2x2_24VBinaryUdpPeerApplicationMode=wtWebioEA2x2_24VBinaryUdpPeerApplicationMode, wtWebioEA2x2DeviceClock=wtWebioEA2x2DeviceClock, wtWebioEA6x6PortOutputSafetyState=wtWebioEA6x6PortOutputSafetyState, wtIpWatcher_24VDiagErrorClear=wtIpWatcher_24VDiagErrorClear, wtWebioEA2x2DiagErrorIndex=wtWebioEA2x2DiagErrorIndex, wtWebAlarm6x6Alert35=wtWebAlarm6x6Alert35, wtIpWatcher_24VPortOutputName=wtIpWatcher_24VPortOutputName, wtWebioEA2x2TsSyncTime=wtWebioEA2x2TsSyncTime, wtWebioEA6x6HTTP=wtWebioEA6x6HTTP, wtWebioEA2x2_24VSessCntrlAdminPassword=wtWebioEA2x2_24VSessCntrlAdminPassword, wtWebioEA2x2ERP_24VPortLogicOutputInverter=wtWebioEA2x2ERP_24VPortLogicOutputInverter, wtWebioEA2x2ERPBinaryConnectedIpAddr=wtWebioEA2x2ERPBinaryConnectedIpAddr, wtWebioEA2x2=wtWebioEA2x2, wtWebioEA2x2_24VAlarmFtpFileName=wtWebioEA2x2_24VAlarmFtpFileName, wtIpWatcher_24VAlarmFtpReleaseText=wtIpWatcher_24VAlarmFtpReleaseText, wtWebioEA2x2ERP_24VPortOutputGroupMode=wtWebioEA2x2ERP_24VPortOutputGroupMode, wtWebioEA12x12StTzStartMonth=wtWebioEA12x12StTzStartMonth, wtWebioEA2x2_24VSyslogSystemMessagesEnable=wtWebioEA2x2_24VSyslogSystemMessagesEnable, wtWebioEA12x6RelSyslog=wtWebioEA12x6RelSyslog, wtWebioEA12x6RelPortLogicInputInverter=wtWebioEA12x6RelPortLogicInputInverter, wtWebioEA12x12Alert2=wtWebioEA12x12Alert2, wtWebioEA12x6RelERPStartup=wtWebioEA12x6RelERPStartup, wtWebioEA12x6RelPortLogicOutputInverter=wtWebioEA12x6RelPortLogicOutputInverter, wtWebioEA2x2ERPStTzStartMode=wtWebioEA2x2ERPStTzStartMode, wtWebioEA24oemBinaryTable=wtWebioEA24oemBinaryTable, wtWebioEA6x6AlarmSyslogText=wtWebioEA6x6AlarmSyslogText, wtIpWatcherOutputTable=wtIpWatcherOutputTable, wtTrapReceiver2x2ActionTcpPort=wtTrapReceiver2x2ActionTcpPort, wtWebioEA12x6RelBinaryTcpClientInactivity=wtWebioEA12x6RelBinaryTcpClientInactivity, wtIpWatcher_24VInputState=wtIpWatcher_24VInputState, wtIpWatcher_24VDeviceContact=wtIpWatcher_24VDeviceContact, wtIpWatcher_24VFTPPassword=wtIpWatcher_24VFTPPassword, wtTrapReceiver2x2WatchListName=wtTrapReceiver2x2WatchListName, wtWebioEA2x2ERP_24VSessCntrlLogout=wtWebioEA2x2ERP_24VSessCntrlLogout, wtWebCount6ReportTcpIpAddr=wtWebCount6ReportTcpIpAddr, wtWebioEA2x2ERP_24VLoadControlEnable=wtWebioEA2x2ERP_24VLoadControlEnable, wtWebCount6ReportSyslogText=wtWebCount6ReportSyslogText, wtWebioEA24oemBinaryUdpPeerRemotePort=wtWebioEA24oemBinaryUdpPeerRemotePort, wtWebCount6TsEnable=wtWebCount6TsEnable, wtWebioEA2x2ERP_24VAlarmOutputTrigger=wtWebioEA2x2ERP_24VAlarmOutputTrigger, wtWebioEA2x2_24VAlarmEntry=wtWebioEA2x2_24VAlarmEntry, wtWebioEA12x12PortInputText=wtWebioEA12x12PortInputText, wtWebioEA2x2_24VHttpInputTrigger=wtWebioEA2x2_24VHttpInputTrigger, wtWebioEA2x2ERP_24VDnsServer2=wtWebioEA2x2ERP_24VDnsServer2, wtWebioEA12x6RelERPInputs=wtWebioEA12x6RelERPInputs, wtIpWatcherAlarmTcpText=wtIpWatcherAlarmTcpText, wtIpWatcherFTPOption=wtIpWatcherFTPOption, wtWebioEA2x2Binary=wtWebioEA2x2Binary, wtWebioEA12x6RelAlarmFtpOption=wtWebioEA12x6RelAlarmFtpOption, wtWebioEA12x12AlarmSyslogPort=wtWebioEA12x12AlarmSyslogPort, wtWebioEA2x2ERPSessCntrlAdminPassword=wtWebioEA2x2ERPSessCntrlAdminPassword, wtWebioEA12x6RelERPTimeServer1=wtWebioEA12x6RelERPTimeServer1, wtWebioEA24oemAlarmSyslogPort=wtWebioEA24oemAlarmSyslogPort, wtWebioEA12x6RelSessCntrlLogout=wtWebioEA12x6RelSessCntrlLogout, wtWebioEA2x2BinaryOperationMode=wtWebioEA2x2BinaryOperationMode, wtWebioEA12x6RelSNMP=wtWebioEA12x6RelSNMP, wtWebioEA12x6RelERPAlert2=wtWebioEA12x6RelERPAlert2, wtWebAlarm6x6AlarmFtpTrgClearText=wtWebAlarm6x6AlarmFtpTrgClearText, wtWebioEA6x6AlarmMailText=wtWebioEA6x6AlarmMailText, wtWebioEA2x2ERP_24VSyslog=wtWebioEA2x2ERP_24VSyslog, wtWebioEA2x2ERPMailPop3Server=wtWebioEA2x2ERPMailPop3Server, wtWebioEA2x2ERPFTPUserName=wtWebioEA2x2ERPFTPUserName, wtWebioEA24oemBinaryEntry=wtWebioEA24oemBinaryEntry, wtWebioEA12x6RelERPOutputTable=wtWebioEA12x6RelERPOutputTable, wtWebioEA12x12StTzStartMode=wtWebioEA12x12StTzStartMode, wtWebCount6AddConfig=wtWebCount6AddConfig, wtWebioEA6x6BinaryIfTable=wtWebioEA6x6BinaryIfTable, wtIpWatcher_24VAlarmTimerCron=wtIpWatcher_24VAlarmTimerCron, wtIpWatcherAlarmMailReleaseText=wtIpWatcherAlarmMailReleaseText, wtWebioEA6x6PortInputMode=wtWebioEA6x6PortInputMode, wtIpWatcher_24VAlert15=wtIpWatcher_24VAlert15, wtWebioEA2x2_24VHttpPort=wtWebioEA2x2_24VHttpPort, wtWebioEA12x6RelERPAlert23=wtWebioEA12x6RelERPAlert23, wtWebioEA24oemSubnetMask=wtWebioEA24oemSubnetMask, wtIpWatcherAlarmUdpPort=wtIpWatcherAlarmUdpPort, wtWebioEA2x2Alert13=wtWebioEA2x2Alert13, wtWebioEA12x6RelBinaryTcpServerInputTrigger=wtWebioEA12x6RelBinaryTcpServerInputTrigger, wtWebioEA2x2ERPMail=wtWebioEA2x2ERPMail, wtWebAlarm6x6FTPServerIP=wtWebAlarm6x6FTPServerIP, wtWebioEA2x2ERPAlarmSnmpTrapText=wtWebioEA2x2ERPAlarmSnmpTrapText, wtWebioEA24oemSessCntrlAdminPassword=wtWebioEA24oemSessCntrlAdminPassword, wtWebioEA2x2ERPLoadControlView=wtWebioEA2x2ERPLoadControlView, wtWebioEA12x6RelERP=wtWebioEA12x6RelERP, wtWebAlarm6x6AlarmName=wtWebAlarm6x6AlarmName, wtWebioEA24oemSessCntrlLogout=wtWebioEA24oemSessCntrlLogout, wtWebioEA12x12AlarmMailText=wtWebioEA12x12AlarmMailText, wtIpWatcherAlarmOutputEntry=wtIpWatcherAlarmOutputEntry, wtWebioEA6x6FTPAccount=wtWebioEA6x6FTPAccount, wtWebioEA2x2_24VBinaryModeCount=wtWebioEA2x2_24VBinaryModeCount, wtWebioEA12x12SNMP=wtWebioEA12x12SNMP, wtWebAlarm6x6ClockDay=wtWebAlarm6x6ClockDay, wtTrapReceiver2x2SystemTimerTable=wtTrapReceiver2x2SystemTimerTable, wtWebioEA12x12PortInputBicountInactivTimeout=wtWebioEA12x12PortInputBicountInactivTimeout, wtWebCount6ReportOutputTable=wtWebCount6ReportOutputTable, wtIpWatcherAlarmCounterClear=wtIpWatcherAlarmCounterClear, wtWebioEA2x2ERP_24VSafetyTimeout=wtWebioEA2x2ERP_24VSafetyTimeout, wtTrapReceiver2x2ActionSyslogPort=wtTrapReceiver2x2ActionSyslogPort, wtWebioEA12x6RelAlert17=wtWebioEA12x6RelAlert17, wtWebioEA12x6RelHTTP=wtWebioEA12x6RelHTTP, wtIpWatcher_24VSNMP=wtIpWatcher_24VSNMP, wtWebioEA24oemGateway=wtWebioEA24oemGateway, wtTrapReceiver2x2ActionUdpText=wtTrapReceiver2x2ActionUdpText, wtWebioEA6x6StTzStartHrs=wtWebioEA6x6StTzStartHrs, wtWebioEA2x2ERPStartup=wtWebioEA2x2ERPStartup, wtWebioEA2x2_24VOutputEntry=wtWebioEA2x2_24VOutputEntry, wtWebioEA2x2ERPAlarmMailReleaseSubject=wtWebioEA2x2ERPAlarmMailReleaseSubject, wtTrapReceiver2x2FTPAccount=wtTrapReceiver2x2FTPAccount, wtWebioEA12x6RelERPAlert17=wtWebioEA12x6RelERPAlert17, wtWebioEA2x2ERP_24VClockDay=wtWebioEA2x2ERP_24VClockDay, wtWebCount6ReportFtpOption=wtWebCount6ReportFtpOption, wtWebioEA2x2FTPAccount=wtWebioEA2x2FTPAccount, wtWebioEA2x2TimeServer1=wtWebioEA2x2TimeServer1, wtWebAlarm6x6TzEnable=wtWebAlarm6x6TzEnable, wtWebioEA24oemPortPulsePolarity=wtWebioEA24oemPortPulsePolarity, wtWebioEA2x2Network=wtWebioEA2x2Network, wtWebioEA2x2_24VTimeZone=wtWebioEA2x2_24VTimeZone, wtWebioEA2x2ERPFTPServerIP=wtWebioEA2x2ERPFTPServerIP, wtWebioEA2x2TzOffsetMin=wtWebioEA2x2TzOffsetMin, wtWebioEA2x2ERPInputState=wtWebioEA2x2ERPInputState, wtIpWatcherAlert2=wtIpWatcherAlert2, wtWebioEA2x2ERP_24VStTzStartWday=wtWebioEA2x2ERP_24VStTzStartWday, wtWebioEA2x2AlarmTcpPort=wtWebioEA2x2AlarmTcpPort, wtWebioEA2x2ERP_24VAddConfig=wtWebioEA2x2ERP_24VAddConfig, wtWebioEA2x2ERP_24VSyslogServerPort=wtWebioEA2x2ERP_24VSyslogServerPort, wtIpWatcher_24VAlarmFtpTrapTxEnable=wtIpWatcher_24VAlarmFtpTrapTxEnable, wtWebioEA2x2_24VSessCntrlConfigPassword=wtWebioEA2x2_24VSessCntrlConfigPassword, wtWebioEA6x6InputNo=wtWebioEA6x6InputNo, wtIpWatcherSnmpEnable=wtIpWatcherSnmpEnable, wtWebCount6SyslogServerIP=wtWebCount6SyslogServerIP, wtWebioEA6x6StTzStartMode=wtWebioEA6x6StTzStartMode, wtWebioEA6x6DeviceClock=wtWebioEA6x6DeviceClock, wtWebioEA12x6RelERPAlarmMailAddr=wtWebioEA12x6RelERPAlarmMailAddr, wtWebioEA24oemAlert19=wtWebioEA24oemAlert19, wtIpWatcherStTzStartMode=wtIpWatcherStTzStartMode, wtWebioEA6x6SafetyTimeout=wtWebioEA6x6SafetyTimeout, wtWebioEA2x2ERPDnsServer1=wtWebioEA2x2ERPDnsServer1, wtWebioEA12x6RelERPSyslogEnable=wtWebioEA12x6RelERPSyslogEnable, wtWebioEA12x6RelPortInputBicountPulsePolarity=wtWebioEA12x6RelPortInputBicountPulsePolarity, wtWebioEA12x6RelERPBinaryTcpClientServerIpAddr=wtWebioEA12x6RelERPBinaryTcpClientServerIpAddr, wtWebAlarm6x6Alert8=wtWebAlarm6x6Alert8, wtIpWatcher_24VSnmpCommunityStringReadWrite=wtIpWatcher_24VSnmpCommunityStringReadWrite, wtTrapReceiver2x2PrepareOutEvents=wtTrapReceiver2x2PrepareOutEvents, wtIpWatcherMfAddr=wtIpWatcherMfAddr, wtWebioEA12x6RelERPSafetyTimeout=wtWebioEA12x6RelERPSafetyTimeout, wtWebioEA2x2BinaryTcpServerLocalPort=wtWebioEA2x2BinaryTcpServerLocalPort, wtWebioEA12x12PortLogicInputInverter=wtWebioEA12x12PortLogicInputInverter, wtWebioEA12x6RelERPSessCntrlPassword=wtWebioEA12x6RelERPSessCntrlPassword, wtWebioEA12x6RelAlarm=wtWebioEA12x6RelAlarm, wtWebioEA2x2ERPAlarmSnmpManagerIP=wtWebioEA2x2ERPAlarmSnmpManagerIP, wtWebAlarm6x6ClockHrs=wtWebAlarm6x6ClockHrs, wtWebioEA6x6DeviceName=wtWebioEA6x6DeviceName, wtWebioEA12x6RelSetOutput=wtWebioEA12x6RelSetOutput, wtWebioEA6x6AlarmMailReleaseText=wtWebioEA6x6AlarmMailReleaseText, wtWebioEA24oemAlert14=wtWebioEA24oemAlert14, wtWebioEA12x6RelERPClockMonth=wtWebioEA12x6RelERPClockMonth, wtWebioEA2x2ERP_24VStTzStopWday=wtWebioEA2x2ERP_24VStTzStopWday, wtWebioEA2x2ERP_24VAlarmInputTrigger=wtWebioEA2x2ERP_24VAlarmInputTrigger, wtWebioEA2x2_24VAlarmMailText=wtWebioEA2x2_24VAlarmMailText, wtWebioEA2x2ERP_24VPortOutputText=wtWebioEA2x2ERP_24VPortOutputText, wtWebioEA12x6RelAlarmFtpText=wtWebioEA12x6RelAlarmFtpText, wtWebioEA2x2ERP_24VPortLogicFunction=wtWebioEA2x2ERP_24VPortLogicFunction, wtWebioEA12x6RelBinaryUdpPeerRemoteIpAddr=wtWebioEA12x6RelBinaryUdpPeerRemoteIpAddr, wtWebioEA12x12TsEnable=wtWebioEA12x12TsEnable, wtWebioEA6x6StTzStartMin=wtWebioEA6x6StTzStartMin, wtIpWatcherOutputPortTable=wtIpWatcherOutputPortTable, wtIpWatcher_24VSessCntrl=wtIpWatcher_24VSessCntrl, wtWebioEA6x6Config=wtWebioEA6x6Config, wtWebioEA6x6SessCntrl=wtWebioEA6x6SessCntrl, wtWebioEA12x12BinaryTcpClientApplicationMode=wtWebioEA12x12BinaryTcpClientApplicationMode, wtWebioEA24oemBinaryUdpPeerApplicationMode=wtWebioEA24oemBinaryUdpPeerApplicationMode, wtWebioEA2x2LCShutDownView=wtWebioEA2x2LCShutDownView, wtIpWatcher_24VSubnetMask=wtIpWatcher_24VSubnetMask, wtWebioEA2x2Alert24=wtWebioEA2x2Alert24, wtWebCount6Alert11=wtWebCount6Alert11, wtWebioEA2x2_24VSyslogServerIP=wtWebioEA2x2_24VSyslogServerIP, wtIpWatcher_24VClockHrs=wtIpWatcher_24VClockHrs, wtWebioEA24oemAlert13=wtWebioEA24oemAlert13, wtWebioEA12x6RelPortLogicFunction=wtWebioEA12x6RelPortLogicFunction, wtWebioEA6x6Alert13=wtWebioEA6x6Alert13, wtWebioEA12x6RelERPStTzStartMonth=wtWebioEA12x6RelERPStTzStartMonth, wtWebioEA2x2ERP_24VAlert9=wtWebioEA2x2ERP_24VAlert9, wtWebioEA24oemSnmpSystemTrapEnable=wtWebioEA24oemSnmpSystemTrapEnable, wtWebioEA2x2BinaryTcpClientApplicationMode=wtWebioEA2x2BinaryTcpClientApplicationMode, wtWebioEA12x6RelDeviceText=wtWebioEA12x6RelDeviceText, wtTrapReceiver2x2SubnetMask=wtTrapReceiver2x2SubnetMask, wtWebioEA2x2Alert4=wtWebioEA2x2Alert4, wtTrapReceiver2x2Action=wtTrapReceiver2x2Action, wtWebioEA6x6Alert16=wtWebioEA6x6Alert16, wtIpWatcher_24VAlert25=wtIpWatcher_24VAlert25, wtIpWatcherAlarmTcpTrapTxEnable=wtIpWatcherAlarmTcpTrapTxEnable, wtWebioEA2x2AlarmTcpText=wtWebioEA2x2AlarmTcpText, wtWebioEA6x6Alert5=wtWebioEA6x6Alert5, wtTrapReceiver2x2ButtonPortEntry=wtTrapReceiver2x2ButtonPortEntry, wtWebioEA12x6RelTimeDate=wtWebioEA12x6RelTimeDate, wtWebAlarm6x6Alert1=wtWebAlarm6x6Alert1, wtWebCount6SyslogEnable=wtWebCount6SyslogEnable, wtTrapReceiver2x2AddConfig=wtTrapReceiver2x2AddConfig, wtTrapReceiver2x2ClockDay=wtTrapReceiver2x2ClockDay, wtWebioEA12x6RelERPClockMin=wtWebioEA12x6RelERPClockMin, wtIpWatcher_24VTzOffsetMin=wtIpWatcher_24VTzOffsetMin, wtWebioEA2x2ERP_24VMfDeviceTyp=wtWebioEA2x2ERP_24VMfDeviceTyp, wtWebioEA2x2TzOffsetHrs=wtWebioEA2x2TzOffsetHrs, wtWebioEA2x2_24VStTzStartMin=wtWebioEA2x2_24VStTzStartMin, wtWebioEA12x12UdpAdminPort=wtWebioEA12x12UdpAdminPort, wtIpWatcherAlarmCount=wtIpWatcherAlarmCount, wtWebCount6InputEntry=wtWebCount6InputEntry, wtWebioEA12x6RelInputEntry=wtWebioEA12x6RelInputEntry, wtWebAlarm6x6MfDeviceTyp=wtWebAlarm6x6MfDeviceTyp, wtWebioEA2x2_24VPorts=wtWebioEA2x2_24VPorts, wtWebioEA2x2_24VBinary=wtWebioEA2x2_24VBinary, wtWebioEA6x6BinaryConnectedIpAddr=wtWebioEA6x6BinaryConnectedIpAddr, wtWebCount6ReportTable=wtWebCount6ReportTable, wtWebioEA2x2ERPSyslogServerPort=wtWebioEA2x2ERPSyslogServerPort, wtWebioEA12x6RelAlarmSnmpManagerIP=wtWebioEA12x6RelAlarmSnmpManagerIP, wtWebioEA2x2MailAuthUser=wtWebioEA2x2MailAuthUser, wtWebioEA24oemStTzStartMode=wtWebioEA24oemStTzStartMode, wtWebioEA12x6RelAlarmEnable=wtWebioEA12x6RelAlarmEnable, wtWebioEA2x2ERPSetOutput=wtWebioEA2x2ERPSetOutput, wtWebioEA2x2PortInputMode=wtWebioEA2x2PortInputMode, wtWebioEA12x6RelERPPortOutputGroupMode=wtWebioEA12x6RelERPPortOutputGroupMode, wtWebioEA24oemAlert27=wtWebioEA24oemAlert27, wtWebAlarm6x6AlarmMailTrgClearText=wtWebAlarm6x6AlarmMailTrgClearText, wtWebioEA2x2_24VTsEnable=wtWebioEA2x2_24VTsEnable, wtWebioEA24oemStTzStopWday=wtWebioEA24oemStTzStopWday, wtWebioEA2x2ERPInputTable=wtWebioEA2x2ERPInputTable)
mibBuilder.exportSymbols('Webio-Digital-MIB-US', wtIpWatcher_24VAlarmSnmpManagerIP=wtIpWatcher_24VAlarmSnmpManagerIP, wtIpWatcher_24VAlarmGlobalEnable=wtIpWatcher_24VAlarmGlobalEnable, wtWebioEA2x2ERP_24VBinaryUdpPeerLocalPort=wtWebioEA2x2ERP_24VBinaryUdpPeerLocalPort, wtWebioEA12x6RelAlert21=wtWebioEA12x6RelAlert21, wtWebioEA6x6BinaryConnectedPort=wtWebioEA6x6BinaryConnectedPort, wtWebioEA2x2ERPAlert11=wtWebioEA2x2ERPAlert11, wtWebioEA2x2ERP_24VMailAdName=wtWebioEA2x2ERP_24VMailAdName, wtWebioEA2x2ERP_24VOutputValue=wtWebioEA2x2ERP_24VOutputValue, wtIpWatcherAlarmIfEntry=wtIpWatcherAlarmIfEntry, wtWebioEA2x2_24VPortInputFilter=wtWebioEA2x2_24VPortInputFilter, wtTrapReceiver2x2ClockHrs=wtTrapReceiver2x2ClockHrs, wtWebioEA2x2_24VSetOutput=wtWebioEA2x2_24VSetOutput, wtWebioEA2x2MfInternet=wtWebioEA2x2MfInternet, wtWebioEA12x6RelERPAlarmTcpReleaseText=wtWebioEA12x6RelERPAlarmTcpReleaseText, wtWebioEA2x2_24VDiagErrorMessage=wtWebioEA2x2_24VDiagErrorMessage, wtIpWatcher_24VAlert14=wtIpWatcher_24VAlert14, wtWebioEA2x2ERP_24VAlert8=wtWebioEA2x2ERP_24VAlert8, wtWebioEA2x2_24VClockMin=wtWebioEA2x2_24VClockMin, wtWebioEA12x6RelERPPortInputMode=wtWebioEA12x6RelERPPortInputMode, wtIpWatcher_24VAlarmTcpIpAddr=wtIpWatcher_24VAlarmTcpIpAddr, wtWebioEA12x6RelDiagBinaryError=wtWebioEA12x6RelDiagBinaryError, wtWebioEA24oemBinaryUdpPeerRemoteIpAddr=wtWebioEA24oemBinaryUdpPeerRemoteIpAddr, wtWebioEA6x6SNMP=wtWebioEA6x6SNMP, wtWebioEA6x6FTPServerControlPort=wtWebioEA6x6FTPServerControlPort, wtWebioEA6x6SnmpEnable=wtWebioEA6x6SnmpEnable, wtWebioEA12x6RelOutputModeBit=wtWebioEA12x6RelOutputModeBit, wtWebioEA12x6RelAlarmIfTable=wtWebioEA12x6RelAlarmIfTable, wtWebAlarm6x6AlarmSnmpTrapText=wtWebAlarm6x6AlarmSnmpTrapText, wtWebioEA2x2_24VTzOffsetMin=wtWebioEA2x2_24VTzOffsetMin, wtWebioEA2x2ERP_24VAlert20=wtWebioEA2x2ERP_24VAlert20, wtTrapReceiver2x2SessCntrlPassword=wtTrapReceiver2x2SessCntrlPassword, wtIpWatcher_24VMailReply=wtIpWatcher_24VMailReply, wtWebioEA12x6RelERPAlarmMaxCounterValue=wtWebioEA12x6RelERPAlarmMaxCounterValue, wtWebioEA12x6RelBinaryTcpClientApplicationMode=wtWebioEA12x6RelBinaryTcpClientApplicationMode, wtWebioEA2x2_24VAlert17=wtWebioEA2x2_24VAlert17, wtWebioEA6x6AlarmFtpDataPort=wtWebioEA6x6AlarmFtpDataPort, wtWebioEA2x2InputEntry=wtWebioEA2x2InputEntry, wtWebioEA12x6RelPortPulsePolarity=wtWebioEA12x6RelPortPulsePolarity, wtWebioEA12x12BinaryTcpClientServerIpAddr=wtWebioEA12x12BinaryTcpClientServerIpAddr, wtWebioEA12x6RelSafetyTimeout=wtWebioEA12x6RelSafetyTimeout, wtWebioEA2x2_24VAlarm=wtWebioEA2x2_24VAlarm, wtWebioEA12x6RelERPAlarmInterval=wtWebioEA12x6RelERPAlarmInterval, wtWebioEA2x2ERP_24VMfAddr=wtWebioEA2x2ERP_24VMfAddr, wtWebioEA24oemBinaryTcpClientLocalPort=wtWebioEA24oemBinaryTcpClientLocalPort, wtWebioEA24oemAlert22=wtWebioEA24oemAlert22, wtWebioEA2x2_24VOutputs=wtWebioEA2x2_24VOutputs, wtWebioEA24oemAlert32=wtWebioEA24oemAlert32, wtWebioEA2x2ERPAlert9=wtWebioEA2x2ERPAlert9, wtWebioEA6x6BinaryTcpServerLocalPort=wtWebioEA6x6BinaryTcpServerLocalPort, wtWebioEA2x2ERP_24VAlert1=wtWebioEA2x2ERP_24VAlert1, wtIpWatcherAlarmFtpTrgClearText=wtIpWatcherAlarmFtpTrgClearText, wtWebAlarm6x6Config=wtWebAlarm6x6Config, wtWebioEA2x2PortOutputText=wtWebioEA2x2PortOutputText, wtWebioEA12x12BinaryTcpClientInactivity=wtWebioEA12x12BinaryTcpClientInactivity, wtWebioEA24oemLoadControlView=wtWebioEA24oemLoadControlView, wtWebioEA2x2ClockYear=wtWebioEA2x2ClockYear, wtWebioEA24oemFTPAccount=wtWebioEA24oemFTPAccount, wtWebioEA12x6RelERPAlarmSnmpTrapText=wtWebioEA12x6RelERPAlarmSnmpTrapText, wtIpWatcherAlarmFtpReleaseText=wtIpWatcherAlarmFtpReleaseText, wtWebioEA12x6RelERPAlertDiag=wtWebioEA12x6RelERPAlertDiag, wtIpWatcherPorts=wtIpWatcherPorts, wtWebioEA12x6RelDiagErrorMessage=wtWebioEA12x6RelDiagErrorMessage, wtWebioEA2x2AlarmTimerCron=wtWebioEA2x2AlarmTimerCron, wtWebioEA12x6RelPortOutputText=wtWebioEA12x6RelPortOutputText, wtWebioEA2x2_24VAlert18=wtWebioEA2x2_24VAlert18, wtWebioEA12x6RelBinaryIfTable=wtWebioEA12x6RelBinaryIfTable, wtIpWatcherTsEnable=wtIpWatcherTsEnable, wtWebAlarm6x6Mail=wtWebAlarm6x6Mail, wtWebioEA12x12BinaryTcpClientServerPassword=wtWebioEA12x12BinaryTcpClientServerPassword, wtWebioEA6x6SessCntrlAdminPassword=wtWebioEA6x6SessCntrlAdminPassword, wtWebioEA2x2ERPClockMin=wtWebioEA2x2ERPClockMin, wtWebCount6ReportTcpPort=wtWebCount6ReportTcpPort, wtIpWatcherDeviceClock=wtIpWatcherDeviceClock, wtWebAlarm6x6AlarmIfEntry=wtWebAlarm6x6AlarmIfEntry, wtIpWatcherSyslogEnable=wtIpWatcherSyslogEnable, wtWebioEA2x2AlarmMailAddr=wtWebioEA2x2AlarmMailAddr, wtWebAlarm6x6SyslogServerPort=wtWebAlarm6x6SyslogServerPort, wtWebCount6InputPortTable=wtWebCount6InputPortTable, wtWebioEA2x2OutputNo=wtWebioEA2x2OutputNo, wtIpWatcher_24VPortInputFilter=wtIpWatcher_24VPortInputFilter, wtWebioEA24oemFTPPassword=wtWebioEA24oemFTPPassword, wtWebioEA12x6RelAlarmTcpReleaseText=wtWebioEA12x6RelAlarmTcpReleaseText, wtWebioEA12x12Alert16=wtWebioEA12x12Alert16, wtWebCount6ReportTcpText=wtWebCount6ReportTcpText, wtWebioEA2x2Alert10=wtWebioEA2x2Alert10, wtWebioEA2x2_24VAlarmTcpPort=wtWebioEA2x2_24VAlarmTcpPort, wtWebioEA6x6AlarmSyslogIpAddr=wtWebioEA6x6AlarmSyslogIpAddr, wtWebioEA2x2ERPBinaryTable=wtWebioEA2x2ERPBinaryTable, wtWebioEA2x2_24VDnsServer2=wtWebioEA2x2_24VDnsServer2, wtIpWatcherAlarmTcpIpAddr=wtIpWatcherAlarmTcpIpAddr, wtIpWatcherAlarmName=wtIpWatcherAlarmName, wtIpWatcher_24VSyslogSystemMessagesEnable=wtIpWatcher_24VSyslogSystemMessagesEnable, wtWebioEA24oemTimeZone=wtWebioEA24oemTimeZone, wtWebioEA24oemPortLogicFunction=wtWebioEA24oemPortLogicFunction, wtWebioEA12x6RelERPBinaryTcpClientServerHttpPort=wtWebioEA12x6RelERPBinaryTcpClientServerHttpPort, wtIpWatcherAlert12=wtIpWatcherAlert12, wtIpWatcher_24VManufact=wtIpWatcher_24VManufact, wtWebioEA12x6RelDeviceClock=wtWebioEA12x6RelDeviceClock, wtWebioEA6x6AlarmTcpReleaseText=wtWebioEA6x6AlarmTcpReleaseText, wtWebAlarm6x6AlarmSnmpManagerIP=wtWebAlarm6x6AlarmSnmpManagerIP, wtWebioEA2x2ERPGetHeaderEnable=wtWebioEA2x2ERPGetHeaderEnable, wtTrapReceiver2x2SystemTimerEntry=wtTrapReceiver2x2SystemTimerEntry, wtIpWatcher_24VTimeDate=wtIpWatcher_24VTimeDate, wtWebioEA6x6AlarmSnmpTrapReleaseText=wtWebioEA6x6AlarmSnmpTrapReleaseText, wtWebioEA2x2ERP_24VOutputModeEntry=wtWebioEA2x2ERP_24VOutputModeEntry, wtIpWatcher_24VAlarmFtpTrgClearText=wtIpWatcher_24VAlarmFtpTrgClearText, wtWebioEA6x6PortLogicInputMask=wtWebioEA6x6PortLogicInputMask, wtIpWatcherSessCntrl=wtIpWatcherSessCntrl, wtIpWatcher_24VAlarmFtpOption=wtIpWatcher_24VAlarmFtpOption, wtWebioEA2x2ERPStTzOffsetHrs=wtWebioEA2x2ERPStTzOffsetHrs, wtWebioEA12x12InOut=wtWebioEA12x12InOut, wtWebioEA2x2ERPAddConfig=wtWebioEA2x2ERPAddConfig, wtWebioEA2x2ERP_24VBinaryTable=wtWebioEA2x2ERP_24VBinaryTable, wtWebioEA2x2ERPAlarmIfEntry=wtWebioEA2x2ERPAlarmIfEntry, wtWebioEA6x6Ports=wtWebioEA6x6Ports, wtIpWatcher_24VAlarmSyslogTrapTxEnable=wtIpWatcher_24VAlarmSyslogTrapTxEnable, wtWebioEA12x6RelPortInputText=wtWebioEA12x6RelPortInputText, wtWebioEA2x2ERPGateway=wtWebioEA2x2ERPGateway, wtWebioEA12x12StTzStopWday=wtWebioEA12x12StTzStopWday, wtTrapReceiver2x2WatchListIfTable=wtTrapReceiver2x2WatchListIfTable, wtWebCount6ReportNo=wtWebCount6ReportNo, wtWebioEA2x2ERP_24VTimeServer2=wtWebioEA2x2ERP_24VTimeServer2, wtWebioEA12x6RelERPMailServer=wtWebioEA12x6RelERPMailServer, wtWebioEA2x2ERPSessCntrlConfigMode=wtWebioEA2x2ERPSessCntrlConfigMode, wtWebioEA12x6RelERPPortLogicOutputInverter=wtWebioEA12x6RelERPPortLogicOutputInverter, wtWebCount6SyslogSystemMessagesEnable=wtWebCount6SyslogSystemMessagesEnable, wtWebioEA12x12AlarmInputTrigger=wtWebioEA12x12AlarmInputTrigger, wtWebioEA6x6FTPOption=wtWebioEA6x6FTPOption, wtIpWatcherTsSyncTime=wtIpWatcherTsSyncTime, wtWebioEA24oemBinaryModeNo=wtWebioEA24oemBinaryModeNo, wtWebioEA12x12OutputModeEntry=wtWebioEA12x12OutputModeEntry, wtWebioEA2x2ERPBinaryUdpPeerRemoteIpAddr=wtWebioEA2x2ERPBinaryUdpPeerRemoteIpAddr, wtTrapReceiver2x2Alert8=wtTrapReceiver2x2Alert8, wtWebAlarm6x6AddConfig=wtWebAlarm6x6AddConfig, wtWebAlarm6x6InputEntry=wtWebAlarm6x6InputEntry, wtWebioEA2x2ERP_24VWayBack=wtWebioEA2x2ERP_24VWayBack, wtWebCount6FTPEnable=wtWebCount6FTPEnable, wtWebioEA24oemAlert30=wtWebioEA24oemAlert30, wtIpWatcher_24VMfAddr=wtIpWatcher_24VMfAddr, wtWebioEA2x2ERP_24VOutputNo=wtWebioEA2x2ERP_24VOutputNo, wtWebioEA2x2ERPAlarmInterval=wtWebioEA2x2ERPAlarmInterval, wtWebioEA2x2ERPDiagBinaryError=wtWebioEA2x2ERPDiagBinaryError, wtWebioEA12x12SessCntrlAdminPassword=wtWebioEA12x12SessCntrlAdminPassword, wtWebioEA12x12BinaryTcpServerLocalPort=wtWebioEA12x12BinaryTcpServerLocalPort, wtWebAlarm6x6DeviceLocation=wtWebAlarm6x6DeviceLocation, wtIpWatcher_24VAlert28=wtIpWatcher_24VAlert28, wtWebCount6MfDeviceTyp=wtWebCount6MfDeviceTyp, wtWebioEA24oemAlarmSystemTrigger=wtWebioEA24oemAlarmSystemTrigger, wtWebioEA12x6RelERPOutputState=wtWebioEA12x6RelERPOutputState, wtWebioEA12x12BinaryTcpClientServerPort=wtWebioEA12x12BinaryTcpClientServerPort, wtWebAlarm6x6FTPOption=wtWebAlarm6x6FTPOption, wtIpWatcherAlarmUdpReleaseText=wtIpWatcherAlarmUdpReleaseText, wtTrapReceiver2x2ActionIfTable=wtTrapReceiver2x2ActionIfTable, wtWebCount6PortInputName=wtWebCount6PortInputName, wtWebAlarm6x6SNMP=wtWebAlarm6x6SNMP, wtIpWatcher_24VStTzStartMode=wtIpWatcher_24VStTzStartMode, wtTrapReceiver2x2Alert1=wtTrapReceiver2x2Alert1, wtTrapReceiver2x2ActionOutputAction=wtTrapReceiver2x2ActionOutputAction, wtTrapReceiver2x2OutputMode=wtTrapReceiver2x2OutputMode, wtWebioEA2x2_24VStTzStartMode=wtWebioEA2x2_24VStTzStartMode, wtWebioEA24oemPortOutputName=wtWebioEA24oemPortOutputName, wtWebioEA2x2ERP_24VDiag=wtWebioEA2x2ERP_24VDiag, wtWebioEA2x2AlarmUdpPort=wtWebioEA2x2AlarmUdpPort, wtWebioEA6x6FTPEnable=wtWebioEA6x6FTPEnable, wtWebioEA12x6RelAlert20=wtWebioEA12x6RelAlert20, wtWebioEA2x2_24VPortPulsePolarity=wtWebioEA2x2_24VPortPulsePolarity, wtWebioEA12x6RelUdpAdminPort=wtWebioEA12x6RelUdpAdminPort, wtWebCount6SnmpCommunityStringReadWrite=wtWebCount6SnmpCommunityStringReadWrite, wtIpWatcher_24VOutputNo=wtIpWatcher_24VOutputNo, wtWebioEA6x6AlarmUdpIpAddr=wtWebioEA6x6AlarmUdpIpAddr, wtWebioEA6x6DiagBinaryError=wtWebioEA6x6DiagBinaryError, wtTrapReceiver2x2SNMP=wtTrapReceiver2x2SNMP, wtIpWatcherAlarmMailTrgClearText=wtIpWatcherAlarmMailTrgClearText, wtWebCount6DeviceContact=wtWebCount6DeviceContact, wtWebioEA2x2Config=wtWebioEA2x2Config, wtWebioEA2x2ERP_24VAlarmSnmpTrapText=wtWebioEA2x2ERP_24VAlarmSnmpTrapText, wtWebioEA6x6AddConfig=wtWebioEA6x6AddConfig, wtWebioEA2x2StTzStartMin=wtWebioEA2x2StTzStartMin, wtWebioEA12x12MfHotline=wtWebioEA12x12MfHotline, wtWebioEA2x2SnmpEnable=wtWebioEA2x2SnmpEnable, wtWebAlarm6x6OutputEntry=wtWebAlarm6x6OutputEntry, wtWebioEA12x6RelAlarmFtpFileName=wtWebioEA12x6RelAlarmFtpFileName, wtWebioEA24oemMailAuthUser=wtWebioEA24oemMailAuthUser, wtWebioEA2x2ERP_24VAlarmSyslogPort=wtWebioEA2x2ERP_24VAlarmSyslogPort, wtWebCount6Basic=wtWebCount6Basic) |
raspberry = True
display_device = "/dev/fb1"
mouse_device = "/dev/input/event0"
mouse_driver = "TSLIB"
if raspberry:
mouse_type = "pitft_touchscreen"
touch_xmin = 345
touch_xmax = 3715
touch_ymin = 184
touch_ymax = 3853
else:
mouse_type = "pygame"
if raspberry:
screen_fullscreen = True
else:
screen_fullscreen = False
screen_width = 480
screen_height = 320
loglevel = "DEBUG"
if raspberry:
mpdip = "127.0.0.1"
mpdport = 6600
else:
mpdip = "192.168.1.201"
mpdport = 6600
font = "Comic Sans MS"
font_size = 32
title_text_color = (255, 255, 255)
album_text_color = (255, 255, 255)
artist_text_color = (255, 255, 255)
coverArtSize = 196 | raspberry = True
display_device = '/dev/fb1'
mouse_device = '/dev/input/event0'
mouse_driver = 'TSLIB'
if raspberry:
mouse_type = 'pitft_touchscreen'
touch_xmin = 345
touch_xmax = 3715
touch_ymin = 184
touch_ymax = 3853
else:
mouse_type = 'pygame'
if raspberry:
screen_fullscreen = True
else:
screen_fullscreen = False
screen_width = 480
screen_height = 320
loglevel = 'DEBUG'
if raspberry:
mpdip = '127.0.0.1'
mpdport = 6600
else:
mpdip = '192.168.1.201'
mpdport = 6600
font = 'Comic Sans MS'
font_size = 32
title_text_color = (255, 255, 255)
album_text_color = (255, 255, 255)
artist_text_color = (255, 255, 255)
cover_art_size = 196 |
# Copyright 2017 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
def CheckChangeOnUpload(*args):
return _CommonChecks(*args)
def CheckChangeOnCommit(*args):
return _CommonChecks(*args)
def _CommonChecks(input_api, output_api):
cwd = input_api.PresubmitLocalPath()
path = input_api.os_path
files = [path.basename(f.LocalPath()) for f in input_api.AffectedFiles()]
tests = []
if 'css_checker.py' in files:
tests.append(path.join(cwd, 'css_checker_test.py'))
utils_changed = 'regex_check.py' in files or 'test_util.py' in files
if utils_changed or any(f for f in files if f.startswith('html_checker')):
tests.append(path.join(cwd, 'html_checker_test.py'))
if utils_changed or any(f for f in files if f.startswith('js_checker')):
tests.append(path.join(cwd, 'js_checker_test.py'))
tests.append(path.join(cwd, 'js_checker_eslint_test.py'))
if utils_changed or any(f for f in files if f.startswith('resource_checker')):
tests.append(path.join(cwd, 'resource_checker_test.py'))
return input_api.canned_checks.RunUnitTests(input_api, output_api, tests)
| def check_change_on_upload(*args):
return __common_checks(*args)
def check_change_on_commit(*args):
return __common_checks(*args)
def __common_checks(input_api, output_api):
cwd = input_api.PresubmitLocalPath()
path = input_api.os_path
files = [path.basename(f.LocalPath()) for f in input_api.AffectedFiles()]
tests = []
if 'css_checker.py' in files:
tests.append(path.join(cwd, 'css_checker_test.py'))
utils_changed = 'regex_check.py' in files or 'test_util.py' in files
if utils_changed or any((f for f in files if f.startswith('html_checker'))):
tests.append(path.join(cwd, 'html_checker_test.py'))
if utils_changed or any((f for f in files if f.startswith('js_checker'))):
tests.append(path.join(cwd, 'js_checker_test.py'))
tests.append(path.join(cwd, 'js_checker_eslint_test.py'))
if utils_changed or any((f for f in files if f.startswith('resource_checker'))):
tests.append(path.join(cwd, 'resource_checker_test.py'))
return input_api.canned_checks.RunUnitTests(input_api, output_api, tests) |
messages = ["<b>Shoulder-arm stretch</b>Time to do Shoulder arm stretch, keep one arm horizontally stretched in front of your chest. Push this arm with your other arm towards you until you feel a mild tension in your shoulder. Hold this position briefly, and repeat the exercise for your other arm. Don't do this more than 40 seconds.",
"<b>Finger stretch</b> Time to do finger stretch, Separate and stretch your fingers until a mild tension is felt, and hold this for 10 seconds. Relax, then bend your fingers at the knuckles, and hold again for 10 seconds. Repeat this exercise once more. Time duration is 40 seconds.",
"<b>Neck tilt stretch</b> Time to do neck tilt streatch, Start with your head in a comfortable straight position. Then, slowly tilt your head to your right shoulder to gently stretch the muscles on the left side of your neck. Hold this position for 5 seconds. Then, tilt your head to the left side to stretch your other side. Do this twice for each side. Time duration is 30 seconds.",
"<b>Backward shoulder stretch</b> Time to do backward shoulder stretch, Interlace your fingers behind your back. Then turn your elbows gently inward, while straightening your arms. Hold this position for 5 to 15 seconds, and repeat this exercise twice. Time duration is 30 seconds.",
"<b>Move the eyes</b> Look at the upper left corner of the outside border of your monitor. Follow the border slowly to the upper right corner. Continue to the next corner, until you got around it two times. Then, reverse the exercise. Total time duration is 32 seconds.",
"<b>Train focusing the eyes</b> Look for the furthest point you can see behind your monitor. Focus your eyes on the remote point. Then focus on your monitor border. Repeat it. If you cannot look very far from your monitor, face another direction with a longer view. Then switch your focus between a distant object and a pen held at the same distance from your eyes as your monitor.",
"<b>Look into the darkness</b> Cover your eyes with your palms in such way that you can still open your eyelids. Now open your eyes and look into the darkness of your palms. This exercise gives better relief to your eyes compared to simply closing them. You can do this for 20 seconds",
"<b>Move the shoulders</b> Spin your right arm slowly round like a plane propeller beside your body. Do this 4 times forwards, 4 times backwards and relax for a few seconds. Repeat with the left arm. You can do this for 30 seconds.",
"<b>Move the shoulders up and down</b> Put your hands on the armrests of your chair when you are sitting down and press your body up until your arms are straight. Try to move your head even further by lowering your shoulders. Slowly move back into your chair.Please do this 30 seconds only.",
"<b>Turn your head</b> Turn your head left and keep it there for 2 seconds. Then turn your head right and keep it there for 2 seconds. You can do this for 2 seconds."
"<b>Relax the eyes</b> Close your eyes and breathe out as long as you can and try to relax. When breathing in, again do it as slowly as possible. Try to count slowly to 8 for each time you breathe in and out. To extra relax your eyes, try closing them in micro pauses too. You can do this for 12 seconds."]
| messages = ["<b>Shoulder-arm stretch</b>Time to do Shoulder arm stretch, keep one arm horizontally stretched in front of your chest. Push this arm with your other arm towards you until you feel a mild tension in your shoulder. Hold this position briefly, and repeat the exercise for your other arm. Don't do this more than 40 seconds.", '<b>Finger stretch</b> Time to do finger stretch, Separate and stretch your fingers until a mild tension is felt, and hold this for 10 seconds. Relax, then bend your fingers at the knuckles, and hold again for 10 seconds. Repeat this exercise once more. Time duration is 40 seconds.', '<b>Neck tilt stretch</b> Time to do neck tilt streatch, Start with your head in a comfortable straight position. Then, slowly tilt your head to your right shoulder to gently stretch the muscles on the left side of your neck. Hold this position for 5 seconds. Then, tilt your head to the left side to stretch your other side. Do this twice for each side. Time duration is 30 seconds.', '<b>Backward shoulder stretch</b> Time to do backward shoulder stretch, Interlace your fingers behind your back. Then turn your elbows gently inward, while straightening your arms. Hold this position for 5 to 15 seconds, and repeat this exercise twice. Time duration is 30 seconds.', '<b>Move the eyes</b> Look at the upper left corner of the outside border of your monitor. Follow the border slowly to the upper right corner. Continue to the next corner, until you got around it two times. Then, reverse the exercise. Total time duration is 32 seconds.', '<b>Train focusing the eyes</b> Look for the furthest point you can see behind your monitor. Focus your eyes on the remote point. Then focus on your monitor border. Repeat it. If you cannot look very far from your monitor, face another direction with a longer view. Then switch your focus between a distant object and a pen held at the same distance from your eyes as your monitor.', '<b>Look into the darkness</b> Cover your eyes with your palms in such way that you can still open your eyelids. Now open your eyes and look into the darkness of your palms. This exercise gives better relief to your eyes compared to simply closing them. You can do this for 20 seconds', '<b>Move the shoulders</b> Spin your right arm slowly round like a plane propeller beside your body. Do this 4 times forwards, 4 times backwards and relax for a few seconds. Repeat with the left arm. You can do this for 30 seconds.', '<b>Move the shoulders up and down</b> Put your hands on the armrests of your chair when you are sitting down and press your body up until your arms are straight. Try to move your head even further by lowering your shoulders. Slowly move back into your chair.Please do this 30 seconds only.', '<b>Turn your head</b> Turn your head left and keep it there for 2 seconds. Then turn your head right and keep it there for 2 seconds. You can do this for 2 seconds.<b>Relax the eyes</b> Close your eyes and breathe out as long as you can and try to relax. When breathing in, again do it as slowly as possible. Try to count slowly to 8 for each time you breathe in and out. To extra relax your eyes, try closing them in micro pauses too. You can do this for 12 seconds.'] |
myfile=open('country.txt')
print(myfile.read())
myfile.close()
#with open('country.txt',mode='r') as myfile:
# print(myfile.read())
with open('country.txt',mode='a') as f:
print(f.write("'IN':'INDIAN'"))
| myfile = open('country.txt')
print(myfile.read())
myfile.close()
with open('country.txt', mode='a') as f:
print(f.write("'IN':'INDIAN'")) |
L_af = "af" # Afrikaans
L_am = "am" # Amharic
L_ar = "ar" # Arabic
L_az = "az" # Azerbaijani
L_be = "be" # Belarusian
L_bg = "bg" # Bulgarian
L_bn = "bn" # Bengali
L_bs = "bs" # Bosnian
L_ca = "ca" # Catalan
L_ceb = "ceb" # Chechen
L_co = "co" # Corsican
L_cs = "cs" # Czech
L_cy = "cy" # Welsh
L_da = "da" # Danish
L_de = "de" # German
L_el = "el" # Greek
L_en = "en" # English
L_eo = "eo" # Esperanto
L_es = "es" # Spanish
L_et = "et" # Estonian
L_eu = "eu" # Basque
L_fa = "fa" # Persian
L_fi = "fi" # Finnish
L_fr = "fr" # French
L_fy = "fy" # WesternFrisian
L_ga = "ga" # Irish
L_gd = "gd" # Gaelic
L_gl = "gl" # Galician
L_gu = "gu" # Gujarati
L_ha = "ha" # Hausa
L_haw = "haw" # ???
L_hi = "hi" # Hindi
L_hmn = "hmn" # ???
L_hr = "hr" # Croatian
L_ht = "ht" # Haitian
L_hu = "hu" # Hungarian
L_hy = "hy" # Armenian
L_id = "id" # Indonesian
L_ig = "ig" # Igbo
L_is = "is" # Icelandic
L_it = "it" # Italian
L_iw = "iw" # Hebrew
L_ja = "ja" # Japanese
L_jw = "jw" # ???
L_ka = "ka" # Georgian
L_kk = "kk" # Kazakh
L_km = "km" # Central Khmer
L_kn = "kn" # Kannada
L_ko = "ko" # Korean
L_ku = "ku" # Kurdish
L_ky = "ky" # Kirghiz
L_la = "la" # Latin
L_lb = "lb" # Luxembourgish
L_lo = "lo" # Lao
L_lt = "lt" # Lithuanian
L_lv = "lv" # Latvian
L_mg = "mg" # Malagasy
L_mi = "mi" # Maori
L_mk = "mk" # Macedonian
L_ml = "ml" # Malayalam
L_mn = "mn" # Mongolian
L_mr = "mr" # Marathi
L_ms = "ms" # Malay
L_mt = "mt" # Maltese
L_my = "my" # Burmese
L_ne = "ne" # Nepali
L_nl = "nl" # Dutch
L_no = "no" # Norwegian
L_ny = "ny" # Chichewa
L_pa = "pa" # Punjabi
L_pl = "pl" # Polish
L_ps = "ps" # Pashto
L_pt = "pt" # Portuguese
L_ro = "ro" # Romanian
L_ru = "ru" # Russian
L_sd = "sd" # Sindhi
L_si = "si" # Sinhala
L_sk = "sk" # Slovak
L_sl = "sl" # Slovenian
L_sm = "sm" # Samoan
L_sn = "sn" # Shona
L_so = "so" # Somali
L_sq = "sq" # Albanian
L_sr = "sr" # Serbian
L_st = "st" # Southern Sotho
L_su = "su" # Sundanese
L_sv = "sv" # Swedish
L_sw = "sw" # Swahili
L_ta = "ta" # Tamil
L_te = "te" # Telugu
L_tg = "tg" # Tajik
L_th = "th" # Thai
L_tl = "tl" # Tagalog
L_tr = "tr" # Turkish
L_uk = "uk" # Ukrainian
L_ur = "ur" # Urdu
L_uz = "uz" # Uzbek
L_vi = "vi" # Vietnamese
L_xh = "xh" # Xhosa
L_yi = "yi" # Yiddish
L_yo = "yo" # Yoruba
L_zh = "zh" # Chinese
L_zh_CN = "zh_CN" # Chinese
L_zh_TW = "zh_TW" # Chinese
L_zu = "zu" # Zulu
# define a map of languages to their 2-letter codes
langList = {
L_af: "afrikaans",
L_am: "amharic",
L_ar: "arabic",
L_az: "azerbaijani",
L_be: "belarusian",
L_bg: "bulgarian",
L_bn: "bengali",
L_bs: "bosnian",
L_ca: "catalan",
L_ceb: "chechen",
L_co: "corsican",
L_cs: "czech",
L_cy: "welsh",
L_da: "danish",
L_de: "german",
L_el: "greek",
L_en: "english",
L_eo: "esperanto",
L_es: "spanish",
L_et: "estonian",
L_eu: "basque",
L_fa: "persian",
L_fi: "finnish",
L_fr: "french",
L_fy: "westernFrisian",
L_ga: "irish",
L_gd: "gaelic",
L_gl: "galician",
L_gu: "gujarati",
L_ha: "hausa",
L_haw: "haw",
L_hi: "hindi",
L_hmn: "hmn",
L_hr: "croatian",
L_ht: "haitian",
L_hu: "hungarian",
L_hy: "armenian",
L_id: "indonesian",
L_ig: "igbo",
L_is: "icelandic",
L_it: "italian",
L_iw: "hebrew",
L_ja: "japanese",
L_jw: "jw",
L_ka: "georgian",
L_kk: "kazakh",
L_km: "central khmer",
L_kn: "kannada",
L_ko: "korean",
L_ku: "kurdish",
L_ky: "kirghiz",
L_la: "katin",
L_lb: "luxembourgish",
L_lo: "lao",
L_lt: "lithuanian",
L_lv: "latvian",
L_mg: "malagasy",
L_mi: "maori",
L_mk: "macedonian",
L_ml: "malayalam",
L_mn: "mongolian",
L_mr: "marathi",
L_ms: "malay",
L_mt: "maltese",
L_my: "burmese",
L_ne: "nepali",
L_nl: "dutch",
L_no: "norwegian",
L_ny: "chichewa",
L_pa: "punjabi",
L_pl: "polish",
L_ps: "pashto",
L_pt: "portuguese",
L_ro: "romanian",
L_ru: "russian",
L_sd: "sindhi",
L_si: "sinhala",
L_sk: "slovak",
L_sl: "slovenian",
L_sm: "samoan",
L_sn: "shona",
L_so: "somali",
L_sq: "albanian",
L_sr: "serbian",
L_st: "southern sotho",
L_su: "sundanese",
L_sv: "swedish",
L_sw: "swahili",
L_ta: "tamil",
L_te: "telugu",
L_tg: "tajik",
L_th: "thai",
L_tl: "tagalog",
L_tr: "turkish",
L_uk: "ukrainian",
L_ur: "urdu",
L_uz: "uzbek",
L_vi: "vietnamese",
L_xh: "xhosa",
L_yi: "yiddish",
L_yo: "yoruba",
L_zh: "chinese",
L_zh_CN: "chinese_CN",
L_zh_TW: "chinese_TW",
L_zu: "zuZulu",
}
langListR = {v: k.lower() for k, v in langList.items()}
| l_af = 'af'
l_am = 'am'
l_ar = 'ar'
l_az = 'az'
l_be = 'be'
l_bg = 'bg'
l_bn = 'bn'
l_bs = 'bs'
l_ca = 'ca'
l_ceb = 'ceb'
l_co = 'co'
l_cs = 'cs'
l_cy = 'cy'
l_da = 'da'
l_de = 'de'
l_el = 'el'
l_en = 'en'
l_eo = 'eo'
l_es = 'es'
l_et = 'et'
l_eu = 'eu'
l_fa = 'fa'
l_fi = 'fi'
l_fr = 'fr'
l_fy = 'fy'
l_ga = 'ga'
l_gd = 'gd'
l_gl = 'gl'
l_gu = 'gu'
l_ha = 'ha'
l_haw = 'haw'
l_hi = 'hi'
l_hmn = 'hmn'
l_hr = 'hr'
l_ht = 'ht'
l_hu = 'hu'
l_hy = 'hy'
l_id = 'id'
l_ig = 'ig'
l_is = 'is'
l_it = 'it'
l_iw = 'iw'
l_ja = 'ja'
l_jw = 'jw'
l_ka = 'ka'
l_kk = 'kk'
l_km = 'km'
l_kn = 'kn'
l_ko = 'ko'
l_ku = 'ku'
l_ky = 'ky'
l_la = 'la'
l_lb = 'lb'
l_lo = 'lo'
l_lt = 'lt'
l_lv = 'lv'
l_mg = 'mg'
l_mi = 'mi'
l_mk = 'mk'
l_ml = 'ml'
l_mn = 'mn'
l_mr = 'mr'
l_ms = 'ms'
l_mt = 'mt'
l_my = 'my'
l_ne = 'ne'
l_nl = 'nl'
l_no = 'no'
l_ny = 'ny'
l_pa = 'pa'
l_pl = 'pl'
l_ps = 'ps'
l_pt = 'pt'
l_ro = 'ro'
l_ru = 'ru'
l_sd = 'sd'
l_si = 'si'
l_sk = 'sk'
l_sl = 'sl'
l_sm = 'sm'
l_sn = 'sn'
l_so = 'so'
l_sq = 'sq'
l_sr = 'sr'
l_st = 'st'
l_su = 'su'
l_sv = 'sv'
l_sw = 'sw'
l_ta = 'ta'
l_te = 'te'
l_tg = 'tg'
l_th = 'th'
l_tl = 'tl'
l_tr = 'tr'
l_uk = 'uk'
l_ur = 'ur'
l_uz = 'uz'
l_vi = 'vi'
l_xh = 'xh'
l_yi = 'yi'
l_yo = 'yo'
l_zh = 'zh'
l_zh_cn = 'zh_CN'
l_zh_tw = 'zh_TW'
l_zu = 'zu'
lang_list = {L_af: 'afrikaans', L_am: 'amharic', L_ar: 'arabic', L_az: 'azerbaijani', L_be: 'belarusian', L_bg: 'bulgarian', L_bn: 'bengali', L_bs: 'bosnian', L_ca: 'catalan', L_ceb: 'chechen', L_co: 'corsican', L_cs: 'czech', L_cy: 'welsh', L_da: 'danish', L_de: 'german', L_el: 'greek', L_en: 'english', L_eo: 'esperanto', L_es: 'spanish', L_et: 'estonian', L_eu: 'basque', L_fa: 'persian', L_fi: 'finnish', L_fr: 'french', L_fy: 'westernFrisian', L_ga: 'irish', L_gd: 'gaelic', L_gl: 'galician', L_gu: 'gujarati', L_ha: 'hausa', L_haw: 'haw', L_hi: 'hindi', L_hmn: 'hmn', L_hr: 'croatian', L_ht: 'haitian', L_hu: 'hungarian', L_hy: 'armenian', L_id: 'indonesian', L_ig: 'igbo', L_is: 'icelandic', L_it: 'italian', L_iw: 'hebrew', L_ja: 'japanese', L_jw: 'jw', L_ka: 'georgian', L_kk: 'kazakh', L_km: 'central khmer', L_kn: 'kannada', L_ko: 'korean', L_ku: 'kurdish', L_ky: 'kirghiz', L_la: 'katin', L_lb: 'luxembourgish', L_lo: 'lao', L_lt: 'lithuanian', L_lv: 'latvian', L_mg: 'malagasy', L_mi: 'maori', L_mk: 'macedonian', L_ml: 'malayalam', L_mn: 'mongolian', L_mr: 'marathi', L_ms: 'malay', L_mt: 'maltese', L_my: 'burmese', L_ne: 'nepali', L_nl: 'dutch', L_no: 'norwegian', L_ny: 'chichewa', L_pa: 'punjabi', L_pl: 'polish', L_ps: 'pashto', L_pt: 'portuguese', L_ro: 'romanian', L_ru: 'russian', L_sd: 'sindhi', L_si: 'sinhala', L_sk: 'slovak', L_sl: 'slovenian', L_sm: 'samoan', L_sn: 'shona', L_so: 'somali', L_sq: 'albanian', L_sr: 'serbian', L_st: 'southern sotho', L_su: 'sundanese', L_sv: 'swedish', L_sw: 'swahili', L_ta: 'tamil', L_te: 'telugu', L_tg: 'tajik', L_th: 'thai', L_tl: 'tagalog', L_tr: 'turkish', L_uk: 'ukrainian', L_ur: 'urdu', L_uz: 'uzbek', L_vi: 'vietnamese', L_xh: 'xhosa', L_yi: 'yiddish', L_yo: 'yoruba', L_zh: 'chinese', L_zh_CN: 'chinese_CN', L_zh_TW: 'chinese_TW', L_zu: 'zuZulu'}
lang_list_r = {v: k.lower() for (k, v) in langList.items()} |
km = float(input('Quantos Km percorrido: '))
diaria = int(input('Quantos dias alugado: '))
total = (diaria * 60) + (km * .15)
print(f'Foram percorridos {km}km e {diaria} diarias, total de R${total:.2f}')
| km = float(input('Quantos Km percorrido: '))
diaria = int(input('Quantos dias alugado: '))
total = diaria * 60 + km * 0.15
print(f'Foram percorridos {km}km e {diaria} diarias, total de R${total:.2f}') |
n = int(input())
phonebook=dict()
for _ in range(n):
q = list(map(str,list(input().split())))
name = q[0]
phone = int(q[1])
phonebook[name]=phone
try:
while True:
query = input()
if query!="":
if query in phonebook:
st = query+'='+str(phonebook[query])
print(st)
else:
print('Not found')
else:
break
except EOFError:
pass
| n = int(input())
phonebook = dict()
for _ in range(n):
q = list(map(str, list(input().split())))
name = q[0]
phone = int(q[1])
phonebook[name] = phone
try:
while True:
query = input()
if query != '':
if query in phonebook:
st = query + '=' + str(phonebook[query])
print(st)
else:
print('Not found')
else:
break
except EOFError:
pass |
__author__ = 'deadblue'
mime_types = {
'svg': 'image/svg+xml',
'png': 'image/png',
'webp': 'image/webp'
} | __author__ = 'deadblue'
mime_types = {'svg': 'image/svg+xml', 'png': 'image/png', 'webp': 'image/webp'} |
#
# PySNMP MIB module MSSSERVER8260-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/MSSSERVER8260-MIB
# Produced by pysmi-0.3.4 at Wed May 1 14:15:54 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueSizeConstraint, ConstraintsUnion, ConstraintsIntersection, ValueRangeConstraint, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueRangeConstraint", "SingleValueConstraint")
proElsSubSysEventMsg, = mibBuilder.importSymbols("PROTEON-MIB", "proElsSubSysEventMsg")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
Unsigned32, iso, Counter64, ObjectIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, Counter32, Bits, IpAddress, ModuleIdentity, Integer32, enterprises, MibIdentifier, NotificationType, NotificationType, TimeTicks, Gauge32 = mibBuilder.importSymbols("SNMPv2-SMI", "Unsigned32", "iso", "Counter64", "ObjectIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Counter32", "Bits", "IpAddress", "ModuleIdentity", "Integer32", "enterprises", "MibIdentifier", "NotificationType", "NotificationType", "TimeTicks", "Gauge32")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
ibm = MibIdentifier((1, 3, 6, 1, 4, 1, 2))
ibmProd = MibIdentifier((1, 3, 6, 1, 4, 1, 2, 6))
nwaysMSS = MibIdentifier((1, 3, 6, 1, 4, 1, 2, 6, 118))
mssServer8260 = MibIdentifier((1, 3, 6, 1, 4, 1, 2, 6, 118, 3))
mss8260Prod = MibIdentifier((1, 3, 6, 1, 4, 1, 2, 6, 118, 3, 1))
mss8260PCAdapter = MibIdentifier((1, 3, 6, 1, 4, 1, 2, 6, 118, 3, 2))
mss8260ResetFlag = MibScalar((1, 3, 6, 1, 4, 1, 2, 6, 118, 3, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("noreset", 1), ("reboot", 2))).clone('noreset')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mss8260ResetFlag.setStatus('mandatory')
if mibBuilder.loadTexts: mss8260ResetFlag.setDescription('The flag that controls the reset process in this blade. This variable shall assume a value of noreset(1) in the absence of a request for a reset from the management application. This variable shall assume a value of reboot(2) if the management application requests that this blade execute a complete hardware reboot which reloads the code load from storage.')
mss8260DRAMinstalled = MibScalar((1, 3, 6, 1, 4, 1, 2, 6, 118, 3, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mss8260DRAMinstalled.setStatus('mandatory')
if mibBuilder.loadTexts: mss8260DRAMinstalled.setDescription('The total amount of dynamic RAM installed on this blade. The amount is in units of megabytes.')
mss8260NotifyStatus = MibScalar((1, 3, 6, 1, 4, 1, 2, 6, 118, 3, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2))).clone('enabled')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mss8260NotifyStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mss8260NotifyStatus.setDescription('The status of the trap reporting service in this blade. This variable shall assume a value of enabled(1) if this blade is permitted to send traps. This variable shall assume a value of disabled(2) if this blade is prohibited from sending traps.')
mss8260TempThresholdStatus = MibScalar((1, 3, 6, 1, 4, 1, 2, 6, 118, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("normal", 1), ("warning", 2), ("shutdown", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mss8260TempThresholdStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mss8260TempThresholdStatus.setDescription('The status of the temperature in this blade. This variable shall assume a value of normal(1) if the temperature is within proper operating range for this blade. This variable shall assume a value of warning(2) if the temperature becomes elevated but this blade can still operate. This variable shall assume a value of shutdown(3) if the temperature is beyond the operating limits of this blade.')
mss8260PCAdapNumSlot = MibScalar((1, 3, 6, 1, 4, 1, 2, 6, 118, 3, 2, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mss8260PCAdapNumSlot.setStatus('mandatory')
if mibBuilder.loadTexts: mss8260PCAdapNumSlot.setDescription('The number of PC adapter slots available for this blade.')
mss8260PCAdapTable = MibTable((1, 3, 6, 1, 4, 1, 2, 6, 118, 3, 2, 2), )
if mibBuilder.loadTexts: mss8260PCAdapTable.setStatus('mandatory')
if mibBuilder.loadTexts: mss8260PCAdapTable.setDescription('A table of PC adapters entries. The number of entries is given by the value of mss8260PCAdapNumSlot.')
mss8260PCAdapEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2, 6, 118, 3, 2, 2, 1), ).setIndexNames((0, "MSSSERVER8260-MIB", "mss8260PCAdapSlotNum"))
if mibBuilder.loadTexts: mss8260PCAdapEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mss8260PCAdapEntry.setDescription('A PC adapter entry containing objects to describe the operational aspects of the PC adapter on this blade.')
mss8260PCAdapSlotNum = MibTableColumn((1, 3, 6, 1, 4, 1, 2, 6, 118, 3, 2, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mss8260PCAdapSlotNum.setStatus('mandatory')
if mibBuilder.loadTexts: mss8260PCAdapSlotNum.setDescription('The relative slot location at which the adapter is attached to this blade. Slots are numbered from 1 to 2 (bottom to top) when facing this blade. This variable serves as the index for the mss8260PCAdapTable.')
mss8260PCAdapType = MibTableColumn((1, 3, 6, 1, 4, 1, 2, 6, 118, 3, 2, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("unknown", 1), ("harddrive", 2), ("modem", 3), ("notPresent", 4), ("flashcard", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mss8260PCAdapType.setStatus('mandatory')
if mibBuilder.loadTexts: mss8260PCAdapType.setDescription('The type of PC adapter that is inserted into this slot. The variable shall assume a value of unknown(1) if the adapter in the slot is not supported by this blade. The variable shall assume a value of harddrive(2) if the slot contains a PC disk drive. The variable shall assume a value of modem(3) if the slot contains a PC data/fax/voice modem. The variable shall assume a value of flashcard(5) if the slot contains a PC flash card. This variable shall assume a value of notPresent(4), when a PC card is not plugged into the corrisponding slot. ')
mssServer8260ELSTrapV2 = NotificationType((1, 3, 6, 1, 4, 1, 2, 6, 118, 3) + (0,2)).setObjects(("PROTEON-MIB", "proElsSubSysEventMsg"))
if mibBuilder.loadTexts: mssServer8260ELSTrapV2.setDescription('The trap announces an Event Logging System (ELS) event occurred. The variable proElsSubSysEventMsg provides a textual description of the event. The variable is in one of two formats. If ELS timestamping is enabled, the format is hr:min:sec subsys_name.event_num: message_text. An example would be 09:32:56 IP.008: no rte 9.7.1.8 -> 9.7.4.3 dsc. If ELS timestamping is disabled, the format is subsys_name.event_num: message_text. An example would be IP.008: no rte 9.7.1.8 -> 9.7.4.3 dsc.')
mss8260PCAdapTypeChg = NotificationType((1, 3, 6, 1, 4, 1, 2, 6, 118, 3) + (0,3)).setObjects(("MSSSERVER8260-MIB", "mss8260PCAdapType"))
if mibBuilder.loadTexts: mss8260PCAdapTypeChg.setDescription('The trap announces a change in the type of PC card. It shall be sent if the value of the mss8260PCAdapType changes and mss8260NotifyStatus has a value of enabled(1).')
mss8260TempThresholdChg = NotificationType((1, 3, 6, 1, 4, 1, 2, 6, 118, 3) + (0,4)).setObjects(("MSSSERVER8260-MIB", "mss8260TempThresholdStatus"))
if mibBuilder.loadTexts: mss8260TempThresholdChg.setDescription('The trap announces a change in the temperature of the blade. It shall be sent if the value of the mss8260TempThreshold changes and mss8260NotifyStatus has a value of enabled(1).')
mibBuilder.exportSymbols("MSSSERVER8260-MIB", mss8260Prod=mss8260Prod, mss8260PCAdapSlotNum=mss8260PCAdapSlotNum, nwaysMSS=nwaysMSS, mss8260NotifyStatus=mss8260NotifyStatus, mss8260TempThresholdStatus=mss8260TempThresholdStatus, mss8260PCAdapTable=mss8260PCAdapTable, mss8260PCAdapEntry=mss8260PCAdapEntry, mss8260PCAdapType=mss8260PCAdapType, mssServer8260ELSTrapV2=mssServer8260ELSTrapV2, mss8260DRAMinstalled=mss8260DRAMinstalled, mss8260PCAdapTypeChg=mss8260PCAdapTypeChg, mss8260TempThresholdChg=mss8260TempThresholdChg, mss8260ResetFlag=mss8260ResetFlag, mss8260PCAdapNumSlot=mss8260PCAdapNumSlot, mssServer8260=mssServer8260, mss8260PCAdapter=mss8260PCAdapter, ibm=ibm, ibmProd=ibmProd)
| (object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_size_constraint, constraints_union, constraints_intersection, value_range_constraint, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueRangeConstraint', 'SingleValueConstraint')
(pro_els_sub_sys_event_msg,) = mibBuilder.importSymbols('PROTEON-MIB', 'proElsSubSysEventMsg')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(unsigned32, iso, counter64, object_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, counter32, bits, ip_address, module_identity, integer32, enterprises, mib_identifier, notification_type, notification_type, time_ticks, gauge32) = mibBuilder.importSymbols('SNMPv2-SMI', 'Unsigned32', 'iso', 'Counter64', 'ObjectIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Counter32', 'Bits', 'IpAddress', 'ModuleIdentity', 'Integer32', 'enterprises', 'MibIdentifier', 'NotificationType', 'NotificationType', 'TimeTicks', 'Gauge32')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
ibm = mib_identifier((1, 3, 6, 1, 4, 1, 2))
ibm_prod = mib_identifier((1, 3, 6, 1, 4, 1, 2, 6))
nways_mss = mib_identifier((1, 3, 6, 1, 4, 1, 2, 6, 118))
mss_server8260 = mib_identifier((1, 3, 6, 1, 4, 1, 2, 6, 118, 3))
mss8260_prod = mib_identifier((1, 3, 6, 1, 4, 1, 2, 6, 118, 3, 1))
mss8260_pc_adapter = mib_identifier((1, 3, 6, 1, 4, 1, 2, 6, 118, 3, 2))
mss8260_reset_flag = mib_scalar((1, 3, 6, 1, 4, 1, 2, 6, 118, 3, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('noreset', 1), ('reboot', 2))).clone('noreset')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mss8260ResetFlag.setStatus('mandatory')
if mibBuilder.loadTexts:
mss8260ResetFlag.setDescription('The flag that controls the reset process in this blade. This variable shall assume a value of noreset(1) in the absence of a request for a reset from the management application. This variable shall assume a value of reboot(2) if the management application requests that this blade execute a complete hardware reboot which reloads the code load from storage.')
mss8260_dra_minstalled = mib_scalar((1, 3, 6, 1, 4, 1, 2, 6, 118, 3, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mss8260DRAMinstalled.setStatus('mandatory')
if mibBuilder.loadTexts:
mss8260DRAMinstalled.setDescription('The total amount of dynamic RAM installed on this blade. The amount is in units of megabytes.')
mss8260_notify_status = mib_scalar((1, 3, 6, 1, 4, 1, 2, 6, 118, 3, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2))).clone('enabled')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mss8260NotifyStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mss8260NotifyStatus.setDescription('The status of the trap reporting service in this blade. This variable shall assume a value of enabled(1) if this blade is permitted to send traps. This variable shall assume a value of disabled(2) if this blade is prohibited from sending traps.')
mss8260_temp_threshold_status = mib_scalar((1, 3, 6, 1, 4, 1, 2, 6, 118, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('normal', 1), ('warning', 2), ('shutdown', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mss8260TempThresholdStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mss8260TempThresholdStatus.setDescription('The status of the temperature in this blade. This variable shall assume a value of normal(1) if the temperature is within proper operating range for this blade. This variable shall assume a value of warning(2) if the temperature becomes elevated but this blade can still operate. This variable shall assume a value of shutdown(3) if the temperature is beyond the operating limits of this blade.')
mss8260_pc_adap_num_slot = mib_scalar((1, 3, 6, 1, 4, 1, 2, 6, 118, 3, 2, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mss8260PCAdapNumSlot.setStatus('mandatory')
if mibBuilder.loadTexts:
mss8260PCAdapNumSlot.setDescription('The number of PC adapter slots available for this blade.')
mss8260_pc_adap_table = mib_table((1, 3, 6, 1, 4, 1, 2, 6, 118, 3, 2, 2))
if mibBuilder.loadTexts:
mss8260PCAdapTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mss8260PCAdapTable.setDescription('A table of PC adapters entries. The number of entries is given by the value of mss8260PCAdapNumSlot.')
mss8260_pc_adap_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2, 6, 118, 3, 2, 2, 1)).setIndexNames((0, 'MSSSERVER8260-MIB', 'mss8260PCAdapSlotNum'))
if mibBuilder.loadTexts:
mss8260PCAdapEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mss8260PCAdapEntry.setDescription('A PC adapter entry containing objects to describe the operational aspects of the PC adapter on this blade.')
mss8260_pc_adap_slot_num = mib_table_column((1, 3, 6, 1, 4, 1, 2, 6, 118, 3, 2, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mss8260PCAdapSlotNum.setStatus('mandatory')
if mibBuilder.loadTexts:
mss8260PCAdapSlotNum.setDescription('The relative slot location at which the adapter is attached to this blade. Slots are numbered from 1 to 2 (bottom to top) when facing this blade. This variable serves as the index for the mss8260PCAdapTable.')
mss8260_pc_adap_type = mib_table_column((1, 3, 6, 1, 4, 1, 2, 6, 118, 3, 2, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('unknown', 1), ('harddrive', 2), ('modem', 3), ('notPresent', 4), ('flashcard', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mss8260PCAdapType.setStatus('mandatory')
if mibBuilder.loadTexts:
mss8260PCAdapType.setDescription('The type of PC adapter that is inserted into this slot. The variable shall assume a value of unknown(1) if the adapter in the slot is not supported by this blade. The variable shall assume a value of harddrive(2) if the slot contains a PC disk drive. The variable shall assume a value of modem(3) if the slot contains a PC data/fax/voice modem. The variable shall assume a value of flashcard(5) if the slot contains a PC flash card. This variable shall assume a value of notPresent(4), when a PC card is not plugged into the corrisponding slot. ')
mss_server8260_els_trap_v2 = notification_type((1, 3, 6, 1, 4, 1, 2, 6, 118, 3) + (0, 2)).setObjects(('PROTEON-MIB', 'proElsSubSysEventMsg'))
if mibBuilder.loadTexts:
mssServer8260ELSTrapV2.setDescription('The trap announces an Event Logging System (ELS) event occurred. The variable proElsSubSysEventMsg provides a textual description of the event. The variable is in one of two formats. If ELS timestamping is enabled, the format is hr:min:sec subsys_name.event_num: message_text. An example would be 09:32:56 IP.008: no rte 9.7.1.8 -> 9.7.4.3 dsc. If ELS timestamping is disabled, the format is subsys_name.event_num: message_text. An example would be IP.008: no rte 9.7.1.8 -> 9.7.4.3 dsc.')
mss8260_pc_adap_type_chg = notification_type((1, 3, 6, 1, 4, 1, 2, 6, 118, 3) + (0, 3)).setObjects(('MSSSERVER8260-MIB', 'mss8260PCAdapType'))
if mibBuilder.loadTexts:
mss8260PCAdapTypeChg.setDescription('The trap announces a change in the type of PC card. It shall be sent if the value of the mss8260PCAdapType changes and mss8260NotifyStatus has a value of enabled(1).')
mss8260_temp_threshold_chg = notification_type((1, 3, 6, 1, 4, 1, 2, 6, 118, 3) + (0, 4)).setObjects(('MSSSERVER8260-MIB', 'mss8260TempThresholdStatus'))
if mibBuilder.loadTexts:
mss8260TempThresholdChg.setDescription('The trap announces a change in the temperature of the blade. It shall be sent if the value of the mss8260TempThreshold changes and mss8260NotifyStatus has a value of enabled(1).')
mibBuilder.exportSymbols('MSSSERVER8260-MIB', mss8260Prod=mss8260Prod, mss8260PCAdapSlotNum=mss8260PCAdapSlotNum, nwaysMSS=nwaysMSS, mss8260NotifyStatus=mss8260NotifyStatus, mss8260TempThresholdStatus=mss8260TempThresholdStatus, mss8260PCAdapTable=mss8260PCAdapTable, mss8260PCAdapEntry=mss8260PCAdapEntry, mss8260PCAdapType=mss8260PCAdapType, mssServer8260ELSTrapV2=mssServer8260ELSTrapV2, mss8260DRAMinstalled=mss8260DRAMinstalled, mss8260PCAdapTypeChg=mss8260PCAdapTypeChg, mss8260TempThresholdChg=mss8260TempThresholdChg, mss8260ResetFlag=mss8260ResetFlag, mss8260PCAdapNumSlot=mss8260PCAdapNumSlot, mssServer8260=mssServer8260, mss8260PCAdapter=mss8260PCAdapter, ibm=ibm, ibmProd=ibmProd) |
nums = map(float, input().split())
count_values = {}
for num in nums:
if num not in count_values:
count_values[num] = 0
count_values[num] += 1
for key, value in count_values.items():
print(f"{key} - {value} times")
| nums = map(float, input().split())
count_values = {}
for num in nums:
if num not in count_values:
count_values[num] = 0
count_values[num] += 1
for (key, value) in count_values.items():
print(f'{key} - {value} times') |
def get_ranges(data):
# create a list of all valid ranges
list_of_ranges = {}
for line in data:
if line == "":
break
l = []
key = line.split(":")[0]
line = line.split()
lower, upper = line[-1].split("-")
l.append((int(lower), int(upper)))
lower, upper = line[-3].split("-")
l.append((int(lower), int(upper)))
list_of_ranges[key] = l
return list_of_ranges
def get_valid_tickets(data, list_of_ranges):
index = 25
valid_tickets = []
while index < len(data):
ticket = [int(val) for val in data[index].split(",")]
valid_val_counter = 0
for val in ticket:
for r in list_of_ranges.values():
if (
r[0][0] <= val
and r[0][1] >= val
or r[1][0] <= val
and r[1][1] >= val
):
valid_val_counter += 1
break
if valid_val_counter == len(ticket):
valid_tickets.append(ticket)
index += 1
return valid_tickets
def main():
data = open("day16/input.txt", "r")
data = [line.strip() for line in data]
list_of_ranges = get_ranges(data)
valid_tickets = get_valid_tickets(data, list_of_ranges)
my_ticket = [int(val) for val in data[22].split(",")]
possible_fields = [set() for _ in my_ticket]
for ticket in valid_tickets:
for i, val in enumerate(ticket):
fields = set()
for item in list_of_ranges:
r = list_of_ranges.get(item)
if (
r[0][0] <= val
and r[0][1] >= val
or r[1][0] <= val
and r[1][1] >= val
):
fields.add(item)
possible_fields[i] = (
possible_fields[i].intersection(fields)
if possible_fields[i]
else fields
)
to_remove = []
field_positions = {}
while True:
if len(field_positions) == 20:
break
for i, curr_set in enumerate(possible_fields):
if len(curr_set) == 1:
field_positions[i] = list(curr_set)[0]
to_remove.append(list(curr_set)[0])
for item in to_remove:
for curr_set in possible_fields:
if item in curr_set:
curr_set.remove(item)
answer = 1
for item in field_positions:
if "departure" in field_positions.get(item):
answer *= my_ticket[field_positions.keys().index(item)]
print(answer)
if __name__ == "__main__":
main() | def get_ranges(data):
list_of_ranges = {}
for line in data:
if line == '':
break
l = []
key = line.split(':')[0]
line = line.split()
(lower, upper) = line[-1].split('-')
l.append((int(lower), int(upper)))
(lower, upper) = line[-3].split('-')
l.append((int(lower), int(upper)))
list_of_ranges[key] = l
return list_of_ranges
def get_valid_tickets(data, list_of_ranges):
index = 25
valid_tickets = []
while index < len(data):
ticket = [int(val) for val in data[index].split(',')]
valid_val_counter = 0
for val in ticket:
for r in list_of_ranges.values():
if r[0][0] <= val and r[0][1] >= val or (r[1][0] <= val and r[1][1] >= val):
valid_val_counter += 1
break
if valid_val_counter == len(ticket):
valid_tickets.append(ticket)
index += 1
return valid_tickets
def main():
data = open('day16/input.txt', 'r')
data = [line.strip() for line in data]
list_of_ranges = get_ranges(data)
valid_tickets = get_valid_tickets(data, list_of_ranges)
my_ticket = [int(val) for val in data[22].split(',')]
possible_fields = [set() for _ in my_ticket]
for ticket in valid_tickets:
for (i, val) in enumerate(ticket):
fields = set()
for item in list_of_ranges:
r = list_of_ranges.get(item)
if r[0][0] <= val and r[0][1] >= val or (r[1][0] <= val and r[1][1] >= val):
fields.add(item)
possible_fields[i] = possible_fields[i].intersection(fields) if possible_fields[i] else fields
to_remove = []
field_positions = {}
while True:
if len(field_positions) == 20:
break
for (i, curr_set) in enumerate(possible_fields):
if len(curr_set) == 1:
field_positions[i] = list(curr_set)[0]
to_remove.append(list(curr_set)[0])
for item in to_remove:
for curr_set in possible_fields:
if item in curr_set:
curr_set.remove(item)
answer = 1
for item in field_positions:
if 'departure' in field_positions.get(item):
answer *= my_ticket[field_positions.keys().index(item)]
print(answer)
if __name__ == '__main__':
main() |
# Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# A copy of the License is located at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# or in the "license" file accompanying this file. This file is distributed
# on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
# express or implied. See the License for the specific language governing
# permissions and limitations under the License.
def generate_ros_package_names(name):
# This is ugly but our package lists contain names in different naming conventions, so this is useful for matching them.
names = [name, name.replace('_', '-'), name.replace('-', '_')]
for distro in ['kinetic', 'indigo', ]:
names.extend([name.replace('ros-%s-' % (distro, ), ''), name.replace('ros-%s-' % (distro, ), '').replace('-', '_')])
return set(names)
| def generate_ros_package_names(name):
names = [name, name.replace('_', '-'), name.replace('-', '_')]
for distro in ['kinetic', 'indigo']:
names.extend([name.replace('ros-%s-' % (distro,), ''), name.replace('ros-%s-' % (distro,), '').replace('-', '_')])
return set(names) |
########################
#### Initialisation ####
########################
input_ex1 = []
with open("inputs/day5_1.txt") as inputfile:
for line in inputfile.readlines():
input_ex1.append(int(line.strip()))
########################
#### Part one ####
########################
sample_input = [0,
3,
0,
1,
-3]
input_data = input_ex1[::]
newIndex = 0
steps = 0
while True:
try:
instruction = input_data[newIndex]
input_data[newIndex] += 1
newIndex += instruction
steps += 1
except IndexError:
print("It takes {} steps to escape this list of instructions".format(steps))
break
########################
#### Part two ####
########################
input_data = input_ex1[::]
newIndex = 0
steps = 0
while True:
try:
instruction = input_data[newIndex]
except IndexError:
print("It takes {} steps to escape this list of instructions".format(steps))
break
if instruction >= 3:
input_data[newIndex] -= 1
else:
input_data[newIndex] += 1
newIndex += instruction
steps += 1
| input_ex1 = []
with open('inputs/day5_1.txt') as inputfile:
for line in inputfile.readlines():
input_ex1.append(int(line.strip()))
sample_input = [0, 3, 0, 1, -3]
input_data = input_ex1[:]
new_index = 0
steps = 0
while True:
try:
instruction = input_data[newIndex]
input_data[newIndex] += 1
new_index += instruction
steps += 1
except IndexError:
print('It takes {} steps to escape this list of instructions'.format(steps))
break
input_data = input_ex1[:]
new_index = 0
steps = 0
while True:
try:
instruction = input_data[newIndex]
except IndexError:
print('It takes {} steps to escape this list of instructions'.format(steps))
break
if instruction >= 3:
input_data[newIndex] -= 1
else:
input_data[newIndex] += 1
new_index += instruction
steps += 1 |
'''
Probem Task : This program will return number of solutions to quadratic equation.
Problem Link : https://edabit.com/challenge/o2AKq4xy3nfZabKXL
'''
def solutions(a,b,c):
if ((b**2 - 4*a*c) > 0):
return 2
elif ((b**2 - 4*a*c)==0):
return 1
else:
return 0
if __name__ == "__main__":
a = int(input("Enter a\n"))
b = int(input("Enter b\n"))
c = int(input("Enter c\n"))
print(f'{a}x\N{SUPERSCRIPT TWO} + {b}x + {c} = 0 has {solutions(a,b,c)} solutions')
| """
Probem Task : This program will return number of solutions to quadratic equation.
Problem Link : https://edabit.com/challenge/o2AKq4xy3nfZabKXL
"""
def solutions(a, b, c):
if b ** 2 - 4 * a * c > 0:
return 2
elif b ** 2 - 4 * a * c == 0:
return 1
else:
return 0
if __name__ == '__main__':
a = int(input('Enter a\n'))
b = int(input('Enter b\n'))
c = int(input('Enter c\n'))
print(f'{a}x² + {b}x + {c} = 0 has {solutions(a, b, c)} solutions') |
# -*- coding: utf-8 -*-
n = int(input())
p, q, r, s, x, y = map(int, input().split())
i, j = map(int, input().split())
res = 0
for k in range(1, n + 1):
res += ((p * i + q * k) % x) * ((r * k + s * j) % y)
print(res) | n = int(input())
(p, q, r, s, x, y) = map(int, input().split())
(i, j) = map(int, input().split())
res = 0
for k in range(1, n + 1):
res += (p * i + q * k) % x * ((r * k + s * j) % y)
print(res) |
duo_prim = {
"NRES": {"NRES", "GRU-CC", "POA", "HMB", "DS-XX"},
"GRU-CC": {"GRU-CC", "POA", "HMB", "DS-XX"},
"HMB": {"HMB", "DS-XX"},
"POA": {"POA"},
"DS-XX": {"DS-XX"},
}
duo_sec = {
"GSO",
"RUO",
"RS-XX",
"NMDS",
"GS-XX",
"NPU",
"PUB",
"COL-XX",
"IRB",
"TS-XX",
"COST",
"DSM",
}
adam_main_mapped_to_duo = {
"NRES": "NRES",
"GRU": "RUO",
"NMDS": "NMDS",
"RS-XX": "RS-XX",
"HMB": "HMB",
"PO": "POA",
"ANS": "ANS",
"GEN": "HMB",
"GSO": "GSO",
"DD": "HMB",
"FB": "HMB",
"DS-XX": "DS-XX",
"AGE": "HMB",
"COP": "GRU-CC",
"GRU": "GRU-CC",
"CC": "GRU-CC",
"PU": "NOT-NPU",
"NP": "HMB",
"DSO": "GRU-CC",
"DS": "GRU-CC",
}
#if I find these, i need the matching duo consent! No matter the main category
adam_sec_mapped_to_duo = {
"GS-XX": "GS-CC",
"NPU": "NPU",
"PU": "NOT-NPU",
"PUB": "PUB",
"COL-XX": "COL-XX",
"IRB": "IRB",
"TS-XX": "TS-XX",
"FEE": "COST",
"DSM": "DSM"
}
| duo_prim = {'NRES': {'NRES', 'GRU-CC', 'POA', 'HMB', 'DS-XX'}, 'GRU-CC': {'GRU-CC', 'POA', 'HMB', 'DS-XX'}, 'HMB': {'HMB', 'DS-XX'}, 'POA': {'POA'}, 'DS-XX': {'DS-XX'}}
duo_sec = {'GSO', 'RUO', 'RS-XX', 'NMDS', 'GS-XX', 'NPU', 'PUB', 'COL-XX', 'IRB', 'TS-XX', 'COST', 'DSM'}
adam_main_mapped_to_duo = {'NRES': 'NRES', 'GRU': 'RUO', 'NMDS': 'NMDS', 'RS-XX': 'RS-XX', 'HMB': 'HMB', 'PO': 'POA', 'ANS': 'ANS', 'GEN': 'HMB', 'GSO': 'GSO', 'DD': 'HMB', 'FB': 'HMB', 'DS-XX': 'DS-XX', 'AGE': 'HMB', 'COP': 'GRU-CC', 'GRU': 'GRU-CC', 'CC': 'GRU-CC', 'PU': 'NOT-NPU', 'NP': 'HMB', 'DSO': 'GRU-CC', 'DS': 'GRU-CC'}
adam_sec_mapped_to_duo = {'GS-XX': 'GS-CC', 'NPU': 'NPU', 'PU': 'NOT-NPU', 'PUB': 'PUB', 'COL-XX': 'COL-XX', 'IRB': 'IRB', 'TS-XX': 'TS-XX', 'FEE': 'COST', 'DSM': 'DSM'} |
class Enemy:
def __init__(self, name, health, damage):
self.name = name
self.health = health
self.damage = damage
def isActive(self):
return self.health > 0
class KillerJackal(Enemy):
def __init__(self):
super().__init__(name="Killer-Jackal", health=30, damage=50)
class ForestDog(Enemy):
def __init__(self):
super().__init__(name="ForestDog", health=20, damage=10)
class ForestWolf(Enemy):
def __init__(self):
super().__init__(name="ForestWolf", health=25, damage=15)
class TamrajKilvish(Enemy):
def __init__(self):
super().__init__(name="Tamraj Kilvish", health=100, damage=80) | class Enemy:
def __init__(self, name, health, damage):
self.name = name
self.health = health
self.damage = damage
def is_active(self):
return self.health > 0
class Killerjackal(Enemy):
def __init__(self):
super().__init__(name='Killer-Jackal', health=30, damage=50)
class Forestdog(Enemy):
def __init__(self):
super().__init__(name='ForestDog', health=20, damage=10)
class Forestwolf(Enemy):
def __init__(self):
super().__init__(name='ForestWolf', health=25, damage=15)
class Tamrajkilvish(Enemy):
def __init__(self):
super().__init__(name='Tamraj Kilvish', health=100, damage=80) |
superbowl_wins = [
['1', 'Pittsburgh', '6'],
['2', 'Dallas', '5'],
['3', 'Paris', '16'],
['4', 'Wembo CLub', '25'],
]
for row in superbowl_wins:
print (row[1] + " had " + row[2] + " wins")
print("========================")
for row in superbowl_wins:
for el in row:
print (el)
print('')
| superbowl_wins = [['1', 'Pittsburgh', '6'], ['2', 'Dallas', '5'], ['3', 'Paris', '16'], ['4', 'Wembo CLub', '25']]
for row in superbowl_wins:
print(row[1] + ' had ' + row[2] + ' wins')
print('========================')
for row in superbowl_wins:
for el in row:
print(el)
print('') |
class Solution:
def twoSum(self, numbers: List[int], target: int) -> List[int]:
left, right = 0, len(numbers) - 1
while left <= right:
sum = numbers[left] + numbers[right]
if sum == target:
return [left + 1, right + 1]
elif sum < target:
left += 1
else:
right -= 1
| class Solution:
def two_sum(self, numbers: List[int], target: int) -> List[int]:
(left, right) = (0, len(numbers) - 1)
while left <= right:
sum = numbers[left] + numbers[right]
if sum == target:
return [left + 1, right + 1]
elif sum < target:
left += 1
else:
right -= 1 |
# int()
# float()
# str()
# bool()
number_input = input("number: ")
print(type(number_input))
number_input = int(number_input)
print(type(number_input))
# Falsy Values
print(bool(0))
print(bool(0.0))
print(bool(''))
print(bool(()))
print(bool([]))
print(bool({}))
print(bool(set()))
print(bool(complex()))
print(bool(range()))
print(bool(False))
print(bool(None))
# Truthy Values
print(bool(1))
print(bool(1.0))
print(bool('a'))
print(bool((1,)))
print(bool([1]))
print(bool({1}))
print(bool(set([1])))
print(bool(complex(1)))
print(bool(range(1)))
print(bool(True))
| number_input = input('number: ')
print(type(number_input))
number_input = int(number_input)
print(type(number_input))
print(bool(0))
print(bool(0.0))
print(bool(''))
print(bool(()))
print(bool([]))
print(bool({}))
print(bool(set()))
print(bool(complex()))
print(bool(range()))
print(bool(False))
print(bool(None))
print(bool(1))
print(bool(1.0))
print(bool('a'))
print(bool((1,)))
print(bool([1]))
print(bool({1}))
print(bool(set([1])))
print(bool(complex(1)))
print(bool(range(1)))
print(bool(True)) |
def surrender():
i01.setHandSpeed("left", 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setHandSpeed("right", 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed("right", 0.75, 0.85, 0.95, 0.85)
i01.setArmSpeed("left", 0.75, 0.85, 0.95, 0.85)
i01.setHeadSpeed(0.65, 0.65)
i01.moveHead(90,90)
i01.moveArm("left",90,139,15,79)
i01.moveArm("right",90,145,37,79)
i01.moveHand("left",50,28,30,10,10,76)
i01.moveHand("right",10,10,10,10,10,139)
| def surrender():
i01.setHandSpeed('left', 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setHandSpeed('right', 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed('right', 0.75, 0.85, 0.95, 0.85)
i01.setArmSpeed('left', 0.75, 0.85, 0.95, 0.85)
i01.setHeadSpeed(0.65, 0.65)
i01.moveHead(90, 90)
i01.moveArm('left', 90, 139, 15, 79)
i01.moveArm('right', 90, 145, 37, 79)
i01.moveHand('left', 50, 28, 30, 10, 10, 76)
i01.moveHand('right', 10, 10, 10, 10, 10, 139) |
'''
Created on June 5, 2012
@author: Jason Huang
'''
'''
Question 1 / 1.
There are N objects kept in a row. The ith object is at position x_i. You want to partition them into K groups. You want to move all objects belonging to the same group to the same position. Objects in two different groups may be placed at the same position. What is the minimum total amount by which you need to move the objects to accomplish this?
Input:
The first line contains the number of test cases T. T test cases follow. The first line contains N and K. The next line contains N space seperated integers, denoting the original positions x_i of the objects.
Output:
Output T lines, containing the total minimum amount by which the objects should be moved.
Constraints:
1 <= T <= 1000
1 <= K <= N <= 200
0 <= x_i <= 1000
Sample Input:
3
3 3
1 1 3
3 2
1 2 4
4 2
1 2 5 7
Sample Output:
0
1
3
Explanation:
For the first case, there is no need to move any object.
For the second case, group objects 1 and 2 together by moving the first object to position 2.
For the third case, group objects 1 and 2 together by moving the first object to position 2 and group objects 3 and 4 together by moving object 3 to position 7. Thus the answer is 1 + 2 = 3.
'''
if __name__ == '__main__':
T = int(input())
for t in range(T):
N,K = [int(x) for x in input().split(" ")]
arr = [int(x) for x in input().split(" ")]
arr.sort()
spaceArr = []
for i in range(len(arr) - 1):
spaceArr.append((arr[i+1] - arr[i], i))
spaceArr.sort(reverse=True)
splitArr = [spaceArr[i][1] for i in range(K-1)]
splitArr.sort()
start = 0
cost = 0
for end in splitArr:
target = arr[(start + end) // 2]
for i in range(start, end + 1):
cost += (arr[i] - target)
start = end + 1
end = len(arr) - 1
target = arr[(start + end) // 2]
for i in range(start, end + 1):
cost += (arr[i] - target)
print(cost)
| """
Created on June 5, 2012
@author: Jason Huang
"""
'\nQuestion 1 / 1.\nThere are N objects kept in a row. The ith object is at position x_i. You want to partition them into K groups. You want to move all objects belonging to the same group to the same position. Objects in two different groups may be placed at the same position. What is the minimum total amount by which you need to move the objects to accomplish this?\n\nInput:\nThe first line contains the number of test cases T. T test cases follow. The first line contains N and K. The next line contains N space seperated integers, denoting the original positions x_i of the objects.\n\nOutput:\nOutput T lines, containing the total minimum amount by which the objects should be moved.\n\nConstraints:\n1 <= T <= 1000\n1 <= K <= N <= 200\n0 <= x_i <= 1000\n\nSample Input:\n3\n3 3\n1 1 3\n3 2\n1 2 4\n4 2\n1 2 5 7\n\nSample Output:\n0\n1\n3\n\nExplanation:\n\nFor the first case, there is no need to move any object.\nFor the second case, group objects 1 and 2 together by moving the first object to position 2.\nFor the third case, group objects 1 and 2 together by moving the first object to position 2 and group objects 3 and 4 together by moving object 3 to position 7. Thus the answer is 1 + 2 = 3.\n\n'
if __name__ == '__main__':
t = int(input())
for t in range(T):
(n, k) = [int(x) for x in input().split(' ')]
arr = [int(x) for x in input().split(' ')]
arr.sort()
space_arr = []
for i in range(len(arr) - 1):
spaceArr.append((arr[i + 1] - arr[i], i))
spaceArr.sort(reverse=True)
split_arr = [spaceArr[i][1] for i in range(K - 1)]
splitArr.sort()
start = 0
cost = 0
for end in splitArr:
target = arr[(start + end) // 2]
for i in range(start, end + 1):
cost += arr[i] - target
start = end + 1
end = len(arr) - 1
target = arr[(start + end) // 2]
for i in range(start, end + 1):
cost += arr[i] - target
print(cost) |
class URLS():
BASE_URL = "http://automationpractice.com/index.php"
CONTACT_PAGE_URL = 'http://automationpractice.com/index.php?controller=contact'
LOGIN_PAGE_URL = 'http://automationpractice.com/index.php?controller=authentication&back=my-account'
REGISTRATION_PAGE_URL = 'http://automationpractice.com/index.php?controller=authentication&back=my-account#account-creation'
| class Urls:
base_url = 'http://automationpractice.com/index.php'
contact_page_url = 'http://automationpractice.com/index.php?controller=contact'
login_page_url = 'http://automationpractice.com/index.php?controller=authentication&back=my-account'
registration_page_url = 'http://automationpractice.com/index.php?controller=authentication&back=my-account#account-creation' |
#
# PySNMP MIB module APPIAN-STRATUM-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/APPIAN-STRATUM-MIB
# Produced by pysmi-0.3.4 at Wed May 1 11:23:58 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
acChassisCurrentTime, acChassisRingId = mibBuilder.importSymbols("APPIAN-CHASSIS-MIB", "acChassisCurrentTime", "acChassisRingId")
acOsap, AcOpStatus, AcNodeId = mibBuilder.importSymbols("APPIAN-SMI-MIB", "acOsap", "AcOpStatus", "AcNodeId")
ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, ConstraintsIntersection, SingleValueConstraint, ConstraintsUnion, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ConstraintsIntersection", "SingleValueConstraint", "ConstraintsUnion", "ValueSizeConstraint")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
IpAddress, ModuleIdentity, Bits, MibScalar, MibTable, MibTableRow, MibTableColumn, NotificationType, TimeTicks, Counter64, Gauge32, ObjectIdentity, Counter32, MibIdentifier, Integer32, iso, Unsigned32 = mibBuilder.importSymbols("SNMPv2-SMI", "IpAddress", "ModuleIdentity", "Bits", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "NotificationType", "TimeTicks", "Counter64", "Gauge32", "ObjectIdentity", "Counter32", "MibIdentifier", "Integer32", "iso", "Unsigned32")
TruthValue, DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "TruthValue", "DisplayString", "TextualConvention")
acStratum = ModuleIdentity((1, 3, 6, 1, 4, 1, 2785, 2, 9))
acStratum.setRevisions(('1900-08-22 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: acStratum.setRevisionsDescriptions(('Draft MIB for Engineering use only.',))
if mibBuilder.loadTexts: acStratum.setLastUpdated('0008220000Z')
if mibBuilder.loadTexts: acStratum.setOrganization('Appian Communications, Inc.')
if mibBuilder.loadTexts: acStratum.setContactInfo('Brian Johnson')
if mibBuilder.loadTexts: acStratum.setDescription('Appian Communications Stratum MIB contain the definitions for the configuration and control of Stratum Clock module hardware information and status.')
acStratumTable = MibTable((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1), )
if mibBuilder.loadTexts: acStratumTable.setStatus('current')
if mibBuilder.loadTexts: acStratumTable.setDescription('This table contains two rows for access and control of the Stratum-3 clock modules.')
acStratumEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1), ).setIndexNames((0, "APPIAN-STRATUM-MIB", "acStratumNodeId"))
if mibBuilder.loadTexts: acStratumEntry.setStatus('current')
if mibBuilder.loadTexts: acStratumEntry.setDescription('A row within the Stratum table containing access control and status information relating to the operation of the Stratum-3 clock module.')
acStratumNodeId = MibTableColumn((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 1), AcNodeId()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: acStratumNodeId.setStatus('current')
if mibBuilder.loadTexts: acStratumNodeId.setDescription("The unique node identification number representing a chassis within a ring of OSAP's.")
acStratumClockSource = MibTableColumn((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("internal", 1), ("bits", 2), ("line", 3))).clone('internal')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: acStratumClockSource.setStatus('current')
if mibBuilder.loadTexts: acStratumClockSource.setDescription('This attribute determines the clock source.')
acStratumOpStatusModuleA = MibTableColumn((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 3), AcOpStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: acStratumOpStatusModuleA.setStatus('current')
if mibBuilder.loadTexts: acStratumOpStatusModuleA.setDescription('This field indicates the current operational status for the clock card in slot 16, module A . Only the following values are applicable to the module: operational, offline, initializing, selfTesting, upgrading, standby, shuttingDown, failed, and hw not present.')
acStratumOpStatusModuleB = MibTableColumn((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 4), AcOpStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: acStratumOpStatusModuleB.setStatus('current')
if mibBuilder.loadTexts: acStratumOpStatusModuleB.setDescription('This field indicates the current operational status for the clock card in slot 16, module B . Only the following values are applicable to the module: operational, offline, initializing, selfTesting, upgrading, standby, shuttingDown, failed, and hw not present.')
acStratumAlarmStatusModuleA = MibTableColumn((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 6))).setMaxAccess("readonly")
if mibBuilder.loadTexts: acStratumAlarmStatusModuleA.setStatus('current')
if mibBuilder.loadTexts: acStratumAlarmStatusModuleA.setDescription('This attribute contains the current status of the clock alarms. The acStratumAlarmStatus is a bit map represented as a sum. Normal may only be set if and only if no other alarms are set. The various bit positions are: 1 normal No alarm present 2 los Loss of Signal 4 lof Loss of Frame ')
acStratumAlarmStatusModuleB = MibTableColumn((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 6))).setMaxAccess("readonly")
if mibBuilder.loadTexts: acStratumAlarmStatusModuleB.setStatus('current')
if mibBuilder.loadTexts: acStratumAlarmStatusModuleB.setDescription('This attribute contains the current status of the clock alarms. The acStratumAlarmStatus is a bit map represented as a sum. Normal must be set if and oly if no other flash is set. The various bit positions are: 1 normal No alarm present 2 los Loss of Signal 4 lof Loss of Frame ')
acStratumCurrentClockSourceModuleA = MibTableColumn((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=NamedValues(("unknown", 0), ("none", 1), ("bits-a", 2), ("bits-b", 3), ("line-slot1-port1", 4), ("line-slot1-port2", 5), ("line-slot2-port1", 6), ("line-slot2-port2", 7), ("holdover", 8), ("internal", 9)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: acStratumCurrentClockSourceModuleA.setStatus('current')
if mibBuilder.loadTexts: acStratumCurrentClockSourceModuleA.setDescription('This attribute displays the current source that the clock card is selecting.')
acStratumCurrentClockSourceModuleB = MibTableColumn((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=NamedValues(("unknown", 0), ("none", 1), ("bits-a", 2), ("bits-b", 3), ("line-slot1-port1", 4), ("line-slot1-port2", 5), ("line-slot2-port1", 6), ("line-slot2-port2", 7), ("holdover", 8), ("internal", 9)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: acStratumCurrentClockSourceModuleB.setStatus('current')
if mibBuilder.loadTexts: acStratumCurrentClockSourceModuleB.setDescription('This attribute displays the current source that the clock card is selecting.')
acStratumLockoutReference = MibTableColumn((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 63))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: acStratumLockoutReference.setStatus('current')
if mibBuilder.loadTexts: acStratumLockoutReference.setDescription('This attribute is a bit mask of clock references that should be locked out from selection for the clock source. None can only be selected when no other lockout references are selected. The various bit positions are: 0 none No clock references are locked out from selection. 1 bits-a BITS source from clock module A is locked out. 2 bits-b BITS source from clock module B is locked out. 4 line-slot1 LINE timing source from SONET slot 1 is locked out. 8 line-slot2 LINE timing source from SONET slot 2 is locked out. 16 holdover-a Holdover from clock module A is locked out. 32 holdover-b Holdover from clock module B is locked out. ')
acStratumManualSwitch = MibTableColumn((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("none", 0), ("bits-a", 1), ("bits-b", 2), ("line-slot1", 3), ("line-slot2", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: acStratumManualSwitch.setStatus('current')
if mibBuilder.loadTexts: acStratumManualSwitch.setDescription('This attribute will manually switch the clock references. If the clock reference does not exist, is locked out, or the reference has failed, the switch will not take place.')
acStratumForcedSwitch = MibTableColumn((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("none", 0), ("bits-a", 1), ("bits-b", 2), ("line-slot1", 3), ("line-slot2", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: acStratumForcedSwitch.setStatus('current')
if mibBuilder.loadTexts: acStratumForcedSwitch.setDescription('This attribute will force switch the clock references. If the clock reference does not exist or is locked out, the switch will not take place.')
acStratumRevertiveRefSwitchEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 12), TruthValue().clone('false')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: acStratumRevertiveRefSwitchEnabled.setStatus('current')
if mibBuilder.loadTexts: acStratumRevertiveRefSwitchEnabled.setDescription('Setting of this attribute to true(1) will the reference to revert back to the original reference when that reference become ready again.')
acStratumClearAlarms = MibTableColumn((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 13), TruthValue().clone('false')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: acStratumClearAlarms.setStatus('current')
if mibBuilder.loadTexts: acStratumClearAlarms.setDescription('Setting of this attribute to true(1) will cause the alarm contacts to clear. Reading this attribute will always return false.')
acStratumLineTimingPortSlot1 = MibTableColumn((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: acStratumLineTimingPortSlot1.setStatus('current')
if mibBuilder.loadTexts: acStratumLineTimingPortSlot1.setDescription('When configured for line timing, this value describes which port on the SONET card will be used to drive the line. This value is not applicable when not configured for line timing.')
acStratumLineTimingPortSlot2 = MibTableColumn((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: acStratumLineTimingPortSlot2.setStatus('current')
if mibBuilder.loadTexts: acStratumLineTimingPortSlot2.setDescription('When configured for line timing, this value describes which port on the SONET card will be used to drive the line. This value is not applicable when not configured for line timing.')
acStratumBITSFramingType = MibTableColumn((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("esf", 1), ("d4", 2))).clone('esf')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: acStratumBITSFramingType.setStatus('current')
if mibBuilder.loadTexts: acStratumBITSFramingType.setDescription('When configured for BITS timing, this value describes the type of framing that will be used on the BITS interface. This value is not applicable when not configured for BITS timing.')
acStratumCurrentClockSourceSystem = MibTableColumn((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("unknown", 0), ("bits-a", 1), ("bits-b", 2), ("line-slot1-port1", 3), ("line-slot1-port2", 4), ("line-slot2-port1", 5), ("line-slot2-port2", 6), ("holdover-clock-a", 7), ("holdover-clock-b", 8), ("internal-clock-a", 9), ("internal-clock-b", 10), ("internal-sonet-slot1", 11), ("internal-sonet-slot2", 12)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: acStratumCurrentClockSourceSystem.setStatus('current')
if mibBuilder.loadTexts: acStratumCurrentClockSourceSystem.setDescription('This attribute displays the current clock source that the system is selecting.')
acStratumTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0))
acStratumFailedModuleATrap = NotificationType((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0, 1)).setObjects(("APPIAN-CHASSIS-MIB", "acChassisCurrentTime"), ("APPIAN-CHASSIS-MIB", "acChassisRingId"), ("APPIAN-STRATUM-MIB", "acStratumNodeId"))
if mibBuilder.loadTexts: acStratumFailedModuleATrap.setStatus('current')
if mibBuilder.loadTexts: acStratumFailedModuleATrap.setDescription('The stratum clock module failed.')
acStratumFailedModuleBTrap = NotificationType((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0, 2)).setObjects(("APPIAN-CHASSIS-MIB", "acChassisCurrentTime"), ("APPIAN-CHASSIS-MIB", "acChassisRingId"), ("APPIAN-STRATUM-MIB", "acStratumNodeId"))
if mibBuilder.loadTexts: acStratumFailedModuleBTrap.setStatus('current')
if mibBuilder.loadTexts: acStratumFailedModuleBTrap.setDescription('The stratum clock module failed.')
acStratumClockFailureModuleATrap = NotificationType((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0, 3)).setObjects(("APPIAN-CHASSIS-MIB", "acChassisCurrentTime"), ("APPIAN-CHASSIS-MIB", "acChassisRingId"), ("APPIAN-STRATUM-MIB", "acStratumNodeId"), ("APPIAN-STRATUM-MIB", "acStratumAlarmStatusModuleA"))
if mibBuilder.loadTexts: acStratumClockFailureModuleATrap.setStatus('current')
if mibBuilder.loadTexts: acStratumClockFailureModuleATrap.setDescription('Stratum clock agent has detected a clock timing failure.')
acStratumClockFailureModuleBTrap = NotificationType((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0, 4)).setObjects(("APPIAN-CHASSIS-MIB", "acChassisCurrentTime"), ("APPIAN-CHASSIS-MIB", "acChassisRingId"), ("APPIAN-STRATUM-MIB", "acStratumNodeId"), ("APPIAN-STRATUM-MIB", "acStratumAlarmStatusModuleB"))
if mibBuilder.loadTexts: acStratumClockFailureModuleBTrap.setStatus('current')
if mibBuilder.loadTexts: acStratumClockFailureModuleBTrap.setDescription('Stratum clock agent has detected a clock timing failure.')
acStratumRemovalModuleATrap = NotificationType((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0, 5)).setObjects(("APPIAN-CHASSIS-MIB", "acChassisCurrentTime"), ("APPIAN-CHASSIS-MIB", "acChassisRingId"), ("APPIAN-STRATUM-MIB", "acStratumNodeId"))
if mibBuilder.loadTexts: acStratumRemovalModuleATrap.setStatus('current')
if mibBuilder.loadTexts: acStratumRemovalModuleATrap.setDescription('The stratum clock module has been removed from the system.')
acStratumRemovalModuleBTrap = NotificationType((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0, 6)).setObjects(("APPIAN-CHASSIS-MIB", "acChassisCurrentTime"), ("APPIAN-CHASSIS-MIB", "acChassisRingId"), ("APPIAN-STRATUM-MIB", "acStratumNodeId"))
if mibBuilder.loadTexts: acStratumRemovalModuleBTrap.setStatus('current')
if mibBuilder.loadTexts: acStratumRemovalModuleBTrap.setDescription('The stratum clock module has been removed from the system.')
acStratumInsertedModuleATrap = NotificationType((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0, 7)).setObjects(("APPIAN-CHASSIS-MIB", "acChassisCurrentTime"), ("APPIAN-CHASSIS-MIB", "acChassisRingId"), ("APPIAN-STRATUM-MIB", "acStratumNodeId"))
if mibBuilder.loadTexts: acStratumInsertedModuleATrap.setStatus('current')
if mibBuilder.loadTexts: acStratumInsertedModuleATrap.setDescription('A stratum clock module has been inserted into the system.')
acStratumInsertedModuleBTrap = NotificationType((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0, 8)).setObjects(("APPIAN-CHASSIS-MIB", "acChassisCurrentTime"), ("APPIAN-CHASSIS-MIB", "acChassisRingId"), ("APPIAN-STRATUM-MIB", "acStratumNodeId"))
if mibBuilder.loadTexts: acStratumInsertedModuleBTrap.setStatus('current')
if mibBuilder.loadTexts: acStratumInsertedModuleBTrap.setDescription('A stratum clock module has been inserted into the system.')
acStratumClockModuleAOk = NotificationType((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0, 9)).setObjects(("APPIAN-CHASSIS-MIB", "acChassisCurrentTime"), ("APPIAN-CHASSIS-MIB", "acChassisRingId"), ("APPIAN-STRATUM-MIB", "acStratumNodeId"), ("APPIAN-STRATUM-MIB", "acStratumAlarmStatusModuleA"))
if mibBuilder.loadTexts: acStratumClockModuleAOk.setStatus('current')
if mibBuilder.loadTexts: acStratumClockModuleAOk.setDescription('Stratum clock agent has recovered clock timing.')
acStratumClockModuleBOk = NotificationType((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0, 10)).setObjects(("APPIAN-CHASSIS-MIB", "acChassisCurrentTime"), ("APPIAN-CHASSIS-MIB", "acChassisRingId"), ("APPIAN-STRATUM-MIB", "acStratumNodeId"), ("APPIAN-STRATUM-MIB", "acStratumAlarmStatusModuleB"))
if mibBuilder.loadTexts: acStratumClockModuleBOk.setStatus('current')
if mibBuilder.loadTexts: acStratumClockModuleBOk.setDescription('Stratum clock agent has recovered clock timing.')
acStratumSystemClockSourceChange = NotificationType((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0, 11)).setObjects(("APPIAN-CHASSIS-MIB", "acChassisCurrentTime"), ("APPIAN-CHASSIS-MIB", "acChassisRingId"), ("APPIAN-STRATUM-MIB", "acStratumNodeId"), ("APPIAN-STRATUM-MIB", "acStratumCurrentClockSourceSystem"))
if mibBuilder.loadTexts: acStratumSystemClockSourceChange.setStatus('current')
if mibBuilder.loadTexts: acStratumSystemClockSourceChange.setDescription('Stratum clock source has changed to acStratumCurrentClockSourceSystem.')
mibBuilder.exportSymbols("APPIAN-STRATUM-MIB", acStratumClockFailureModuleATrap=acStratumClockFailureModuleATrap, acStratumManualSwitch=acStratumManualSwitch, acStratumClockModuleBOk=acStratumClockModuleBOk, acStratumRemovalModuleBTrap=acStratumRemovalModuleBTrap, acStratumBITSFramingType=acStratumBITSFramingType, acStratumTable=acStratumTable, acStratumRevertiveRefSwitchEnabled=acStratumRevertiveRefSwitchEnabled, acStratumRemovalModuleATrap=acStratumRemovalModuleATrap, acStratumFailedModuleBTrap=acStratumFailedModuleBTrap, acStratumLineTimingPortSlot2=acStratumLineTimingPortSlot2, acStratumInsertedModuleATrap=acStratumInsertedModuleATrap, acStratumFailedModuleATrap=acStratumFailedModuleATrap, acStratumTraps=acStratumTraps, acStratumAlarmStatusModuleA=acStratumAlarmStatusModuleA, acStratumNodeId=acStratumNodeId, acStratumClockModuleAOk=acStratumClockModuleAOk, acStratumOpStatusModuleB=acStratumOpStatusModuleB, acStratumForcedSwitch=acStratumForcedSwitch, acStratumCurrentClockSourceModuleA=acStratumCurrentClockSourceModuleA, acStratumAlarmStatusModuleB=acStratumAlarmStatusModuleB, acStratumCurrentClockSourceSystem=acStratumCurrentClockSourceSystem, acStratumClockSource=acStratumClockSource, acStratumCurrentClockSourceModuleB=acStratumCurrentClockSourceModuleB, PYSNMP_MODULE_ID=acStratum, acStratum=acStratum, acStratumLineTimingPortSlot1=acStratumLineTimingPortSlot1, acStratumSystemClockSourceChange=acStratumSystemClockSourceChange, acStratumEntry=acStratumEntry, acStratumOpStatusModuleA=acStratumOpStatusModuleA, acStratumClearAlarms=acStratumClearAlarms, acStratumLockoutReference=acStratumLockoutReference, acStratumClockFailureModuleBTrap=acStratumClockFailureModuleBTrap, acStratumInsertedModuleBTrap=acStratumInsertedModuleBTrap)
| (ac_chassis_current_time, ac_chassis_ring_id) = mibBuilder.importSymbols('APPIAN-CHASSIS-MIB', 'acChassisCurrentTime', 'acChassisRingId')
(ac_osap, ac_op_status, ac_node_id) = mibBuilder.importSymbols('APPIAN-SMI-MIB', 'acOsap', 'AcOpStatus', 'AcNodeId')
(object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_range_constraint, constraints_intersection, single_value_constraint, constraints_union, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ConstraintsIntersection', 'SingleValueConstraint', 'ConstraintsUnion', 'ValueSizeConstraint')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(ip_address, module_identity, bits, mib_scalar, mib_table, mib_table_row, mib_table_column, notification_type, time_ticks, counter64, gauge32, object_identity, counter32, mib_identifier, integer32, iso, unsigned32) = mibBuilder.importSymbols('SNMPv2-SMI', 'IpAddress', 'ModuleIdentity', 'Bits', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'NotificationType', 'TimeTicks', 'Counter64', 'Gauge32', 'ObjectIdentity', 'Counter32', 'MibIdentifier', 'Integer32', 'iso', 'Unsigned32')
(truth_value, display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'TruthValue', 'DisplayString', 'TextualConvention')
ac_stratum = module_identity((1, 3, 6, 1, 4, 1, 2785, 2, 9))
acStratum.setRevisions(('1900-08-22 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
acStratum.setRevisionsDescriptions(('Draft MIB for Engineering use only.',))
if mibBuilder.loadTexts:
acStratum.setLastUpdated('0008220000Z')
if mibBuilder.loadTexts:
acStratum.setOrganization('Appian Communications, Inc.')
if mibBuilder.loadTexts:
acStratum.setContactInfo('Brian Johnson')
if mibBuilder.loadTexts:
acStratum.setDescription('Appian Communications Stratum MIB contain the definitions for the configuration and control of Stratum Clock module hardware information and status.')
ac_stratum_table = mib_table((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1))
if mibBuilder.loadTexts:
acStratumTable.setStatus('current')
if mibBuilder.loadTexts:
acStratumTable.setDescription('This table contains two rows for access and control of the Stratum-3 clock modules.')
ac_stratum_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1)).setIndexNames((0, 'APPIAN-STRATUM-MIB', 'acStratumNodeId'))
if mibBuilder.loadTexts:
acStratumEntry.setStatus('current')
if mibBuilder.loadTexts:
acStratumEntry.setDescription('A row within the Stratum table containing access control and status information relating to the operation of the Stratum-3 clock module.')
ac_stratum_node_id = mib_table_column((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 1), ac_node_id()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
acStratumNodeId.setStatus('current')
if mibBuilder.loadTexts:
acStratumNodeId.setDescription("The unique node identification number representing a chassis within a ring of OSAP's.")
ac_stratum_clock_source = mib_table_column((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('internal', 1), ('bits', 2), ('line', 3))).clone('internal')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
acStratumClockSource.setStatus('current')
if mibBuilder.loadTexts:
acStratumClockSource.setDescription('This attribute determines the clock source.')
ac_stratum_op_status_module_a = mib_table_column((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 3), ac_op_status()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acStratumOpStatusModuleA.setStatus('current')
if mibBuilder.loadTexts:
acStratumOpStatusModuleA.setDescription('This field indicates the current operational status for the clock card in slot 16, module A . Only the following values are applicable to the module: operational, offline, initializing, selfTesting, upgrading, standby, shuttingDown, failed, and hw not present.')
ac_stratum_op_status_module_b = mib_table_column((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 4), ac_op_status()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acStratumOpStatusModuleB.setStatus('current')
if mibBuilder.loadTexts:
acStratumOpStatusModuleB.setDescription('This field indicates the current operational status for the clock card in slot 16, module B . Only the following values are applicable to the module: operational, offline, initializing, selfTesting, upgrading, standby, shuttingDown, failed, and hw not present.')
ac_stratum_alarm_status_module_a = mib_table_column((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 6))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acStratumAlarmStatusModuleA.setStatus('current')
if mibBuilder.loadTexts:
acStratumAlarmStatusModuleA.setDescription('This attribute contains the current status of the clock alarms. The acStratumAlarmStatus is a bit map represented as a sum. Normal may only be set if and only if no other alarms are set. The various bit positions are: 1 normal No alarm present 2 los Loss of Signal 4 lof Loss of Frame ')
ac_stratum_alarm_status_module_b = mib_table_column((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 6))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acStratumAlarmStatusModuleB.setStatus('current')
if mibBuilder.loadTexts:
acStratumAlarmStatusModuleB.setDescription('This attribute contains the current status of the clock alarms. The acStratumAlarmStatus is a bit map represented as a sum. Normal must be set if and oly if no other flash is set. The various bit positions are: 1 normal No alarm present 2 los Loss of Signal 4 lof Loss of Frame ')
ac_stratum_current_clock_source_module_a = mib_table_column((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=named_values(('unknown', 0), ('none', 1), ('bits-a', 2), ('bits-b', 3), ('line-slot1-port1', 4), ('line-slot1-port2', 5), ('line-slot2-port1', 6), ('line-slot2-port2', 7), ('holdover', 8), ('internal', 9)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acStratumCurrentClockSourceModuleA.setStatus('current')
if mibBuilder.loadTexts:
acStratumCurrentClockSourceModuleA.setDescription('This attribute displays the current source that the clock card is selecting.')
ac_stratum_current_clock_source_module_b = mib_table_column((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=named_values(('unknown', 0), ('none', 1), ('bits-a', 2), ('bits-b', 3), ('line-slot1-port1', 4), ('line-slot1-port2', 5), ('line-slot2-port1', 6), ('line-slot2-port2', 7), ('holdover', 8), ('internal', 9)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acStratumCurrentClockSourceModuleB.setStatus('current')
if mibBuilder.loadTexts:
acStratumCurrentClockSourceModuleB.setDescription('This attribute displays the current source that the clock card is selecting.')
ac_stratum_lockout_reference = mib_table_column((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 63))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
acStratumLockoutReference.setStatus('current')
if mibBuilder.loadTexts:
acStratumLockoutReference.setDescription('This attribute is a bit mask of clock references that should be locked out from selection for the clock source. None can only be selected when no other lockout references are selected. The various bit positions are: 0 none No clock references are locked out from selection. 1 bits-a BITS source from clock module A is locked out. 2 bits-b BITS source from clock module B is locked out. 4 line-slot1 LINE timing source from SONET slot 1 is locked out. 8 line-slot2 LINE timing source from SONET slot 2 is locked out. 16 holdover-a Holdover from clock module A is locked out. 32 holdover-b Holdover from clock module B is locked out. ')
ac_stratum_manual_switch = mib_table_column((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('none', 0), ('bits-a', 1), ('bits-b', 2), ('line-slot1', 3), ('line-slot2', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
acStratumManualSwitch.setStatus('current')
if mibBuilder.loadTexts:
acStratumManualSwitch.setDescription('This attribute will manually switch the clock references. If the clock reference does not exist, is locked out, or the reference has failed, the switch will not take place.')
ac_stratum_forced_switch = mib_table_column((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('none', 0), ('bits-a', 1), ('bits-b', 2), ('line-slot1', 3), ('line-slot2', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
acStratumForcedSwitch.setStatus('current')
if mibBuilder.loadTexts:
acStratumForcedSwitch.setDescription('This attribute will force switch the clock references. If the clock reference does not exist or is locked out, the switch will not take place.')
ac_stratum_revertive_ref_switch_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 12), truth_value().clone('false')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
acStratumRevertiveRefSwitchEnabled.setStatus('current')
if mibBuilder.loadTexts:
acStratumRevertiveRefSwitchEnabled.setDescription('Setting of this attribute to true(1) will the reference to revert back to the original reference when that reference become ready again.')
ac_stratum_clear_alarms = mib_table_column((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 13), truth_value().clone('false')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
acStratumClearAlarms.setStatus('current')
if mibBuilder.loadTexts:
acStratumClearAlarms.setDescription('Setting of this attribute to true(1) will cause the alarm contacts to clear. Reading this attribute will always return false.')
ac_stratum_line_timing_port_slot1 = mib_table_column((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(1, 2)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
acStratumLineTimingPortSlot1.setStatus('current')
if mibBuilder.loadTexts:
acStratumLineTimingPortSlot1.setDescription('When configured for line timing, this value describes which port on the SONET card will be used to drive the line. This value is not applicable when not configured for line timing.')
ac_stratum_line_timing_port_slot2 = mib_table_column((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(1, 2)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
acStratumLineTimingPortSlot2.setStatus('current')
if mibBuilder.loadTexts:
acStratumLineTimingPortSlot2.setDescription('When configured for line timing, this value describes which port on the SONET card will be used to drive the line. This value is not applicable when not configured for line timing.')
ac_stratum_bits_framing_type = mib_table_column((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('esf', 1), ('d4', 2))).clone('esf')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
acStratumBITSFramingType.setStatus('current')
if mibBuilder.loadTexts:
acStratumBITSFramingType.setDescription('When configured for BITS timing, this value describes the type of framing that will be used on the BITS interface. This value is not applicable when not configured for BITS timing.')
ac_stratum_current_clock_source_system = mib_table_column((1, 3, 6, 1, 4, 1, 2785, 2, 9, 1, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('unknown', 0), ('bits-a', 1), ('bits-b', 2), ('line-slot1-port1', 3), ('line-slot1-port2', 4), ('line-slot2-port1', 5), ('line-slot2-port2', 6), ('holdover-clock-a', 7), ('holdover-clock-b', 8), ('internal-clock-a', 9), ('internal-clock-b', 10), ('internal-sonet-slot1', 11), ('internal-sonet-slot2', 12)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acStratumCurrentClockSourceSystem.setStatus('current')
if mibBuilder.loadTexts:
acStratumCurrentClockSourceSystem.setDescription('This attribute displays the current clock source that the system is selecting.')
ac_stratum_traps = mib_identifier((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0))
ac_stratum_failed_module_a_trap = notification_type((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0, 1)).setObjects(('APPIAN-CHASSIS-MIB', 'acChassisCurrentTime'), ('APPIAN-CHASSIS-MIB', 'acChassisRingId'), ('APPIAN-STRATUM-MIB', 'acStratumNodeId'))
if mibBuilder.loadTexts:
acStratumFailedModuleATrap.setStatus('current')
if mibBuilder.loadTexts:
acStratumFailedModuleATrap.setDescription('The stratum clock module failed.')
ac_stratum_failed_module_b_trap = notification_type((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0, 2)).setObjects(('APPIAN-CHASSIS-MIB', 'acChassisCurrentTime'), ('APPIAN-CHASSIS-MIB', 'acChassisRingId'), ('APPIAN-STRATUM-MIB', 'acStratumNodeId'))
if mibBuilder.loadTexts:
acStratumFailedModuleBTrap.setStatus('current')
if mibBuilder.loadTexts:
acStratumFailedModuleBTrap.setDescription('The stratum clock module failed.')
ac_stratum_clock_failure_module_a_trap = notification_type((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0, 3)).setObjects(('APPIAN-CHASSIS-MIB', 'acChassisCurrentTime'), ('APPIAN-CHASSIS-MIB', 'acChassisRingId'), ('APPIAN-STRATUM-MIB', 'acStratumNodeId'), ('APPIAN-STRATUM-MIB', 'acStratumAlarmStatusModuleA'))
if mibBuilder.loadTexts:
acStratumClockFailureModuleATrap.setStatus('current')
if mibBuilder.loadTexts:
acStratumClockFailureModuleATrap.setDescription('Stratum clock agent has detected a clock timing failure.')
ac_stratum_clock_failure_module_b_trap = notification_type((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0, 4)).setObjects(('APPIAN-CHASSIS-MIB', 'acChassisCurrentTime'), ('APPIAN-CHASSIS-MIB', 'acChassisRingId'), ('APPIAN-STRATUM-MIB', 'acStratumNodeId'), ('APPIAN-STRATUM-MIB', 'acStratumAlarmStatusModuleB'))
if mibBuilder.loadTexts:
acStratumClockFailureModuleBTrap.setStatus('current')
if mibBuilder.loadTexts:
acStratumClockFailureModuleBTrap.setDescription('Stratum clock agent has detected a clock timing failure.')
ac_stratum_removal_module_a_trap = notification_type((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0, 5)).setObjects(('APPIAN-CHASSIS-MIB', 'acChassisCurrentTime'), ('APPIAN-CHASSIS-MIB', 'acChassisRingId'), ('APPIAN-STRATUM-MIB', 'acStratumNodeId'))
if mibBuilder.loadTexts:
acStratumRemovalModuleATrap.setStatus('current')
if mibBuilder.loadTexts:
acStratumRemovalModuleATrap.setDescription('The stratum clock module has been removed from the system.')
ac_stratum_removal_module_b_trap = notification_type((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0, 6)).setObjects(('APPIAN-CHASSIS-MIB', 'acChassisCurrentTime'), ('APPIAN-CHASSIS-MIB', 'acChassisRingId'), ('APPIAN-STRATUM-MIB', 'acStratumNodeId'))
if mibBuilder.loadTexts:
acStratumRemovalModuleBTrap.setStatus('current')
if mibBuilder.loadTexts:
acStratumRemovalModuleBTrap.setDescription('The stratum clock module has been removed from the system.')
ac_stratum_inserted_module_a_trap = notification_type((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0, 7)).setObjects(('APPIAN-CHASSIS-MIB', 'acChassisCurrentTime'), ('APPIAN-CHASSIS-MIB', 'acChassisRingId'), ('APPIAN-STRATUM-MIB', 'acStratumNodeId'))
if mibBuilder.loadTexts:
acStratumInsertedModuleATrap.setStatus('current')
if mibBuilder.loadTexts:
acStratumInsertedModuleATrap.setDescription('A stratum clock module has been inserted into the system.')
ac_stratum_inserted_module_b_trap = notification_type((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0, 8)).setObjects(('APPIAN-CHASSIS-MIB', 'acChassisCurrentTime'), ('APPIAN-CHASSIS-MIB', 'acChassisRingId'), ('APPIAN-STRATUM-MIB', 'acStratumNodeId'))
if mibBuilder.loadTexts:
acStratumInsertedModuleBTrap.setStatus('current')
if mibBuilder.loadTexts:
acStratumInsertedModuleBTrap.setDescription('A stratum clock module has been inserted into the system.')
ac_stratum_clock_module_a_ok = notification_type((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0, 9)).setObjects(('APPIAN-CHASSIS-MIB', 'acChassisCurrentTime'), ('APPIAN-CHASSIS-MIB', 'acChassisRingId'), ('APPIAN-STRATUM-MIB', 'acStratumNodeId'), ('APPIAN-STRATUM-MIB', 'acStratumAlarmStatusModuleA'))
if mibBuilder.loadTexts:
acStratumClockModuleAOk.setStatus('current')
if mibBuilder.loadTexts:
acStratumClockModuleAOk.setDescription('Stratum clock agent has recovered clock timing.')
ac_stratum_clock_module_b_ok = notification_type((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0, 10)).setObjects(('APPIAN-CHASSIS-MIB', 'acChassisCurrentTime'), ('APPIAN-CHASSIS-MIB', 'acChassisRingId'), ('APPIAN-STRATUM-MIB', 'acStratumNodeId'), ('APPIAN-STRATUM-MIB', 'acStratumAlarmStatusModuleB'))
if mibBuilder.loadTexts:
acStratumClockModuleBOk.setStatus('current')
if mibBuilder.loadTexts:
acStratumClockModuleBOk.setDescription('Stratum clock agent has recovered clock timing.')
ac_stratum_system_clock_source_change = notification_type((1, 3, 6, 1, 4, 1, 2785, 2, 9, 0, 11)).setObjects(('APPIAN-CHASSIS-MIB', 'acChassisCurrentTime'), ('APPIAN-CHASSIS-MIB', 'acChassisRingId'), ('APPIAN-STRATUM-MIB', 'acStratumNodeId'), ('APPIAN-STRATUM-MIB', 'acStratumCurrentClockSourceSystem'))
if mibBuilder.loadTexts:
acStratumSystemClockSourceChange.setStatus('current')
if mibBuilder.loadTexts:
acStratumSystemClockSourceChange.setDescription('Stratum clock source has changed to acStratumCurrentClockSourceSystem.')
mibBuilder.exportSymbols('APPIAN-STRATUM-MIB', acStratumClockFailureModuleATrap=acStratumClockFailureModuleATrap, acStratumManualSwitch=acStratumManualSwitch, acStratumClockModuleBOk=acStratumClockModuleBOk, acStratumRemovalModuleBTrap=acStratumRemovalModuleBTrap, acStratumBITSFramingType=acStratumBITSFramingType, acStratumTable=acStratumTable, acStratumRevertiveRefSwitchEnabled=acStratumRevertiveRefSwitchEnabled, acStratumRemovalModuleATrap=acStratumRemovalModuleATrap, acStratumFailedModuleBTrap=acStratumFailedModuleBTrap, acStratumLineTimingPortSlot2=acStratumLineTimingPortSlot2, acStratumInsertedModuleATrap=acStratumInsertedModuleATrap, acStratumFailedModuleATrap=acStratumFailedModuleATrap, acStratumTraps=acStratumTraps, acStratumAlarmStatusModuleA=acStratumAlarmStatusModuleA, acStratumNodeId=acStratumNodeId, acStratumClockModuleAOk=acStratumClockModuleAOk, acStratumOpStatusModuleB=acStratumOpStatusModuleB, acStratumForcedSwitch=acStratumForcedSwitch, acStratumCurrentClockSourceModuleA=acStratumCurrentClockSourceModuleA, acStratumAlarmStatusModuleB=acStratumAlarmStatusModuleB, acStratumCurrentClockSourceSystem=acStratumCurrentClockSourceSystem, acStratumClockSource=acStratumClockSource, acStratumCurrentClockSourceModuleB=acStratumCurrentClockSourceModuleB, PYSNMP_MODULE_ID=acStratum, acStratum=acStratum, acStratumLineTimingPortSlot1=acStratumLineTimingPortSlot1, acStratumSystemClockSourceChange=acStratumSystemClockSourceChange, acStratumEntry=acStratumEntry, acStratumOpStatusModuleA=acStratumOpStatusModuleA, acStratumClearAlarms=acStratumClearAlarms, acStratumLockoutReference=acStratumLockoutReference, acStratumClockFailureModuleBTrap=acStratumClockFailureModuleBTrap, acStratumInsertedModuleBTrap=acStratumInsertedModuleBTrap) |
class Solution:
def majorityElement(self, nums):
c1, c2, cnt1, cnt2 = 0, 1, 0, 0
for num in nums:
if num == c1:
cnt1 += 1
elif num == c2:
cnt2 += 1
elif not cnt1:
c1, cnt1 = num, 1
elif not cnt2:
c2, cnt2 = num, 1
else:
cnt1 -= 1
cnt2 -= 1
return [c for c in (c1, c2) if nums.count(c) > len(nums) // 3] | class Solution:
def majority_element(self, nums):
(c1, c2, cnt1, cnt2) = (0, 1, 0, 0)
for num in nums:
if num == c1:
cnt1 += 1
elif num == c2:
cnt2 += 1
elif not cnt1:
(c1, cnt1) = (num, 1)
elif not cnt2:
(c2, cnt2) = (num, 1)
else:
cnt1 -= 1
cnt2 -= 1
return [c for c in (c1, c2) if nums.count(c) > len(nums) // 3] |
class Node:
# Each node is a tree
def __init__(self, value):
self.data = value
self.right = None
self.left = None
def insert(self, value):
if self.data:
if value < self.data:
if self.left is None:
self.left = Node(value)
else:
self.left.insert(value)
elif value > self.data:
if self.right is None:
self.right = Node(value)
else:
self.right.insert(value)
else:
self.data = value
def printTree(self):
if self.left:
self.left.printTree()
print(self.data)
if self.right:
self.right.printTree()
# Inorder traversal
# Left -> Root -> Right
def inorderTraversal(self, root):
res = []
if root:
res = self.inorderTraversal(root.left)
res.append(root.data)
res = res + self.inorderTraversal(root.right)
return res
# Preorder traversal
# Root -> Left ->Right
def PreorderTraversal(self, root):
res = []
if root:
res.append(root.data)
res = res + self.PreorderTraversal(root.left)
res = res + self.PreorderTraversal(root.right)
return res
# Postorder traversal
# Left ->Right -> Root
def PostorderTraversal(self, root):
res = []
if root:
res = self.PostorderTraversal(root.left)
res = res + self.PostorderTraversal(root.right)
res.append(root.data)
return res
tree = Node(5)
tree.insert(2)
tree.insert(10)
tree.insert(8)
tree.printTree()
# prints 2 5 8 10 | class Node:
def __init__(self, value):
self.data = value
self.right = None
self.left = None
def insert(self, value):
if self.data:
if value < self.data:
if self.left is None:
self.left = node(value)
else:
self.left.insert(value)
elif value > self.data:
if self.right is None:
self.right = node(value)
else:
self.right.insert(value)
else:
self.data = value
def print_tree(self):
if self.left:
self.left.printTree()
print(self.data)
if self.right:
self.right.printTree()
def inorder_traversal(self, root):
res = []
if root:
res = self.inorderTraversal(root.left)
res.append(root.data)
res = res + self.inorderTraversal(root.right)
return res
def preorder_traversal(self, root):
res = []
if root:
res.append(root.data)
res = res + self.PreorderTraversal(root.left)
res = res + self.PreorderTraversal(root.right)
return res
def postorder_traversal(self, root):
res = []
if root:
res = self.PostorderTraversal(root.left)
res = res + self.PostorderTraversal(root.right)
res.append(root.data)
return res
tree = node(5)
tree.insert(2)
tree.insert(10)
tree.insert(8)
tree.printTree() |
'''
Statement
Chess knight can move to a square that is two squares away horizontally and one square vertically, or two squares vertically and one square horizontally. The complete move therefore looks like the letter L. Given two different squares of the chessboard, determine whether a knight can go from the first square to the second one in a single move.
The program receives four numbers from 1 to 8 each specifying the column and the row number, first two - for the first square, and the last two - for the second square. The program should output YES if a knight can go from the first square to the second one in a single move or NO otherwise.
Example input
2
4
3
2
Example output
YES
'''
x1 = int(input())
y1 = int(input())
x2 = int(input())
y2 = int(input())
if abs(x2 - x1) == 2:
if abs(y2 - y1) == 1:
print("YES")
else:
print("NO")
elif abs(y2 - y1) == 2:
if abs(x2 - x1) == 1:
print("YES")
else:
print("NO")
else:
print("NO")
| """
Statement
Chess knight can move to a square that is two squares away horizontally and one square vertically, or two squares vertically and one square horizontally. The complete move therefore looks like the letter L. Given two different squares of the chessboard, determine whether a knight can go from the first square to the second one in a single move.
The program receives four numbers from 1 to 8 each specifying the column and the row number, first two - for the first square, and the last two - for the second square. The program should output YES if a knight can go from the first square to the second one in a single move or NO otherwise.
Example input
2
4
3
2
Example output
YES
"""
x1 = int(input())
y1 = int(input())
x2 = int(input())
y2 = int(input())
if abs(x2 - x1) == 2:
if abs(y2 - y1) == 1:
print('YES')
else:
print('NO')
elif abs(y2 - y1) == 2:
if abs(x2 - x1) == 1:
print('YES')
else:
print('NO')
else:
print('NO') |
def strAppend(suffix):
return lambda x : x + suffix
| def str_append(suffix):
return lambda x: x + suffix |
numerals = {
"I": 1,
"IV": 4,
"V": 5,
"IX": 9,
"X": 10,
"XL": 40,
"L": 50,
"XC": 90,
"C": 100,
"CD": 400,
"D": 500,
"CM": 900,
"M": 1000
}
def checkio(inp, output=""):
next = max([e for e in numerals if numerals[e]<=inp], key=lambda x: numerals[x])
output = output+next
inp = inp-numerals[next]
if inp <= 0:
return output
else:
return checkio(inp, output=output)
if __name__ == "__main__":
print(checkio(44)) | numerals = {'I': 1, 'IV': 4, 'V': 5, 'IX': 9, 'X': 10, 'XL': 40, 'L': 50, 'XC': 90, 'C': 100, 'CD': 400, 'D': 500, 'CM': 900, 'M': 1000}
def checkio(inp, output=''):
next = max([e for e in numerals if numerals[e] <= inp], key=lambda x: numerals[x])
output = output + next
inp = inp - numerals[next]
if inp <= 0:
return output
else:
return checkio(inp, output=output)
if __name__ == '__main__':
print(checkio(44)) |
root_folder = '/var/www/'
charset = '<meta charset="utf-8">'
def application(env, start_response):
scripts = open(root_folder+'scripts.js', 'r').read()
forms = open(root_folder+'forms.html', 'r').read()
if env['REQUEST_METHOD'] == 'POST':
if env.get('CONTENT_LENGTH'): env_len = int(env.get('CONTENT_LENGTH'))
else: env_len = 0
if env_len > 0: post = env['wsgi.input'].read(env_len).decode('utf-8')
else: post = ""
result = ""
if env['PATH_INFO'] == "/read": result = open(root_folder+'messages','r').read()
if env['PATH_INFO'] == "/add": result = open(root_folder+'messages','a').write(post+'\n')
if env['PATH_INFO'] == "/clear": result = open(root_folder+'messages','w').write('Welcome to chat<br>\n')
start_response('200 OK', [('Content-Type', 'text/html'), ('Content-Length', str(len(result)))])
yield result.encode('utf-8')
else:
if env['PATH_INFO'] == "/favicon.ico":
favicon = open(root_folder+'mesjes.png', 'rb').read()
start_response('200 OK', [('Content-Type','image/png'),('Content-Length', str(len(favicon)))])
yield favicon
else:
html = '<html>\n<head>\n' + charset + '\n' + scripts + '\n</head>\n<body>\n' + forms + '\n</body>\n</html>'
start_response('200 OK', [('Content-Type', 'text/html'), ('Content-Length', str(len(html)))])
yield html.encode('utf-8')
| root_folder = '/var/www/'
charset = '<meta charset="utf-8">'
def application(env, start_response):
scripts = open(root_folder + 'scripts.js', 'r').read()
forms = open(root_folder + 'forms.html', 'r').read()
if env['REQUEST_METHOD'] == 'POST':
if env.get('CONTENT_LENGTH'):
env_len = int(env.get('CONTENT_LENGTH'))
else:
env_len = 0
if env_len > 0:
post = env['wsgi.input'].read(env_len).decode('utf-8')
else:
post = ''
result = ''
if env['PATH_INFO'] == '/read':
result = open(root_folder + 'messages', 'r').read()
if env['PATH_INFO'] == '/add':
result = open(root_folder + 'messages', 'a').write(post + '\n')
if env['PATH_INFO'] == '/clear':
result = open(root_folder + 'messages', 'w').write('Welcome to chat<br>\n')
start_response('200 OK', [('Content-Type', 'text/html'), ('Content-Length', str(len(result)))])
yield result.encode('utf-8')
elif env['PATH_INFO'] == '/favicon.ico':
favicon = open(root_folder + 'mesjes.png', 'rb').read()
start_response('200 OK', [('Content-Type', 'image/png'), ('Content-Length', str(len(favicon)))])
yield favicon
else:
html = '<html>\n<head>\n' + charset + '\n' + scripts + '\n</head>\n<body>\n' + forms + '\n</body>\n</html>'
start_response('200 OK', [('Content-Type', 'text/html'), ('Content-Length', str(len(html)))])
yield html.encode('utf-8') |
class Solution:
def crackSafe(self, n: int, k: int) -> str:
# worst case k ** n
def dfs(cur, seen, total):
if len(seen) == total:
return cur
for i in range(k):
temp = cur[-n + 1: ] + str(i) if n != 1 else str(i)
if temp not in seen:
seen.add(temp)
res = dfs(cur + str(i), seen, total)
if res:
return res
seen.remove(temp)
return dfs("0" * n, set(["0" * n]), k**n)
| class Solution:
def crack_safe(self, n: int, k: int) -> str:
def dfs(cur, seen, total):
if len(seen) == total:
return cur
for i in range(k):
temp = cur[-n + 1:] + str(i) if n != 1 else str(i)
if temp not in seen:
seen.add(temp)
res = dfs(cur + str(i), seen, total)
if res:
return res
seen.remove(temp)
return dfs('0' * n, set(['0' * n]), k ** n) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.