content
stringlengths 7
1.05M
| fixed_cases
stringlengths 1
1.28M
|
|---|---|
# TODO: this may want to move to Invoke if we can find a use for it there too?
# Or make it _more_ narrowly focused and stay here?
class NothingToDo(Exception):
pass
class GroupException(Exception):
"""
Lightweight exception wrapper for `.GroupResult` when one contains errors.
.. versionadded:: 2.0
"""
def __init__(self, result):
self.result = result
|
class Nothingtodo(Exception):
pass
class Groupexception(Exception):
"""
Lightweight exception wrapper for `.GroupResult` when one contains errors.
.. versionadded:: 2.0
"""
def __init__(self, result):
self.result = result
|
class Button(object):
def __init__(self, url, label, get=''):
self.url = url
self.label = label
self.get = get
|
class Button(object):
def __init__(self, url, label, get=''):
self.url = url
self.label = label
self.get = get
|
class Solution:
def getFormattedEMail(self, email):
userName, domain = email.split('@')
if '+' in userName:
userName = userName.split('+')[0]
if '.' in userName:
userName = ''.join(userName.split('.'))
return userName + '@' + domain
def numUniqueEmails(self, emails: List[str]) -> int:
emailsSet = set()
for email in emails:
emailsSet.add(self.getFormattedEMail(email))
return len(emailsSet)
|
class Solution:
def get_formatted_e_mail(self, email):
(user_name, domain) = email.split('@')
if '+' in userName:
user_name = userName.split('+')[0]
if '.' in userName:
user_name = ''.join(userName.split('.'))
return userName + '@' + domain
def num_unique_emails(self, emails: List[str]) -> int:
emails_set = set()
for email in emails:
emailsSet.add(self.getFormattedEMail(email))
return len(emailsSet)
|
class SendResult:
def __init__(self, result={}):
self.successful = result.get('code', None) == '200'
self.message_id = result.get('message_id', None)
|
class Sendresult:
def __init__(self, result={}):
self.successful = result.get('code', None) == '200'
self.message_id = result.get('message_id', None)
|
# -*- coding: utf-8 -*-
"""
Created on Wed Jan 3 10:27:50 2018
@author: James Jiang
"""
all_lines = [line.rstrip('\n') for line in open('Data.txt')]
def has_two_pairs(string):
for i in range(len(string) - 1):
pair = string[i:i + 2]
if (pair in string[:i]) or (pair in string[i + 2:]):
return True
else:
return False
def has_repeat_with_space(string):
for i in range(len(string) - 2):
if string[i] == string[i + 2]:
return True
else:
return False
def is_nice(string):
if (has_two_pairs(string) == True) and( has_repeat_with_space(string) == True):
return True
else:
return False
count = 0
for string in all_lines:
if is_nice(string) == True:
count += 1
print(count)
|
"""
Created on Wed Jan 3 10:27:50 2018
@author: James Jiang
"""
all_lines = [line.rstrip('\n') for line in open('Data.txt')]
def has_two_pairs(string):
for i in range(len(string) - 1):
pair = string[i:i + 2]
if pair in string[:i] or pair in string[i + 2:]:
return True
else:
return False
def has_repeat_with_space(string):
for i in range(len(string) - 2):
if string[i] == string[i + 2]:
return True
else:
return False
def is_nice(string):
if has_two_pairs(string) == True and has_repeat_with_space(string) == True:
return True
else:
return False
count = 0
for string in all_lines:
if is_nice(string) == True:
count += 1
print(count)
|
########################################################
# Copyright (c) 2015-2017 by European Commission. #
# All Rights Reserved. #
########################################################
extends("BaseKPI.py")
"""
Transmission usage (%)
----------------------
Indexed by
* scope
* delivery point (dummy)
* energy
* test case
* transmission
The instant transmission usage of an interconnection is the ratio of electricity or gas flowing through the transmission over its capacity.
The KPI computes the yearly average value of instant transmission usage, for a given transmission:
.. math:: transmissionUsage_{transmission} = \\small \\frac{mean(instantTransmissionUsage^{transmission})}{installedCapacity^{transmission}} (\\%)
"""
def computeIndicator(context, indexFilter, paramsIndicator, kpiDict):
timeStepDuration = getTimeStepDurationInHours(context)
selectedScopes = indexFilter.filterIndexList(0, getScopes())
selectedEnergies = indexFilter.filterIndexList(1, getEnergies(context, includedEnergies = {ELECTRICITY, GAS}))
selectedTestCases = indexFilter.filterIndexList(2, context.getResultsIndexSet())
selectedAssets = indexFilter.filterIndexList(3, getAssets(context, includedTechnologies = TRANSMISSION_TYPES))
selectedAssetsByScope = getAssetsByScope(context, selectedScopes, includedAssetsName = selectedAssets)
capacitiesDict = getTransmissionCapacity(context, selectedScopes, selectedTestCases, selectedEnergies, selectedAssetsByScope)
transmissionDict = getTransmittedEnergy(context, selectedScopes, selectedTestCases, selectedEnergies, selectedAssetsByScope)
for index in capacitiesDict:
totalCapacity = capacitiesDict[index].getSumValue()
if totalCapacity != 0:
kpiDict[index] = 100 * transmissionDict[index].getSumValue() / totalCapacity
return kpiDict
def get_indexing(context):
baseIndexList = [getScopesIndexing(), getEnergiesIndexing(context, includedEnergies = {ELECTRICITY, GAS}), getTestCasesIndexing(context), getAssetsIndexing(context, includedTechnologies = TRANSMISSION_TYPES)]
return baseIndexList
IndicatorLabel = "Transmission usage"
IndicatorUnit = "%"
IndicatorDeltaUnit = "%"
IndicatorDescription = "Usage of a transmission"
IndicatorParameters = []
IndicatorIcon = ""
IndicatorCategory = "Results>Transmission"
IndicatorTags = "Power System, Gas System, Power Markets"
|
extends('BaseKPI.py')
'\nTransmission usage (%)\n----------------------\n\nIndexed by\n\t* scope\n\t* delivery point (dummy)\n\t* energy\n\t* test case\n\t* transmission \n\nThe instant transmission usage of an interconnection is the ratio of electricity or gas flowing through the transmission over its capacity.\nThe KPI computes the yearly average value of instant transmission usage, for a given transmission:\n\n.. math:: transmissionUsage_{transmission} = \\small \\frac{mean(instantTransmissionUsage^{transmission})}{installedCapacity^{transmission}} (\\%)\n\n'
def compute_indicator(context, indexFilter, paramsIndicator, kpiDict):
time_step_duration = get_time_step_duration_in_hours(context)
selected_scopes = indexFilter.filterIndexList(0, get_scopes())
selected_energies = indexFilter.filterIndexList(1, get_energies(context, includedEnergies={ELECTRICITY, GAS}))
selected_test_cases = indexFilter.filterIndexList(2, context.getResultsIndexSet())
selected_assets = indexFilter.filterIndexList(3, get_assets(context, includedTechnologies=TRANSMISSION_TYPES))
selected_assets_by_scope = get_assets_by_scope(context, selectedScopes, includedAssetsName=selectedAssets)
capacities_dict = get_transmission_capacity(context, selectedScopes, selectedTestCases, selectedEnergies, selectedAssetsByScope)
transmission_dict = get_transmitted_energy(context, selectedScopes, selectedTestCases, selectedEnergies, selectedAssetsByScope)
for index in capacitiesDict:
total_capacity = capacitiesDict[index].getSumValue()
if totalCapacity != 0:
kpiDict[index] = 100 * transmissionDict[index].getSumValue() / totalCapacity
return kpiDict
def get_indexing(context):
base_index_list = [get_scopes_indexing(), get_energies_indexing(context, includedEnergies={ELECTRICITY, GAS}), get_test_cases_indexing(context), get_assets_indexing(context, includedTechnologies=TRANSMISSION_TYPES)]
return baseIndexList
indicator_label = 'Transmission usage'
indicator_unit = '%'
indicator_delta_unit = '%'
indicator_description = 'Usage of a transmission'
indicator_parameters = []
indicator_icon = ''
indicator_category = 'Results>Transmission'
indicator_tags = 'Power System, Gas System, Power Markets'
|
"""Dummy SMTP API."""
class SMTP_dummy(object): # pylint: disable=useless-object-inheritance
# pylint: disable=invalid-name, no-self-use
"""Dummy SMTP API."""
# Class variables track member function calls for later checking.
msg_from = None
msg_to = None
msg = None
def login(self, login, password):
"""Do nothing."""
def sendmail(self, msg_from, msg_to, msg):
"""Remember the recipients."""
SMTP_dummy.msg_from = msg_from
SMTP_dummy.msg_to = msg_to
SMTP_dummy.msg = msg
def close(self):
"""Do nothing."""
def clear(self):
"""Reset class variables."""
SMTP_dummy.msg_from = None
SMTP_dummy.msg_to = []
SMTP_dummy.msg = None
|
"""Dummy SMTP API."""
class Smtp_Dummy(object):
"""Dummy SMTP API."""
msg_from = None
msg_to = None
msg = None
def login(self, login, password):
"""Do nothing."""
def sendmail(self, msg_from, msg_to, msg):
"""Remember the recipients."""
SMTP_dummy.msg_from = msg_from
SMTP_dummy.msg_to = msg_to
SMTP_dummy.msg = msg
def close(self):
"""Do nothing."""
def clear(self):
"""Reset class variables."""
SMTP_dummy.msg_from = None
SMTP_dummy.msg_to = []
SMTP_dummy.msg = None
|
""" MECHANICAL PARAMETERS """
s0_step_per_rev = 27106
s1_step_per_rev = 27106
pitch_travel_rads = 0.5
yaw_travel_rads = 1.2
pitch_center_rads = 0.21
yaw_center_rads = 0.59
default_vel_radps = 2.5
default_accel_radps2 = 20
trigger_min_pwm = 40
trigger_max_pwm = 120
trigger_hold_s = 0.5
""" PI PINOUTS """
half_press_index = 14
full_press_index = 15
laser_index = 17
""" OPERATION PARAMETERS """
gcode_folder = 'gcode'
audio_path = 'audio'
saveimg_path = '/home/pi/imgs'
loser_mode_bump_pixels = 20
loser_mode_delay_s = 0.5
normal_mode_vertical_bump = 8
normal_mode_horiz_bump = 0
face_mode_close_enough_pixels = 10
aim_lock_fade_s = 0.5 # Soft lock on and fade into full tracking
""" CAMERA PARAMETERS """
video_resolution = (640,480)
laser_center = (269,305)
""" OPENCV PARAMETERS """
tracking_mode = "mosse" # NOT IMPLEMENTED
track_kp = 1500
track_ki = 350
track_kd = 5
lock_on_size_px = (40,40)
lead_ahead_constant = 15 # pixels lead multiplier. Guess and check fam
# Tuning for face finder only
# track_kp = 500
# track_ki = 200
# track_kd = 2
""" FEATHER COMM PARAMETERS """
# Chars used for setting parameters on feather. All vars here must be int
Feather_Parameter_Chars = {
'a': s0_step_per_rev,
'b': s1_step_per_rev,
'c': default_vel_radps,
'd': default_accel_radps2
}
""" DEBUG PARAMS """
DEBUG_MODE = True
SAVE_FRAMES = True
|
""" MECHANICAL PARAMETERS """
s0_step_per_rev = 27106
s1_step_per_rev = 27106
pitch_travel_rads = 0.5
yaw_travel_rads = 1.2
pitch_center_rads = 0.21
yaw_center_rads = 0.59
default_vel_radps = 2.5
default_accel_radps2 = 20
trigger_min_pwm = 40
trigger_max_pwm = 120
trigger_hold_s = 0.5
' PI PINOUTS '
half_press_index = 14
full_press_index = 15
laser_index = 17
' OPERATION PARAMETERS '
gcode_folder = 'gcode'
audio_path = 'audio'
saveimg_path = '/home/pi/imgs'
loser_mode_bump_pixels = 20
loser_mode_delay_s = 0.5
normal_mode_vertical_bump = 8
normal_mode_horiz_bump = 0
face_mode_close_enough_pixels = 10
aim_lock_fade_s = 0.5
' CAMERA PARAMETERS '
video_resolution = (640, 480)
laser_center = (269, 305)
' OPENCV PARAMETERS '
tracking_mode = 'mosse'
track_kp = 1500
track_ki = 350
track_kd = 5
lock_on_size_px = (40, 40)
lead_ahead_constant = 15
' FEATHER COMM PARAMETERS '
feather__parameter__chars = {'a': s0_step_per_rev, 'b': s1_step_per_rev, 'c': default_vel_radps, 'd': default_accel_radps2}
' DEBUG PARAMS '
debug_mode = True
save_frames = True
|
def square_of_number():
number = "179"
number_for_sum = "179"
for i in range (49):
number = number + number_for_sum
number = int(number)
number = number ** 2
print(number)
square_of_number()
|
def square_of_number():
number = '179'
number_for_sum = '179'
for i in range(49):
number = number + number_for_sum
number = int(number)
number = number ** 2
print(number)
square_of_number()
|
'''
Write a function to find the longest common prefix string amongst an array of strings.
If there is no common prefix, return an empty string "".
Example 1:
Input: strs = ["flower","flow","flight"]
Output: "fl"
Constraints:
1 <= strs.length <= 200
0 <= strs[i].length <= 200
strs[i] consists of only lower-case English letters.
'''
class Node:
def __init__(self):
self.children = defaultdict(Node)
self.count = 0
class Trie:
def __init__(self):
self.t = Node()
def add(self,st):
temp = self.t
for i in st:
temp = temp.children[i]
temp.count += 1
return temp.count
def traverse(self,st,n):
temp = self.t
ct = 0
if temp.count == n : ct += 1
for i in st:
temp = temp.children[i]
# print(temp.count)
if temp.count == n : ct += 1
return ct
class Solution:
def longestCommonPrefix(self, strs: List[str]) -> str:
head = Trie()
ans =0
for st in strs:
ma = head.add(st)
ans = head.traverse(strs[0],len(strs))
print(ans)
return strs[0][:ans]
|
"""
Write a function to find the longest common prefix string amongst an array of strings.
If there is no common prefix, return an empty string "".
Example 1:
Input: strs = ["flower","flow","flight"]
Output: "fl"
Constraints:
1 <= strs.length <= 200
0 <= strs[i].length <= 200
strs[i] consists of only lower-case English letters.
"""
class Node:
def __init__(self):
self.children = defaultdict(Node)
self.count = 0
class Trie:
def __init__(self):
self.t = node()
def add(self, st):
temp = self.t
for i in st:
temp = temp.children[i]
temp.count += 1
return temp.count
def traverse(self, st, n):
temp = self.t
ct = 0
if temp.count == n:
ct += 1
for i in st:
temp = temp.children[i]
if temp.count == n:
ct += 1
return ct
class Solution:
def longest_common_prefix(self, strs: List[str]) -> str:
head = trie()
ans = 0
for st in strs:
ma = head.add(st)
ans = head.traverse(strs[0], len(strs))
print(ans)
return strs[0][:ans]
|
aeki_config = {
"AEKI_HOST": "localhost", # rename to hostname for cgi if you like
"IOT_HOST":"localhost" # assumes iot test device is also on local host
}
|
aeki_config = {'AEKI_HOST': 'localhost', 'IOT_HOST': 'localhost'}
|
def is_divisible(number):
divisible = [num for num in range(2, 11) if number % num == 0]
return True if divisible else False
start = int(input())
end = int(input())
print([int(_) for _ in range(start, end + 1) if is_divisible(_)])
|
def is_divisible(number):
divisible = [num for num in range(2, 11) if number % num == 0]
return True if divisible else False
start = int(input())
end = int(input())
print([int(_) for _ in range(start, end + 1) if is_divisible(_)])
|
"""""
Path to the Image Dataset directories
"""""
TR_IMG_DIR = './WORKSPACE/DATASET/annotation/'
GT_IMG_DIR = './WORKSPACE/DATASET/annotation/'
"""""
Path to Numpy Video directories
"""""
TR_VID_DIR = './WORKSPACE/DATA/TR_DATA/'
GT_VID_DIR = './WORKSPACE/DATA/GT_DATA/'
"""""
Path to Numpy batches directories
"""""
TR_VGG_DIR = './WORKSPACE/BATCH/VGG-16/'
TR_BATCH_DIR = './WORKSPACE/BATCH/TR_BATCH/'
GT_BATCH_DIR = './WORKSPACE/BATCH/GT_BATCH/'
"""""
Path to the global test dataset directories
"""""
TEST_DIR = './WORKSPACE/TEST/annotation/'
TEST_RES = './WORKSPACE/TEST/result/'
"""""
Path to the text file, containing the dataset video names
"""""
DATASET_INDEX = './train.txt'
TEST_INDEX = './test.txt'
"""""
The new image size
"""""
IMG_SIZE = 224
""""""
""""
The saved model directory
"""
Model_DIR = './WORKSPACE/TRAINED_MODEL/'
|
"""""
Path to the Image Dataset directories
"""
tr_img_dir = './WORKSPACE/DATASET/annotation/'
gt_img_dir = './WORKSPACE/DATASET/annotation/'
'""\nPath to Numpy Video directories\n'
tr_vid_dir = './WORKSPACE/DATA/TR_DATA/'
gt_vid_dir = './WORKSPACE/DATA/GT_DATA/'
'""\nPath to Numpy batches directories \n'
tr_vgg_dir = './WORKSPACE/BATCH/VGG-16/'
tr_batch_dir = './WORKSPACE/BATCH/TR_BATCH/'
gt_batch_dir = './WORKSPACE/BATCH/GT_BATCH/'
'""\nPath to the global test dataset directories\n'
test_dir = './WORKSPACE/TEST/annotation/'
test_res = './WORKSPACE/TEST/result/'
'""\nPath to the text file, containing the dataset video names\n'
dataset_index = './train.txt'
test_index = './test.txt'
'""\nThe new image size\n'
img_size = 224
''
'"\nThe saved model directory\n'
model_dir = './WORKSPACE/TRAINED_MODEL/'
|
"""
Quality Control Tools | Cannlytics
Author: Keegan Skeate <keegan@cannlytics.com>
Created: 2/6/2021
Updated: 6/23/2021
License: MIT License <https://opensource.org/licenses/MIT>
Perform various quality control checks and analyses to ensure
that your laboratory is operating as desired.
TODO:
- Trend analyte results.
- Create predictions of lab results given available inputs!
- Statistics for internal standards.
"""
def backup_data():
"""Backup data stored in Firestore."""
return NotImplementedError
def calculate_relative_percent_diff():
"""Calculate relative perecent difference between two samples."""
return NotImplementedError
def plot_area_response():
"""Plot area response over time for a group of samples."""
return NotImplementedError
def plot_deviations():
"""Plot deviations in results for a group of samples."""
return NotImplementedError
def track_deviations():
"""Track deviations in results for a group of samples."""
return NotImplementedError
def metrc_reconciliation():
"""Reconcile Metrc data with Firestore data."""
return NotImplementedError
|
"""
Quality Control Tools | Cannlytics
Author: Keegan Skeate <keegan@cannlytics.com>
Created: 2/6/2021
Updated: 6/23/2021
License: MIT License <https://opensource.org/licenses/MIT>
Perform various quality control checks and analyses to ensure
that your laboratory is operating as desired.
TODO:
- Trend analyte results.
- Create predictions of lab results given available inputs!
- Statistics for internal standards.
"""
def backup_data():
"""Backup data stored in Firestore."""
return NotImplementedError
def calculate_relative_percent_diff():
"""Calculate relative perecent difference between two samples."""
return NotImplementedError
def plot_area_response():
"""Plot area response over time for a group of samples."""
return NotImplementedError
def plot_deviations():
"""Plot deviations in results for a group of samples."""
return NotImplementedError
def track_deviations():
"""Track deviations in results for a group of samples."""
return NotImplementedError
def metrc_reconciliation():
"""Reconcile Metrc data with Firestore data."""
return NotImplementedError
|
# Goal:
#
# Find the sums of subsections of an array
# Change an element of the array and don't recalculate everything
if __name__ == '__main__':
arr = [1,2,3,4,5]
print('here')
|
if __name__ == '__main__':
arr = [1, 2, 3, 4, 5]
print('here')
|
"""
# Definition for a Node.
class Node:
def __init__(self, val = 0, neighbors = None):
self.val = val
self.neighbors = neighbors if neighbors is not None else []
"""
class Solution:
dairy = {}
def cloneGraph(self, node: 'Node') -> 'Node':
if not node:
return None
if node in self.dairy:
return self.dairy[node]
newnode = Node(node.val)
self.dairy[node] = newnode
for n in node.neighbors:
newnode.neighbors.append(self.cloneGraph(n))
return newnode
|
"""
# Definition for a Node.
class Node:
def __init__(self, val = 0, neighbors = None):
self.val = val
self.neighbors = neighbors if neighbors is not None else []
"""
class Solution:
dairy = {}
def clone_graph(self, node: 'Node') -> 'Node':
if not node:
return None
if node in self.dairy:
return self.dairy[node]
newnode = node(node.val)
self.dairy[node] = newnode
for n in node.neighbors:
newnode.neighbors.append(self.cloneGraph(n))
return newnode
|
inputFile = "day6/day6_1_input.txt"
# https://adventofcode.com/2021/day/6
if __name__ == '__main__':
print("Lanternfish")
with open(inputFile, "r") as f:
fishArray = [int(num) for num in f.read().strip().split(",")]
# for part2... not needed to read array again from file
origFishArray = fishArray.copy()
# unsustainable solution for part2... to big array.. memory heavy
nbDays = 1
while nbDays <= 80:
for index in range(0, len(fishArray)):
if fishArray[index] == 0:
fishArray[index] = 6
fishArray.append(8)
continue
fishArray[index] -= 1
nbDays += 1
print("part1. Nb fish after 80 days: ", len(fishArray))
## part 2 --> fish counters
fishCounter = [0] * 9
for num in origFishArray:
fishCounter[num] += 1 # index represent number.. value represent nb fishes for that fish stage
nbDays = 1
while nbDays <= 256:
# each day shift array values to th left.
nbSpawn = 0
for i in range(0, len(fishCounter) - 1):
if i == 0: ## spawn for current day
nbSpawn = fishCounter[i]
fishCounter[i] = fishCounter[i + 1]
# spawn fishes for current day
fishCounter[8] = nbSpawn # spawn nb fishes
fishCounter[6] += nbSpawn # reset nbSpawn fished to state 6
nbDays +=1
print("part2. After 256 days. Efficient solution: ", sum(fishCounter))
|
input_file = 'day6/day6_1_input.txt'
if __name__ == '__main__':
print('Lanternfish')
with open(inputFile, 'r') as f:
fish_array = [int(num) for num in f.read().strip().split(',')]
orig_fish_array = fishArray.copy()
nb_days = 1
while nbDays <= 80:
for index in range(0, len(fishArray)):
if fishArray[index] == 0:
fishArray[index] = 6
fishArray.append(8)
continue
fishArray[index] -= 1
nb_days += 1
print('part1. Nb fish after 80 days: ', len(fishArray))
fish_counter = [0] * 9
for num in origFishArray:
fishCounter[num] += 1
nb_days = 1
while nbDays <= 256:
nb_spawn = 0
for i in range(0, len(fishCounter) - 1):
if i == 0:
nb_spawn = fishCounter[i]
fishCounter[i] = fishCounter[i + 1]
fishCounter[8] = nbSpawn
fishCounter[6] += nbSpawn
nb_days += 1
print('part2. After 256 days. Efficient solution: ', sum(fishCounter))
|
INITIAL = 'INITIAL'
CONNECTING = 'CONNECTING'
ESTABLISHED = 'ESTABLISHED'
ACCEPTED = 'ACCEPTED'
DECLINED = 'DECLINED'
ENDED = 'ENDED'
ERROR = 'ERROR'
|
initial = 'INITIAL'
connecting = 'CONNECTING'
established = 'ESTABLISHED'
accepted = 'ACCEPTED'
declined = 'DECLINED'
ended = 'ENDED'
error = 'ERROR'
|
# Static data class for character stats
class Zhongli:
level = 90
talentLevel = 8
# Base stat values
baseHP = 14695
baseATK = 251
baseCritRATE = 0.05
baseCritDMG = 0.5
# Ability MVs and frame counts
class Normal: # Normal attack spear kick hop combo
frames = 140
#mv = 2.7090
mv = 0.5653+0.5723+0.7087+0.7889+(4*0.1975)
hits = 8
rotations = (720 - 100 - 140) / 140 # Removing time for hold E and Q
hpConv = 0.0139
class HoldE: # Hold E initial hit
frames = 720
mv = 1.3440
hits = 2 # Damage from pillar pop-up and hold E shockwave
hpConv = 0.0190
class EResonate: # Pillar resonance
frames = 120
mv = 0.4480
rotations = 6
hpConv = 0.0190
class Q: # I WILL HAVE ORDER
frames = 140
mv = 6.3956
hpConv = 0.33
|
class Zhongli:
level = 90
talent_level = 8
base_hp = 14695
base_atk = 251
base_crit_rate = 0.05
base_crit_dmg = 0.5
class Normal:
frames = 140
mv = 0.5653 + 0.5723 + 0.7087 + 0.7889 + 4 * 0.1975
hits = 8
rotations = (720 - 100 - 140) / 140
hp_conv = 0.0139
class Holde:
frames = 720
mv = 1.344
hits = 2
hp_conv = 0.019
class Eresonate:
frames = 120
mv = 0.448
rotations = 6
hp_conv = 0.019
class Q:
frames = 140
mv = 6.3956
hp_conv = 0.33
|
# Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License 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.
"""ML METADATA Data Validation external dependencies that can be loaded in WORKSPACE files.
"""
load("//ml_metadata:mysql_configure.bzl", "mysql_configure")
def ml_metadata_workspace():
"""All ML Metadata external dependencies."""
mysql_configure()
|
"""ML METADATA Data Validation external dependencies that can be loaded in WORKSPACE files.
"""
load('//ml_metadata:mysql_configure.bzl', 'mysql_configure')
def ml_metadata_workspace():
"""All ML Metadata external dependencies."""
mysql_configure()
|
class Environment(object):
def ask(self, prompt, default=None, starting=None):
pass
def ask_values(self, prompt, values, default=None, starting=None):
pass
def ask_directory(self, prompt, default=None, starting=None):
pass
def ask_completion(self, prompt, values, starting=None):
pass
def message(self, message):
pass
def yes_or_no(self, prompt):
pass
def y_or_n(self, prompt):
pass
def get(self, name, default=None):
pass
def get_offset(self):
pass
def get_text(self):
pass
def get_region(self):
pass
def filename(self):
pass
def is_modified(self):
pass
def goto_line(self, lineno):
pass
def insert_line(self, line, lineno):
pass
def insert(self, text):
pass
def delete(self, start, end):
pass
def filenames(self):
pass
def save_files(self, filenames):
pass
def reload_files(self, filenames, moves=None):
pass
def find_file(self, filename, readonly=False, other=False):
pass
def create_progress(self, name):
pass
def current_word(self):
pass
def push_mark(self):
pass
def pop_mark(self):
pass
def prefix_value(self, prefix):
pass
def show_occurrences(self, locations):
pass
def show_doc(self, docs, altview=False):
pass
def preview_changes(self, diffs):
pass
def local_command(self, name, callback, key=None, prefix=False):
pass
def global_command(self, name, callback, key=None, prefix=False):
pass
def add_hook(self, name, callback, hook):
pass
@staticmethod
def _completion_text(proposal):
return proposal.name.partition(':')[0].strip()
def _completion_data(self, proposal):
return self._completion_text(proposal)
|
class Environment(object):
def ask(self, prompt, default=None, starting=None):
pass
def ask_values(self, prompt, values, default=None, starting=None):
pass
def ask_directory(self, prompt, default=None, starting=None):
pass
def ask_completion(self, prompt, values, starting=None):
pass
def message(self, message):
pass
def yes_or_no(self, prompt):
pass
def y_or_n(self, prompt):
pass
def get(self, name, default=None):
pass
def get_offset(self):
pass
def get_text(self):
pass
def get_region(self):
pass
def filename(self):
pass
def is_modified(self):
pass
def goto_line(self, lineno):
pass
def insert_line(self, line, lineno):
pass
def insert(self, text):
pass
def delete(self, start, end):
pass
def filenames(self):
pass
def save_files(self, filenames):
pass
def reload_files(self, filenames, moves=None):
pass
def find_file(self, filename, readonly=False, other=False):
pass
def create_progress(self, name):
pass
def current_word(self):
pass
def push_mark(self):
pass
def pop_mark(self):
pass
def prefix_value(self, prefix):
pass
def show_occurrences(self, locations):
pass
def show_doc(self, docs, altview=False):
pass
def preview_changes(self, diffs):
pass
def local_command(self, name, callback, key=None, prefix=False):
pass
def global_command(self, name, callback, key=None, prefix=False):
pass
def add_hook(self, name, callback, hook):
pass
@staticmethod
def _completion_text(proposal):
return proposal.name.partition(':')[0].strip()
def _completion_data(self, proposal):
return self._completion_text(proposal)
|
x = float(input("Enter Number: "))
if(x % 2) == 0 and x > 0:
print("The number you entered is positive and even.")
elif(x % 2) == 0 and x < 0:
print("The number you entered is negative and even.")
elif(x % 2) != 0 and x > 0:
print("The number you entered is positive and odd.")
elif(x % 2) != 0 and x < 0:
print("The number you entered is negative and odd.")
else:
print("Please enter a non zero number.")
|
x = float(input('Enter Number: '))
if x % 2 == 0 and x > 0:
print('The number you entered is positive and even.')
elif x % 2 == 0 and x < 0:
print('The number you entered is negative and even.')
elif x % 2 != 0 and x > 0:
print('The number you entered is positive and odd.')
elif x % 2 != 0 and x < 0:
print('The number you entered is negative and odd.')
else:
print('Please enter a non zero number.')
|
"""
AiiDA Plugin Template
Adapt this template for your own needs.
"""
__version__ = '0.3.4'
|
"""
AiiDA Plugin Template
Adapt this template for your own needs.
"""
__version__ = '0.3.4'
|
#Ask user for name
name = input("What is your name?: ")
#Ask user for the age
age = input("How old are you? ")
#Ask user for city
city = input("What city do you live in? ")
#Ask user what they enjoy
hobbies = input("What are your hobbies?, What do you love doing? ")
#Create output text using placeholders to concatenate data
string = "Your name is {} and you are {} years old. You live in {} and you love {}"
output = string.format(name, age, city, hobbies)
#Print output to screen
print(output)
|
name = input('What is your name?: ')
age = input('How old are you? ')
city = input('What city do you live in? ')
hobbies = input('What are your hobbies?, What do you love doing? ')
string = 'Your name is {} and you are {} years old. You live in {} and you love {}'
output = string.format(name, age, city, hobbies)
print(output)
|
class Info:
"""
Allows to print out information about the application.
"""
def commands():
print('''Main modules:
imu | Inertial Measurement Unit (GPS, gyro, accelerometer)
gps | GPS
gyro | Gyroscope
accel | Accelerometer
fuzzy | Fuzzy Controller
nn | Neural Network
test | Unit-tests for each module
exit | Exit
''')
def help():
print('''SDC CONSOLE APP
SDC stands for Self-Driving Cars.
So this app allows you to simulate some modules of SDC within a console.
All modules can be called by:
sdc module --mode
All information modules can be called by:
sdc -commands
sdc -help
''')
def imu():
print('''sdc imu:
--p | IMU (position)
--v | IMU (velocity)
--a | IMU (acceleration)
''')
def gps():
print('''sdc gps:
--p | GPS (position)
--v | GPS (velocity)
--a | GPS (acceleration)
''')
|
class Info:
"""
Allows to print out information about the application.
"""
def commands():
print('Main modules:\n imu | Inertial Measurement Unit (GPS, gyro, accelerometer)\n gps | GPS \n gyro | Gyroscope \n accel | Accelerometer\n fuzzy | Fuzzy Controller \n nn | Neural Network \n test | Unit-tests for each module\n exit | Exit \n ')
def help():
print('SDC CONSOLE APP\n\nSDC stands for Self-Driving Cars. \nSo this app allows you to simulate some modules of SDC within a console.\n\nAll modules can be called by:\n sdc module --mode\n\nAll information modules can be called by:\n sdc -commands\n sdc -help\n ')
def imu():
print('sdc imu:\n --p | IMU (position) \n --v | IMU (velocity)\n --a | IMU (acceleration)\n ')
def gps():
print('sdc gps:\n --p | GPS (position) \n --v | GPS (velocity)\n --a | GPS (acceleration)\n ')
|
def second_task(**context):
print("This is ----------- task 2")
return "hoge======"
def third_task(**context):
output = context["task_instance"].xcom_pull(task_ids="python_task_2")
print("This is ----------- task 3")
return "This is the result : " + output
|
def second_task(**context):
print('This is ----------- task 2')
return 'hoge======'
def third_task(**context):
output = context['task_instance'].xcom_pull(task_ids='python_task_2')
print('This is ----------- task 3')
return 'This is the result : ' + output
|
""" MARKDOWN
---
YamlDesc: CONTENT-ARTICLE
Title: python builtin class attributes
MetaDescription: python object oriented programming class builtin attributes __doc__, __name__, __module__, __bases__ example code, tutorials
MetaKeywords: python object oriented programming class builtin attributes __doc__, __name__, __module__, __bases__ example code, tutorials
Author: Hemaxi
ContentName: class-builtin-attributes
---
MARKDOWN """
""" MARKDOWN
# Python Class Built-in Attributes
* Object Oriented Programming, in PYTHON
* Classes in PYTHON have a set of built in attributes and functions
* Class built-in attributes
* `__doc__` Prints the CLASS Documentation string
* `__name__` prints the CLASS Name
* `__module__` module name where the class is defined
* `__bases__` base class list in case of Inheritance
MARKDOWN """
# MARKDOWN ```
# 1. Create a CLASS
###################
class Learnpython:
'This is a brief note about the class, This is the LEARNPYTHON Class'
# a class Variable
ti_var = 100
# a class list
ti_list = ["a","b","c"]
# a class tuple
ti_tuple = ("x","y","z")
# a class dictionary
ti_dictionary = {"1":"A", "2":"b", "3":"c"}
# a class function
def ti_function(self):
"This is a class function"
print("This is a message from the LEARNPYTHON Class ti_function")
# 2. Using the built-in attributes
##################################
# Create an Object of the Class
tiObject = Learnpython()
# __doc__ : Prints the CLASS Documentation string
print(Learnpython.__doc__)
#__name__ : prints the CLASS Name
print(Learnpython.__name__)
# __module__ : module name where the class is defined
print(Learnpython.__module__)
# __bases__: base class list in case of Inheritance
print(Learnpython.__bases__)
# MARKDOWN ```
|
""" MARKDOWN
---
YamlDesc: CONTENT-ARTICLE
Title: python builtin class attributes
MetaDescription: python object oriented programming class builtin attributes __doc__, __name__, __module__, __bases__ example code, tutorials
MetaKeywords: python object oriented programming class builtin attributes __doc__, __name__, __module__, __bases__ example code, tutorials
Author: Hemaxi
ContentName: class-builtin-attributes
---
MARKDOWN """
' MARKDOWN\n# Python Class Built-in Attributes\n* Object Oriented Programming, in PYTHON\n* Classes in PYTHON have a set of built in attributes and functions\n* Class built-in attributes\n* `__doc__` Prints the CLASS Documentation string\n* `__name__` prints the CLASS Name\n* `__module__` module name where the class is defined\n* `__bases__` base class list in case of Inheritance\nMARKDOWN '
class Learnpython:
"""This is a brief note about the class, This is the LEARNPYTHON Class"""
ti_var = 100
ti_list = ['a', 'b', 'c']
ti_tuple = ('x', 'y', 'z')
ti_dictionary = {'1': 'A', '2': 'b', '3': 'c'}
def ti_function(self):
"""This is a class function"""
print('This is a message from the LEARNPYTHON Class ti_function')
ti_object = learnpython()
print(Learnpython.__doc__)
print(Learnpython.__name__)
print(Learnpython.__module__)
print(Learnpython.__bases__)
|
'''
Source : https://leetcode.com/problems/maximum-depth-of-binary-tree/
Author : Yuan Wang
Date : 2018-07-21
/**********************************************************************************
*Given a binary tree, find its maximum depth.
*
*The maximum depth is the number of nodes along the longest path from the root node
*down to the farthest leaf node.
*
*Note: A leaf is a node with no children.
*
*Example:
*
*Given binary tree [3,9,20,null,null,15,7],
*
* 3
* / \
* 9 20
* / \
* 15 7
*return its depth = 3.
**********************************************************************************/
'''
def maxDepth(self, root):
"""
:type root: TreeNode
:rtype: int
"""
depth=0
return self.calDepth(root,depth)
def calDepth(self,root,depth):
if root:
depth+=1
return max(self.calDepth(root.left,depth),self.calDepth(root.right,depth))
return depth
|
"""
Source : https://leetcode.com/problems/maximum-depth-of-binary-tree/
Author : Yuan Wang
Date : 2018-07-21
/**********************************************************************************
*Given a binary tree, find its maximum depth.
*
*The maximum depth is the number of nodes along the longest path from the root node
*down to the farthest leaf node.
*
*Note: A leaf is a node with no children.
*
*Example:
*
*Given binary tree [3,9,20,null,null,15,7],
*
* 3
* / * 9 20
* / * 15 7
*return its depth = 3.
**********************************************************************************/
"""
def max_depth(self, root):
"""
:type root: TreeNode
:rtype: int
"""
depth = 0
return self.calDepth(root, depth)
def cal_depth(self, root, depth):
if root:
depth += 1
return max(self.calDepth(root.left, depth), self.calDepth(root.right, depth))
return depth
|
# Licensed under a 3-clause BSD style license - see LICENSE.rst
"""
========================
SBPy Vega Sources Module
========================
Descriptions of source Vega spectra.
"""
# Parameters passed to Vega.from_file. 'filename' is a URL. After
# adding spectra here update __init__.py docstring and
# docs/sbpy/spectroscopy.rst.
available = [
'Bohlin2014'
]
Bohlin2014 = {
'filename': 'alpha_lyr_stis_008-edit.fits',
'description': 'Spectrum of Bohlin 2014',
'bibcode': '2014AJ....147..127B'
}
|
"""
========================
SBPy Vega Sources Module
========================
Descriptions of source Vega spectra.
"""
available = ['Bohlin2014']
bohlin2014 = {'filename': 'alpha_lyr_stis_008-edit.fits', 'description': 'Spectrum of Bohlin 2014', 'bibcode': '2014AJ....147..127B'}
|
def divide_by_four(input_number):
return input_number/4
result = divide_by_four(16)
# result now holds 4
print("16 divided by 4 is " + str(result) + "!")
result2 = divide_by_four(result)
print(str(result) + " divided by 4 is " + str(result2) + "!")
def calculate_age(current_year, birth_year):
age = current_year - birth_year
return age
my_age = calculate_age(2049, 1993)
dads_age = calculate_age(2049, 1953)
print("I am "+str(my_age)+" years old and my dad is "+str(dads_age)+" years old")
|
def divide_by_four(input_number):
return input_number / 4
result = divide_by_four(16)
print('16 divided by 4 is ' + str(result) + '!')
result2 = divide_by_four(result)
print(str(result) + ' divided by 4 is ' + str(result2) + '!')
def calculate_age(current_year, birth_year):
age = current_year - birth_year
return age
my_age = calculate_age(2049, 1993)
dads_age = calculate_age(2049, 1953)
print('I am ' + str(my_age) + ' years old and my dad is ' + str(dads_age) + ' years old')
|
#####################
### Base classes. ###
#####################
class barrier:
synonyms = ["wall"]
m_description = "There is a barrier in the way."
def __init__(self, passable=False):
self.passable = passable
def __str__(self):
return self.m_description
def __repr__(self):
return self.synonyms[0]
class passage(barrier):
synonyms = ["clearing"]
m_description = "There is a clearing ahead."
def __init__(self, passable=True):
self.passable = passable
class door(barrier):
synonyms = ["door"]
m_description = "There is door ahead."
m_already_open = "The door is already opened."
m_on_open = "You opened the door."
m_already_closed = "The door is already closed."
m_on_close = "You closed the door."
def open(self):
if self.passable:
return self.m_already_open
else:
self.passable = True
return self.m_on_open
def close(self):
if not self.passable:
return self.m_already_closed
else:
self.passable = False
return self.m_on_close
def __str__(self):
if self.passable:
s = "opened"
else:
s = "closed"
s = f"{self.m_description} It is currently {s}."
return s
######################
### Child classes. ###
######################
|
class Barrier:
synonyms = ['wall']
m_description = 'There is a barrier in the way.'
def __init__(self, passable=False):
self.passable = passable
def __str__(self):
return self.m_description
def __repr__(self):
return self.synonyms[0]
class Passage(barrier):
synonyms = ['clearing']
m_description = 'There is a clearing ahead.'
def __init__(self, passable=True):
self.passable = passable
class Door(barrier):
synonyms = ['door']
m_description = 'There is door ahead.'
m_already_open = 'The door is already opened.'
m_on_open = 'You opened the door.'
m_already_closed = 'The door is already closed.'
m_on_close = 'You closed the door.'
def open(self):
if self.passable:
return self.m_already_open
else:
self.passable = True
return self.m_on_open
def close(self):
if not self.passable:
return self.m_already_closed
else:
self.passable = False
return self.m_on_close
def __str__(self):
if self.passable:
s = 'opened'
else:
s = 'closed'
s = f'{self.m_description} It is currently {s}.'
return s
|
g1 = "#5d9e6d"
g2 = "#549464"
g3 = "#498758"
g4 = "#3d784b"
b1 = "#5f7ab8"
b2 = "#5a70a3"
b3 = "#4d67a3"
r4 = "#262626"
w1 = "#f0f0f0"
w2 = "#d9d9d9"
w3 = "#e6e6e6"
r1 = "#707070"
r2 = "#595959"
r3 = "#404040"
r4 = "#262626"
l1 = "#d95757"
l2 = "#d99457"
l3 = "#d97857"
v1 = "#664f47"
v2 = "#4a3d39"
v3 = "#382f2c"
v4 = "#332c38"
p1 = "#2e5925"
p2 = "#2c4f24"
p3 = "#284722"
s1 = "#bebf7c"
s2 = "#bfb37c"
s3 = "#ccc481"
cc = "#456e41",
pp = ["rgb(165, 42, 42, 0.5)", "pink", "purple"]
sk = "#82d2e0"
i1 = "#c3e0dd"
i2 = "#8fdaeb"
i3 = "#71bfd1"
o1 = "#7996d9"
o2 = "#88a1db"
o3 = "#6d8bd1"
pa = "#443f45"
a1 = "#c474d4"
a2 = "#b97ec4"
a3 = "#a66fb0"
bl = "#000000"
zz = "zz"
bb = "bb"
ll = "ll"
rr = "rr"
ii = "ii"
gg = "gg"
ss = "ss"
ww = "ww"
oo = "oo"
aa = "aa"
tb = ["treasure", "d", 8, s1]
t1 = ["treasure", "l", 2.75, i1]
t2 = ["treasure", "d", 2.95, i1]
t3 = ["treasure", "r", 3.15, i1]
t4 = ["treasure", "u", 3.32, i1]
t5 = ["treasure", "l", 3.62, i1]
e0 = 6
e1 = 7
e2 = 8
e3 = 9
e4 = 10
e5 = 11
maps = {
"main": {
"players": {},
"background": "darkslategray",
"map": [
# 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 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
[r3, r2, r3, r2, r4, r1, r2, r2, r3, r4, r2, r1, r3, r4, r2, r3, r1, r4, r2, r2, r4, r2, r3, r1, r2, r4, r3, r2, r1, r2, r4, r3, r2, r1, r4, r3, r2, r1, r3, r2, r1, r2, r3, r2, r1, r2, r3, r2, r3, r1, r2, r3, r1, r2, r3, r1, r3, r1, r3, r2, r3, r2, r3, r2, r3, r2, r1, r3, w2, w1, w2, w2, w1],
[r2, r3, r2, r1, r3, r4, r2, r3, r2, r4, r1, r2, r2, r3, r4, r2, r1, r3, r4, r2, r3, r1, r4, r2, r2, r4, r2, r3, r1, r2, r4, r3, r2, r1, r2, r4, r3, r2, r1, r4, r3, r2, r1, r3, r2, r1, r2, r3, r2, r1, r2, r3, r2, r3, r1, r2, r3, r1, r2, r3, r1, r3, r1, r3, r2, r3, r2, r3, r2, w2, w1, w2, w2],
[r4, r2, r3, r4, r3, r2, pp, g3, g4, g4, r3, r1, r2, r3, r2, r4, g4, g2, g3, r4, r1, r2, r2, r4, r3, g4, g3, g4, r1, r2, r3, r4, r1, g4, g2, g3, r2, r1, r3, r4, r2, r3, g3, g4, g2, g3, g4, r1, r2, r3, r2, r4, r1, r4, pp, g4, g3, g4, g3, r3, r2, g3, g4, g4, r1, r3, r4, r1, r3, r4, w2, w1, w2],
[r1, r3, r4, g1, g1, g2, g3, g2, g2, g3, g2, g2, g1, g2, g1, g2, g3, g3, g2, g2, g3, g2, g2, g1, g2, g1, g1, g2, g1, g2, g2, g1, g1, g2, g2, g2, g1, g1, g2, g3, g2, g2, g2, g2, g1, g1, g1, g2, g2, g1, g1, g2, g2, g3, g2, g3, g2, g2, g3, g2, g2, g2, g3, g2, g2, g2, g1, g2, g3, r3, w1, w2, w1],
[r2, r1, r2, g2, g1, g2, g2, g1, g1, g2, g3, g3, g2, g1, g2, g1, g2, g2, g1, g1, g2, g1, g1, g2, g1, g2, g2, g1, g2, g1, g1, g2, g2, g1, g3, g2, g2, g2, g3, g2, g3, g3, g3, g2, g3, g2, g2, g1, g1, g2, g2, g3, g3, g2, g1, g2, g1, g1, g2, g1, g1, g1, g2, g1, g1, g1, g2, g3, r2, w1, w2, w1, w1],
[r3, r4, g2, g1, g2, g2, g1, g2, g1, g1, g2, g2, g1, g2, g1, g2, r2, r3, r1, g4, g3, g2, g2, g1, g2, g1, g1, g2, g1, g2, s2, s3, s2, g2, g2, g2, g1, g1, g2, g1, g2, g2, g3, g1, g2, g1, g1, g2, g2, g3, r3, r2, r1, r4, g3, g3, g2, g1, g2, g2, g2, g2, g1, g2, g2, r2, r3, r2, r1, w2, w1, w2, w1],
[r3, r2, g3, g2, g2, g1, g2, g1, g2, g2, g3, g2, g2, g3, g4, r4, r3, r1, r2, r3, g4, g3, g3, g2, g1, g2, g2, g1, g2, s1, b3, b2, b3, s1, g1, g1, g1, g2, g3, g2, g3, g2, g1, g2, g3, g2, g2, g2, g3, r2, r1, r3, r4, r3, r2, r1, g2, g1, g1, g2, g1, g1, g2, r2, r3, r1, w1, r3, w2, w1, w1, w2, w2],
[r2, r3, g3, g2, g1, g2, g1, g2, g1, g1, g2, g3, g3, g4, g4, r3, r4, r3, r4, r2, r1, g3, g2, g3, g2, g1, g1, g2, g1, b1, b2, b1, b2, b3, g2, g2, g2, g3, g2, g3, g2, g3, g2, g3, g2, g3, g2, g1, g2, g3, r3, r4, r2, r1, r3, g3, g4, g2, g2, g1, g2, r4, r2, r3, r2, w1, w2, w1, r4, w2, w2, w2, w1],
[r3, r4, g2, g1, g2, g1, g2, g3, g2, g2, g3, g2, g2, g3, g3, g4, r2, r4, r2, r1, g3, g2, g2, g2, g1, g2, g2, g1, s1, b2, b3, b2, b1, b2, s2, g2, g3, g2, g1, g2, g1, g2, g1, g2, g1, g2, g1, g2, g1, g2, g3, g3, r3, r2, g3, g2, g3, g2, g1, g2, r3, r2, r3, r2, w2, w2, r1, r4, r3, r2, w1, w1, w2],
[r2, r3, r2, g2, g2, g3, r3, r2, r3, g1, g2, g1, g1, g2, g2, g3, g2, g3, g4, g3, g2, g1, g1, g1, g2, g1, g1, g2, g2, s1, b1, b3, b2, s1, g2, g3, g2, g3, g2, g1, g2, g1, g2, g1, g2, g1, g2, g1, g2, g1, g2, g2, g3, g4, g2, g3, g2, r3, r2, r3, r2, r1, w1, w1, r3, r2, r3, p1, p3, pp, w2, w1, w2],
[r3, r4, r1, g2, g3, r3, r2, r3, r4, r2, g2, g2, g2, g3, g3, g2, g1, g2, g3, g2, g1, g2, g2, g2, g1, g2, g2, g3, g2, g2, s2, s2, g1, g2, g3, g2, g1, g2, g1, g2, g1, g2, g1, g2, g1, g2, g3, g2, g1, g2, g1, g3, g2, g3, g4, r2, r3, r4, r3, r4, r3, r2, r3, r2, r4, r1, p1, p3, p1, p3, w2, w2, w1],
[r2, r1, r3, g1, g2, r2, r3, r1, r2, r1, r2, r3, g3, g2, g2, g3, g2, g1, g2, g1, g2, g1, g1, g1, g2, g3, g3, g2, g1, g2, g3, g2, g2, g3, g2, g1, g2, g1, g2, g1, g2, g3, g3, g2, g2, g1, g2, g1, g2, g1, g2, g4, g3, g2, g3, g3, p1, p3, p1, p1, p3, p1, p3, p3, p1, p1, p3, p2, p3, p1, w1, w2, w1],
[r1, r2, r2, g2, g3, g3, r4, r3, r1, r2, r3, g4, g2, g1, g1, g2, g1, g2, g1, g2, g1, g2, g2, g3, g3, g2, g2, g1, g2, g3, g2, g1, g1, g2, g1, g2, g1, g2, g3, g2, g3, g2, g2, g1, g1, g2, g3, g2, g1, g2, g2, g3, g2, g2, g3, g2, g4, p2, p2, p2, p1, p2, p2, p1, p3, p1, p1, p3, p1, p3, w1, w2, w2],
[r2, r4, g2, g1, g1, g2, g3, g4, g3, g3, g2, g2, g1, g2, g1, g2, g3, s3, g2, g2, s1, s2, g2, g1, g2, g1, g1, g2, g1, g2, g2, g1, g1, g2, g2, g2, g1, g1, g2, g3, g2, g2, g2, g2, g1, g1, g1, g2, g2, g1, g1, g2, g2, g3, g2, g3, p2, p1, p3, p3, p2, p2, p3, p2, p2, p2, p2, p2, p3, p1, w2, w1, w2],
[r2, r3, g3, g2, g2, g3, g2, g3, g2, g2, g1, g1, g2, g3, g2, g3, s2, b3, b2, b1, b3, b2, s3, g2, g3, g2, g2, g3, g2, g3, g3, g2, g2, g1, g1, g3, g2, g2, g3, g2, g1, g1, g1, s3, g2, g2, g2, g2, g3, g2, g2, g3, g3, g2, g3, g4, r2, r3, r1, r4, r3, r1, r2, r3, r2, r4, p1, p3, p2, w1, w2, w1, w2],
[r1, r2, r4, g2, g1, g2, g2, g1, g1, g2, g3, g3, g2, g1, g2, g1, b2, b1, b3, b2, b2, b3, b2, b3, g2, g3, g2, g2, g1, g2, g2, g3, g3, g2, g2, g2, g3, g3, g2, g1, g2, s2, b2, b1, b2, s2, g3, g3, g2, g3, g2, g1, g2, g1, g2, r3, r4, r2, r3, r3, w1, w1, r3, w1, r3, r2, r3, p1, w1, w2, w2, w2, w1],
[r2, r1, r3, g1, g2, g1, g1, g2, g2, g1, g2, g2, g1, g2, g1, s3, b1, b2, b1, b2, b3, b2, b3, b2, s3, g2, g1, g1, g2, g1, g1, g2, g2, g3, g1, g1, g2, g2, g1, g2, s2, b3, b2, b3, r1, r2, r1, g2, g1, g2, g1, g2, g1, g2, g3, g2, r2, r3, r4, r3, r1, w2, w2, r3, r4, w2, r2, w1, w2, w1, w1, w2, w2],
[r3, r2, r1, g1, g1, g2, g2, g1, g2, g3, g3, g2, g2, g3, g2, b3, b2, b3, b2, b1, b2, b1, b2, g1, g2, g3, g2, g2, g3, g2, g2, g1, g1, g2, g2, g3, g2, g1, g2, g1, s1, b1, r3, r4, r2, r3, r2, r3, g2, g1, g2, g3, g2, g1, g2, g3, g4, g3, r3, r2, r4, r3, r2, r1, r3, r4, w1, r3, w1, w1, w2, w1, w2],
[r4, r2, r3, g1, g1, g1, g1, g2, g3, g2, g2, g1, g1, g2, s1, b2, b3, b2, b1, b2, b3, b2, s2, g2, g1, g2, g1, g1, g2, g1, g1, g2, g2, g1, g1, g2, g1, g2, g1, g2, g1, b2, b3, b1, r3, r4, r3, r4, g1, g2, g3, g3, g2, g2, g1, g2, g1, g2, g3, g4, g3, g4, r4, r3, r2, r1, r3, r4, r2, w2, w2, w1, w2],
[r3, r4, r2, g2, g2, g1, g2, g3, g2, g3, g3, g2, g2, g3, g2, s1, b2, b3, b2, b1, b2, s1, g2, g3, g2, g3, g2, g2, g3, g2, g2, g1, g2, g2, g3, g2, g2, g3, g2, g3, s3, s1, b1, b2, r1, r2, b1, s1, g2, g1, g2, g2, g3, g3, g2, g3, g2, g3, g2, g3, g2, g3, g3, g4, g2, g3, r2, r3, r4, r2, w1, w1, w1],
[r3, r2, r3, g1, g1, g2, g3, g2, g2, g3, g2, g2, g1, g2, g1, g2, g3, g3, s2, s3, g3, g2, g2, g1, g2, g2, g2, g2, g3, g2, g2, g1, g1, g2, g2, g2, g1, g1, g2, g3, g2, g2, s2, g2, g1, s3, s2, g2, g2, g1, g1, g2, g2, g3, g2, g3, g2, g2, g3, g2, g2, g2, g3, g2, g2, g2, g1, g2, g3, r3, r2, w2, w1],
[r2, r4, r1, g2, g2, g3, g2, v1, v2, g3, g3, g4, g3, g2, v2, v3, v4, g2, g3, g2, g1, g2, g3, g4, r1, r4, r2, r3, g4, g3, g1, g2, g2, g3, g2, g1, g3, g2, g1, g2, g1, g2, g2, g1, g2, g2, g1, g2, g3, g2, g3, g2, g1, g2, g3, g2, g1, g3, g2, g1, g2, g1, g2, g3, g3, g2, g2, g3, r4, r1, w2, w2, w1],
[v4, r3, g4, g3, g4, v3, v4, v2, v1, v3, g4, g3, g4, v4, v2, v3, v2, v1, v2, g1, g2, g3, g4, g3, g4, r3, r2, r3, r1, g4, g3, g1, g2, g1, g2, g3, g2, g3, g4, g3, g4, g3, g2, g1, g3, g2, g2, g3, g2, g3, g2, g1, g2, g1, g2, g1, g2, g2, g3, g2, g3, g2, g3, g2, g2, r3, r2, r4, r1, w2, w1, w1, w2],
[v1, v2, v3, v4, v2, v1, l1, v3, v2, v1, p1, g4, p2, v3, v1, l1, v3, v2, v4, v3, v2, g3, g3, g2, g1, g2, r1, r2, r4, g3, g2, g2, g3, g2, g1, g2, g3, g4, r4, r1, r3, r2, r1, g3, g2, g2, g1, g2, g3, g2, g1, g2, g1, g2, g1, g1, g1, g2, g2, g3, g4, p1, r3, r2, r4, r1, r2, w2, w2, w1, w2, w1, w1],
[v2, v1, v2, v2, v3, l2, l3, l1, v4, v2, p3, p2, p1, v1, v4, l3, l2, l1, v3, v2, v4, v1, v2, g4, g3, g2, g2, g2, g3, g2, g1, g1, g2, g3, g2, g3, r2, r3, r1, r4, r2, r1, r3, r2, g4, g3, g2, g3, g2, g1, g2, g3, g2, g1, g2, g2, g3, g1, g3, g4, p2, p3, p1, r4, r3, r2, w1, w2, w1, w2, w2, w1, w2],
[v1, v2, v4, v3, v1, l3, l1, l2, l3, v4, v3, p3, p1, p2, v2, v3, l1, l3, v1, v3, v1, v4, v3, v2, g4, g3, g2, g1, g2, g1, g2, g1, g1, g2, g3, g4, r3, r4, r1, r2, r3, r2, r1, r4, r2, g3, g1, g2, g3, g2, g3, g2, g1, g2, g3, g1, g2, g3, r4, p3, p1, p2, p3, p2, r3, r1, r2, w1, w2, w1, w2, w2, w1],
[v2, v3, v2, v1, v2, v3, v4, l3, l1, l2, v2, v4, p2, p3, p1, v2, v3, v4, p1, p3, p2, v3, v2, v1, v4, v3, g3, g2, g1, g1, s1, s2, g1, g2, g4, r1, r2, r4, r3, r1, r4, r2, r3, r1, g4, g2, g2, g3, g2, g1, g2, g1, g2, g3, g2, g2, r1, r2, r3, r2, p2, p3, p1, p2, p2, r2, w2, w2, w1, w1, w1, w2, w1],
[v4, v3, v1, v2, v3, v2, l2, l1, l2, v3, v4, p1, p3, p2, v2, v4, v1, p2, p3, p1, p3, p1, p2, v2, v3, g3, g2, g1, g2, s3, s2, s1, g2, g2, g3, r3, r2, r4, r1, r2, r3, r1, r4, r2, g3, g1, g1, g2, g3, g2, g2, g2, g3, g2, g3, r3, r2, r3, r4, r1, r2, p1, p2, p3, p2, r4, w1, w1, w2, w1, w2, w2, w1],
[v3, v2, v1, v3, v1, l3, l1, l2, v4, v2, p2, p3, p2, p1, p2, p3, p2, p1, p2, p3, p2, p2, p3, p2, p1, g4, g3, g2, g1, s3, s1, s2, g1, g2, g1, g4, r3, r2, r4, r1, r3, r2, g3, g2, g1, g2, g2, g1, g2, g3, g3, g2, g4, r4, r2, r3, r2, r1, r4, r2, r2, p2, p3, p1, p3, r3, r4, w2, w1, w2, w1, w1, w2],
[v2, v3, v2, l3, l2, l3, l1, v2, v3, p1, p3, p2, p1, p2, p3, p2, p1, p3, v4, v2, v3, p3, p2, p1, p2, g4, g2, g1, s2, s1, s3, s1, s2, g1, g2, g3, g4, r1, r2, r4, g4, g3, g2, g1, g2, g1, g1, g2, g3, g2, g2, g3, r2, r3, r2, r4, b1, b2, r3, r3, p1, p3, p2, p1, r3, r1, w1, w2, w2, w1, w2, w2, w2],
[v1, v2, l2, l1, l3, l2, l2, v4, p2, p3, p1, p3, p1, v1, p1, p2, p3, p1, v3, v1, v2, v2, p1, p2, p3, p2, g4, g2, s1, s2, s3, s2, s3, s2, g2, g1, g2, g3, g2, g1, g2, g3, g2, g1, g1, g2, g2, g3, g2, g1, g2, r4, r3, r1, b3, b2, b3, r1, r2, p3, p2, p1, p1, r1, r4, w2, w1, w1, w2, w2, w1, w1, w2],
[v4, l3, l1, l2, l1, l3, l1, v3, p1, p2, p3, p2, v4, v2, v3, v1, v2, v3, v1, v3, v2, v3, v1, v2, v1, v3, v4, s3, s2, s1, s2, s3, s2, s1, g1, g2, g1, g2, g3, g2, g1, g2, g3, g2, g1, g2, g1, g2, g1, g2, g1, r3, r2, b2, b1, b1, b2, r4, p1, p2, p3, p2, r4, r2, w1, w1, w2, w2, w2, w1, w1, w2, w1],
[v2, l2, l3, l1, l2, l1, l3, v4, v2, p1, p2, v3, v1, v2, v1, v2, v3, v1, v3, l2, l3, l2, v4, v1, v2, v3, s1, s2, s1, s3, s2, s1, s2, s3, g1, g2, g3, g1, g2, g3, g2, g1, g1, s3, s1, s2, s1, g1, g2, g3, g4, r2, r4, b1, b3, b2, r3, r2, p3, p1, p2, r2, r3, w2, w2, w1, w1, w2, w1, w2, w2, w1, w2],
[v4, v3, l2, v3, l2, l3, l2, l1, v4, v2, v1, v2, v3, v1, v4, v2, l2, l3, l1, l1, l2, l3, l2, v4, v3, s3, s2, s3, cc, s2, s3, s2, s3, s2, s3, g1, g1, g2, g3, g2, g1, s2, s1, s2, s2, s3, s1, s2, s3, s1, r2, r3, b2, b3, b2, r4, r1, r4, r3, p2, p3, pp, w1, w1, w2, w2, w2, w1, w2, w2, w1, w1, w2],
[v3, v2, v3, v4, v1, l1, l3, l2, l2, l1, v3, v1, l3, l2, l1, l3, l1, l2, l3, l2, l1, l1, v1, v2, v2, s2, s1, s2, s1, s3, s2, s1, s2, s1, s2, g1, g2, g1, g2, g1, s2, s3, s2, s1, s3, s1, s2, s3, s2, r3, r4, b3, b2, b1, b3, r3, r2, r1, r2, r3, r2, r3, w2, w2, w1, w1, w2, w2, w1, w2, w1, w1, w2],
[v2, v3, v4, v2, v3, v4, l1, l1, l3, l2, l1, l2, l2, l1, l2, l2, l3, l1, l2, v4, v1, v2, v3, s2, s1, s3, s2, s3, s2, s2, s3, s2, s3, s2, s3, g1, g1, g2, g1, s2, s1, s2, s3, s2, s1, s2, s3, b2, b2, b3, b1, b2, b1, b2, b1, b2, r1, r4, r3, r2, r4, w1, w1, w2, w2, w1, w2, w1, w2, w1, w2, w1, w1],
[v1, v4, v2, v1, v4, v3, v2, v1, l2, l1, l2, l3, l1, l2, l3, v4, v1, v3, v2, v3, v4, s3, s2, s1, s2, s1, s3, s2, s3, s1, cc, s1, s2, s3, s2, s1, g2, g1, s2, s1, s3, s1, s2, b3, b2, b1, b3, b3, b1, b2, b3, b2, b1, b3, b2, b3, r4, r3, r2, r1, w2, w2, w1, w2, w1, w1, w2, w2, w2, w1, w1, w1, w2],
[v2, v3, v4, v3, v1, v4, v2, v2, v1, v4, l3, l1, l3, v3, v1, v3, v2, v4, v1, s1, s2, s3, s2, s3, s2, s1, s1, s2, s1, s3, s1, s3, s1, s2, s1, s3, s2, s3, s1, s2, s3, b2, b2, b1, b3, b2, b1, b2, b2, b3, b1, b2, b1, b3, s2, b2, b2, r2, r1, r3, r2, w1, w2, w1, w1, w2, w1, w1, w2, w1, w2, w2, w1],
[v3, v4, v2, v4, v2, v1, v3, v2, v4, v1, v3, v2, v1, v4, v2, v1, s2, s3, s1, s3, s1, s2, cc, s1, s3, s2, cc, s3, s1, s2, s2, s1, s2, s3, s2, s2, s1, b2, b1, b3, b2, b3, b1, s2, s1, s2, b2, b3, b1, b2, b2, b3, b2, s1, g2, s3, b1, b3, b2, r4, r3, r2, r3, r1, r4, r2, r4, w2, w1, w2, w1, w1, w2],
[v1, v3, v4, v3, v1, v2, v2, v1, v3, v2, v2, v1, v4, v3, v1, s3, s1, s2, cc, s3, s2, s1, s2, s1, b1, b3, s2, s1, s3, s1, s2, s1, s3, s2, s1, s3, b3, b1, b2, b1, b3, b2, s1, s3, g2, s1, s1, b2, b1, b3, b2, b1, b2, s2, g3, s1, s3, b2, b1, b3, b2, r4, r1, r3, r2, r2, r3, r1, r2, r3, w2, w2, w1],
[v1, v2, v4, v2, v4, v3, v3, v2, v4, v3, v1, s3, s1, s2, s1, s3, s2, s2, s1, s3, s1, s2, b2, b3, b2, b1, b2, s3, s2, s1, s3, s2, s1, s2, s3, s2, b2, b2, b1, b2, b1, s2, s2, g2, r2, g1, s2, b2, b3, b2, b1, b3, b2, s1, r1, g4, s3, b1, b3, b1, b3, b1, b2, b1, b2, b2, r4, r3, r1, r2, r3, r1, w2],
[v3, v2, v1, v3, v2, v1, s3, s2, s1, s2, s3, s2, s2, cc, s1, s3, s2, s3, s1, s2, s3, s1, b1, b2, b1, b2, b3, s2, s1, s3, s2, cc, s2, s3, s1, b2, b1, b3, b3, b1, b2, s3, g1, r1, g1, r2, s3, b3, b1, b2, b3, b2, b1, b3, s2, s1, s2, b1, b3, b1, b1, b3, b3, b2, b3, b1, b2, b1, b3, b1, r2, r4, r2],
[v2, v3, v4, v4, s1, s2, cc, s3, s2, s1, cc, s3, s2, s1, s3, s2, cc, s2, s2, s3, cc, s3, s1, s3, b2, b3, s3, s1, s2, cc, s1, s2, s3, s2, s1, b3, b2, b2, b1, b2, b3, b2, s2, s3, g1, s1, s3, b2, b1, b3, b2, b1, b2, b3, b2, b3, b1, b2, b1, b3, b2, b2, s1, s2, s3, b2, b1, b3, b3, b2, b2, r3, r1],
[v3, v4, pp, s2, s2, s3, s1, s1, s2, s3, s3, s2, s3, s1, s2, s1, s3, s2, s1, s3, s3, s2, s2, s1, s3, s1, s1, s2, s1, s2, s3, s1, s2, s3, s2, b2, b1, b3, b2, b1, b2, b3, b2, b1, s1, s2, b3, b3, b2, b2, b1, b2, b3, b2, b1, b2, b3, b1, b3, b2, b2, s3, g1, r2, g3, s2, b2, b3, b1, b2, b3, b1, b2],
[v2, v3, v2, r2, r4, r1, r2, s2, s3, s1, s2, r1, r3, r4, s1, s2, s3, r4, r2, r2, r4, r2, s1, s3, s2, r4, r3, r2, r1, r2, s3, s2, s1, s3, s2, b3, b3, b1, b2, b1, b3, b1, b2, b3, b2, b3, b1, b2, b1, b3, b2, b3, b2, b1, b3, b2, b1, b2, b3, b1, b3, s2, g3, g4, r1, s1, b2, b1, b2, b3, b2, b2, b3],
[v3, v1, v3, v4, r3, r4, r2, r3, r2, r4, r1, r2, r2, r3, r4, r2, r1, r3, r4, r2, r3, r1, r4, r2, r2, r4, r2, r3, r1, r2, r4, r3, r2, r1, r2, r4, b1, b2, b3, b1, b2, b2, b3, b2, b2, b2, b3, b1, b3, b2, b1, b3, b2, b3, b2, b1, b3, b2, b1, b2, b3, b1, s1, s3, s2, b2, b1, b3, b2, b1, b2, b3, b1],
[v2, v3, v1, v3, v4, r3, r4, r2, r2, r3, r4, r2, r1, r3, r4, r2, r3, r1, r4, r2, r2, r4, r2, r3, r1, r3, r2, r4, r1, r2, r2, r4, r3, r2, r1, r2, r4, b1, b2, b2, b3, b2, b2, b2, b3, b1, b3, b2, b3, b1, b2, b1, b3, b2, b3, b2, b1, b3, b2, b1, b2, b3, b1, b3, b2, b3, b2, b1, b3, b2, b1, b2, b1]
],
"elevation": [
# 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 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", e1, e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", ""],
["", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", ""],
["", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", ""],
["", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", ""],
["", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", e4, e4, e4, "", "", ""],
["", "", "", e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", e4, e4, e4, e4, "", "", ""],
["", "", "", e1, e1, "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e2, e3, e3, e3, e4, e4, e4, e4, e4, e4, "", "", ""],
["", "", "", e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e3, e3, e3, e3, e4, e4, e4, e4, e4, e4, "", "", ""],
["", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e2, e3, e3, e3, e4, e4, e4, e4, e4, e4, "", "", ""],
["", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, "", "", "", "", "", "", "", "", "", "", e4, e4, e4, "", "", "", ""],
["", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", e4, "", "", "", "", ""],
["", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", ""],
["", "", "", e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e2, e2, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", ""],
["", "", "", e1, e1, e1, e1, "", "", e2, e2, e2, e2, e2, "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", ""],
["", "", e1, e1, e1, "", "", "", "", "", e2, e2, e2, "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e1, e2, e2, e2, e2, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e3, e2, e3, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e3, "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e3, e3, e3, "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e3, e3, e3, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", e3, e3, e3, "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, "", e3, e3, e3, e3, e3, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", e4, e3, e3, "", "", "", e3, e3, e3, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, "", "", "", "", e3, e3, e3, e4, e3, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", e4, e4, e4, "", "", "", e3, e3, e3, e3, e2, e2, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", e3, e3, e3, e3, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e4, e4, e4, e4, e4, e3, e3, e3, e3, e3, e2, e2, e2, e2, e2, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e4, e3, e3, e3, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e4, e4, e4, e4, e4, e4, e4, e3, e3, "", "", "", e2, e2, e2, e2, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e4, e4, e4, e3, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e4, e4, e4, e4, e4, "", e4, e4, e3, e3, "", "", "", "", e2, e2, e2, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e4, e4, e4, e4, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e4, e4, e4, e4, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", e4, e4, e4, e4, "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e4, e4, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", e4, e4, e4, "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, "", e0, e0, e0, e0, e1, e1, e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", e4, e4, e4, "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e1, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, "", e0, e0, e0, "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, "", e0, e0, e0, e0, e0, "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, "", e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", e0, e0, e0, e0, "", e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", e0, e0, "", e0, e0, e0, "", e0, e0, e0, e0, e0, "", e0, e0, e0, "", e0, e0, e0, "", "", e0, e0, e0, "", e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e0, e0, e0, e0, "", "", "", e0, e0, e0, "", "", "", "", "", e0, e0, e0, "", "", "", "", "", e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""]
]
},
"cloud": {
"players": {},
"background": sk,
"map": [
[sk, sk, sk, w1, w2, w1, w3, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, w2, w1, w2, sk, sk, sk],
[sk, w2, w3, w2, w1, w1, w2, w3, w2, sk, sk, sk, sk, sk, w2, w3, w1, w2, sk, sk, sk, sk, w2, w3, w1, w2, w3, sk, sk],
[sk, w1, w2, w3, w2, w3, w1, w2, w1, w2, w1, sk, sk, w3, w2, w2, w2, w3, w2, sk, sk, sk, w1, w2, w3, w1, w2, w3, sk],
[w3, w2, w3, w2, w1, w2, w2, w1, w2, w3, w2, w1, w2, w2, w3, w2, w1, w2, w1, w1, sk, w2, w2, w3, w2, w2, w2, w3, pp],
[w2, w2, w1, w2, w3, w3, w2, w1, w1, w2, w3, w2, w3, w3, w2, w3, w2, w1, w2, w3, w2, w1, w1, w2, w3, w1, w1, w2, w1],
[w1, w3, w3, w2, w1, w2, w1, w2, w3, w2, w3, w1, w2, w1, w2, w2, w1, w2, w1, w2, w1, sk, sk, w1, w2, w2, w2, w3, w2],
[w2, w1, w2, w3, w2, w3, w1, w2, w2, w1, w2, w3, w3, w2, w1, w1, w2, w3, w2, w1, w3, sk, sk, sk, sk, w1, w3, w2, sk],
[sk, w3, w1, w2, w3, w2, w2, w1, w1, w2, w1, w2, w2, w1, w2, w3, w3, w2, w1, w1, sk, sk, sk, sk, sk, sk, sk, sk, sk],
[sk, sk, w2, w3, w2, w1, w2, w3, sk, sk, w2, w3, w1, w2, w1, w2, w1, w2, w3, sk, sk, w3, w2, sk, sk, sk, sk, sk, sk],
[sk, sk, sk, sk, w1, w2, sk, sk, sk, sk, w2, w1, w2, w2, w3, w2, w2, w1, sk, sk, sk, w2, w1, w3, sk, w2, w3, sk, sk],
[sk, sk, sk, sk, sk, sk, sk, w3, w2, w1, w3, w2, sk, w3, w2, w1, sk, sk, sk, sk, sk, sk, w2, w2, sk, w2, w2, w1, sk],
[sk, w3, w1, sk, sk, sk, w2, w2, w1, w2, w2, w1, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, w1, w3, sk, sk],
[w2, w1, w2, w1, sk, sk, w1, w3, w2, w1, w2, w1, w2, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, w1, w2, sk],
[w3, w2, w3, sk, sk, w2, w1, w2, w1, w3, w1, w2, w3, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, w1, w2, sk, sk, sk, sk],
[sk, w1, w2, sk, w3, w2, w2, w1, w2, w1, w2, w1, w1, sk, sk, w2, w3, w2, sk, sk, sk, w3, w2, w2, w3, w1, sk, sk, sk],
[sk, sk, sk, sk, w2, w2, w1, w2, w3, w2, w3, w3, w2, w2, w1, w2, w2, w3, w1, sk, w2, w2, w3, w1, w2, w3, w1, sk, sk],
[sk, sk, sk, sk, w1, w2, w3, w1, w2, w1, w2, w2, w1, w2, w1, w2, w1, w2, w2, w2, w2, w1, w2, w2, w1, w2, sk, sk, sk],
[sk, sk, sk, sk, w2, w3, w2, w2, w1, w2, w1, w1, w2, w3, w2, w3, w2, w3, w2, w3, w1, w2, w1, w2, w1, w2, sk, sk, sk],
[sk, sk, sk, w1, w3, w1, w3, w3, w2, w1, w2, w1, w2, w2, w2, w2, w1, w2, w1, sk, sk, w1, w2, w3, pp, sk, sk, sk, sk],
[sk, sk, sk, pp, w1, w2, w1, w2, w1, w2, w2, w3, w1, w3, w1, w3, w2, w3, w2, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk],
[sk, sk, sk, sk, w3, w1, w2, w2, w2, w1, w1, w2, w2, w1, w2, w3, w1, w1, sk, sk, sk, sk, sk, sk, w1, w2, sk, sk, sk],
[sk, w1, sk, sk, sk, w2, w1, w2, w3, w2, w3, w2, w2, w1, sk, sk, sk, sk, sk, sk, sk, sk, sk, w2, w3, w2, w3, sk, sk],
[w1, w2, w3, sk, sk, sk, sk, sk, w2, w3, w2, w1, w2, w1, w1, w2, sk, sk, sk, w2, w2, w1, sk, sk, w1, w1, sk, sk, sk],
[w2, w1, w2, sk, sk, sk, sk, sk, sk, sk, sk, sk, w3, w2, w1, w3, w2, sk, w2, w3, w1, w2, w3, sk, sk, sk, sk, sk, sk],
[w1, w3, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, w3, w2, w1, w2, w3, w1, w1, w3, w1, w2, w2, sk, sk, sk, sk, sk],
[sk, sk, sk, sk, sk, w1, w2, sk, sk, sk, sk, sk, sk, w2, w1, w3, w1, w2, w2, w2, w1, w2, w3, w3, sk, sk, sk, sk, sk],
[sk, sk, sk, sk, w1, w2, w3, w2, sk, sk, sk, sk, sk, sk, w2, w2, w3, w2, w1, w1, w3, w2, w1, w2, sk, sk, sk, w1, sk],
[sk, sk, sk, sk, sk, w1, w2, w3, w1, sk, sk, sk, sk, w2, w1, w1, w2, w3, w2, w1, w3, w1, w2, w1, sk, sk, w1, w2, w1],
[sk, sk, sk, sk, sk, sk, sk, w1, sk, sk, sk, sk, w2, w1, w2, w3, sk, w2, w3, w2, w1, w2, w3, sk, sk, sk, w2, w1, w3],
[sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, w1, w1, w3, w2, sk, pp, w1, w1, w3, w2, w2, sk, sk, sk, sk, w3, w2],
[sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, w2, w1, sk, sk, sk, w2, w1, w1, w3, sk, sk, sk, sk, sk, sk, sk]
],
"elevation": [
["", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", ""],
["", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, "", ""],
["", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, ""],
[e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1],
[e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1],
[e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1],
[e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, ""],
["", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", e1, e1, "", "", "", ""],
["", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, "", "", ""],
["", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, "", ""],
["", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", ""],
["", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", ""],
["", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, "", "", "", ""],
["", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", ""]
]
},
"volcano": {
"players": {},
"background": v2,
"map": [
[v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v2, v4, v2, v1, v1, v2, v3, v1, v1, v3, v2, v1, v4, v4, v3, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v2, v3, v4],
[v2, v3, v1, v1, v3, v2, v1, v4, v4, v3, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v3, v4, v2, v2, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v4, v3, v1, v1, v3, v4, v2, v1, v1, v3, v2, v3],
[v3, v4, v2, v1, v1, v3, v2, v2, v1, v1, v2, v3, v1, v1, v3, v2, v1, v4, v4, v3, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v4, v2, v1, v1, v1, v3, v2],
[v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v2, v4, v2, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v4, v4, v1, v1, v2, v3, v1, v4, l2, l3, v3, v1, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v1, v3],
[v2, v3, v1, v1, v3, v2, v1, v4, v4, v3, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v2, v3, v1, v1, v3, v2, v1, v4, l2, l3, l2, l3, l2, v2, v4, v3, v2, v4, v2, v1, v3, v4, v4, v2, v1, v4, v3, v4],
[v3, v4, v2, v3, v1, v3, v2, v2, v4, v1, v3, v3, v2, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v4, v2, v1, v1, v2, v4, l1, l1, l2, l3, l1, l1, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v2, v3],
[v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v4, v4, v2, v1, v1, p3, p2, p1, p2, v2, v3, l2, l3, l3, l3, l2, l3, l2, l2, v3, v4, v2, v1, v1, v2, v2, v1, v2, v2, v4, v1, v2, v3],
[v3, v4, v2, v1, v1, v4, v4, v2, v1, v1, v3, v4, v2, v1, v1, v2, v2, v1, v2, v2, v4, v1, v2, p3, p2, p1, p2, p3, p1, p2, v3, v4, l1, l2, l1, l1, l2, l3, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v3, v4],
[v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v4, v2, v1, v4, v3, v4, v2, v1, v1, v3, v3, p2, p1, p1, p2, p3, p2, p1, p2, p3, v3, v4, v2, l3, l2, l1, l2, v2, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v2, v3],
[v3, v4, v2, l2, l1, v1, v4, v3, v2, v1, v3, v4, v3, v1, v1, v3, v4, v2, v1, v1, v3, v3, p1, p3, p2, p1, p2, p3, p2, p3, p1, p2, p3, v2, v3, l3, l1, l1, v4, v3, v1, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1],
[v2, v3, v1, l3, l2, l3, v3, v1, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, p2, p1, p2, p3, p2, p3, p2, p1, p2, p1, p2, v3, p2, v3, v4, l1, v2, v1, v3, v4, v2, v1, v1, v2, v2, v1, v2, v2, v4, v1, v2, v3],
[v3, v4, v3, v1, l1, l2, l3, v2, v1, v1, v1, v3, v2, v3, v4, v4, v2, v2, v1, p2, p1, p2, p3, p2, p2, p1, p2, p1, p2, p1, p1, p2, p3, p3, p3, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v4, v2, v1, v1, v2, v3, v1],
[v3, v4, v2, v1, l2, l1, l3, l1, v2, v1, v3, v4, v2, v1, v1, v3, p3, p1, p2, p3, p2, p1, p2, p3, p3, v3, v3, p3, p2, p2, p3, p2, p1, p2, p2, v2, v3, v1, v4, v2, v4, v3, v1, v1, v3, v4, v2, v1, v1, v1, v4, v2, v3],
[v3, v3, v2, v1, v2, l1, l2, l3, v2, v1, v3, v3, p3, p2, p1, p2, p2, p3, p2, p1, p2, p3, p2, p1, v3, v4, v2, v1, v1, p1, p1, p2, p1, p2, p1, v3, v4, l2, l1, l3, v4, v4, v2, l1, l2, v3, v4, v2, v1, v1, v3, v4, v1],
[v2, v3, v1, v4, v2, v4, l3, v1, v1, v1, p1, p2, p1, p2, p2, p3, p3, p2, p3, p2, p1, p2, p3, p1, v3, v4, v2, v1, v1, p2, p1, p1, p2, p3, p3, p2, v2, l1, l1, l3, l3, v4, l1, l2, l3, l2, v3, p1, v3, v4, v2, v1, v1],
[v1, v3, v2, v3, v4, v4, l2, v4, v1, p2, p3, p3, p2, p3, p2, p1, p2, p3, p2, p1, p2, p3, p1, v3, v4, l2, l1, v1, v3, v3, p3, p3, p2, p1, p2, p1, v3, v4, v2, l2, l3, l2, l3, l2, l2, v1, p3, p2, pp, v3, v4, v2, v1],
[v2, v2, v1, v2, v2, l2, l2, v2, p1, p2, p3, p2, p2, p1, p3, p2, p1, p2, p2, p2, p1, v1, v3, v2, l1, l3, l2, l3, l1, v1, p1, p3, p2, p1, p1, p2, v2, v3, v1, l1, l1, l3, v3, v1, v1, v1, p2, p1, p2, p3, v4, v3, v3],
[v3, v4, v2, v1, l3, l1, l1, v3, p2, p1, p2, p1, v3, v3, v2, v3, p3, p2, p1, v2, v3, v1, v4, l3, l2, l1, v1, v4, l2, v3, p2, p3, p1, p2, p2, p3, v1, v3, v2, l3, l2, l1, l2, v2, v1, p2, p3, p2, p3, p2, v3, v2, v1],
[v2, v2, v1, v2, l2, l3, v1, v2, p3, p2, p1, p3, v2, l3, v1, v4, v2, v4, v3, v1, v1, v1, l3, l2, l2, l3, l2, l2, l3, v2, v1, p3, p3, p2, p1, p2, p2, v3, v4, v2, v1, v1, v3, p3, p2, p3, p2, p1, p1, p2, v1, v3, v3],
[v3, v4, v3, v1, v1, v3, v3, p2, p2, p3, p2, p2, v2, l2, l2, v4, v2, v4, v3, v1, l2, l1, l2, l1, v2, l2, l1, l1, v2, v2, v1, p2, p2, p1, p2, p1, p2, p3, v3, v3, v3, v3, p2, p3, p2, p1, p3, p2, p1, v2, v3, v2, v4],
[v4, v2, v2, v1, v1, v2, v4, p1, p3, p1, p3, v2, v3, l1, l1, l3, v4, v3, l3, l1, l2, l3, l1, v2, v3, v4, v4, v2, v2, v1, p3, p3, p3, p2, p3, p2, p1, p3, p3, p3, p2, p1, p3, p2, p1, p2, p1, p2, p3, v2, v4, v3, v3],
[v3, v4, v2, v1, v1, v3, p1, p2, p1, p2, p1, v2, l2, l2, l3, l2, l1, l1, l2, l3, l1, l2, v4, v2, v1, v2, v3, p1, p3, p2, p1, p2, p2, p1, p1, p2, p1, p2, p1, p2, p2, p1, p2, p3, p2, p3, p2, p1, v3, v4, v2, v1, v1],
[v2, v3, v2, v2, v4, v3, p2, p3, p1, p3, p2, v2, v3, l3, l2, l1, l2, l3, v1, l2, v1, v3, v4, v2, v4, v1, p2, p2, p1, p2, p2, p3, p3, p2, p3, p2, p1, p2, p1, p2, p3, p2, p3, p2, p1, p2, p1, p2, v3, v4, v2, v1, v1],
[v3, v4, v2, v2, v1, v4, p3, p1, p2, p1, p2, p1, v1, l2, l3, l1, l3, v4, v2, v2, v1, p2, p3, p1, p2, p1, p1, p3, p1, p2, p1, p2, p1, p1, p1, p1, p2, p3, p3, p2, p3, p2, p1, p2, p3, p1, p3, v3, v4, v2, v1, v1, v3],
[v3, v2, v4, v1, v1, v3, p2, p2, p1, p2, p3, p2, v1, v4, l1, l1, v1, v3, v3, p1, p2, p1, p2, p2, p2, p3, p2, p2, v3, v3, v3, p2, p2, v3, p2, p2, p3, p2, p1, p1, p1, p3, p1, p2, p1, p2, v3, v4, v2, v1, v1, v3, v4],
[v1, v4, v3, v3, v1, v2, v3, p3, p2, p3, p2, p3, v3, v4, v2, v1, v1, p3, p2, p3, p2, p2, p1, p2, p3, p2, p1, v1, v1, v2, v3, v4, v4, v2, v2, v1, p1, p3, p2, p3, p2, p1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3],
[v3, v1, v2, v1, v1, v3, v1, p1, p3, p1, p2, p3, v2, v3, v2, v3, p2, p2, p3, p2, p3, p2, p1, p2, p2, p3, v2, v3, v1, v1, v3, v2, v1, v4, v4, v3, v2, v1, v3, v2, v4, v3, v3, l3, l1, l1, v3, v4, v4, v2, v1, v3, v2],
[v3, v4, v2, v1, l1, v4, v3, p2, p2, p3, p2, p1, p3, v2, v3, v1, p1, p2, p1, p3, p2, p3, p3, p2, p1, v2, v3, v1, l1, l2, v2, l2, l1, l2, l3, v2, v1, v3, v2, v4, v3, l2, l1, l2, l3, l2, l3, v4, v2, v1, v3, v2, v3],
[v2, v2, l3, v2, l2, l3, v1, v2, p1, p2, p1, p2, p2, v3, v4, v3, v3, p3, p2, p1, p3, p1, v3, v4, v2, v1, v1, l1, l2, l3, l2, l2, l1, l3, l2, l3, v2, v4, v3, v1, l1, l3, l2, l1, l2, l3, l2, v4, l2, l3, v1, v1, v4],
[v3, v4, l2, v1, l1, l1, v3, v3, p2, p3, p2, p3, p1, v3, v4, l2, v2, v1, p3, p2, p2, v2, v3, v1, v1, v3, l2, l3, v4, l1, l1, v2, l1, l1, l3, l2, l3, v3, v4, v2, l1, l2, l2, v4, v2, l1, l2, l1, l3, l2, l1, v1, v3],
[v2, v2, l3, l2, l3, l1, l2, v2, p3, p2, p1, p2, p2, p3, v2, l3, l1, v2, v3, v2, v1, v4, l2, v3, v2, v1, l1, v2, v4, v3, v3, v4, v2, l1, l2, l3, l2, v2, l2, l3, l2, l3, v1, v1, v2, l2, l3, l1, l2, l3, l2, l3, l2],
[v3, v4, v2, l3, l2, v3, v3, v3, p2, p2, p3, p2, p3, p2, v2, v3, l2, l2, l3, v4, v3, l3, l1, l1, v3, v4, v2, v1, v4, v2, v3, v1, v4, v2, l1, l2, l1, l3, l1, l2, v4, l3, l2, v1, l2, l3, l1, l2, l1, l2, l2, l3, l2],
[v1, v3, v2, v3, v4, v4, v2, v2, v1, p1, p2, p3, p2, p1, p3, v2, v3, v1, l2, v2, l1, l2, l3, l2, v1, v3, p2, p1, p3, p2, v2, v3, v1, v4, v2, l3, l2, l1, l1, v1, v2, l2, l1, l3, l2, l2, l1, l3, l2, l1, l3, l1, l3],
[v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, p2, p3, p2, p1, p2, p2, p1, v2, v2, v1, v3, v2, v4, v1, v2, p1, p3, p2, p1, p3, p1, p2, v2, v3, v1, l2, l3, l2, l3, v1, v1, v1, l3, l2, l3, v4, v2, l2, l1, l1, l2, l2, l1],
[v3, v4, v2, v4, v1, v3, v4, l3, l1, v1, p1, p2, p1, p3, p2, p1, p2, p1, p2, p2, v3, v3, v3, p2, p2, p3, p2, p2, p3, p2, p3, p2, p3, p2, v2, v3, l1, l3, v2, v4, v3, v1, v1, v1, v2, v2, v1, v2, l2, l3, l2, l3, v3],
[v2, v3, v1, v4, v2, v4, l3, l2, v4, v1, p3, p3, p2, p2, p1, p2, p3, p2, p1, p2, p3, p2, p1, p3, p3, p2, p2, p1, p2, p3, p2, p1, p1, p2, p1, v3, v4, v2, v1, v1, v3, v3, p2, p1, p2, v3, v4, v2, v1, l2, l1, v3, v3],
[v3, v4, v2, v1, v1, v2, l2, l3, v1, v2, v3, p1, p3, p2, p1, p2, p1, p2, p3, p2, p2, p1, p2, p3, p2, p1, p3, p1, p2, p3, p2, p3, p2, p1, p3, p2, p3, v3, v3, v3, p1, p2, p3, p2, p3, p2, p1, v3, v4, v2, v1, v1, v3],
[v3, v4, v2, v1, l1, v3, v4, v1, v1, v2, v4, p2, p2, p1, p2, p3, p1, p3, p2, p2, p1, p2, p3, p2, p1, p1, p2, v3, v3, v3, p2, p1, p2, p3, p2, p3, p2, p1, p2, p1, p2, p3, p2, p1, p2, p1, p2, p1, v3, v4, v2, v1, v1],
[v2, v3, v1, v4, l1, l3, v3, v1, v3, v1, v2, v3, p3, p2, v3, v3, v3, p1, p3, p3, p2, p3, p2, p1, p2, p3, p1, v3, v3, v3, v3, p2, p1, p2, p1, p2, p1, p2, p3, p2, p3, p2, p3, p2, p1, p2, p1, p2, p1, v3, v3, v2, v3],
[v3, v4, v2, l1, l2, v2, v4, v2, v1, v1, v3, v4, v2, v1, v1, v3, v3, p2, p2, p1, p1, p2, p1, p2, p2, p3, v3, v4, v2, v1, v1, p3, p2, p3, p2, p2, p1, p2, p3, p3, p2, p3, p2, p1, p2, p3, p2, p3, p2, pp, v4, v3, v4],
[v3, v4, v2, l3, l2, l3, v4, v2, v4, v1, v2, v2, v1, l1, l2, l1, v1, v2, p1, p2, p3, p3, p2, p1, v2, v2, v1, v2, l3, l3, v1, v2, p3, p2, p3, p1, p2, p3, p1, p2, p3, p2, p1, p2, p3, p2, p1, p2, p1, v3, v3, v1, v3],
[v2, v3, v1, v1, l1, l2, l1, v4, v4, v3, v2, v1, l2, l3, l1, l3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v2, l3, l2, v4, l2, l1, v3, v1, v1, v1, v3, v3, p2, p3, p2, p1, v3, v3, v3, p2, p3, p2, p3, v3, v4, v2, v1, v1],
[v2, v3, v1, v4, l3, l2, l3, v1, v1, v1, l3, l2, l1, l2, l3, l2, v4, v4, v1, v1, v2, v3, v1, v4, v2, l2, l1, v1, v1, v2, l1, l3, l2, l3, v1, v3, v4, v4, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v4, v3, v3],
[v2, v3, v1, v1, v3, l1, v1, v4, v4, v3, v2, l2, l2, l3, l2, l1, v3, v4, v2, v1, v3, v4, v4, v2, v1, l2, l3, v1, v1, l1, l1, l1, l1, l1, l2, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v3, v1, v2],
[v3, v4, v2, v1, v1, v3, v4, v2, v2, v1, v3, v4, l3, l2, v1, v3, v4, v2, v3, v1, v2, v3, v1, v4, v2, l1, l3, l1, l2, l3, l3, v4, l3, v1, v1, v1, v4, v2, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v1, v2, v3],
[v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v4, v2, v1, v1, v3, v4, v2, v2, v1, v2, v3, v1, v1, v3, v2, l1, l2, l1, v3, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v3, v4, v2, v1, v1, v3, v3, v2],
[v3, v3, v1, v1, v3, v2, v1, v4, v4, v3, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v2, v3, l3, v4, v2, v4, v3, v1, v1, v1, v3, v4, v3, v1, v1, v3, v4, v1, v1, v1, v3, v4, v2, v1, v1, v3, v1, v3],
[v4, v3, v1, v4, v2, v4, v3, v1, v1, v1, v2, v4, v2, v1, v1, v2, v3, v1, v1, v3, v2, v1, v4, v4, v3, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v1, v4, v3]
],
"elevation": [
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e1, e1, e1, "", "", e1, e1, e1, e1, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", "", e1, e1, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", "", e1, e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", e1, "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", ""],
["", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", ""],
["", "", "", "", "", "", "", "", e1, e2, e2, e2, "", "", "", "", e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", e2, e1, e1, e1, e1, e1, e1, "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e2, "", "", "", "", e2, e2, e1, e1, e1, e1, e1, "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e1, e1, e1, e1, e1, "", "", "", ""],
["", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e3, e3, e3, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e1, e1, e1, e1, "", "", "", "", ""],
["", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e3, e3, e3, e3, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e1, e1, e1, "", "", "", "", ""],
["", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", e5, e4, e4, e4, e4, e3, e3, e3, e3, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e1, e1, "", "", "", "", "", ""],
["", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", e5, e5, e5, e4, e4, e4, e4, e3, e3, "", "", "", e2, e2, "", e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", e5, e5, e5, e5, e5, e4, e4, e4, e4, e3, "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", e5, e5, e5, e5, e5, e5, e5, e4, e4, e4, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", e5, e5, e5, e5, e5, e5, e5, e4, e4, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", e5, e5, e5, e5, e5, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", e5, e5, e5, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""]
]
},
"cave": {
"moveable": [s1, s2, s3, pp],
"players": {},
"background": r2,
"map": [
[r2, r3, r1, r3, r3, r3, r2, r1, r1, r1, r3, r2, r3, r1, r2, r3, r3, r1, r1, r2, r3, r3, r1, r3, r1, r2, r3, r3, r1, r1, r3, r1, r2, r3, r3, r2, r3, r3, r2, r3, r3, r3, r3, r2, r3, r3, r3, r3, r3, r2, r3, r2, r2, r3, r3, r1, r2],
[r2, r1, r3, r3, b2, b2, r1, r2, r3, r1, r1, r2, r2, r1, r2, r3, r1, r1, r2, r3, r2, r3, r2, r3, r3, r1, r3, r2, r1, r2, r3, r3, r3, r3, r3, r3, r3, r3, r3, r1, r1, r3, r3, l1, l1, l2, l1, r2, r3, r2, r3, r1, r1, r3, r1, r4, r3],
[r2, r2, r3, b2, b2, b3, b1, r3, r3, r3, r3, r1, r1, r3, r1, r3, r1, r2, r3, r3, r2, r1, r2, r1, r2, r3, r3, r2, r1, r3, r2, r3, r2, r2, r2, r3, r2, r3, r3, r2, l3, l3, l1, l3, l3, l2, l3, l3, l3, l2, l3, l3, r3, r2, r1, r3, r1],
[r4, r2, r1, b1, b2, b1, b1, r3, r3, r3, r3, r1, r1, r1, r3, r2, r1, r2, r1, r3, r3, r2, r3, r3, r1, r3, r1, r2, r2, r1, r3, r2, r2, r3, r3, r2, r3, r3, r3, r3, l2, l2, l2, l1, l3, l1, l2, l2, l2, l3, l1, l2, l3, r3, r1, r2, r4],
[r1, r2, r3, r3, b1, b1, r1, r3, r1, r2, r3, r1, r3, r1, r3, r3, r2, r1, r2, r1, r3, r1, r3, r1, r3, r1, r2, r1, r1, r2, b3, r1, r1, r2, r3, r3, r3, r1, r3, r1, r1, l2, l1, r1, r1, r3, r1, r1, r1, r1, l3, l2, l3, r1, r3, r1, r2],
[r2, r4, r3, r3, b1, b2, r1, r2, r1, r2, r3, r3, r3, r3, r1, r3, r3, r2, r3, r1, r2, r1, r1, r1, r3, r3, r3, r3, r1, b3, b3, b3, b1, r1, r3, r2, r1, r2, r3, r3, r3, r2, r1, r3, r2, s3, s3, s3, s1, r3, r3, l3, l1, l2, r3, r3, r1],
[r2, r1, r3, r3, r3, r3, r2, r3, r3, s2, s1, s2, s1, s3, s3, s2, s3, r3, r3, r3, r3, s2, s3, s1, s2, s3, r3, r2, b3, b3, b2, b1, b3, b1, r1, r2, r3, r3, r3, r3, r3, r2, s3, s1, s1, s3, s3, s3, s1, s1, r3, l1, l3, l2, r3, r4, r3],
[r3, r4, r3, r1, r1, r3, r3, r3, s1, s2, s1, s3, s3, s1, s1, s1, s2, s2, s2, s2, s2, s2, s2, s2, s2, s1, s3, r2, r3, b3, b1, r2, b3, b2, r1, r3, r3, r3, r2, r3, r2, s3, s2, s2, s1, s1, r1, r3, s2, s3, r2, l1, l2, l3, r1, r3, r1],
[r1, r2, r1, r3, r1, r1, r2, s1, s2, s2, s3, s1, s1, s3, r2, r3, r1, s3, s1, s1, s1, r3, r3, s1, s1, s3, s2, s3, r3, r3, r2, r3, r3, r1, r2, r1, s3, s3, s1, s3, s3, s2, s2, r3, r2, r1, r3, r2, s2, s2, r1, l3, l3, l1, l2, r4, r3],
[r4, r3, r3, r3, r1, r3, s3, s3, s1, s2, r1, r1, r3, r3, r2, r2, r2, r3, r1, r3, r3, r3, r2, r3, s1, s1, s3, s2, s3, r3, r3, r1, r3, r1, r2, s1, s1, s1, s3, s3, s3, s1, s3, r1, r3, r2, r3, r3, s3, s3, r3, r2, l1, l2, l2, r3, r1],
[r2, r1, r3, r3, r1, r2, s3, s3, s1, r2, r3, r3, r3, r3, b1, b2, b2, b3, r3, r2, b1, r1, r1, r3, r3, s2, s3, s1, s1, s2, r3, s1, s3, s3, s1, s2, s3, r3, r1, r3, s2, s3, r3, r2, r3, r3, r3, s1, s1, s3, r3, r2, l1, l1, l1, r1, r2],
[r3, r4, r2, r2, r1, r3, s3, s2, s2, r1, r3, r2, r3, r3, r3, b2, b2, b1, b3, b1, b2, r3, r1, r2, r3, r1, s2, s3, s3, s2, s3, s1, s1, s2, s1, s3, r1, r3, r2, r2, s3, s3, s2, r3, r1, s3, s2, s3, s1, r2, r3, l2, l3, l1, r3, r4, r3],
[r2, r1, r3, r1, r3, r3, s1, s1, s3, s3, r3, r3, r3, r3, r1, r2, r1, b2, b3, b3, r3, r3, r3, r3, r3, r3, r1, s1, s1, s3, s3, s3, s2, r2, r3, r3, r3, r2, r3, r1, r3, s3, s2, s3, s2, s3, s1, r3, r3, r1, l3, l1, l2, l2, r1, r2, r4],
[r4, r2, r2, r3, r1, r3, r2, s1, s2, s3, s2, r3, r3, s2, s3, s3, r1, r3, r1, r3, r3, r1, s1, s1, r1, r3, r3, r3, s3, s1, s3, r3, r3, r3, r3, l3, l3, l3, r3, r1, r1, s1, s3, s2, s1, s1, s3, r3, r3, l2, l2, l2, l3, r3, r2, r1, r2],
[r3, r4, r3, r3, r3, r3, r2, r1, s3, s3, s3, s3, s2, s1, s3, s2, s3, r2, r3, r3, s3, s3, s1, s3, s3, r2, r1, r3, r3, r3, r3, r3, r3, r2, r3, l1, l2, l1, l1, r3, r2, r3, r2, r3, r3, r3, r3, r1, r3, r3, l3, l3, r2, r3, r3, r3, r1],
[r2, r1, r3, r1, r1, r3, r3, r3, r3, s2, s2, s2, s3, s1, s3, s2, s3, s1, s2, s3, s1, s3, s1, s3, s3, s1, r1, r3, r1, r3, r3, r1, r3, r1, r2, r2, l1, l1, l1, r3, r1, r2, s2, s1, s1, r1, r1, r1, r3, r3, r1, r2, r3, r3, r3, r4, r3],
[r2, r4, r3, r1, r3, r1, r1, r3, r1, s3, s1, s1, r2, r3, r3, r2, s2, s1, s3, s2, s3, s3, s1, s1, s3, s1, s1, r3, r1, r3, r2, r1, r3, r3, r3, r2, r3, l2, r2, r1, r3, s1, s2, s3, s3, s1, s3, r1, r1, r3, r3, r1, r1, r3, r1, r1, r2],
[r3, r2, r1, b1, b2, r2, r3, r3, r1, s2, s2, r3, r2, r1, r3, r3, r3, s3, s2, s3, s1, s1, r1, r3, r1, s3, s1, s3, s3, r3, r3, r1, r3, r3, r1, r3, r3, r3, r2, r1, s3, s3, s1, s3, s1, s2, s1, s1, r3, r1, r3, r2, r3, r3, r1, r2, r4],
[r4, r1, b1, b1, b1, r3, r1, r1, s2, s1, s2, r2, r3, r3, r3, r1, r3, r1, r2, r2, r3, r3, r2, r3, r3, r3, s1, s3, s2, s1, s1, s1, s1, s3, s1, s3, s3, s1, s1, s3, s2, s2, r2, r3, r2, s3, s3, s2, r1, r2, r3, r3, r2, r3, r3, r3, r1],
[r3, b2, b3, b3, b2, r1, r1, r2, s3, s1, s2, s1, r3, r3, r3, r1, r1, r1, r3, r3, r3, b2, b1, b3, b1, r3, r3, s3, s2, s2, s3, s3, s1, s3, s2, s3, s3, s2, s2, s2, s2, r1, r1, r2, r3, s3, s2, s3, r3, r3, r2, r3, r3, r3, r2, r4, r3],
[r2, b3, b1, b1, b1, r1, r3, r1, s1, s3, s2, s3, r1, r1, r1, r2, r3, s2, s2, s3, r3, r2, b1, b2, b1, r3, r3, r1, r3, s3, s1, s3, s1, s2, s3, s3, s1, s3, s1, s1, r3, r2, r2, r3, r2, s1, s2, s3, r2, l2, l3, r3, r2, r3, r2, r2, r4],
[r4, r2, r1, b1, r3, r1, r3, r3, s3, s3, s1, s3, r1, r2, r3, r3, s1, s2, s2, s3, s2, r3, b3, b3, b3, b3, b3, r3, r2, r2, s2, s3, s1, s2, r3, r2, r1, r1, r3, r1, r2, r1, r1, r3, r3, s2, s2, s3, r3, l3, l1, l1, r3, r3, r2, r4, r3],
[r4, r2, r1, r3, r3, r2, r3, r1, s2, s2, s2, s1, r3, r1, s2, s3, s1, s3, s1, s3, s2, r3, r3, b2, b3, b3, b2, r1, r3, s1, s1, s3, s2, r2, r3, r3, r3, r3, r3, r3, r1, r2, r3, r3, r3, r3, s1, s1, r3, l3, l1, l3, r2, r2, r3, r3, r1],
[r3, r3, r1, r2, r3, r1, r3, r3, s3, s2, s3, s2, r1, s1, s3, s2, s1, s3, s1, s3, s3, s2, r1, b3, b3, r1, r3, r3, s3, s2, s2, s3, r2, r2, r2, r2, r3, r2, r3, r3, r3, r1, r3, r3, r3, r2, s3, s3, r2, r1, l1, l3, r1, r1, r2, r1, r2],
[r4, r2, r1, r1, r3, r3, r2, r3, r3, r3, s1, s2, s2, s3, s3, s3, r1, r2, s1, s2, s2, s3, r1, r1, r3, r3, r1, s3, s3, s3, s1, s2, s3, r1, r2, r2, r3, r3, r3, r1, r1, r3, r3, r3, r1, r3, s2, s2, r3, r3, l2, l2, r3, r1, r3, r2, r4],
[r1, r2, r1, r1, r3, r3, r1, r2, r3, r2, s1, s3, s3, s3, s3, r2, r1, r2, r2, s1, s2, s3, s2, r3, r3, r1, r1, s1, s1, s3, s1, s3, s1, s3, r2, r1, r2, r1, r2, r3, r3, r3, r1, r2, r2, r2, s2, s3, r3, r3, r3, r3, r1, r3, r2, r4, r3],
[r3, r2, r3, r3, r3, r2, r3, r3, r3, s1, s2, s2, s3, r1, r2, r2, r3, r3, r2, r2, s3, s3, s2, s3, r2, r3, r3, s2, s1, s3, s3, s2, s3, s1, s1, s3, r1, r1, r2, r2, r3, r3, r3, r2, r3, s3, s3, s1, r3, r3, r3, r1, r1, r3, r1, r3, r1],
[r2, r1, r1, r3, r1, r3, r2, r3, s3, s2, s1, s2, r2, r3, r3, r3, r3, r2, r3, r1, s3, s1, s2, s3, s1, r3, s2, s2, s3, s1, s2, s2, s3, s2, s1, s3, s3, s3, r3, r3, r3, r1, r3, r3, s2, s2, s2, s2, r1, r3, r3, r3, r3, r1, r3, r4, r3],
[r2, r4, r1, r3, r3, r3, r3, r3, s1, s3, s1, r3, r3, r1, r3, r3, r3, r2, r1, r2, r3, s2, s1, s1, s1, s1, s3, s2, s2, s1, s1, s1, r3, r1, s1, s2, s3, s1, r2, r1, r3, r1, r3, r2, s3, s1, s3, r2, r3, b2, b1, r3, r2, r2, r3, r2, r4],
[r4, r1, r2, r2, r2, r3, r3, s3, s3, s2, r2, r2, r3, r1, r3, r3, r3, r2, r2, r3, r1, r1, s1, s3, s3, s2, s2, s3, s3, s2, r1, r2, r3, r1, r2, s1, s3, s3, s1, s2, r1, r1, r1, s1, s3, s2, r1, r3, b2, b1, b1, b1, r3, r1, r2, r1, r2],
[r2, r2, r1, r2, r2, r2, r3, s2, s2, s1, r2, r3, r3, r3, r3, s1, s2, r3, r3, r2, r1, r1, s2, s2, s2, s2, s2, s1, r2, r2, r3, r1, r3, r2, r1, r3, s2, s1, s2, s3, s1, r3, r3, s1, s2, s3, r1, r3, b1, b2, b2, b1, b2, r2, r3, r2, r4],
[r4, r4, r3, r1, r2, r3, r1, s3, s1, s3, r2, r3, r3, r3, s1, s2, s1, r3, r2, r2, r3, r3, r1, s2, s1, s2, s1, r1, r3, r3, r3, r1, r2, r2, r2, r3, r3, r2, s3, s3, s1, s2, s3, s3, s1, r1, r2, r1, r3, b2, b1, b1, b3, r3, r3, r4, r3],
[r3, r1, r2, r2, r2, r2, r3, s1, s3, s2, s3, r3, r1, r3, s1, s2, s1, s3, r3, r3, r3, r3, r1, r3, s3, s2, s3, r2, r2, r1, r2, r2, r3, r3, r1, r3, r2, r2, r1, s3, s1, s3, s2, s1, r3, r3, r3, r1, r1, r3, b1, b1, b2, r3, r2, r3, r1],
[r3, r2, l2, r3, r1, r2, r1, s2, s2, s1, s3, s2, s1, s3, s1, s1, s1, s2, s2, r3, r3, r1, r2, s3, s1, s3, r2, r2, r3, r1, r1, r2, r1, r3, r3, r3, r3, r3, r2, s3, s2, s2, s2, r3, r3, r2, r2, r1, r3, r3, r3, r3, r1, r3, r2, r2, r4],
[r1, r2, l3, l1, r3, r2, r3, s1, s3, s3, s3, s2, s2, s2, s2, s1, s2, s1, s3, s3, r3, r2, s1, s2, s2, r3, r1, r2, r3, r1, r3, r3, r2, r3, r3, r3, r2, r2, r3, r3, s1, s2, s2, r3, r3, l2, l3, r3, r3, r1, r3, r1, r3, r1, r3, r1, r2],
[r2, r4, l1, l1, l2, r3, r3, s2, s3, s2, s2, s1, s1, s1, s1, r3, s3, s3, s3, s1, s2, s1, s1, s1, s2, r3, r2, r3, r1, r1, r2, r1, r3, r2, r3, r3, r1, r3, s2, s1, s2, s1, r3, r3, r3, l3, l1, l3, r2, r2, r2, r1, r3, r3, r3, r3, r1],
[r1, r3, r2, l3, l3, r3, r3, r3, s3, s2, s2, s3, s2, s1, r2, r1, s2, s2, s1, s1, s2, s1, s2, s2, s2, r2, r3, r1, r3, r2, r3, r3, r3, r3, r2, r3, r3, s3, s3, s3, s2, r3, r2, r3, r1, r3, l3, l3, l2, r3, r2, r1, r3, r1, r3, r1, r2],
[r4, r3, r3, r2, l2, r3, r3, r2, r3, s3, s1, s1, s2, r1, r2, r3, r3, s1, s3, s1, s2, s3, s1, s3, s1, s1, r2, r3, r3, r1, r3, r3, r3, r3, r3, r1, s2, s2, s1, s2, r2, r3, r3, r3, r2, r3, l3, l2, l2, l2, r2, r3, r3, r1, r3, r3, r1],
[r2, r1, r3, r3, r1, r2, r1, r2, r3, r2, s3, s2, s2, r3, r2, r2, r3, s3, s3, s2, s1, s3, r2, s1, s2, s1, s1, r3, r1, r3, s1, s2, s1, s1, s1, s2, s3, s1, r3, r2, r3, r2, r3, r2, r1, r3, r1, l3, l2, l1, r3, r3, r2, r3, r2, r4, r3],
[r3, r1, r1, r2, r3, r2, r2, r3, r1, r1, s3, s2, s1, r3, r2, r1, s2, s2, s1, s3, s2, s3, r2, r1, s3, s3, s3, s2, r2, s2, s2, s2, s3, s1, s2, s3, s2, r3, r1, r3, r3, r2, r2, r2, r1, r1, r1, r3, l1, l3, r2, r3, r1, r1, r3, r2, r4],
[r2, r4, r1, r1, r3, r3, r3, r1, r3, r1, s3, s3, s2, r3, s3, s2, s2, s1, s2, s2, s3, r3, r3, r1, r2, s1, s1, s3, s3, s3, s1, s1, s3, s2, s3, s1, r3, r1, r2, r3, s3, s2, s2, s3, r3, r1, r1, r3, r2, r3, r3, r1, r2, r1, r3, r3, r1],
[r1, r3, r3, r1, r1, r3, r3, r3, r1, s1, s3, s1, s2, s2, s2, s3, s1, s1, s3, s2, r1, r3, r3, r1, r1, r1, s2, s3, s3, s3, s3, s2, s3, r3, s1, s1, s2, r3, r1, s2, s2, s3, s1, s1, s2, r2, r3, r3, r3, r3, r3, r3, r1, r1, r3, r4, r3],
[r2, r3, r3, r1, r3, r3, r1, r2, s2, s3, s1, s3, s3, s3, s1, s3, r2, s2, s2, r2, r1, r1, r3, r3, r1, r2, r1, s3, s2, r3, r2, r2, r3, r3, s1, s2, s2, s3, s1, s1, s3, s3, s1, s2, s2, s3, s2, r3, r1, r1, r3, r2, r3, r3, r3, r2, r4],
[r4, r3, r1, r3, r1, r3, r1, s1, s1, s1, s1, s3, s2, s2, s2, r3, r2, r2, r3, r2, r3, r3, r3, r2, r2, r3, r3, r3, r1, r1, r1, r3, r3, r2, r3, s3, s2, s2, s3, s3, s2, s3, r2, r3, s2, s1, s1, s3, r2, r3, r3, r1, r1, r3, r1, r1, r2],
[r1, r2, r2, r3, r2, r1, r1, s1, s2, s1, s1, s3, r1, r2, r3, r2, b3, b1, b2, r2, r1, r1, r1, r1, r1, r2, r1, r3, r3, r3, b1, b2, r3, r1, r1, r3, s3, s3, s3, s1, s1, r3, r3, r2, r3, s3, s1, s2, s1, s3, r3, r1, r2, r3, r3, r2, r4],
[r4, r1, r3, r3, r3, r1, r3, s1, s1, s1, s3, s2, r2, r2, b3, b2, b3, b2, b2, b1, r3, r3, r3, r2, r1, r2, r2, r3, r2, b2, b1, b1, b1, b3, r3, r1, r2, r3, r2, r3, r2, r2, l1, r2, r2, r3, r3, r2, r3, s2, r1, r1, r1, r3, r2, r3, r1],
[r3, r1, r2, r3, r1, r3, r2, pp, s2, s3, s2, r1, r3, b2, b3, b1, b2, b1, b2, b2, r2, r3, r3, r3, r3, r1, r3, b3, b2, b2, b3, b1, b2, b2, r3, r2, r3, r3, r2, r2, r3, r2, l2, l2, r3, r1, r3, r3, r2, pp, r3, r1, r2, r1, r3, r4, r3],
[r1, r2, r3, l2, r1, r2, r1, r2, r3, r2, r2, r2, b2, b3, b2, b1, b3, b1, b2, b1, b3, r3, r1, r1, r3, r3, b1, b2, b2, b3, r2, b1, b1, b2, b2, r3, r3, r3, r3, r2, r1, l3, l1, l1, l1, r1, r3, r3, r3, r3, r2, r3, r3, r2, r1, r2, r4],
[r4, r2, r2, l2, l3, r3, r3, r3, r3, r3, r1, r2, b2, b2, b1, b2, b1, b3, b2, b3, b3, r2, r1, r3, r3, b1, b3, b3, b2, r3, r1, r1, b1, b2, b2, r3, r2, r3, r2, r1, l3, l2, r3, l2, l2, r1, r2, r2, r3, r1, r2, r2, r3, r3, r3, r3, r1],
[r1, r2, r1, l1, l2, l1, r1, r3, r1, r1, r1, b2, b1, b1, b1, b2, b3, b2, b1, b1, b3, b1, r3, r2, b1, b2, b3, r1, r2, r1, r2, r2, r3, r3, r1, r2, r2, r1, r3, r3, r1, r3, r3, r3, r3, r3, r3, r2, r2, r3, r1, r2, r3, r3, r1, r2, r4],
[r4, r1, r3, r3, l3, l3, r3, r2, r3, r2, r3, b2, b2, b2, b3, b3, b3, b3, b2, b1, b3, b1, b2, b2, b2, b3, r3, r3, r2, r3, r3, r2, r3, r1, r3, r2, r2, r1, r2, r2, r3, r2, r3, r1, r3, r3, r3, r3, r1, r3, r3, r2, r3, r3, r3, r1, r2],
[r3, r1, r2, r2, r2, r1, r3, r3, r2, r3, r3, r1, b2, b1, b2, b2, b2, b1, b2, b3, b2, b1, b1, b1, b2, r2, r1, r3, r3, r2, r3, r2, r3, r2, r3, r3, r3, r1, r2, r3, r2, r3, r3, r1, r3, r3, r3, r1, r2, r3, r3, r1, r2, r1, r3, r3, r1],
[r2, r3, r1, r3, r3, r3, r2, r1, r1, r1, r3, r2, b3, b2, b1, b1, b3, b2, b3, b2, b3, b2, b3, b3, r1, r2, r3, r3, r1, r1, r3, r1, r2, r3, r3, r2, r3, r3, r2, r3, r3, r3, r3, r2, r3, r3, r3, r3, r3, r2, r3, r2, r2, r3, r3, r4, r3],
],
"elevation": [
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, "", "", e1, e1, e1, "", "", "", "", "", "", e1, e1, "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, "", "", "", "", "", "", "", "", e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""]
]
},
"snow": {
"players": {},
"background": r2,
"map": [
[r1, r1, r1, r2, r1, r1, r2, r1, r1, r1, r1, r1, r1, r3, r2, r3, r3, r2, r1, r1, r2, w1, r3, r1, r1, r1, r1, r3, r3, r2, r1, r1, r1, r1, r3, r1, r2, r1, w3, r1, r3, r2],
[r2, i2, i1, r1, r1, r4, r1, r3, r1, r1, r1, r1, r3, r1, r2, r1, r1, r1, r2, r1, w2, w1, r1, r2, r1, r1, r1, r2, r3, r2, r2, r1, r2, r3, r3, r3, r1, r2, w3, w2, r2, r3],
[i2, i1, i1, i2, r1, r1, r2, r1, w2, w3, r3, r2, i2, i2, i1, i1, r3, r3, r3, r3, r2, w2, w3, r2, r2, w1, w3, w2, r2, r3, r1, w3, w1, r3, r3, r1, r3, r1, r2, r1, r1, r3],
[i1, i2, i3, i2, i2, r3, r2, w1, w3, w1, r3, i2, i1, i1, i1, i1, i3, r1, r1, r1, w2, w3, r1, r3, w3, w3, w3, w2, w1, r1, r1, r1, w1, w1, r2, r3, r2, w2, w3, r2, r3, r1],
[i3, i3, i2, i1, i3, r3, r1, w3, w2, r3, r3, r3, i3, i2, i1, i1, i3, r2, r1, r2, r1, r2, r3, r3, w1, w3, r1, w1, w2, w1, r3, r3, r2, r2, r3, r3, w1, w3, w3, r1, r1, r3],
[r3, i3, i2, i1, i2, r1, r2, r2, r1, r2, r1, r2, r2, r1, r3, r2, r3, r3, r3, r2, r1, r1, r3, r2, r2, r3, r2, r1, w1, w2, w2, r1, r2, r3, r1, r1, r2, w1, r1, r1, r1, r2],
[r2, i2, i3, i1, i2, i3, r1, w3, r1, r2, r3, r2, r3, r3, w1, r3, w3, r1, r1, r2, r2, r1, r2, r2, r1, r1, r1, r3, r3, w2, w1, w2, r1, w1, w3, r2, r1, r3, r2, r1, r3, r2],
[r2, r1, r1, i1, i1, r1, r1, r1, r2, r3, r1, w3, w2, w2, r3, r3, r1, r1, r3, w2, w3, w3, w3, r1, r1, r1, w3, r1, r3, r1, w1, w1, r3, r3, r1, w1, r1, r1, r2, r2, r2, r3],
[r2, r3, r2, r1, r1, r1, r3, w3, w1, w1, r2, r1, r1, r2, r1, r3, w3, w3, w3, w2, w2, w2, w3, w1, w3, w2, w2, w2, r2, r3, r1, r1, r2, r2, r1, r3, r3, r2, w1, w3, r1, r1],
[r3, r3, w3, r3, r1, r1, r1, w1, w3, r1, r3, r1, r3, r3, pp, w3, w3, w3, w1, w1, w1, w1, w2, w1, w3, w1, w3, w2, r2, r2, r1, r1, r1, r2, w2, r2, r3, w2, w2, w2, r1, r3],
[r3, w3, w2, r3, r1, w3, w3, r1, r3, r2, r2, r1, w2, w1, w1, w1, w3, w1, w3, r2, r1, r1, w1, w3, w1, w2, r1, r1, r2, r1, r3, w3, w1, r1, r2, r1, r2, r2, w2, r1, r1, r1],
[r1, r1, r1, r3, w3, w2, w1, r3, w2, r2, r3, w2, w3, w2, w1, w1, w2, w2, w2, w2, r2, w1, w1, w1, w2, r1, r1, r2, r3, w1, w3, w3, w1, w2, r3, r2, w3, r3, r3, r2, r2, r3],
[r1, r2, w3, w3, r1, w2, r3, r2, r2, r2, w2, w2, w2, r2, r1, w1, w2, w3, w2, w1, w2, w1, w1, w2, r1, r1, r2, r1, r3, w3, w3, w3, w3, w2, r3, r2, w3, r1, r1, r1, r2, r2],
[r3, r3, r2, r1, r1, r3, r3, r1, r2, r1, w2, w1, r1, r1, r3, r2, w2, w1, w3, w1, w1, w1, w1, w3, w3, r1, r1, r2, w3, w2, w2, w3, w2, w3, r2, r2, w3, r3, r1, r1, r1, r1], [r1, r2, r2, r1, r2, r1, w2, r2, r2, w1, w3, r1, r3, r1, i1, i2, i3, i3, w3, w1, w2, w1, w2, w1, w1, w1, w2, w1, w3, w3, w2, w3, w2, w3, w3, r2, r2, r3, w3, w3, r2, r1],
[r3, r3, r1, r1, r3, r1, w1, r2, r3, w2, w3, r3, i2, i1, i2, i1, i1, i2, i1, w1, w2, w2, w1, w3, w2, w2, w3, w2, w3, w2, w3, w3, w1, w3, w2, r2, r3, w3, w1, w1, r3, r1],
[r2, r1, r3, r1, r1, w2, r1, r3, r1, w3, w1, w2, i1, i3, i1, i2, i3, i3, i2, w3, w1, w1, w1, w3, w2, w3, w2, w2, w2, w1, w2, w2, w1, w3, w2, r2, r3, r1, w3, w1, w1, r1],
[r1, r1, r3, r2, w2, r2, r3, r1, w3, w1, w2, i2, i1, i1, i2, i2, i2, i3, i2, i3, r2, r3, w3, w2, w3, w2, w2, w2, w1, w2, w2, w1, w1, w3, w1, r1, r3, r2, r1, r1, r1, r1],
[r2, r2, w1, r3, r2, r2, r2, r1, w2, w3, w3, i2, i1, i1, i1, i3, i3, i2, i1, i1, r3, r3, r2, w1, w2, w3, w1, w2, w3, w2, w2, w1, w1, w3, w2, r1, r1, r3, r3, r1, r1, r3],
[r2, w2, w3, r1, r1, r2, r3, r3, w1, w3, w1, i1, i2, i1, i2, i2, i1, i2, i1, i2, i1, r1, r2, r1, w1, w1, w3, w1, w1, r2, r1, w1, w1, w2, w2, r3, r3, w1, w3, r2, r3, r3],
[r2, r1, r1, r1, r3, r1, r1, w3, w3, w1, w3, i2, i1, i2, i1, i3, i3, i1, i2, i1, i3, i3, i3, i2, w1, w1, w2, w3, r3, r1, r2, w1, w3, w2, r1, r3, r2, w3, w3, r3, r1, r1],
[r2, r1, r1, r1, w3, r1, r1, w1, w1, w2, w3, w1, i3, i1, i1, i1, i3, i1, i3, i3, i1, i3, i3, i1, i2, w2, w3, w1, r3, r2, r1, r3, w2, w3, r1, r2, r3, w3, r1, r1, r2, r2],
[r1, r1, r1, w3, w3, r1, r3, w1, w2, w2, w2, w3, w3, w2, i1, i3, i1, i3, i3, i1, i3, i3, i1, i2, i3, i1, w2, w3, w2, r1, r1, r2, w3, w1, r2, r2, r1, r2, r2, r1, r3, r1],
[r1, r1, r2, r1, r3, w3, r1, r3, w3, w1, w3, w2, w3, w1, w3, r3, r1, i3, i1, i1, i2, i1, i2, i3, i2, i2, w2, w1, w3, w2, w2, w1, w1, r2, r2, r2, w2, r2, r1, r3, r1, r2],
[r3, r2, r1, r1, w2, w3, r1, r3, w2, w1, w2, w2, w2, w1, w1, w2, r1, r3, r3, i3, i3, i1, i3, i2, i1, i2, w2, w1, w1, w3, w1, w3, w1, r1, r1, r2, r2, w3, r3, w2, w1, r1],
[r3, r1, r3, r1, w1, r1, r1, r1, w1, w2, w2, w2, w3, w1, w2, w1, w1, r2, r1, i1, i3, i1, i2, i3, i3, w1, w2, w1, w1, w2, w1, w3, w2, r2, r1, r2, w3, w3, w1, r1, w1, r2],
[r3, r1, r1, w3, w2, r3, r1, w2, w3, w1, w1, w1, w1, w2, w3, w2, w1, w2, i2, i2, i2, i1, i1, i3, w1, w1, w1, w2, w1, w2, w2, w2, w1, w2, r1, r3, r3, w2, w2, r2, r2, r1],
[r1, r1, w3, w1, w2, r2, r2, w3, w3, w1, w2, w2, w2, w1, w1, w2, w3, w1, w3, i1, i3, i2, i3, w1, w3, w1, w2, w3, w2, w1, w1, w3, w2, w2, r3, r1, r1, r1, r1, r1, r1, r1],
[r1, r3, r3, w2, r3, r3, r2, w3, w3, w2, w1, w3, r2, w3, w1, w1, w3, w1, w1, w3, w3, w1, w2, w2, w1, w2, w1, w3, w2, r1, r1, w2, w1, w1, w1, r1, w2, w1, r1, r3, r2, r1],
[r1, w3, r3, r1, r1, r1, r3, w1, w3, w1, w2, w2, r3, r1, w1, w1, w2, w1, w2, w1, w3, w2, w3, w1, w3, w2, w2, w1, r3, r1, r1, w1, w2, w1, w1, r2, r2, w2, w3, r1, r1, r1],
[r1, w3, r1, r2, w1, r1, r1, r1, w2, w3, w2, w2, w1, w3, w1, w3, w1, w3, w3, w1, w3, w3, w3, w1, w3, w2, w1, w1, r1, r1, w2, w1, w1, w3, w1, r3, r2, r3, w1, w3, w1, r3],
[r1, r1, r1, w3, w3, w2, r2, r2, w1, w2, w1, w2, w1, w2, w2, w2, w1, w3, w3, w1, w3, w3, w3, w2, w2, w3, w1, w2, w3, w2, w2, w3, w3, w3, w1, r3, r1, w3, r3, w3, r1, r3],
[r1, r2, r3, r3, r2, r3, r1, r3, w3, w3, w3, w1, w2, w2, w2, w2, w2, w1, w3, w3, w1, w2, w1, w2, w3, w1, w1, w3, w3, w2, w3, w1, w2, w1, w2, r1, w2, w1, r1, r2, r1, r2],
[r2, r2, i2, i2, r3, r1, r2, r1, r3, w2, w2, w3, w3, w1, w1, w3, w3, w3, r2, r1, w3, w3, w1, w3, w1, w3, w3, w3, w2, w2, w1, w1, w2, w1, w2, r2, r1, i3, i1, w1, r1, r1],
[r2, i1, i3, i2, i2, i3, r1, r1, r3, w3, w1, w3, w2, w3, w2, w1, w3, r1, r3, r1, r3, w3, w1, w3, w1, w3, w2, w3, r1, r1, r1, r2, w1, w2, w3, r1, i3, i2, i2, i3, r1, r1],
[r1, i1, i3, i2, i1, i1, i3, r1, r1, w2, w1, w1, w2, w1, w2, w1, w3, r1, r2, r3, r3, r1, w2, w3, w3, w1, w2, r1, r3, i1, i2, r2, w2, w1, w1, r3, i2, i2, i2, i1, w2, r3],
[r1, i3, i3, i1, i1, i3, i2, r1, r1, r2, w3, w2, w3, w3, w1, w1, w3, w1, r2, r2, r1, r1, r1, w3, w2, w3, r2, r1, i3, i1, i1, r2, w3, w3, w2, r1, i2, i3, i3, i3, r2, r1],
[r1, i3, i3, i1, i1, i1, r3, r3, r1, r1, w3, w3, w2, w1, w2, w1, w2, w1, r3, r2, r1, r1, w1, w3, w3, w2, r3, i3, i3, i3, r2, r2, w1, w3, r1, r1, r1, i2, i3, i1, r1, r3],
[r1, r3, i1, i1, r1, r1, r2, r3, r1, r3, w3, w1, w3, r1, r1, w3, w2, w3, w1, w3, r2, w2, w2, w3, w3, w1, r1, i3, i3, r1, r2, w1, w1, r1, r1, r3, r1, r1, r1, r1, r2, r1],
[r1, r3, r1, r1, r1, w2, r1, r3, r1, w2, w1, w2, w3, r1, r2, r3, w2, w3, w2, w1, w3, w1, w2, w1, w1, w1, r2, r1, r2, r3, w2, w1, w1, r1, r1, w1, r2, w2, w2, w1, r3, r1],
[r1, r3, r2, r2, w3, w3, r2, r2, r3, w1, w1, w1, w1, w3, r3, w3, w1, w2, w2, w2, w3, w1, w2, w2, w3, w1, w1, w3, w3, w3, w1, w1, r1, r3, w1, w2, r3, r2, r2, w3, w2, r1],
[r2, w1, w1, w3, r2, r1, r3, r1, w1, w2, w1, w1, w1, w3, w2, w2, w1, w3, w3, w3, w3, w2, w1, w3, w1, w3, w1, w2, w3, w3, w3, w3, r1, r1, r1, r1, r1, w3, r2, w3, w2, r1],
[r1, r1, w2, r3, r1, r2, r1, pp, w2, w3, w3, w1, w3, w2, w2, w2, w1, w2, r1, r3, r1, w1, w3, w1, w1, w2, w2, w1, w2, r1, r1, r3, r2, w1, r1, r1, w3, w1, r3, w3, w1, r2],
[r1, r1, r2, r2, r2, r2, r3, r1, r1, w3, w2, w1, w2, w1, w3, w2, r1, r2, r1, r1, r2, r3, w2, w1, w2, pp, r3, r2, r1, r1, r2, r2, r2, w3, w2, r1, w2, w1, w2, r3, r2, r2],
[r1, r1, r2, r1, r1, r1, r1, r1, r2, r3, r1, r1, r3, r1, r2, r2, r1, r3, r1, r2, r2, r1, r3, r1, r3, r2, r1, r1, r1, r1, r1, r3, r1, w3, r1, r3, r2, w1, r1, r1, w2, r1],
[r2, r1, r2, r1, r3, w3, r2, r2, w2, r1, r1, r1, r3, r1, r3, r2, w2, r1, r3, r2, w2, w2, r3, r1, r1, r2, r2, r1, r1, r1, r1, r2, w1, w3, r1, r1, r1, w2, w2, r1, r2, r2],
[r2, r1, r1, r2, w3, w3, r1, r2, w2, r2, w3, r1, w1, w2, r2, w3, w2, r2, r2, r1, r1, w2, r1, r1, r3, r2, w2, w2, r1, r3, r2, w2, w1, r1, r1, w1, r1, r2, w2, w1, r1, r1],
[r1, r1, r2, r3, r1, r3, r2, r2, r1, r2, r1, w3, w2, w3, r3, w2, w2, w3, r3, r3, r1, r1, r2, r3, r1, r1, w1, w3, w1, r3, r1, w3, r1, r2, w1, w2, w3, r3, w1, w3, w3, r3],
[r3, w1, w3, r1, r3, w2, r1, r2, w2, r1, r3, r2, w1, r3, r3, r1, w1, r3, r3, r2, w2, w2, r3, w2, r1, r1, r2, w3, w2, r1, r1, r1, r3, r3, w1, w2, r1, r1, r1, w3, w2, r3],
[r1, r3, w3, r1, r2, r3, r2, r3, r1, r3, w1, r3, r3, r1, r1, r1, r3, r1, r1, w3, w1, w2, w3, w3, w1, r1, r3, r1, r1, r3, r1, r3, r1, r1, r2, r1, r3, r2, w3, w1, w2, w3],
[r1, r1, r2, r1, r2, r1, r2, r2, r1, r1, r1, r2, r2, r1, r1, r2, r3, r1, w3, w3, w2, r1, r1, w3, w1, r2, r1, r2, r1, r3, r1, r1, r2, r1, r3, r1, r1, r1, r2, w2, w3, r1]
],
"elevation": [
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, "", "", "", "", "", e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e1, e1, "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", e1, e1, e1, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", e1, e1, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", "", e1, e1, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e1, e1, e1, "", "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, "", "", "", "", "", e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""]
]
},
"beach": {
"players": {},
"background": b3,
"map": [
[r1, r3, r2, r3, r2, r2, r4, r3, r3, r3, r1, r2, r2, r4, r3, r4, r2, r4, r3, r4, r2, r4, r4, w1, w1, w2, w1, w1, w1, r1, r3, r3, r4, r3, r4, r1, r3, r1, r2, r2, r2, r4, r4, r1, r2, r4, r2, r3, r4, r3, r4, r3, r4],
[r3, r2, r1, r1, r2, r2, r4, r3, r4, r4, r4, r1, r1, r4, r4, w1, r3, r4, r4, r2, r2, r4, r3, r1, w1, w1, w1, w2, r4, r3, r3, r4, r1, r1, r3, r2, r4, r2, r2, r3, r1, r1, r2, r1, r2, r2, r3, r3, r4, r2, r4, r4, r4],
[r2, r3, r4, r2, r1, r4, r4, r1, r2, r4, r3, r2, r4, r3, r4, w1, r2, r1, r3, r1, r2, r2, r3, r1, r3, r1, r4, r1, r3, r3, r2, r1, r1, r4, r2, r2, r2, r3, r4, r2, r3, w1, w1, w2, w2, r1, r3, r3, r2, r4, r2, r3, r4],
[r1, r3, r2, r4, r1, r2, r1, r2, r4, r1, r1, r3, r1, r2, w2, w1, r4, r3, r4, r3, r1, r2, r4, r3, r3, r4, r1, r3, r3, r2, r2, r2, r2, r3, r3, r2, r4, r2, r1, r2, r2, r4, w1, w2, w2, w1, r1, r1, r2, r1, r3, r1, r3],
[r1, r3, r3, r2, r4, r3, r1, r2, r3, r1, r3, r4, r4, r1, w1, w2, w2, r2, r1, r2, r4, r1, r1, r1, r2, r1, r1, r1, r3, r2, r4, r3, r2, r2, r3, r4, r1, r3, r4, r4, r1, r4, r2, w2, w1, w1, r2, r4, r3, r1, r3, r3, r4],
[r4, r3, r3, r2, r2, r2, w2, w1, w2, r3, r1, r1, r1, r3, r2, w2, w1, r3, r4, r3, r3, r2, r4, r3, r2, r2, r1, r4, r4, r1, r2, r2, r2, r4, r2, w2, w1, w2, r4, r2, r3, r4, r1, r3, w1, w1, w1, r3, r1, r1, r4, r4, r4],
[r4, r3, r3, r4, r3, w2, w2, w1, w1, w1, r4, r1, r1, r1, r3, w1, w1, r2, r3, r1, r1, r3, r3, r2, r2, r3, r3, r2, r4, r2, r3, r2, r1, r4, w2, w1, w1, w1, r4, r1, r1, r2, r3, r2, r1, w2, w1, r1, r3, r2, r3, r1, r1],
[r2, r2, r4, r4, w2, w2, w2, w2, w1, w2, r1, r1, r3, r4, r4, r2, w1, w2, w2, w1, r4, r2, r4, r4, r3, r3, r1, r1, r2, r3, r4, r2, r3, r2, w1, w2, r3, r4, r1, r1, r4, r3, r1, r4, r1, w2, w1, r1, r2, r3, r3, r4, r1],
[r3, r4, r3, w1, w1, w1, w1, r3, r1, r4, r4, r1, r3, r4, r2, r3, w2, w1, w1, w1, r1, r4, r1, r3, r3, w2, w1, w1, r1, r3, r2, r3, r2, r1, r3, r4, r3, r2, r3, r3, r3, r3, r2, r3, r2, r3, r2, r3, r1, r4, r2, r2, r2],
[r2, r4, r3, r3, w2, w1, r3, r3, r3, r2, r2, r3, r1, r2, r4, r2, r3, w1, w1, r1, r2, r2, r4, r1, w1, w2, w1, w1, w1, r1, r4, r2, r2, r3, r2, r1, r4, r3, r3, r1, r2, r1, pp, r3, r4, r1, r2, r4, r4, r1, r4, r3, r2],
[r1, r3, r1, r2, r2, r3, r3, r1, r4, r3, r1, r2, r4, r3, r4, r3, r4, r1, r4, r3, r2, r3, w1, w2, w1, w2, r1, r1, r2, r1, r2, r2, r2, r4, r2, r4, r4, r3, r4, p1, p2, p2, p3, r3, r1, r3, r4, r1, r4, r4, r2, r4, r2],
[r2, r3, r2, r4, r2, r4, r2, r1, r1, r3, r3, pp, p3, r1, r1, r1, r2, r1, r2, r4, r2, r1, r1, w1, r4, r1, r4, r1, r3, r1, r4, r1, r3, r3, r3, r1, r4, r3, p3, p3, p3, p2, p3, r2, r1, r2, r3, r1, r2, r2, r3, r3, r4],
[r1, r2, r2, r3, r3, r2, r2, r3, r4, r3, p2, p3, p2, p1, r3, r4, r1, r4, r2, r3, r4, r3, r1, r4, r1, r4, r2, r1, p3, p3, r3, r2, r2, p2, p2, p2, r4, p2, p2, p2, p2, p3, p3, r2, r3, r1, r1, r2, r4, r1, r4, r1, r4],
[r1, r1, r1, r3, r1, r3, r3, r2, r1, r4, p2, p1, p2, p3, r4, r2, r2, r1, r1, r3, r1, r4, r3, r2, r4, r2, p2, p3, p3, p1, p1, r3, p3, p3, p3, p2, p2, p2, p1, p1, p3, p2, p1, r2, r1, r1, r3, r4, r4, r1, r4, r2, r3],
[r1, r2, r1, r3, r1, r2, r4, r3, r1, r4, p3, p1, p3, p3, p1, r1, r1, r2, r3, r2, r2, r2, r4, r1, r2, p1, p2, p1, p1, p1, p1, p1, p1, p2, p1, p2, p3, p1, p2, p3, p2, r3, r4, r2, r3, r1, r2, r1, r2, r3, r3, r2, r1],
[r2, r4, r2, r4, r3, r4, r2, r1, r3, r4, p2, p1, p1, p1, p3, p2, r4, r1, r4, r2, r2, r3, r2, r4, r2, p3, p3, p1, p2, p2, p1, p3, p2, p1, p3, p3, p1, p1, p2, p2, r3, r1, r4, r4, r3, r4, r2, r4, r4, r1, r2, r1, r4],
[r4, r4, r3, r3, r3, r2, r4, r4, r4, r4, p1, p2, p1, p2, p2, p1, p3, p1, r4, r3, r3, r3, r1, r1, p2, p3, p2, p3, p1, p3, p3, p3, p2, p2, p1, p3, p1, p3, p3, r4, r1, r1, r2, r3, r3, r1, r3, r4, r4, r3, r2, r1, r4],
[r1, r4, r2, r1, r2, r3, r2, r3, r4, r3, r4, p1, p2, p1, p1, p1, p1, p1, p1, p3, r2, r2, r4, p3, p3, p2, p3, p1, r4, p3, p3, p1, p3, r2, p2, p2, p2, p1, r2, r2, r1, r1, r3, r4, r1, r2, r2, r1, r1, r3, r4, r2, r2],
[r4, r1, r4, r4, r1, r2, r4, r2, r2, r1, r2, p2, p1, p2, p3, p1, p2, p3, p3, p2, p3, p2, p3, p2, p3, p2, p3, r3, r3, r4, r3, r4, r1, r3, p3, p2, p2, p1, r3, r2, r4, r4, r3, r4, r3, r3, r3, r4, r3, r3, r4, r2, r2],
[r3, r1, r1, r3, r2, r3, r2, r2, r2, r1, r2, p1, p1, p1, p3, p2, p2, p3, p1, p3, p2, p2, p2, p3, p1, r1, r3, r4, r3, r4, r2, r4, r2, p2, p3, p2, p2, r3, r3, r1, r4, r3, r2, r4, r4, r1, r2, r1, r3, r3, r3, r2, r2],
[r4, r1, r4, r4, r1, r3, r1, r3, r3, r3, r1, r2, p3, p3, p1, p1, r1, r1, r3, p3, p3, p2, p1, p2, r1, r3, r3, r4, r3, r1, r4, r2, p2, p3, p3, p3, p2, r3, r3, r1, r1, r2, r1, r1, r4, r4, r3, r4, r3, r4, r4, r1, r3],
[r2, r2, r4, r4, r4, r4, r1, r1, r1, r1, r1, r4, p1, p2, p3, p3, p3, r3, r4, r1, r2, r3, r3, r2, r1, r1, r1, r2, r3, r1, r4, r2, g3, g4, p2, p3, r3, r1, r3, r2, r1, r1, r3, r2, r2, r3, r1, r2, r3, r3, r3, r3, r4],
[r2, r2, r3, r4, r4, r1, r2, r3, r4, r3, r2, r4, r2, p3, p2, p2, p3, r1, r1, r2, r2, r1, r3, r1, r2, r2, r2, r1, r2, g2, g1, g3, g4, g3, g4, p1, r2, r3, r1, r4, g1, r2, r4, r1, r4, r1, r3, r2, r2, r1, r2, r3, r2],
[r2, r2, r4, r1, r2, r2, r2, r1, r3, r4, g2, g2, r3, r2, g3, p3, g4, g3, g1, r4, r1, r3, r4, r1, r1, r3, g1, g2, g3, g3, g2, g1, g2, g2, g2, g3, g2, r2, r4, g2, g2, g3, g2, g3, r1, r1, r1, r1, r3, r4, r2, r1, r4],
[r4, r4, r3, r1, r2, r2, r2, r3, r3, g2, g3, g3, g2, g2, g4, g3, g2, g2, g2, g3, g3, g3, r3, r3, g1, g3, g3, g3, g3, g1, g2, g1, g3, g2, g1, g1, g2, g1, g2, g3, g1, g1, g1, g2, g1, g2, r4, r3, r2, r1, r1, r4, r1],
[r3, r1, r1, r4, r4, r4, r1, r3, r1, g2, g3, g1, g2, g2, g3, g1, g2, s1, g3, g3, g3, g2, g3, g1, g2, g3, g1, g3, s2, s3, s2, s1, g3, g3, g3, g2, g1, g3, g3, g2, g1, g1, g3, g2, g1, g1, s1, r2, r3, r1, r4, r3, r2],
[r4, r4, r4, r4, b2, b3, b3, s1, s2, s2, g2, g2, g1, g1, g3, g1, g1, s1, s3, s2, s2, g2, g2, g3, g2, s2, s1, s3, s2, s1, s3, s1, s2, s1, s3, s1, g1, g1, g2, g2, s2, s1, s2, s3, s3, s1, s1, r1, b1, b3, b1, r3, r2],
[b1, b2, b3, b3, b2, b2, b1, s1, s1, s3, s2, s3, s3, s2, s1, s3, s1, s1, s2, s3, s1, s3, s3, s1, s1, s3, s3, s2, s1, s3, s1, s2, s3, s1, s2, s2, s3, s2, s2, s2, s3, s1, s3, s2, s2, s1, s2, b1, b1, b1, b3, b3, b1],
[b2, b3, b3, b2, b1, b3, b2, b1, s2, s1, s2, s3, s2, s3, s1, s2, s1, s1, s2, s3, s2, s1, s3, s3, s1, s1, s3, s2, s1, s1, s1, s2, s3, s2, s2, s1, s1, s2, s3, s1, s1, s3, s3, s1, s3, s1, o1, b2, b1, b1, b2, b3, b2],
[b3, b3, b1, b2, b2, b2, b2, b3, b3, o1, s3, s1, s2, s3, s2, s2, s1, s2, s2, s3, s1, s3, s1, s3, s3, s1, s1, s2, s3, s3, s3, s2, s1, s1, s2, s1, s1, s1, s2, s2, s2, s3, o2, o3, o2, o1, o1, b1, b3, b1, b2, b1, b3],
[b1, b2, b1, b1, b3, b1, b3, b2, b3, b2, o2, o2, o2, o3, o2, o3, s2, s3, s1, o2, o1, s3, s3, s3, s3, o3, o2, o1, s3, s3, s2, s1, s1, s1, s2, s1, s3, s1, s3, s2, o3, o3, o2, o1, o3, o2, o3, b2, b3, b3, b3, b2, b2],
[b1, b1, b3, b2, b3, b3, b1, b3, b3, b2, b1, b1, b1, o2, o1, o1, o1, o3, o1, o2, o2, o3, o2, o2, o3, o1, b2, o3, o3, o1, o3, o3, s3, s1, s3, s1, s3, s3, o3, o2, o2, b3, b1, o2, o1, o3, b2, b2, b3, b3, b1, b3, b1],
[o1, o2, o2, o1, o2, o3, b3, b3, b2, b1, b1, b2, b3, o3, o3, o2, o1, b1, b2, b2, b3, b3, b3, b2, b1, b2, b1, b3, b2, b1, b1, o3, o3, o1, o2, o2, o1, o3, o1, b2, b1, b2, o1, o3, o2, o1, o2, b3, b1, b3, b3, b3, b3],
[o3, s2, s2, s2, s3, o1, o1, b2, b2, b2, b2, b2, o1, o3, o3, o1, b1, b1, b3, b3, b3, b1, b3, b3, b3, b2, b3, b1, b3, b1, b1, b1, b3, o1, o2, o3, b1, b2, b2, b2, b1, o2, o2, s1, s1, s2, o1, b2, b3, b3, b3, b1, b2],
[s1, s3, g1, g2, s3, s1, o1, b1, b1, b2, b2, b3, o2, o3, o1, o2, b3, b2, b1, b1, b1, b3, b1, b2, b2, b1, b3, b2, b2, b3, b2, b1, b1, b1, b3, b3, b1, b1, b1, b3, b3, o1, s2, s1, s2, s2, o3, b3, b1, b2, b1, b3, b3],
[g1, g2, g1, g2, g2, s3, o2, b1, b1, b2, b2, o3, o2, o1, o2, b2, b2, b2, b3, b1, b2, b2, b3, b2, b3, b1, b2, b2, o3, o1, o3, o2, o1, b3, b1, b1, b1, b1, b2, b3, b1, o1, s1, s1, g2, s2, o2, b1, b3, b3, b1, b2, b1],
[r4, r1, g1, g1, s2, s1, o3, b1, b1, b3, b2, o3, o1, o1, b1, b2, b3, b1, b2, b2, b3, b1, b1, b2, b3, b3, o1, o1, o2, s3, s1, s3, o2, o2, o3, b2, o1, o1, o3, b2, o3, s1, s1, g1, g1, s2, o1, b2, b3, b1, b1, b2, b1],
[r2, r2, g1, s3, s3, s3, o3, b1, b1, b2, b3, o1, o3, o3, b2, b2, b2, b1, b1, b1, b3, b3, b2, b2, b2, o1, o3, s1, s2, s1, s1, s1, s2, s1, s2, o2, o3, s3, s2, o1, o1, s1, s1, s3, s2, s2, o3, b3, b3, b1, b1, b2, b2],
[r2, s3, s3, s2, s3, o3, o3, b1, b2, b1, o2, o2, o2, o3, b2, b1, b1, b3, b1, b2, b3, b2, b1, b1, o3, o2, s2, s1, s2, s3, s2, s1, s2, s2, s3, s3, s2, s1, s2, s3, o2, o2, o2, o3, s3, s2, o1, b1, b1, b3, b3, b1, b2],
[s1, s3, o3, o2, o2, o1, b1, b1, o2, o1, s3, s2, s1, o1, o3, o1, o1, b2, b2, b2, b1, b3, b1, b1, o1, s3, s1, s3, s3, g2, g2, g3, g3, s2, s2, s1, s2, s1, s1, s2, o2, o2, o3, o1, o3, o1, o3, b2, b2, b2, b1, b1, b3],
[o3, o2, o2, b3, b3, b3, b3, o1, o1, s1, s1, s1, s3, s1, s2, s3, o1, o1, o2, b3, b2, b1, b3, b1, o2, s3, s3, s3, g2, g2, g1, g2, g2, g1, g3, g2, g2, g2, s1, s1, s2, o1, o3, b2, b3, b3, b3, b3, b3, b1, b1, b3, b2],
[b1, b1, b1, b3, b3, b1, b1, o2, s2, s2, s2, g3, g3, s3, s2, s3, s3, s3, o1, o1, b3, b1, b2, b3, o1, s2, s3, g1, g3, g2, r4, r2, r2, g3, g1, g2, g3, g1, g2, s1, s2, s2, o2, o3, b2, b2, b3, b1, b1, b3, b1, b2, b1],
[b3, b3, b3, b3, b1, b1, o2, o1, s2, s2, g3, g1, g3, s2, s1, s2, s2, s3, s3, o1, b3, b3, b2, b2, o2, s3, s3, g2, g2, r2, r4, r4, r2, r4, g2, r1, r3, g1, g2, g1, s1, s1, o1, o3, b3, b1, b2, b3, b2, b1, b1, b3, b1],
[b2, b1, b3, b2, b2, b1, b2, s2, s3, g3, g3, g3, g2, g1, g2, s2, s3, s3, s3, o3, o1, o3, o2, b2, o3, s2, s1, g2, g3, r3, r1, b2, b1, r2, r3, r1, r4, r1, g1, g3, s2, s1, s3, o1, b1, b2, b3, b3, b1, b1, b3, b2, b2],
[b2, b3, b3, b2, b1, b3, b3, s2, s1, g1, g3, r4, r2, g3, g3, g2, s3, s3, s3, s2, o1, o3, o2, o2, o1, s2, s2, g1, r4, r4, b2, b3, b2, b1, r2, g1, r1, r1, g2, g3, g2, s3, s3, o3, b2, b2, b3, b3, b2, b2, b1, b3, b2],
[b2, b1, b3, b1, b2, b1, b2, s2, s1, s2, g3, r1, r3, r4, g3, g2, g2, s1, s1, s1, o3, o2, o1, o3, o3, s1, s2, g2, r3, b1, b2, b1, b3, b2, b1, g1, g3, g3, g3, g1, g1, s3, s2, o2, b2, b1, b3, b1, b1, b2, b1, b2, b2],
[b3, b1, b1, b3, b1, b1, b3, s3, s1, s3, g2, r4, r1, r4, r4, g3, g2, s3, s3, s1, o1, o1, o2, o3, o1, s1, s1, s3, g1, b2, b3, g3, g3, b3, b2, g3, s2, s3, s3, s2, s3, s1, s1, o1, b1, b1, b3, b3, b1, b1, b1, b3, b1],
[b2, b3, b2, b2, b2, b3, b2, s3, s1, g1, g3, r1, r4, r4, r4, g2, g1, s3, s1, s3, o3, b2, b2, o2, o2, s2, s3, s3, g2, g1, g1, g3, g2, g1, g2, s2, s3, s2, s3, s1, s2, s3, s1, o1, b3, b3, b1, b3, b3, b1, b1, b2, b2],
[b1, b2, b2, b3, b3, b2, s2, s3, s2, g2, r3, r2, r2, r4, g1, g3, g3, s1, s1, s1, o2, b3, b3, b2, o1, o2, s3, s1, g2, g2, g2, g1, g2, g3, g2, s3, s1, o1, o3, o1, s2, s1, o3, b1, b2, b1, b2, b1, b3, b1, b1, b1, b2],
[b1, b1, b2, b3, b2, b1, s2, s1, g3, g2, r4, r2, g2, g2, g3, g2, g1, s1, s3, o2, b1, b3, b3, b1, b2, o3, s3, s1, s1, g3, g2, g1, g1, g3, s3, s2, o2, o3, b2, o2, o1, o3, b3, b3, b3, o1, o3, o3, o1, o1, o3, b3, b1],
[b2, b1, b1, b2, b1, b3, s2, s3, g3, g2, r3, r1, s2, s1, s3, g2, g2, s1, s2, o2, b2, b3, b2, b1, b3, o3, o2, s3, s3, s1, g2, g2, s1, s1, s3, s1, o3, b3, b3, b2, b2, b3, b1, b2, o3, o2, s1, s3, s1, s3, o1, o2, b1],
[b2, b2, b3, b3, b2, b2, s1, s2, g2, s2, s1, s3, s3, s3, s2, s1, s1, s2, s3, o3, b2, b2, b1, b1, b1, b3, o3, o3, s3, s2, s1, s2, s1, s2, s1, o1, b2, b1, b1, b3, b2, b1, b1, o1, o3, s2, s3, s2, s3, s3, s2, o3, o2],
[b1, b3, b2, b3, b2, b3, s1, s2, s1, s1, s1, s1, s2, s3, s3, s2, s1, s3, o1, b1, b2, b3, b1, b2, b1, b2, b3, o2, o2, s1, s3, s3, s2, o2, o2, o3, b2, b3, b2, b2, b2, b3, b3, o2, s1, s3, g1, g1, g3, s2, s3, s1, o3],
[b3, b3, b2, b3, b2, b1, b3, s3, s3, s1, o3, o3, o3, o3, s3, s2, b2, b3, b1, b3, b2, b2, b1, b2, b2, b3, b1, b3, o2, o1, o2, o1, o3, o2, b3, b1, b1, b2, b3, b2, b3, b3, b1, o2, s3, s3, g3, r2, r3, g1, g1, s1, s2],
[b2, b2, b3, b1, b1, b3, b1, b2, b1, b2, b1, b1, b2, b2, b1, b1, b2, b2, b2, b2, b2, b3, b3, b1, b1, b1, b3, b3, b3, b1, b2, b2, b3, b2, b1, b2, b1, b2, b1, b3, b3, b1, b2, o1, s3, s2, g2, r1, r1, r3, g2, g1, s2],
[b3, b3, b3, b1, b3, b3, b2, b3, b2, b3, b2, b2, b1, b3, b3, b3, b2, b2, b1, b1, b3, b3, b2, b2, b3, b2, b3, b1, b2, b3, b3, b3, b2, b2, b3, b1, b2, b2, b1, b1, b2, b1, b2, o2, s3, s1, s2, g3, r1, r3, r4, g2, g2],
[b1, b3, b1, b3, b1, b3, b2, b1, b2, b1, b2, b2, b3, b1, b3, b2, b2, b2, b3, b2, b2, b2, b3, b1, b3, b3, b1, b3, b3, b2, b2, b3, b2, b1, b1, b2, b1, b3, b2, b3, b3, b2, b1, b3, o3, s3, s3, g2, g2, r4, r3, r1, g2],
[b1, b2, b1, b1, b1, b3, b3, b3, b3, b3, b2, b2, b3, b3, b2, b3, b1, b2, b3, b2, b3, b3, b3, b2, b3, b2, b1, b2, b1, b1, b3, b3, b2, b2, b1, b2, b3, b2, b1, b2, b1, b2, b1, b1, o1, s1, s2, g2, g2, r3, r2, g3, s2],
[b3, b1, b1, b1, b3, b3, b1, b1, b3, b3, b2, b1, b1, b3, b2, b3, b3, b2, b3, b1, b1, b3, b1, b1, b3, b1, b2, b3, b1, b3, b2, b2, b3, b2, b2, b3, b1, b3, b2, b2, b2, b2, b3, b2, o2, s2, s2, s1, g1, g3, g1, s2, s3],
[b2, b1, b3, b2, b1, b2, b1, b3, b1, b1, b3, b1, b2, b3, b2, b2, b2, b3, b2, b2, b1, b2, b2, b3, b2, b3, b3, b2, b2, b1, b1, b2, b3, b2, b1, b2, b3, b2, b2, b1, b1, b3, b1, b1, b2, o1, s3, s1, g2, g2, s1, s2, b3]
],
"elevation": [
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e4, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e4, e4, e4, e4, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", e4, e4, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e4, e4, e4, e4, e4, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e4, e4, e4, e4, "", "", "", "", "", "", "", "", "", "", "", "", "", "", e3, e3, "", "", "", e3, e3, e3, "", e3, e4, e4, e4, e4, e4, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e4, e4, e4, e4, "", "", "", "", "", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, "", e3, e3, e3, e3, e3, e3, e4, e4, e4, e4, e4, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e4, e4, e4, e4, e4, "", "", "", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e4, "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e4, e4, e4, e4, e4, e4, "", "", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e4, e4, e4, e4, e3, e3, e3, e3, "", "", "", "", "", "", e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", e4, e3, e3, e3, e3, e3, e3, e3, e3, "", "", "", e3, e3, e3, e3, e3, "", e3, e3, e3, e3, "", e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, "", "", "", "", "", "", "", e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, "", "", "", "", "", "", "", "", e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", e3, e2, e2, e2, "", "", "", e3, e3, e3, e3, e3, "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e2, "", "", "", "", e1, "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e1, e1, "", "", e2, e2, e1, e1, e1, "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e0, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e0, "", "", "", "", "", ""],
["", "", "", "", "", "", "", e0, e0, e0, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e0, e0, "", "", "", "", "", ""],
["", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", e0, e0, e0, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", e0, e0, e0, e0, e0, "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, "", "", "", "", "", e0, e0, e0, e0, e0, e0, "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", e0, e0, e0, e1, e0, e0, "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, "", e0, e0, e0, "", e0, e0, e0, e1, e1, e0, e0, "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e1, e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", e0, e0, e0, e0, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e0, e0, e0, e0, e1, e1, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", e0, e0, e0, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", e0, e0, e0, e0, e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", e0, e0, e0, e1, e1, "", "", "", "", "", e1, "", "", e1, e1, e1, e0, e0, e0, e0, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e0, e0, e1, e1, e1, e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, "", e0, e0, e0, e1, e1, "", "", "", "", "", "", "", "", "", e1, e1, e0, e0, e0, e0, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e0, e0, e1, e1, "", "", e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e1, "", "", "", "", "", "", "", e1, "", "", e1, e1, e1, e0, e0, e0, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e0, e0, e0, e1, "", "", "", e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e1, "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e0, e0, e0, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e0, e0, e0, e1, "", "", "", "", e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e1, "", "", e1, e1, "", "", e1, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e0, e0, e1, e1, "", "", "", "", e1, e1, e0, e0, e0, e0, "", "", e0, e0, e0, e0, e0, e1, e1, e1, e1, e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", e0, e0, e0, e1, "", "", "", "", e1, e1, e1, e0, e0, e0, e0, "", "", "", e0, e0, e0, e0, e1, e1, e1, e1, e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", e0, e0, e1, e1, "", "", e1, e1, e1, e1, e1, e0, e0, e0, "", "", "", "", "", e0, e0, e0, e0, e1, e1, e1, e1, e1, e0, e0, e0, e0, "", e0, e0, e0, "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", e0, e0, e1, e1, "", "", e0, e0, e0, e1, e1, e0, e0, e0, "", "", "", "", "", e0, e0, e0, e0, e0, e1, e1, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", e0, e0, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", e0, e0, e0, e0, e0, e0, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""]
]
},
"abyss": {
"hidden": True,
"score": 0.005,
"players": {},
"background": "black",
"map": [
[bl, bl, bl, bl, bl, bl, pa, pa, pa, pa, bl, bl, bl, pa, pa, pa, pa, bl, bl, bl, bl, bl, bl],
[bl, bl, bl, bl, bl, pa, a1, a1, a2, a1, pa, bl, pa, a1, a3, a3, a2, pa, bl, bl, bl, bl, bl],
[bl, bl, bl, bl, pa, a3, a2, a2, a3, a2, a1, pa, a1, a2, a2, a2, a1, a2, pa, bl, bl, bl, bl],
[bl, bl, bl, pa, a1, a3, a3, a3, a2, a3, a2, a3, a2, a1, a3, a3, a3, a2, a3, pa, bl, bl, bl],
[bl, bl, pa, a2, a1, a2, a2, pa, pa, a1, a3, a3, a1, a1, pa, pa, a1, a2, a1, a1, pa, bl, bl],
[bl, pa, a3, a1, a2, a1, pa, b1, b1, pa, a2, a1, a2, pa, l2, l1, pa, a2, a3, a1, a1, pa, bl],
[pa, a1, a3, a2, a3, a2, pa, b3, b1, pa, a2, a1, a1, pa, l1, l3, pa, a3, a3, a3, a2, a3, pa],
[pa, a1, a2, a3, a2, a2, pa, b1, b2, pa, a3, a3, a2, pa, l3, l2, pa, a2, a1, a2, a1, a1, pa],
[bl, pa, a2, a3, a1, a1, pa, b2, b3, pa, a2, a2, a2, pa, l1, l3, pa, a2, a2, a3, a3, pa, bl],
[bl, bl, pa, a3, a3, a2, a1, pa, pa, a1, a3, a2, a1, a2, pa, pa, a2, a2, a2, a2, pa, bl, bl],
[bl, bl, bl, pa, a2, a1, a2, a2, a1, a1, a1, a3, a1, a3, a1, a3, a3, a3, a1, pa, bl, bl, bl],
[bl, bl, bl, pa, a3, a2, a2, a2, a2, a3, a1, a2, a3, a2, a1, a2, a2, a2, a3, pa, bl, bl, bl],
[bl, bl, bl, bl, pa, a3, a1, a1, a2, a3, a3, a3, a2, a2, a2, a3, a1, a2, pa, bl, bl, bl, bl],
[bl, bl, bl, bl, bl, pa, pa, pa, pa, a3, a3, a3, a1, a2, pa, pa, pa, pa, bl, bl, bl, bl, bl],
[bl, bl, bl, bl, bl, bl, bl, bl, bl, pa, a1, a2, a3, pa, bl, bl, bl, bl, bl, bl, bl, bl, bl],
[bl, bl, bl, bl, bl, bl, bl, bl, bl, pa, a2, a2, a3, pa, bl, bl, bl, bl, bl, bl, bl, bl, bl],
[bl, bl, bl, bl, bl, bl, bl, bl, bl, pa, a3, a3, a3, pa, bl, bl, bl, bl, bl, bl, bl, bl, bl],
[bl, bl, bl, bl, bl, bl, bl, bl, bl, pa, a3, a1, a2, pa, bl, bl, bl, bl, bl, bl, bl, bl, bl],
[bl, bl, bl, bl, bl, bl, bl, bl, pa, a1, a2, a1, a2, a2, pa, bl, bl, bl, bl, bl, bl, bl, bl],
[bl, bl, bl, bl, bl, bl, bl, pa, a3, a1, a1, a2, a3, a2, a1, pa, bl, bl, bl, bl, bl, bl, bl],
[bl, bl, bl, bl, bl, bl, bl, pa, a3, a2, a1, a2, a3, a2, a2, pa, bl, bl, bl, bl, bl, bl, bl],
[bl, bl, bl, bl, bl, bl, bl, pa, a1, a1, a1, pp, a2, a2, a3, pa, bl, bl, bl, bl, bl, bl, bl],
[bl, bl, bl, bl, bl, bl, bl, pa, a3, a3, a1, a1, a3, a2, a3, pa, bl, bl, bl, bl, bl, bl, bl],
[bl, bl, bl, bl, bl, bl, bl, bl, pa, a1, a2, a1, a3, a1, pa, bl, bl, bl, bl, bl, bl, bl, bl],
[bl, bl, bl, bl, bl, bl, bl, bl, bl, pa, pa, pa, pa, pa, bl, bl, bl, bl, bl, bl, bl, bl, bl]
],
"elevation": [
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", e3, e3, e3, e3, "", "", "", e3, e3, e3, e3, "", "", "", "", "", ""],
["", "", "", "", "", e3, e3, e3, e3, e3, e3, "", e3, e3, e3, e3, e3, e3, "", "", "", "", ""],
["", "", "", "", e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, "", "", "", ""],
["", "", "", e3, e3, e3, e3, "", "", e3, e3, e3, e3, e3, "", "", e3, e3, e3, e3, "", "", ""],
["", "", e3, e3, e3, e3, "", "", "", "", e3, e3, e3, "", "", "", "", e3, e3, e3, e3, "", ""],
["", e3, e3, e3, e3, e3, "", "", "", "", e3, e3, e3, "", "", "", "", e3, e3, e3, e3, e3, ""],
["", e3, e3, e3, e3, e3, "", "", "", "", e3, e3, e3, "", "", "", "", e3, e3, e3, e3, e3, ""],
["", "", e3, e3, e3, e3, "", "", "", "", e3, e3, e3, "", "", "", "", e3, e3, e3, e3, "", ""],
["", "", "", e3, e3, e3, e3, "", "", e3, e3, e3, e3, e3, "", "", e3, e3, e3, e3, "", "", ""],
["", "", "", "", e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, "", "", "", ""],
["", "", "", "", e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, "", "", "", ""],
["", "", "", "", "", e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e3, e3, e3, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e3, e3, e3, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e3, e3, e3, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e3, e3, e3, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, e3, e3, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, e3, e3, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, e3, e3, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, e3, e3, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e3, e3, e3, e3, e3, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""]
]
},
"treasure": {
"hidden": True,
"score": 0.005,
"players": {},
"background": b3,
"map": [
[r1, r2, r2, r3, r2, r2, r2, r3, r1, r1, r3, r2, r1, r2, r2, r2, r3, r3, r3, r3, r1, r1, r2, r2, r1, r2, r3, r1, r3, r2, r1, r2, r2],
[i1, i2, i1, r1, r2, i2, i2, i1, r2, r3, i2, i2, i1, r1, r2, i2, i2, i1, r3, r1, i2, i2, i1, r2, r1, i2, i2, i2, r1, r1, i2, i1, i1],
[i2, t3, i2, r1, r1, i1, t5, i2, r3, r1, i2, t4, i1, r3, r2, i2, t3, i1, r1, r2, i2, t2, i1, r2, r1, i1, t5, i2, r2, r2, i2, t3, i1],
[i1, i1, i1, r3, r2, i2, i2, i1, r3, r2, i1, i1, i1, r1, r2, i1, i2, i2, r1, r1, i2, i1, i1, r3, r2, i1, i1, i1, r2, r2, i2, i1, i1],
[r1, r1, r1, r3, r3, r1, r2, r1, r2, r1, r3, r2, r3, r2, r2, r2, r1, r2, r1, r1, r1, r1, r3, r2, r2, r2, r3, r1, r1, r3, r2, r3, r2],
[r2, r2, r3, r2, r3, r2, r1, r2, r3, r1, r1, r1, r3, r3, r2, r1, r1, r3, r1, r3, r1, r3, r3, r1, r3, r3, r3, r2, r2, r3, r2, r1, r3],
[i2, i1, i2, r3, r2, i2, i1, i2, r1, r1, i2, i2, i1, r2, r1, i1, i2, i2, r2, r3, i2, i2, i2, r2, r1, i1, i1, i1, r2, r2, i1, i1, i1],
[i1, t1, i1, r1, r3, i1, t2, i2, r2, r1, i2, t3, i1, r2, r2, i2, t2, i1, r2, r1, i1, t4, i1, r3, r3, i1, t3, i1, r2, r2, i1, t1, i2],
[i2, i1, i2, r3, r3, i2, i2, i2, r1, r1, i2, i1, i1, r2, r3, i1, i1, i2, r1, r1, i2, i1, i2, r1, r2, i1, i1, i1, r2, r1, i2, i1, i2],
[r1, r2, r1, r2, r3, r3, r3, r2, r2, r2, r1, r1, r2, r1, r3, r1, r1, r3, r1, r1, r3, r1, r1, r1, r1, r1, r3, r2, r2, r3, r3, r1, r2],
[r1, r2, r2, r1, r2, r1, r1, r1, r1, r2, r2, r2, r3, r3, r3, s3, s2, s2, r1, r1, r3, r3, r3, r1, r1, r1, r3, r3, r1, r2, r3, r3, r3],
[i1, i2, i1, r2, r2, i1, i2, i2, r3, r3, i2, i1, i2, r1, s1, s1, s1, s1, s2, r1, i1, i1, i1, r3, r3, i2, i2, i2, r2, r1, i1, i1, i1],
[i2, t5, i1, r3, r1, i1, t1, i1, r3, r1, i1, t2, i2, r2, s2, s3, pp, s1, s1, r2, i2, t3, i1, r3, r1, i1, t2, i2, r1, r1, i1, t4, i2],
[i1, i2, i1, r1, r3, i1, i2, i2, r2, r2, i1, i2, i1, r1, s2, s2, s3, s1, s1, r3, i1, i1, i2, r2, r1, i1, i1, i1, r2, r3, i2, i1, i2],
[r2, r2, r3, r1, r3, r3, r2, r3, r2, r1, r3, r1, r3, r1, s1, s3, s1, s2, s1, r1, r3, r2, r1, r2, r1, r1, r2, r3, r3, r1, r1, r1, r3],
[r3, r2, r1, r3, r2, r3, r3, r1, r1, r3, r2, r3, r3, r1, s1, s1, s2, s1, s1, r2, r1, r1, r1, r3, r2, r1, r3, r2, r2, r3, r3, r2, r1],
[i2, i1, i2, r3, r1, i1, i1, i2, r3, r2, i1, i2, i1, r2, s3, s2, s3, s1, s3, r3, i1, i1, i1, r1, r3, i2, i1, i1, r3, r2, i1, i2, i2],
[i2, t2, i1, r2, r3, i1, t3, i2, r2, r2, i2, t4, i1, r3, s2, s3, s1, s1, s3, r3, i2, t2, i1, r2, r3, i1, t1, i2, r1, r1, i1, t2, i2],
[i2, i1, i2, r2, r2, i1, i2, i1, r1, r3, i1, i2, i1, r1, s1, s2, s3, s3, s2, r2, i1, i2, i2, r2, r2, i2, i1, i1, r3, r3, i1, i2, i2],
[r3, r2, r2, r2, r2, r3, r1, r1, r2, r2, r1, r1, r3, r3, s1, s2, s2, s2, s2, r2, r1, r3, r2, r2, r2, r1, r3, r3, r1, r2, r2, r3, r2],
[r3, r2, r3, r2, r2, r2, r3, r1, r2, r2, r3, r1, r3, r3, s1, s2, s2, s3, s3, r3, r3, r2, r2, r3, r3, r1, r2, r1, r3, r3, r1, r2, r3],
[i1, i2, i2, r3, r2, i1, i2, i2, r2, r3, i1, i2, i1, r2, s2, s3, s3, s1, s2, r1, i1, i2, i1, r3, r2, i1, i2, i2, r1, r1, i2, i1, i2],
[i1, t4, i1, r2, r1, i1, t5, i2, r2, r3, i1, t3, i1, r1, s2, s1, s1, s2, s3, r2, i2, t1, i2, r3, r1, i2, t4, i2, r2, r1, i1, t3, i2],
[i1, i1, i2, r2, r3, i2, i2, i1, r3, r1, i2, i2, i2, r2, s3, s1, s3, s1, s1, r2, i2, i2, i1, r2, r1, i1, i2, i1, r3, r3, i2, i1, i2],
[r3, r3, r1, r1, r1, r2, r2, r1, r1, r3, r3, r2, r1, r1, s3, s3, s3, s2, s1, r3, r1, r1, r3, r1, r3, r1, r2, r2, r3, r2, r1, r2, r2],
[r3, r2, r2, r1, r3, r2, r1, r2, r1, r3, s3, s2, s2, s1, s3, s3, s2, s3, s3, s1, s3, s3, s1, r2, r3, r1, r2, r3, r2, r2, r1, r3, r3],
[i1, i1, i2, r2, r1, i1, i1, i1, r1, s1, s3, s1, s3, s1, s3, s3, s1, s3, s1, s2, s1, s1, s1, s2, r1, i1, i2, i1, r1, r3, i1, i1, i1],
[i2, t2, i1, r2, r1, i1, t3, i2, r3, s1, s2, s3, s2, s3, s3, s3, s1, s2, s3, s2, s2, s3, s2, s2, r1, i1, t5, i1, r3, r1, i2, t2, i2],
[i1, i1, i1, r1, r1, i2, i2, i1, r3, s2, s1, s2, s3, s1, s2, s1, s1, s2, s2, s3, s3, s2, s2, s1, r2, i2, i1, i2, r3, r2, i2, i2, i1],
[r2, r1, r2, r3, r2, r2, r1, r2, r3, s1, s2, s2, s1, s1, s2, s1, tb, s2, s1, s2, s2, s1, s2, s3, r1, r2, r3, r1, r1, r1, r2, r2, r1],
[r2, r2, r1, r3, r2, r1, r1, r3, r1, s2, s3, s1, s1, s2, s2, s3, s3, s3, s2, s2, s3, s2, s1, s3, r2, r2, r1, r1, r2, r3, r2, r2, r1],
[i1, i1, i2, r2, r3, i2, i2, i2, r1, s2, s2, s2, s2, s3, s1, s2, s1, s1, s3, s3, s2, s2, s2, s1, r3, i1, i2, i2, r2, r3, i1, i2, i1],
[i2, t3, i1, r2, r1, i2, t4, i2, r2, s2, s3, s1, s1, s2, s3, s1, s1, s1, s3, s3, s2, s2, s3, s2, r1, i2, t3, i1, r1, r2, i1, t1, i2],
[i1, i2, i2, r1, r1, i1, i2, i1, r3, s2, s1, s1, s3, s1, s3, s1, s3, s3, s1, s1, s1, s3, s1, s3, r2, i1, i2, i2, r2, r2, i2, i2, i1],
[r2, r1, r2, r2, r1, r1, r2, r3, r3, r1, s1, s1, s3, s1, s3, s2, s2, s3, s1, s3, s2, s2, s3, r1, r2, r3, r3, r3, r2, r3, r1, r2, r2],
[r2, r1, r3, r2, r1, r3, r2, r1, r2, r3, r2, r1, r2, r1, s2, s3, s2, s1, s1, r1, r2, r3, r3, r2, r2, r2, r2, r2, r3, r3, r1, r3, r3],
[i1, i1, i2, r2, r2, i1, i1, i2, r1, r2, i2, i2, i2, r2, s2, s1, s3, s2, s3, r3, i1, i1, i2, r2, r1, i2, i1, i2, r2, r3, i1, i1, i2],
[i1, t4, i1, r1, r3, i2, t5, i1, r3, r1, i1, t1, i1, r1, s2, s3, s2, s2, s2, r2, i1, t5, i2, r1, r2, i2, t2, i2, r3, r2, i1, t5, i1],
[i2, i2, i1, r1, r1, i1, i2, i2, r1, r3, i2, i1, i1, r1, s3, s2, s1, s1, s1, r2, i2, i2, i1, r3, r1, i1, i1, i2, r1, r3, i1, i1, i2],
[r2, r1, r3, r2, r2, r2, r1, r3, r3, r1, r1, r3, r1, r3, s1, s1, s2, s2, s3, r3, r1, r3, r2, r2, r1, r2, r2, r1, r1, r1, r1, r1, r2],
[r3, r3, r2, r1, r3, r2, r2, r1, r3, r3, r1, r2, r2, r3, s3, s1, s1, s1, s2, r3, r2, r2, r3, r3, r3, r2, r2, r2, r1, r3, r2, r2, r1],
[i1, i2, i1, r2, r1, i2, i1, i1, r1, r3, i2, i1, i1, r3, r1, s3, s1, s2, r1, r1, i2, i2, i2, r1, r1, i1, i1, i2, r2, r2, i1, i1, i2],
[i1, t1, i2, r2, r1, i1, t3, i1, r3, r3, i1, t2, i1, r1, r1, r2, r1, r2, r1, r2, i1, t4, i1, r3, r2, i2, t1, i2, r3, r3, i2, t4, i1],
[i2, i2, i2, r2, r2, i2, i2, i2, r3, r1, i2, i2, i1, r3, r1, r1, r3, r3, r1, r3, i2, i2, i1, r3, r2, i1, i1, i2, r3, r3, i1, i1, i1],
[r2, r2, r3, r2, r2, r2, r2, r3, r2, r1, r1, r2, r1, r1, r3, r1, r2, r2, r2, r3, r3, r1, r1, r2, r1, r1, r3, r1, r3, r2, r1, r1, r1],
[r2, r3, r3, r2, r3, r2, r1, r1, r2, r3, r3, r1, r3, r2, r3, r1, r3, r1, r2, r2, r1, r3, r3, r3, r2, r2, r1, r2, r3, r2, r3, r3, r2],
[i1, i2, i2, r2, r2, i2, i1, i2, r1, r1, i2, i2, i2, r3, r1, i1, i2, i2, r3, r1, i1, i1, i2, r2, r1, i2, i1, i2, r2, r3, i2, i2, i1],
[i1, t4, i1, r2, r1, i2, t1, i1, r3, r3, i1, t5, i2, r2, r3, i2, t3, i2, r1, r1, i1, t2, i1, r2, r2, i2, t3, i1, r2, r3, i2, t2, i2],
[i1, i1, i1, r3, r3, i1, i2, i2, r1, r2, i1, i1, i1, r1, r2, i1, i2, i2, r3, r2, i2, i1, i2, r3, r2, i2, i1, i2, r2, r3, i2, i1, i1],
[r3, r1, r3, r1, r2, r3, r1, r3, r1, r2, r3, r1, r1, r1, r2, r3, r2, r1, r1, r2, r2, r1, r3, r1, r3, r3, r3, r2, r2, r3, r2, r1, r2]
],
"elevation": [
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, "", "", "", e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, "", "", "", e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", e2, e2, e2, "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""]
]
},
"mushroom": {
"hidden": True,
"score": 0.005,
"players": {},
"background": r3,
"map": [
[r2, r3, r3, r3, r1, r4, r2, r4, r3, r4, r4, r4, r4, r4, r4, r1, r3, r3, r3, r1, r3, r3, r3, r1, r3, r3, r3, r1, r4, r3, r3, r1, r1],
[r2, r1, r3, r3, r4, r1, r3, r1, r1, r1, r4, r1, r1, r4, r3, r3, r1, r1, r4, r4, r1, r2, r2, r2, r1, r1, r2, r1, r4, r3, r4, r2, r4],
[r1, r3, r2, r3, r4, r2, r2, r3, r2, r1, r2, r2, r2, r1, r2, r1, r2, r2, r1, r3, r3, r3, r2, r1, r3, r4, r2, r1, r4, r3, r4, r3, r2],
[r4, r3, r4, r4, r4, r3, r4, r1, r3, r3, r3, r1, r2, r2, r1, r1, r1, r2, r3, r2, r1, r1, r3, r4, r3, r4, r1, r4, r4, r3, r2, r1, r3],
[r4, r2, r3, r2, r1, r3, r1, r2, r4, r2, r4, r2, r2, r3, r2, r1, r4, r1, r4, r1, r3, r1, r4, r4, r2, r4, r3, r2, r2, r1, r2, r4, r2],
[r4, r2, r3, r4, r1, r3, r3, b3, b3, b2, b1, r1, r2, r2, r3, r3, r2, r1, r3, r3, r2, r1, r1, r3, r2, r2, r2, r3, r1, r1, r3, r1, r4],
[r1, r2, r3, r2, r2, r3, b2, b1, b3, b2, b3, b1, r4, r1, r4, r4, r3, r1, r4, r2, r4, r4, r1, r4, r4, r3, r3, r3, r3, r3, r4, r3, r3],
[r1, r2, r3, r3, r1, b3, b3, b1, b1, b2, b2, b1, p1, p1, p3, p1, p3, p3, p1, p1, p3, r1, r2, r2, r1, r1, r4, r1, r4, r4, r2, r4, r1],
[r4, r1, r3, r1, r4, b3, b1, b2, b2, b1, b3, b1, p2, p2, p2, p3, p1, p3, p2, p2, p2, p1, p1, r4, r1, r3, r4, r2, r2, r2, r2, r2, r4],
[r4, r4, r3, r1, r2, b3, b2, b2, b2, b1, b1, p3, p1, p2, p3, p2, p2, p1, p3, p2, p2, p3, p2, p2, p1, r1, r1, r4, r1, r4, r1, r3, r3],
[r3, r3, r4, r3, r3, r3, b1, b3, b1, p1, p1, p2, p1, p1, p2, p1, p1, p1, r1, r1, p1, p1, p3, p2, p3, pp, r1, r1, r1, r4, r3, r3, r3],
[r4, r3, r3, r1, r4, r2, r4, p1, p3, p2, p3, p2, p2, p3, p2, p1, p3, p2, r2, r2, r1, p3, p3, p2, p3, p2, r3, r1, r1, r1, r1, r3, r1],
[r1, r4, r1, r2, r2, r3, r4, p2, p1, p2, p2, p3, p1, p2, p2, p3, p3, p1, r4, r4, r2, r4, p2, p1, p2, p2, r4, r4, r3, r1, r2, r3, r4],
[r3, r1, r4, r2, r2, r4, r4, p3, p3, p3, p2, p3, p1, p2, p1, p2, p1, p3, p3, p2, r4, r1, p2, p2, p2, r3, r4, r4, r3, r1, r4, r4, r2],
[r3, r3, r4, r4, r2, r1, r3, p3, p1, p3, p2, p3, p3, p1, p2, p1, p1, p2, p1, p2, p3, p2, p2, p3, p3, r3, r2, r1, r2, r3, r1, r1, r4],
[r3, r4, r2, r1, r3, r1, r1, r1, p3, p2, p2, p3, p1, p3, p3, p2, p3, p1, p1, p2, p3, p1, p2, p2, p3, r2, r1, r1, r2, r2, r3, r4, r2],
[r3, r4, r2, r2, r2, r3, r1, r1, p1, p2, p2, r3, p2, p3, p2, p3, p2, p3, p3, p3, p2, p2, p2, p3, r2, r4, r3, r1, r4, r4, r4, r2, r2],
[r1, r2, r3, r4, r3, r1, r1, r2, p1, p2, r2, r2, r1, p1, p3, p2, p3, p1, p2, p1, p3, p1, p1, p3, r3, r4, r2, r3, r4, r2, r2, r2, r1],
[r2, r4, r2, r2, r2, r3, r1, r1, p3, p3, r2, r3, r2, p1, p3, p2, p2, p1, p3, p1, p2, p2, p3, p2, r3, r2, r1, r4, r1, r1, r1, r3, r2],
[r4, r1, r4, r1, r2, r1, r4, p3, p2, p3, r3, r1, p3, p1, p2, p1, p2, p2, p3, p2, p3, p1, p3, p3, p3, r1, r3, r1, r3, r2, r4, r3, r4],
[r4, r2, r3, r3, r3, r3, r4, p1, p2, p2, p3, p3, p1, p1, p1, p3, p1, p1, p1, p1, p3, p1, p3, p1, p2, p1, r4, r1, r2, r4, r3, r3, r1],
[r2, r2, r4, r2, r1, r4, r3, r3, p3, p2, p1, p2, p2, p3, p2, p1, p1, p3, p2, p3, p3, p2, p2, p1, p1, p2, r4, r3, r3, r4, r2, r1, r2],
[r4, r2, r2, r3, r1, r3, r4, r4, p2, p3, p2, p1, p2, p3, p1, p2, p3, p2, p3, p3, p3, p2, p1, p3, p2, p1, r1, r3, r3, r1, r4, r4, r4],
[r1, r2, r4, r3, r3, r3, r3, r3, r3, p3, p3, p3, p3, p3, b1, b3, b1, b3, p2, p1, p3, p2, p1, p2, p3, r1, r4, r4, r4, r1, r4, r1, r4],
[r1, r3, r1, r1, r4, r1, r3, r3, r1, r3, r3, p3, p2, b1, b3, b3, b2, b1, b2, b2, p2, p2, p1, r1, r4, r2, r1, r3, r1, r3, r4, r3, r1],
[r1, r4, r2, r2, r2, r3, r1, r3, r3, r2, r2, r3, r1, b2, b1, b3, b3, b3, b1, b1, b3, r2, r3, r1, r3, r4, r4, r3, r4, r3, r1, r2, r3],
[r4, r1, r1, r3, r4, r1, r4, r4, r3, r1, r1, r4, r3, r4, b1, b3, b2, b1, b3, b2, b1, r1, r2, r1, r3, r2, r2, r4, r4, r3, r4, r4, r4],
[r1, r3, r4, r1, r3, r2, r4, r3, r3, r4, r4, r3, r4, b3, b3, b3, b1, b2, b2, r2, r3, r3, r4, r2, r1, r2, r2, r3, r4, r3, r3, r3, r3],
[r4, r4, r3, r1, r2, r3, r3, r1, r3, r3, r2, r2, r2, b1, b1, b3, b3, b3, r1, r1, r1, r2, r2, r3, r4, r1, r4, r4, r3, r2, r1, r3, r3],
[r1, r2, r4, r3, r1, r1, r2, r4, r2, r3, r1, r1, r4, r2, b3, b2, b1, r4, r3, r1, r2, r3, r1, r4, r1, r4, r1, r2, r4, r1, r2, r1, r4],
[r1, r2, r1, r4, r4, r3, r1, r4, r3, r1, r1, r3, r3, r2, r4, r4, r4, r4, r2, r1, r1, r2, r3, r1, r2, r2, r4, r4, r3, r2, r2, r2, r3],
[r3, r1, r1, r1, r1, r4, r2, r3, r1, r4, r3, r2, r4, r1, r2, r2, r4, r3, r3, r3, r4, r4, r1, r1, r4, r1, r3, r4, r1, r3, r4, r2, r3]
],
"elevation": [
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", e1, e1, e1, e1, e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", e1, e1, "", "", "", "", "", "", "", e1, e1, e1, "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""],
["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""]
]
},
"cursed": {
"hidden": True,
"score": 0.005,
"players": {},
"background": sk,
"map": [
[p3, v3, l3, l1, v4, l1, b3, v3, g1, sk, v3, r1, b1, l1, b1, g1, l2, sk, v2, l2, r4, b1, v1, v2, p2, v4, l3, r1, g3, l2, p1, r1, v2, r3, r2, l1, g4, w3, l3, l1, r3],
[sk, w2, b2, g3, sk, v4, r2, v2, g4, b3, l2, r4, v2, g4, b3, p1, v4, l2, w3, r1, v2, p2, w1, w2, l3, r1, w2, v3, l3, w1, sk, sk, v3, sk, sk, p1, g4, sk, l2, w1, g4],
[r4, p3, r4, b2, r4, v3, l2, g3, p1, l2, w3, r4, p3, v1, v1, p1, w3, w1, g3, r4, g2, l1, g2, p3, w3, l2, w1, v2, w1, r3, l1, r1, r3, l2, p1, b3, r3, r2, sk, sk, r4],
[r4, l2, p1, b3, b3, b1, p1, v1, l1, g4, sk, l3, p1, b1, w3, g3, g3, l1, g1, w1, r3, r3, l2, r1, p1, r3, sk, l2, sk, v2, p2, p1, v2, b1, l3, b2, l2, v4, r3, r4, b3],
[g4, v1, b1, sk, b3, r1, w3, p3, g4, sk, b2, r2, l1, v1, r1, b2, r1, sk, w1, l1, p1, r2, w1, p2, w2, g2, r3, l2, p2, r3, l1, r3, p1, l3, r3, g2, sk, l2, v4, v1, l3],
[r3, r1, v1, l2, r3, b3, v3, w1, sk, g1, g3, w2, b3, l3, w1, p3, w3, r1, g3, l3, g3, w3, v2, g4, p1, g3, sk, g4, l3, b2, v2, r3, g4, g2, r1, w3, p1, r4, p2, w3, p3],
[g1, v1, l2, b3, b3, w1, v2, b3, v4, l3, b1, l1, p1, r4, p2, l2, w1, p2, p1, l1, v4, sk, g2, v4, r2, v2, g2, v4, l3, b3, r3, p1, w2, r1, r1, g3, p3, r2, g4, r2, p3],
[r2, l1, b2, r4, g3, w2, r4, l1, w2, w3, w2, b3, b2, p1, p3, v1, sk, l2, v3, sk, r2, p3, g1, b3, v1, b3, w3, v3, v1, l2, p3, v3, w1, b1, w2, w1, sk, b3, r4, r4, g1],
[r1, b1, r4, l3, w1, v2, b2, v3, b2, g3, l2, p3, w1, g2, l1, w2, r1, v4, l3, g4, b1, p2, g4, g1, r3, g1, g3, l2, g3, l2, v4, v1, l1, r1, b1, r1, w2, v4, b3, w3, r2],
[v1, l2, r2, v1, b3, w3, w2, v1, w3, l2, w2, v3, r4, b2, g3, g2, p2, w1, r1, p2, l2, v1, v1, g1, v1, r4, sk, p3, w3, l3, b3, sk, r4, g3, sk, w1, p2, p1, v4, w1, b2],
[g1, v1, g3, w1, v4, g2, w1, v2, v4, r3, v2, g2, p1, l2, l2, l1, g4, g4, l3, g1, b2, p1, p1, b1, v4, b1, r2, p2, b3, w3, v3, sk, g2, v4, r2, l1, r4, b1, w3, v2, l3],
[p1, v1, g2, l1, b2, g3, r1, r4, v3, sk, p1, v4, v1, r4, v2, v4, sk, r1, p1, r4, g1, g2, w1, l2, l1, l2, r2, g3, w1, r2, g3, r2, g3, p1, r1, l2, b2, r4, g1, l2, w1],
[v4, b1, p3, w3, g1, g3, l1, g4, r3, p1, g4, p1, p2, sk, r3, l3, w1, r3, r4, r2, p1, v2, r1, v3, b3, v4, p2, g3, g3, r2, r3, l2, b2, b3, r1, l3, v3, g4, w2, b1, g4],
[b2, l3, w2, g2, g1, v2, l1, r2, l2, sk, r2, p3, g1, w3, p2, g4, b2, w2, p1, p1, g2, l2, l2, r4, r1, r3, g2, r1, b1, r2, v4, w3, b3, b2, g2, g2, w3, v2, l2, g1, l2],
[b2, p3, b3, r1, p1, v2, l3, p3, l2, r2, b2, v4, r3, w2, g2, v1, b2, v4, sk, g2, sk, p3, w2, l1, r2, b3, p3, w1, l3, p3, g3, r1, p3, g1, w2, r2, w2, g4, p3, l2, v3],
[b2, l3, g3, b3, p3, w1, l2, g2, g3, b2, v2, b2, v1, g3, v3, v3, w3, v1, g2, v4, r2, r3, g4, r1, v3, l2, v4, g3, l1, l2, p1, r1, p3, p1, p1, w1, sk, g1, sk, l1, b2],
[g1, g1, w2, l3, g2, b1, g3, l2, w3, b1, v1, r1, p3, r2, b3, r2, b2, v1, r2, w2, l2, v4, v3, r2, l2, g1, l1, l2, l2, v3, p1, p2, p1, v2, p1, l3, w1, b2, v1, r1, w1],
[b2, sk, v2, p1, g2, w3, g3, p1, v4, l2, l2, p1, g1, b2, r1, r4, l1, w3, g2, w3, g3, r3, l1, l1, p3, r3, r4, g3, l3, g4, b2, l2, p1, v4, v3, l2, r3, sk, w3, l2, r2],
[r3, l1, l2, g3, r2, l3, b2, l3, v1, l2, l1, p1, w3, v4, w1, b2, w3, p3, sk, r3, r3, l2, g2, g1, l1, b3, g2, p2, w3, b3, l2, l3, r1, w2, l1, l2, v4, l3, r3, w2, l2],
[r2, w2, b2, r4, w3, l1, v3, p1, l2, v3, r4, l3, g1, p3, w2, w1, g4, p1, w3, sk, l2, b1, w1, v4, p2, v1, b2, r3, p1, sk, l2, g3, g2, g2, v2, w1, g2, v3, g2, g4, r2],
[w2, w3, b2, v1, w1, r3, g4, b2, b3, v3, l2, v4, g4, b3, w2, v4, r1, r2, r3, v1, r1, sk, g4, r3, sk, b2, l3, r1, v1, r1, b2, g3, p1, g4, l2, r2, r4, g2, g4, p1, r4],
[w2, l2, r3, g1, l3, v4, g1, v4, g2, l2, g3, l2, g4, g2, v1, l3, g2, r1, r2, b3, w2, v3, p3, p2, w2, g2, w3, b2, w1, g4, g3, l1, b3, v3, g4, r2, sk, b2, g3, l3, w1],
[w1, r1, w2, g1, r2, p3, p3, v4, g2, r2, v3, r2, l2, r4, l3, l2, p1, b3, r3, b1, v2, w1, w3, l1, r4, w1, b2, p2, r1, v4, v1, b2, b1, g4, l1, v1, p3, w3, r1, p2, sk],
[l2, l2, v3, w3, w2, v2, v4, g4, g1, l1, v3, p3, l1, p2, p1, w3, r3, w3, w2, l3, b3, w2, v2, sk, r4, r1, l2, b1, g3, w2, v2, r2, l2, b2, sk, p3, l3, w3, w2, r2, g1],
[p2, l1, r3, sk, r4, b3, r4, v2, b2, b3, b1, v3, r1, r1, r4, w2, r4, w2, l3, l2, r4, v1, r1, w2, l2, g3, v4, g3, w2, g3, b2, w3, g1, w3, v1, w2, v3, r2, r4, b1, w3],
[sk, r1, r3, b3, r1, sk, v4, l2, r3, r1, l1, g2, g1, v4, b2, w3, w3, v4, l1, v4, p2, p1, p1, p2, w2, l1, p2, sk, b1, w1, w3, r1, p2, l1, v3, v3, r2, g2, w2, w1, p1],
[sk, l3, w3, r4, r1, v4, p3, r1, g3, p3, l2, v1, p2, v2, v2, w1, l2, r1, p2, b1, w2, l2, v1, l3, g4, v4, sk, g3, sk, v2, w3, b1, w1, l2, w2, r4, r1, l2, r1, v4, r3],
[g1, w1, p3, b1, g2, w3, r2, b3, r1, w3, v4, v3, l2, l2, v2, v1, r4, v2, l1, r4, b2, sk, w3, l1, l2, l1, w1, b3, g2, l2, v3, p1, r2, l3, g3, p2, w1, l1, w2, v4, v3],
[v1, g3, w2, b1, l3, v3, l2, g4, l2, b2, r4, g4, b3, g2, g2, p1, l2, r4, g1, g1, l3, r4, g4, p3, b2, v4, g4, p2, l1, l1, p2, l3, b3, b2, w1, l2, r1, r2, b1, w1, g4],
[v1, g3, g1, b3, p3, b1, w3, v2, b2, p1, g1, v2, l2, v2, v3, v4, r1, p1, l1, r1, v4, v4, p1, g3, r2, r1, w2, p1, v4, r2, l2, sk, w3, b2, w1, sk, b3, b3, r1, w2, r4],
[p1, p1, b3, sk, l2, v2, g4, l1, p3, l2, w1, p3, r3, l3, b3, l2, b3, r2, w1, p3, r1, l2, r4, b3, g1, b1, l2, b2, l1, sk, v3, v3, b3, g4, r3, v3, b1, l3, l2, v3, p3],
[g3, v2, g2, v4, g4, p2, w2, r2, g1, w2, r1, g3, v1, w3, v1, g2, r3, p3, w3, p2, v3, g2, b3, l1, r1, l1, w3, g4, b3, l1, r4, l3, p2, l2, r1, p2, g2, r2, p2, w2, l1],
[b3, g3, r4, b1, l1, l2, g4, g1, v1, r2, w1, v1, v4, sk, l3, r2, r3, p2, w2, v3, g4, l2, r1, p1, g4, w3, l2, l1, w1, v1, g3, r4, l3, l2, l3, v4, r3, w3, v3, g4, pp],
[b2, v4, b1, r2, g2, v2, p1, r4, g4, l2, l2, r3, v3, l3, v4, w2, b3, l3, b2, w3, p3, l2, v1, r1, b3, g4, l2, g2, r2, b2, l2, p1, p3, v3, w2, p3, l3, r2, b2, l2, v4],
[b2, v4, p3, w3, r2, sk, v4, l1, l1, g1, v2, b3, v1, l2, v1, g4, w1, l2, g4, v3, g1, g3, b2, g4, p2, v3, sk, b1, w2, w2, p1, v2, g2, r1, v2, l2, r4, v1, r4, b1, g2],
[sk, l1, v3, l3, g3, l2, g3, w2, g2, r3, v1, l3, v3, g1, g1, v4, sk, p2, p3, l1, g1, r4, l3, r3, w3, w2, l1, v3, w1, g3, v3, p1, g4, r4, r2, l3, p3, p1, b2, l2, w3],
[v1, b3, g1, p1, w1, l3, l2, l3, g2, v4, v1, p1, r3, v2, r3, v3, r1, v1, r4, g2, w1, v2, p1, l2, v4, v2, b2, l2, v1, g4, v2, r4, r2, l1, p1, w1, v4, l2, w3, l1, v3],
[l2, b1, v4, b2, r1, l2, l1, w1, v4, g4, b3, b3, l3, p3, g4, p1, g1, r3, l1, v4, l3, r4, g2, l1, g4, l2, v4, r4, w2, b3, g2, l2, l1, g3, g1, l2, g1, g2, v3, v2, g1],
[p3, w3, r4, p1, l2, b3, l2, g1, p1, v2, r4, r2, v2, g2, sk, p2, w1, p3, l3, g4, b1, g2, r3, l3, p1, l2, l2, l3, l3, g3, v4, r2, g1, r3, g2, p2, w3, w3, w3, r2, r3],
[l1, w1, r3, v1, r1, v2, b1, b2, g3, r1, b1, g1, l3, g3, l1, b3, r4, l2, g1, r3, b3, g2, v2, b1, v3, l2, w2, l2, l2, p2, l2, w2, l3, r3, r3, p3, r3, v1, l2, v1, p1],
],
"elevation": [
["", e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, "", e1, "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1],
[e1, e1, e1, "", e1, e1, e1, e1, "", e1, e1, e1, e1, "", e1, "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, ""],
[e1, "", e1, e1, e1, e1, e1, "", "", e1, e1, e1, "", e1, e1, "", e1, e1, "", e1, "", e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1],
[e1, e1, "", e1, e1, e1, "", e1, e1, "", e1, e1, "", e1, e1, "", "", e1, "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1],
["", e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, "", e1, "", e1, e1, "", e1, e1, e1, "", e1, e1, "", e1, e1, e1, e1, e1],
[e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, "", e1, e1, "", e1, "", e1, e1, "", "", "", e1, "", e1, e1, e1, e1, "", "", e1, e1, "", e1, "", e1, ""],
["", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, "", e1, e1, "", "", e1, e1, e1, "", e1, e1, e1, "", e1, e1, e1, e1, "", e1, e1, e1, "", "", e1, "", e1, ""],
[e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, ""],
[e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, "", e1, "", e1, e1, e1, e1, e1, "", e1, "", "", "", e1, "", "", e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1],
[e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, "", e1, e1, e1, "", e1, e1, e1, "", e1, e1, e1, e1, e1, "", e1, e1, "", "", e1, e1, e1],
["", e1, "", e1, e1, "", e1, e1, e1, e1, e1, "", "", e1, e1, e1, "", "", e1, "", e1, "", "", e1, e1, e1, e1, "", e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1],
["", e1, "", e1, e1, "", e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, "", e1, "", "", e1, e1, e1, e1, e1, "", e1, e1, "", e1, "", "", e1, e1, e1, e1, "", e1, e1],
[e1, e1, "", e1, "", "", e1, "", e1, "", "", "", "", e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, ""],
[e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, "", "", e1, "", "", e1, e1, "", "", "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, "", e1],
[e1, "", e1, e1, "", e1, e1, "", e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", e1, "", e1, e1, e1, e1, "", e1, e1, "", "", e1, "", "", e1, e1, e1, "", "", e1, e1],
[e1, e1, "", e1, "", e1, e1, "", "", e1, e1, e1, e1, "", e1, e1, e1, e1, "", e1, e1, e1, "", e1, e1, e1, e1, "", e1, e1, "", e1, "", "", "", e1, e1, "", e1, e1, e1],
["", "", e1, e1, "", e1, "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", "", "", e1, "", e1, e1, e1, e1, e1, e1],
[e1, e1, e1, "", "", e1, "", "", e1, e1, e1, "", "", e1, e1, e1, e1, e1, "", e1, "", e1, e1, e1, "", e1, e1, "", e1, "", e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1],
[e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", "", e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1],
[e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", "", e1, e1, "", "", e1, e1, e1, e1, e1, e1, "", e1, e1, e1, "", e1, e1, "", "", "", e1, e1, "", e1, "", "", e1],
[e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, "", "", "", e1, e1, e1, "", "", "", e1],
[e1, e1, e1, "", e1, e1, "", e1, "", e1, "", e1, "", "", e1, e1, "", e1, e1, e1, e1, e1, "", "", e1, "", e1, e1, e1, "", "", e1, e1, e1, "", e1, e1, e1, "", e1, e1],
[e1, e1, e1, "", e1, "", "", e1, "", e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, "", e1, e1, "", e1, e1, "", e1],
[e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, "", e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, ""],
["", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, "", e1, "", e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1],
[e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, "", "", "", "", e1, e1, "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", e1, e1, ""],
[e1, e1, e1, e1, e1, e1, "", e1, "", "", e1, e1, "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, "", e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1],
[e1, e1, "", e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, "", e1, e1, "", "", e1, e1, e1, e1, e1],
[e1, "", e1, e1, e1, e1, e1, "", e1, e1, e1, "", e1, "", "", "", e1, e1, "", "", e1, e1, "", "", e1, e1, "", "", e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, ""],
[e1, "", "", e1, "", e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", "", e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1],
["", "", e1, e1, e1, e1, "", e1, "", e1, e1, "", e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, ""],
["", e1, "", e1, "", "", e1, e1, "", e1, e1, "", e1, e1, e1, "", e1, "", e1, "", e1, "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", e1, e1, "", "", e1, "", e1, e1],
[e1, "", e1, e1, e1, e1, "", "", e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, "", e1, e1, "", "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1, e1, e1, "", e1],
[e1, e1, e1, e1, "", e1, "", e1, "", e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", e1, "", e1, e1, e1, "", "", e1, e1, "", e1, e1, e1, e1, e1],
[e1, e1, "", e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, "", e1, e1, "", e1, "", "", e1, "", "", e1, e1, e1, e1, e1, "", e1, "", e1, e1, e1, e1, e1, e1, e1, ""],
[e1, e1, e1, e1, "", e1, "", e1, "", e1, e1, e1, e1, "", "", e1, e1, "", "", e1, "", e1, e1, e1, e1, e1, e1, e1, e1, "", e1, "", "", e1, e1, e1, "", "", e1, e1, e1],
[e1, e1, "", "", e1, e1, e1, e1, "", e1, e1, "", e1, e1, e1, e1, e1, e1, e1, "", e1, e1, "", e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, "", e1, e1, e1, e1, e1, e1],
[e1, e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, "", e1, "", "", e1, e1, e1, e1, e1, "", e1, "", e1, e1, e1, e1, e1, "", e1, e1, "", "", e1, "", "", e1, e1, ""],
["", e1, e1, "", e1, e1, e1, "", "", e1, e1, e1, e1, "", e1, "", e1, "", e1, "", e1, "", e1, e1, "", e1, e1, e1, e1, "", e1, e1, "", e1, "", "", e1, e1, e1, e1, e1],
[e1, e1, e1, e1, e1, e1, e1, e1, "", e1, e1, "", e1, "", e1, e1, e1, e1, "", e1, e1, "", e1, e1, e1, e1, e1, e1, e1, "", e1, e1, e1, e1, e1, "", e1, e1, e1, e1, ""],
]
}
}
|
g1 = '#5d9e6d'
g2 = '#549464'
g3 = '#498758'
g4 = '#3d784b'
b1 = '#5f7ab8'
b2 = '#5a70a3'
b3 = '#4d67a3'
r4 = '#262626'
w1 = '#f0f0f0'
w2 = '#d9d9d9'
w3 = '#e6e6e6'
r1 = '#707070'
r2 = '#595959'
r3 = '#404040'
r4 = '#262626'
l1 = '#d95757'
l2 = '#d99457'
l3 = '#d97857'
v1 = '#664f47'
v2 = '#4a3d39'
v3 = '#382f2c'
v4 = '#332c38'
p1 = '#2e5925'
p2 = '#2c4f24'
p3 = '#284722'
s1 = '#bebf7c'
s2 = '#bfb37c'
s3 = '#ccc481'
cc = ('#456e41',)
pp = ['rgb(165, 42, 42, 0.5)', 'pink', 'purple']
sk = '#82d2e0'
i1 = '#c3e0dd'
i2 = '#8fdaeb'
i3 = '#71bfd1'
o1 = '#7996d9'
o2 = '#88a1db'
o3 = '#6d8bd1'
pa = '#443f45'
a1 = '#c474d4'
a2 = '#b97ec4'
a3 = '#a66fb0'
bl = '#000000'
zz = 'zz'
bb = 'bb'
ll = 'll'
rr = 'rr'
ii = 'ii'
gg = 'gg'
ss = 'ss'
ww = 'ww'
oo = 'oo'
aa = 'aa'
tb = ['treasure', 'd', 8, s1]
t1 = ['treasure', 'l', 2.75, i1]
t2 = ['treasure', 'd', 2.95, i1]
t3 = ['treasure', 'r', 3.15, i1]
t4 = ['treasure', 'u', 3.32, i1]
t5 = ['treasure', 'l', 3.62, i1]
e0 = 6
e1 = 7
e2 = 8
e3 = 9
e4 = 10
e5 = 11
maps = {'main': {'players': {}, 'background': 'darkslategray', 'map': [[r3, r2, r3, r2, r4, r1, r2, r2, r3, r4, r2, r1, r3, r4, r2, r3, r1, r4, r2, r2, r4, r2, r3, r1, r2, r4, r3, r2, r1, r2, r4, r3, r2, r1, r4, r3, r2, r1, r3, r2, r1, r2, r3, r2, r1, r2, r3, r2, r3, r1, r2, r3, r1, r2, r3, r1, r3, r1, r3, r2, r3, r2, r3, r2, r3, r2, r1, r3, w2, w1, w2, w2, w1], [r2, r3, r2, r1, r3, r4, r2, r3, r2, r4, r1, r2, r2, r3, r4, r2, r1, r3, r4, r2, r3, r1, r4, r2, r2, r4, r2, r3, r1, r2, r4, r3, r2, r1, r2, r4, r3, r2, r1, r4, r3, r2, r1, r3, r2, r1, r2, r3, r2, r1, r2, r3, r2, r3, r1, r2, r3, r1, r2, r3, r1, r3, r1, r3, r2, r3, r2, r3, r2, w2, w1, w2, w2], [r4, r2, r3, r4, r3, r2, pp, g3, g4, g4, r3, r1, r2, r3, r2, r4, g4, g2, g3, r4, r1, r2, r2, r4, r3, g4, g3, g4, r1, r2, r3, r4, r1, g4, g2, g3, r2, r1, r3, r4, r2, r3, g3, g4, g2, g3, g4, r1, r2, r3, r2, r4, r1, r4, pp, g4, g3, g4, g3, r3, r2, g3, g4, g4, r1, r3, r4, r1, r3, r4, w2, w1, w2], [r1, r3, r4, g1, g1, g2, g3, g2, g2, g3, g2, g2, g1, g2, g1, g2, g3, g3, g2, g2, g3, g2, g2, g1, g2, g1, g1, g2, g1, g2, g2, g1, g1, g2, g2, g2, g1, g1, g2, g3, g2, g2, g2, g2, g1, g1, g1, g2, g2, g1, g1, g2, g2, g3, g2, g3, g2, g2, g3, g2, g2, g2, g3, g2, g2, g2, g1, g2, g3, r3, w1, w2, w1], [r2, r1, r2, g2, g1, g2, g2, g1, g1, g2, g3, g3, g2, g1, g2, g1, g2, g2, g1, g1, g2, g1, g1, g2, g1, g2, g2, g1, g2, g1, g1, g2, g2, g1, g3, g2, g2, g2, g3, g2, g3, g3, g3, g2, g3, g2, g2, g1, g1, g2, g2, g3, g3, g2, g1, g2, g1, g1, g2, g1, g1, g1, g2, g1, g1, g1, g2, g3, r2, w1, w2, w1, w1], [r3, r4, g2, g1, g2, g2, g1, g2, g1, g1, g2, g2, g1, g2, g1, g2, r2, r3, r1, g4, g3, g2, g2, g1, g2, g1, g1, g2, g1, g2, s2, s3, s2, g2, g2, g2, g1, g1, g2, g1, g2, g2, g3, g1, g2, g1, g1, g2, g2, g3, r3, r2, r1, r4, g3, g3, g2, g1, g2, g2, g2, g2, g1, g2, g2, r2, r3, r2, r1, w2, w1, w2, w1], [r3, r2, g3, g2, g2, g1, g2, g1, g2, g2, g3, g2, g2, g3, g4, r4, r3, r1, r2, r3, g4, g3, g3, g2, g1, g2, g2, g1, g2, s1, b3, b2, b3, s1, g1, g1, g1, g2, g3, g2, g3, g2, g1, g2, g3, g2, g2, g2, g3, r2, r1, r3, r4, r3, r2, r1, g2, g1, g1, g2, g1, g1, g2, r2, r3, r1, w1, r3, w2, w1, w1, w2, w2], [r2, r3, g3, g2, g1, g2, g1, g2, g1, g1, g2, g3, g3, g4, g4, r3, r4, r3, r4, r2, r1, g3, g2, g3, g2, g1, g1, g2, g1, b1, b2, b1, b2, b3, g2, g2, g2, g3, g2, g3, g2, g3, g2, g3, g2, g3, g2, g1, g2, g3, r3, r4, r2, r1, r3, g3, g4, g2, g2, g1, g2, r4, r2, r3, r2, w1, w2, w1, r4, w2, w2, w2, w1], [r3, r4, g2, g1, g2, g1, g2, g3, g2, g2, g3, g2, g2, g3, g3, g4, r2, r4, r2, r1, g3, g2, g2, g2, g1, g2, g2, g1, s1, b2, b3, b2, b1, b2, s2, g2, g3, g2, g1, g2, g1, g2, g1, g2, g1, g2, g1, g2, g1, g2, g3, g3, r3, r2, g3, g2, g3, g2, g1, g2, r3, r2, r3, r2, w2, w2, r1, r4, r3, r2, w1, w1, w2], [r2, r3, r2, g2, g2, g3, r3, r2, r3, g1, g2, g1, g1, g2, g2, g3, g2, g3, g4, g3, g2, g1, g1, g1, g2, g1, g1, g2, g2, s1, b1, b3, b2, s1, g2, g3, g2, g3, g2, g1, g2, g1, g2, g1, g2, g1, g2, g1, g2, g1, g2, g2, g3, g4, g2, g3, g2, r3, r2, r3, r2, r1, w1, w1, r3, r2, r3, p1, p3, pp, w2, w1, w2], [r3, r4, r1, g2, g3, r3, r2, r3, r4, r2, g2, g2, g2, g3, g3, g2, g1, g2, g3, g2, g1, g2, g2, g2, g1, g2, g2, g3, g2, g2, s2, s2, g1, g2, g3, g2, g1, g2, g1, g2, g1, g2, g1, g2, g1, g2, g3, g2, g1, g2, g1, g3, g2, g3, g4, r2, r3, r4, r3, r4, r3, r2, r3, r2, r4, r1, p1, p3, p1, p3, w2, w2, w1], [r2, r1, r3, g1, g2, r2, r3, r1, r2, r1, r2, r3, g3, g2, g2, g3, g2, g1, g2, g1, g2, g1, g1, g1, g2, g3, g3, g2, g1, g2, g3, g2, g2, g3, g2, g1, g2, g1, g2, g1, g2, g3, g3, g2, g2, g1, g2, g1, g2, g1, g2, g4, g3, g2, g3, g3, p1, p3, p1, p1, p3, p1, p3, p3, p1, p1, p3, p2, p3, p1, w1, w2, w1], [r1, r2, r2, g2, g3, g3, r4, r3, r1, r2, r3, g4, g2, g1, g1, g2, g1, g2, g1, g2, g1, g2, g2, g3, g3, g2, g2, g1, g2, g3, g2, g1, g1, g2, g1, g2, g1, g2, g3, g2, g3, g2, g2, g1, g1, g2, g3, g2, g1, g2, g2, g3, g2, g2, g3, g2, g4, p2, p2, p2, p1, p2, p2, p1, p3, p1, p1, p3, p1, p3, w1, w2, w2], [r2, r4, g2, g1, g1, g2, g3, g4, g3, g3, g2, g2, g1, g2, g1, g2, g3, s3, g2, g2, s1, s2, g2, g1, g2, g1, g1, g2, g1, g2, g2, g1, g1, g2, g2, g2, g1, g1, g2, g3, g2, g2, g2, g2, g1, g1, g1, g2, g2, g1, g1, g2, g2, g3, g2, g3, p2, p1, p3, p3, p2, p2, p3, p2, p2, p2, p2, p2, p3, p1, w2, w1, w2], [r2, r3, g3, g2, g2, g3, g2, g3, g2, g2, g1, g1, g2, g3, g2, g3, s2, b3, b2, b1, b3, b2, s3, g2, g3, g2, g2, g3, g2, g3, g3, g2, g2, g1, g1, g3, g2, g2, g3, g2, g1, g1, g1, s3, g2, g2, g2, g2, g3, g2, g2, g3, g3, g2, g3, g4, r2, r3, r1, r4, r3, r1, r2, r3, r2, r4, p1, p3, p2, w1, w2, w1, w2], [r1, r2, r4, g2, g1, g2, g2, g1, g1, g2, g3, g3, g2, g1, g2, g1, b2, b1, b3, b2, b2, b3, b2, b3, g2, g3, g2, g2, g1, g2, g2, g3, g3, g2, g2, g2, g3, g3, g2, g1, g2, s2, b2, b1, b2, s2, g3, g3, g2, g3, g2, g1, g2, g1, g2, r3, r4, r2, r3, r3, w1, w1, r3, w1, r3, r2, r3, p1, w1, w2, w2, w2, w1], [r2, r1, r3, g1, g2, g1, g1, g2, g2, g1, g2, g2, g1, g2, g1, s3, b1, b2, b1, b2, b3, b2, b3, b2, s3, g2, g1, g1, g2, g1, g1, g2, g2, g3, g1, g1, g2, g2, g1, g2, s2, b3, b2, b3, r1, r2, r1, g2, g1, g2, g1, g2, g1, g2, g3, g2, r2, r3, r4, r3, r1, w2, w2, r3, r4, w2, r2, w1, w2, w1, w1, w2, w2], [r3, r2, r1, g1, g1, g2, g2, g1, g2, g3, g3, g2, g2, g3, g2, b3, b2, b3, b2, b1, b2, b1, b2, g1, g2, g3, g2, g2, g3, g2, g2, g1, g1, g2, g2, g3, g2, g1, g2, g1, s1, b1, r3, r4, r2, r3, r2, r3, g2, g1, g2, g3, g2, g1, g2, g3, g4, g3, r3, r2, r4, r3, r2, r1, r3, r4, w1, r3, w1, w1, w2, w1, w2], [r4, r2, r3, g1, g1, g1, g1, g2, g3, g2, g2, g1, g1, g2, s1, b2, b3, b2, b1, b2, b3, b2, s2, g2, g1, g2, g1, g1, g2, g1, g1, g2, g2, g1, g1, g2, g1, g2, g1, g2, g1, b2, b3, b1, r3, r4, r3, r4, g1, g2, g3, g3, g2, g2, g1, g2, g1, g2, g3, g4, g3, g4, r4, r3, r2, r1, r3, r4, r2, w2, w2, w1, w2], [r3, r4, r2, g2, g2, g1, g2, g3, g2, g3, g3, g2, g2, g3, g2, s1, b2, b3, b2, b1, b2, s1, g2, g3, g2, g3, g2, g2, g3, g2, g2, g1, g2, g2, g3, g2, g2, g3, g2, g3, s3, s1, b1, b2, r1, r2, b1, s1, g2, g1, g2, g2, g3, g3, g2, g3, g2, g3, g2, g3, g2, g3, g3, g4, g2, g3, r2, r3, r4, r2, w1, w1, w1], [r3, r2, r3, g1, g1, g2, g3, g2, g2, g3, g2, g2, g1, g2, g1, g2, g3, g3, s2, s3, g3, g2, g2, g1, g2, g2, g2, g2, g3, g2, g2, g1, g1, g2, g2, g2, g1, g1, g2, g3, g2, g2, s2, g2, g1, s3, s2, g2, g2, g1, g1, g2, g2, g3, g2, g3, g2, g2, g3, g2, g2, g2, g3, g2, g2, g2, g1, g2, g3, r3, r2, w2, w1], [r2, r4, r1, g2, g2, g3, g2, v1, v2, g3, g3, g4, g3, g2, v2, v3, v4, g2, g3, g2, g1, g2, g3, g4, r1, r4, r2, r3, g4, g3, g1, g2, g2, g3, g2, g1, g3, g2, g1, g2, g1, g2, g2, g1, g2, g2, g1, g2, g3, g2, g3, g2, g1, g2, g3, g2, g1, g3, g2, g1, g2, g1, g2, g3, g3, g2, g2, g3, r4, r1, w2, w2, w1], [v4, r3, g4, g3, g4, v3, v4, v2, v1, v3, g4, g3, g4, v4, v2, v3, v2, v1, v2, g1, g2, g3, g4, g3, g4, r3, r2, r3, r1, g4, g3, g1, g2, g1, g2, g3, g2, g3, g4, g3, g4, g3, g2, g1, g3, g2, g2, g3, g2, g3, g2, g1, g2, g1, g2, g1, g2, g2, g3, g2, g3, g2, g3, g2, g2, r3, r2, r4, r1, w2, w1, w1, w2], [v1, v2, v3, v4, v2, v1, l1, v3, v2, v1, p1, g4, p2, v3, v1, l1, v3, v2, v4, v3, v2, g3, g3, g2, g1, g2, r1, r2, r4, g3, g2, g2, g3, g2, g1, g2, g3, g4, r4, r1, r3, r2, r1, g3, g2, g2, g1, g2, g3, g2, g1, g2, g1, g2, g1, g1, g1, g2, g2, g3, g4, p1, r3, r2, r4, r1, r2, w2, w2, w1, w2, w1, w1], [v2, v1, v2, v2, v3, l2, l3, l1, v4, v2, p3, p2, p1, v1, v4, l3, l2, l1, v3, v2, v4, v1, v2, g4, g3, g2, g2, g2, g3, g2, g1, g1, g2, g3, g2, g3, r2, r3, r1, r4, r2, r1, r3, r2, g4, g3, g2, g3, g2, g1, g2, g3, g2, g1, g2, g2, g3, g1, g3, g4, p2, p3, p1, r4, r3, r2, w1, w2, w1, w2, w2, w1, w2], [v1, v2, v4, v3, v1, l3, l1, l2, l3, v4, v3, p3, p1, p2, v2, v3, l1, l3, v1, v3, v1, v4, v3, v2, g4, g3, g2, g1, g2, g1, g2, g1, g1, g2, g3, g4, r3, r4, r1, r2, r3, r2, r1, r4, r2, g3, g1, g2, g3, g2, g3, g2, g1, g2, g3, g1, g2, g3, r4, p3, p1, p2, p3, p2, r3, r1, r2, w1, w2, w1, w2, w2, w1], [v2, v3, v2, v1, v2, v3, v4, l3, l1, l2, v2, v4, p2, p3, p1, v2, v3, v4, p1, p3, p2, v3, v2, v1, v4, v3, g3, g2, g1, g1, s1, s2, g1, g2, g4, r1, r2, r4, r3, r1, r4, r2, r3, r1, g4, g2, g2, g3, g2, g1, g2, g1, g2, g3, g2, g2, r1, r2, r3, r2, p2, p3, p1, p2, p2, r2, w2, w2, w1, w1, w1, w2, w1], [v4, v3, v1, v2, v3, v2, l2, l1, l2, v3, v4, p1, p3, p2, v2, v4, v1, p2, p3, p1, p3, p1, p2, v2, v3, g3, g2, g1, g2, s3, s2, s1, g2, g2, g3, r3, r2, r4, r1, r2, r3, r1, r4, r2, g3, g1, g1, g2, g3, g2, g2, g2, g3, g2, g3, r3, r2, r3, r4, r1, r2, p1, p2, p3, p2, r4, w1, w1, w2, w1, w2, w2, w1], [v3, v2, v1, v3, v1, l3, l1, l2, v4, v2, p2, p3, p2, p1, p2, p3, p2, p1, p2, p3, p2, p2, p3, p2, p1, g4, g3, g2, g1, s3, s1, s2, g1, g2, g1, g4, r3, r2, r4, r1, r3, r2, g3, g2, g1, g2, g2, g1, g2, g3, g3, g2, g4, r4, r2, r3, r2, r1, r4, r2, r2, p2, p3, p1, p3, r3, r4, w2, w1, w2, w1, w1, w2], [v2, v3, v2, l3, l2, l3, l1, v2, v3, p1, p3, p2, p1, p2, p3, p2, p1, p3, v4, v2, v3, p3, p2, p1, p2, g4, g2, g1, s2, s1, s3, s1, s2, g1, g2, g3, g4, r1, r2, r4, g4, g3, g2, g1, g2, g1, g1, g2, g3, g2, g2, g3, r2, r3, r2, r4, b1, b2, r3, r3, p1, p3, p2, p1, r3, r1, w1, w2, w2, w1, w2, w2, w2], [v1, v2, l2, l1, l3, l2, l2, v4, p2, p3, p1, p3, p1, v1, p1, p2, p3, p1, v3, v1, v2, v2, p1, p2, p3, p2, g4, g2, s1, s2, s3, s2, s3, s2, g2, g1, g2, g3, g2, g1, g2, g3, g2, g1, g1, g2, g2, g3, g2, g1, g2, r4, r3, r1, b3, b2, b3, r1, r2, p3, p2, p1, p1, r1, r4, w2, w1, w1, w2, w2, w1, w1, w2], [v4, l3, l1, l2, l1, l3, l1, v3, p1, p2, p3, p2, v4, v2, v3, v1, v2, v3, v1, v3, v2, v3, v1, v2, v1, v3, v4, s3, s2, s1, s2, s3, s2, s1, g1, g2, g1, g2, g3, g2, g1, g2, g3, g2, g1, g2, g1, g2, g1, g2, g1, r3, r2, b2, b1, b1, b2, r4, p1, p2, p3, p2, r4, r2, w1, w1, w2, w2, w2, w1, w1, w2, w1], [v2, l2, l3, l1, l2, l1, l3, v4, v2, p1, p2, v3, v1, v2, v1, v2, v3, v1, v3, l2, l3, l2, v4, v1, v2, v3, s1, s2, s1, s3, s2, s1, s2, s3, g1, g2, g3, g1, g2, g3, g2, g1, g1, s3, s1, s2, s1, g1, g2, g3, g4, r2, r4, b1, b3, b2, r3, r2, p3, p1, p2, r2, r3, w2, w2, w1, w1, w2, w1, w2, w2, w1, w2], [v4, v3, l2, v3, l2, l3, l2, l1, v4, v2, v1, v2, v3, v1, v4, v2, l2, l3, l1, l1, l2, l3, l2, v4, v3, s3, s2, s3, cc, s2, s3, s2, s3, s2, s3, g1, g1, g2, g3, g2, g1, s2, s1, s2, s2, s3, s1, s2, s3, s1, r2, r3, b2, b3, b2, r4, r1, r4, r3, p2, p3, pp, w1, w1, w2, w2, w2, w1, w2, w2, w1, w1, w2], [v3, v2, v3, v4, v1, l1, l3, l2, l2, l1, v3, v1, l3, l2, l1, l3, l1, l2, l3, l2, l1, l1, v1, v2, v2, s2, s1, s2, s1, s3, s2, s1, s2, s1, s2, g1, g2, g1, g2, g1, s2, s3, s2, s1, s3, s1, s2, s3, s2, r3, r4, b3, b2, b1, b3, r3, r2, r1, r2, r3, r2, r3, w2, w2, w1, w1, w2, w2, w1, w2, w1, w1, w2], [v2, v3, v4, v2, v3, v4, l1, l1, l3, l2, l1, l2, l2, l1, l2, l2, l3, l1, l2, v4, v1, v2, v3, s2, s1, s3, s2, s3, s2, s2, s3, s2, s3, s2, s3, g1, g1, g2, g1, s2, s1, s2, s3, s2, s1, s2, s3, b2, b2, b3, b1, b2, b1, b2, b1, b2, r1, r4, r3, r2, r4, w1, w1, w2, w2, w1, w2, w1, w2, w1, w2, w1, w1], [v1, v4, v2, v1, v4, v3, v2, v1, l2, l1, l2, l3, l1, l2, l3, v4, v1, v3, v2, v3, v4, s3, s2, s1, s2, s1, s3, s2, s3, s1, cc, s1, s2, s3, s2, s1, g2, g1, s2, s1, s3, s1, s2, b3, b2, b1, b3, b3, b1, b2, b3, b2, b1, b3, b2, b3, r4, r3, r2, r1, w2, w2, w1, w2, w1, w1, w2, w2, w2, w1, w1, w1, w2], [v2, v3, v4, v3, v1, v4, v2, v2, v1, v4, l3, l1, l3, v3, v1, v3, v2, v4, v1, s1, s2, s3, s2, s3, s2, s1, s1, s2, s1, s3, s1, s3, s1, s2, s1, s3, s2, s3, s1, s2, s3, b2, b2, b1, b3, b2, b1, b2, b2, b3, b1, b2, b1, b3, s2, b2, b2, r2, r1, r3, r2, w1, w2, w1, w1, w2, w1, w1, w2, w1, w2, w2, w1], [v3, v4, v2, v4, v2, v1, v3, v2, v4, v1, v3, v2, v1, v4, v2, v1, s2, s3, s1, s3, s1, s2, cc, s1, s3, s2, cc, s3, s1, s2, s2, s1, s2, s3, s2, s2, s1, b2, b1, b3, b2, b3, b1, s2, s1, s2, b2, b3, b1, b2, b2, b3, b2, s1, g2, s3, b1, b3, b2, r4, r3, r2, r3, r1, r4, r2, r4, w2, w1, w2, w1, w1, w2], [v1, v3, v4, v3, v1, v2, v2, v1, v3, v2, v2, v1, v4, v3, v1, s3, s1, s2, cc, s3, s2, s1, s2, s1, b1, b3, s2, s1, s3, s1, s2, s1, s3, s2, s1, s3, b3, b1, b2, b1, b3, b2, s1, s3, g2, s1, s1, b2, b1, b3, b2, b1, b2, s2, g3, s1, s3, b2, b1, b3, b2, r4, r1, r3, r2, r2, r3, r1, r2, r3, w2, w2, w1], [v1, v2, v4, v2, v4, v3, v3, v2, v4, v3, v1, s3, s1, s2, s1, s3, s2, s2, s1, s3, s1, s2, b2, b3, b2, b1, b2, s3, s2, s1, s3, s2, s1, s2, s3, s2, b2, b2, b1, b2, b1, s2, s2, g2, r2, g1, s2, b2, b3, b2, b1, b3, b2, s1, r1, g4, s3, b1, b3, b1, b3, b1, b2, b1, b2, b2, r4, r3, r1, r2, r3, r1, w2], [v3, v2, v1, v3, v2, v1, s3, s2, s1, s2, s3, s2, s2, cc, s1, s3, s2, s3, s1, s2, s3, s1, b1, b2, b1, b2, b3, s2, s1, s3, s2, cc, s2, s3, s1, b2, b1, b3, b3, b1, b2, s3, g1, r1, g1, r2, s3, b3, b1, b2, b3, b2, b1, b3, s2, s1, s2, b1, b3, b1, b1, b3, b3, b2, b3, b1, b2, b1, b3, b1, r2, r4, r2], [v2, v3, v4, v4, s1, s2, cc, s3, s2, s1, cc, s3, s2, s1, s3, s2, cc, s2, s2, s3, cc, s3, s1, s3, b2, b3, s3, s1, s2, cc, s1, s2, s3, s2, s1, b3, b2, b2, b1, b2, b3, b2, s2, s3, g1, s1, s3, b2, b1, b3, b2, b1, b2, b3, b2, b3, b1, b2, b1, b3, b2, b2, s1, s2, s3, b2, b1, b3, b3, b2, b2, r3, r1], [v3, v4, pp, s2, s2, s3, s1, s1, s2, s3, s3, s2, s3, s1, s2, s1, s3, s2, s1, s3, s3, s2, s2, s1, s3, s1, s1, s2, s1, s2, s3, s1, s2, s3, s2, b2, b1, b3, b2, b1, b2, b3, b2, b1, s1, s2, b3, b3, b2, b2, b1, b2, b3, b2, b1, b2, b3, b1, b3, b2, b2, s3, g1, r2, g3, s2, b2, b3, b1, b2, b3, b1, b2], [v2, v3, v2, r2, r4, r1, r2, s2, s3, s1, s2, r1, r3, r4, s1, s2, s3, r4, r2, r2, r4, r2, s1, s3, s2, r4, r3, r2, r1, r2, s3, s2, s1, s3, s2, b3, b3, b1, b2, b1, b3, b1, b2, b3, b2, b3, b1, b2, b1, b3, b2, b3, b2, b1, b3, b2, b1, b2, b3, b1, b3, s2, g3, g4, r1, s1, b2, b1, b2, b3, b2, b2, b3], [v3, v1, v3, v4, r3, r4, r2, r3, r2, r4, r1, r2, r2, r3, r4, r2, r1, r3, r4, r2, r3, r1, r4, r2, r2, r4, r2, r3, r1, r2, r4, r3, r2, r1, r2, r4, b1, b2, b3, b1, b2, b2, b3, b2, b2, b2, b3, b1, b3, b2, b1, b3, b2, b3, b2, b1, b3, b2, b1, b2, b3, b1, s1, s3, s2, b2, b1, b3, b2, b1, b2, b3, b1], [v2, v3, v1, v3, v4, r3, r4, r2, r2, r3, r4, r2, r1, r3, r4, r2, r3, r1, r4, r2, r2, r4, r2, r3, r1, r3, r2, r4, r1, r2, r2, r4, r3, r2, r1, r2, r4, b1, b2, b2, b3, b2, b2, b2, b3, b1, b3, b2, b3, b1, b2, b1, b3, b2, b3, b2, b1, b3, b2, b1, b2, b3, b1, b3, b2, b3, b2, b1, b3, b2, b1, b2, b1]], 'elevation': [['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', e1, e1, e1, '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', e1, e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', ''], ['', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', ''], ['', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', ''], ['', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', ''], ['', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', e1, e1, e1, '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', e4, e4, e4, '', '', ''], ['', '', '', e1, e1, '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', e4, e4, e4, e4, '', '', ''], ['', '', '', e1, e1, '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e2, e3, e3, e3, e4, e4, e4, e4, e4, e4, '', '', ''], ['', '', '', e1, e1, e1, '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e3, e3, e3, e3, e4, e4, e4, e4, e4, e4, '', '', ''], ['', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e2, e3, e3, e3, e4, e4, e4, e4, e4, e4, '', '', ''], ['', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, '', '', '', '', '', '', '', '', '', '', e4, e4, e4, '', '', '', ''], ['', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', e4, '', '', '', '', ''], ['', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e2, e2, '', '', '', '', '', '', ''], ['', '', '', e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e2, e2, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, '', '', '', ''], ['', '', '', e1, e1, e1, e1, '', '', e2, e2, e2, e2, e2, '', '', '', e1, e1, e1, e1, e1, e1, e1, '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, '', '', '', '', ''], ['', '', e1, e1, e1, '', '', '', '', '', e2, e2, e2, '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e1, e2, e2, e2, e2, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e3, e2, e3, '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e3, '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e3, e3, e3, '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, e2, e2, e3, e3, e3, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', e3, e3, e3, '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, '', e3, e3, e3, e3, e3, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', e4, e3, e3, '', '', '', e3, e3, e3, '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, '', '', '', '', e3, e3, e3, e4, e3, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', e4, e4, e4, '', '', '', e3, e3, e3, e3, e2, e2, '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', e3, e3, e3, e3, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e4, e4, e4, e4, e4, e3, e3, e3, e3, e3, e2, e2, e2, e2, e2, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', e4, e3, e3, e3, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e4, e4, e4, e4, e4, e4, e4, e3, e3, '', '', '', e2, e2, e2, e2, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', e4, e4, e4, e3, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e4, e4, e4, e4, e4, '', e4, e4, e3, e3, '', '', '', '', e2, e2, e2, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', e4, e4, e4, e4, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e4, e4, e4, e4, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', e4, e4, e4, e4, '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e4, e4, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', e4, e4, e4, '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e0, e0, e0, '', e0, e0, e0, e0, e1, e1, e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', '', '', '', '', e4, e4, e4, '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e0, e0, e0, e0, e0, e0, e0, e0, e0, '', e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e1, e0, e0, e0, e0, e0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e0, e0, e0, e0, e0, e0, '', e0, e0, e0, '', e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e0, e0, e0, '', e0, e0, e0, e0, e0, '', '', e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', e0, e0, e0, e0, e0, e0, e0, '', e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', e0, e0, e0, e0, '', e0, e0, e0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', e0, e0, '', e0, e0, e0, '', e0, e0, e0, e0, e0, '', e0, e0, e0, '', e0, e0, e0, '', '', e0, e0, e0, '', e0, e0, e0, e0, e0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e0, e0, e0, e0, '', '', '', e0, e0, e0, '', '', '', '', '', e0, e0, e0, '', '', '', '', '', e0, e0, e0, e0, e0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']]}, 'cloud': {'players': {}, 'background': sk, 'map': [[sk, sk, sk, w1, w2, w1, w3, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, w2, w1, w2, sk, sk, sk], [sk, w2, w3, w2, w1, w1, w2, w3, w2, sk, sk, sk, sk, sk, w2, w3, w1, w2, sk, sk, sk, sk, w2, w3, w1, w2, w3, sk, sk], [sk, w1, w2, w3, w2, w3, w1, w2, w1, w2, w1, sk, sk, w3, w2, w2, w2, w3, w2, sk, sk, sk, w1, w2, w3, w1, w2, w3, sk], [w3, w2, w3, w2, w1, w2, w2, w1, w2, w3, w2, w1, w2, w2, w3, w2, w1, w2, w1, w1, sk, w2, w2, w3, w2, w2, w2, w3, pp], [w2, w2, w1, w2, w3, w3, w2, w1, w1, w2, w3, w2, w3, w3, w2, w3, w2, w1, w2, w3, w2, w1, w1, w2, w3, w1, w1, w2, w1], [w1, w3, w3, w2, w1, w2, w1, w2, w3, w2, w3, w1, w2, w1, w2, w2, w1, w2, w1, w2, w1, sk, sk, w1, w2, w2, w2, w3, w2], [w2, w1, w2, w3, w2, w3, w1, w2, w2, w1, w2, w3, w3, w2, w1, w1, w2, w3, w2, w1, w3, sk, sk, sk, sk, w1, w3, w2, sk], [sk, w3, w1, w2, w3, w2, w2, w1, w1, w2, w1, w2, w2, w1, w2, w3, w3, w2, w1, w1, sk, sk, sk, sk, sk, sk, sk, sk, sk], [sk, sk, w2, w3, w2, w1, w2, w3, sk, sk, w2, w3, w1, w2, w1, w2, w1, w2, w3, sk, sk, w3, w2, sk, sk, sk, sk, sk, sk], [sk, sk, sk, sk, w1, w2, sk, sk, sk, sk, w2, w1, w2, w2, w3, w2, w2, w1, sk, sk, sk, w2, w1, w3, sk, w2, w3, sk, sk], [sk, sk, sk, sk, sk, sk, sk, w3, w2, w1, w3, w2, sk, w3, w2, w1, sk, sk, sk, sk, sk, sk, w2, w2, sk, w2, w2, w1, sk], [sk, w3, w1, sk, sk, sk, w2, w2, w1, w2, w2, w1, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, w1, w3, sk, sk], [w2, w1, w2, w1, sk, sk, w1, w3, w2, w1, w2, w1, w2, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, w1, w2, sk], [w3, w2, w3, sk, sk, w2, w1, w2, w1, w3, w1, w2, w3, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, w1, w2, sk, sk, sk, sk], [sk, w1, w2, sk, w3, w2, w2, w1, w2, w1, w2, w1, w1, sk, sk, w2, w3, w2, sk, sk, sk, w3, w2, w2, w3, w1, sk, sk, sk], [sk, sk, sk, sk, w2, w2, w1, w2, w3, w2, w3, w3, w2, w2, w1, w2, w2, w3, w1, sk, w2, w2, w3, w1, w2, w3, w1, sk, sk], [sk, sk, sk, sk, w1, w2, w3, w1, w2, w1, w2, w2, w1, w2, w1, w2, w1, w2, w2, w2, w2, w1, w2, w2, w1, w2, sk, sk, sk], [sk, sk, sk, sk, w2, w3, w2, w2, w1, w2, w1, w1, w2, w3, w2, w3, w2, w3, w2, w3, w1, w2, w1, w2, w1, w2, sk, sk, sk], [sk, sk, sk, w1, w3, w1, w3, w3, w2, w1, w2, w1, w2, w2, w2, w2, w1, w2, w1, sk, sk, w1, w2, w3, pp, sk, sk, sk, sk], [sk, sk, sk, pp, w1, w2, w1, w2, w1, w2, w2, w3, w1, w3, w1, w3, w2, w3, w2, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk], [sk, sk, sk, sk, w3, w1, w2, w2, w2, w1, w1, w2, w2, w1, w2, w3, w1, w1, sk, sk, sk, sk, sk, sk, w1, w2, sk, sk, sk], [sk, w1, sk, sk, sk, w2, w1, w2, w3, w2, w3, w2, w2, w1, sk, sk, sk, sk, sk, sk, sk, sk, sk, w2, w3, w2, w3, sk, sk], [w1, w2, w3, sk, sk, sk, sk, sk, w2, w3, w2, w1, w2, w1, w1, w2, sk, sk, sk, w2, w2, w1, sk, sk, w1, w1, sk, sk, sk], [w2, w1, w2, sk, sk, sk, sk, sk, sk, sk, sk, sk, w3, w2, w1, w3, w2, sk, w2, w3, w1, w2, w3, sk, sk, sk, sk, sk, sk], [w1, w3, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, w3, w2, w1, w2, w3, w1, w1, w3, w1, w2, w2, sk, sk, sk, sk, sk], [sk, sk, sk, sk, sk, w1, w2, sk, sk, sk, sk, sk, sk, w2, w1, w3, w1, w2, w2, w2, w1, w2, w3, w3, sk, sk, sk, sk, sk], [sk, sk, sk, sk, w1, w2, w3, w2, sk, sk, sk, sk, sk, sk, w2, w2, w3, w2, w1, w1, w3, w2, w1, w2, sk, sk, sk, w1, sk], [sk, sk, sk, sk, sk, w1, w2, w3, w1, sk, sk, sk, sk, w2, w1, w1, w2, w3, w2, w1, w3, w1, w2, w1, sk, sk, w1, w2, w1], [sk, sk, sk, sk, sk, sk, sk, w1, sk, sk, sk, sk, w2, w1, w2, w3, sk, w2, w3, w2, w1, w2, w3, sk, sk, sk, w2, w1, w3], [sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, w1, w1, w3, w2, sk, pp, w1, w1, w3, w2, w2, sk, sk, sk, sk, w3, w2], [sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, sk, w2, w1, sk, sk, sk, w2, w1, w1, w3, sk, sk, sk, sk, sk, sk, sk]], 'elevation': [['', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, '', '', ''], ['', e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', e1, e1, e1, e1, e1, '', ''], ['', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, e1, e1, ''], [e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1], [e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1], [e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, e1, e1], [e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', e1, e1, e1, ''], ['', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', e1, e1, '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', e1, e1, '', '', '', ''], ['', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, '', '', '', e1, e1, e1, e1, e1, '', '', ''], ['', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, '', ''], ['', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', ''], ['', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', ''], ['', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, '', '', '', ''], ['', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '']]}, 'volcano': {'players': {}, 'background': v2, 'map': [[v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v2, v4, v2, v1, v1, v2, v3, v1, v1, v3, v2, v1, v4, v4, v3, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v2, v3, v4], [v2, v3, v1, v1, v3, v2, v1, v4, v4, v3, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v3, v4, v2, v2, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v4, v3, v1, v1, v3, v4, v2, v1, v1, v3, v2, v3], [v3, v4, v2, v1, v1, v3, v2, v2, v1, v1, v2, v3, v1, v1, v3, v2, v1, v4, v4, v3, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v4, v2, v1, v1, v1, v3, v2], [v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v2, v4, v2, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v4, v4, v1, v1, v2, v3, v1, v4, l2, l3, v3, v1, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v1, v3], [v2, v3, v1, v1, v3, v2, v1, v4, v4, v3, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v2, v3, v1, v1, v3, v2, v1, v4, l2, l3, l2, l3, l2, v2, v4, v3, v2, v4, v2, v1, v3, v4, v4, v2, v1, v4, v3, v4], [v3, v4, v2, v3, v1, v3, v2, v2, v4, v1, v3, v3, v2, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v4, v2, v1, v1, v2, v4, l1, l1, l2, l3, l1, l1, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v2, v3], [v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v4, v4, v2, v1, v1, p3, p2, p1, p2, v2, v3, l2, l3, l3, l3, l2, l3, l2, l2, v3, v4, v2, v1, v1, v2, v2, v1, v2, v2, v4, v1, v2, v3], [v3, v4, v2, v1, v1, v4, v4, v2, v1, v1, v3, v4, v2, v1, v1, v2, v2, v1, v2, v2, v4, v1, v2, p3, p2, p1, p2, p3, p1, p2, v3, v4, l1, l2, l1, l1, l2, l3, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v3, v4], [v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v4, v2, v1, v4, v3, v4, v2, v1, v1, v3, v3, p2, p1, p1, p2, p3, p2, p1, p2, p3, v3, v4, v2, l3, l2, l1, l2, v2, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v2, v3], [v3, v4, v2, l2, l1, v1, v4, v3, v2, v1, v3, v4, v3, v1, v1, v3, v4, v2, v1, v1, v3, v3, p1, p3, p2, p1, p2, p3, p2, p3, p1, p2, p3, v2, v3, l3, l1, l1, v4, v3, v1, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1], [v2, v3, v1, l3, l2, l3, v3, v1, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, p2, p1, p2, p3, p2, p3, p2, p1, p2, p1, p2, v3, p2, v3, v4, l1, v2, v1, v3, v4, v2, v1, v1, v2, v2, v1, v2, v2, v4, v1, v2, v3], [v3, v4, v3, v1, l1, l2, l3, v2, v1, v1, v1, v3, v2, v3, v4, v4, v2, v2, v1, p2, p1, p2, p3, p2, p2, p1, p2, p1, p2, p1, p1, p2, p3, p3, p3, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v4, v2, v1, v1, v2, v3, v1], [v3, v4, v2, v1, l2, l1, l3, l1, v2, v1, v3, v4, v2, v1, v1, v3, p3, p1, p2, p3, p2, p1, p2, p3, p3, v3, v3, p3, p2, p2, p3, p2, p1, p2, p2, v2, v3, v1, v4, v2, v4, v3, v1, v1, v3, v4, v2, v1, v1, v1, v4, v2, v3], [v3, v3, v2, v1, v2, l1, l2, l3, v2, v1, v3, v3, p3, p2, p1, p2, p2, p3, p2, p1, p2, p3, p2, p1, v3, v4, v2, v1, v1, p1, p1, p2, p1, p2, p1, v3, v4, l2, l1, l3, v4, v4, v2, l1, l2, v3, v4, v2, v1, v1, v3, v4, v1], [v2, v3, v1, v4, v2, v4, l3, v1, v1, v1, p1, p2, p1, p2, p2, p3, p3, p2, p3, p2, p1, p2, p3, p1, v3, v4, v2, v1, v1, p2, p1, p1, p2, p3, p3, p2, v2, l1, l1, l3, l3, v4, l1, l2, l3, l2, v3, p1, v3, v4, v2, v1, v1], [v1, v3, v2, v3, v4, v4, l2, v4, v1, p2, p3, p3, p2, p3, p2, p1, p2, p3, p2, p1, p2, p3, p1, v3, v4, l2, l1, v1, v3, v3, p3, p3, p2, p1, p2, p1, v3, v4, v2, l2, l3, l2, l3, l2, l2, v1, p3, p2, pp, v3, v4, v2, v1], [v2, v2, v1, v2, v2, l2, l2, v2, p1, p2, p3, p2, p2, p1, p3, p2, p1, p2, p2, p2, p1, v1, v3, v2, l1, l3, l2, l3, l1, v1, p1, p3, p2, p1, p1, p2, v2, v3, v1, l1, l1, l3, v3, v1, v1, v1, p2, p1, p2, p3, v4, v3, v3], [v3, v4, v2, v1, l3, l1, l1, v3, p2, p1, p2, p1, v3, v3, v2, v3, p3, p2, p1, v2, v3, v1, v4, l3, l2, l1, v1, v4, l2, v3, p2, p3, p1, p2, p2, p3, v1, v3, v2, l3, l2, l1, l2, v2, v1, p2, p3, p2, p3, p2, v3, v2, v1], [v2, v2, v1, v2, l2, l3, v1, v2, p3, p2, p1, p3, v2, l3, v1, v4, v2, v4, v3, v1, v1, v1, l3, l2, l2, l3, l2, l2, l3, v2, v1, p3, p3, p2, p1, p2, p2, v3, v4, v2, v1, v1, v3, p3, p2, p3, p2, p1, p1, p2, v1, v3, v3], [v3, v4, v3, v1, v1, v3, v3, p2, p2, p3, p2, p2, v2, l2, l2, v4, v2, v4, v3, v1, l2, l1, l2, l1, v2, l2, l1, l1, v2, v2, v1, p2, p2, p1, p2, p1, p2, p3, v3, v3, v3, v3, p2, p3, p2, p1, p3, p2, p1, v2, v3, v2, v4], [v4, v2, v2, v1, v1, v2, v4, p1, p3, p1, p3, v2, v3, l1, l1, l3, v4, v3, l3, l1, l2, l3, l1, v2, v3, v4, v4, v2, v2, v1, p3, p3, p3, p2, p3, p2, p1, p3, p3, p3, p2, p1, p3, p2, p1, p2, p1, p2, p3, v2, v4, v3, v3], [v3, v4, v2, v1, v1, v3, p1, p2, p1, p2, p1, v2, l2, l2, l3, l2, l1, l1, l2, l3, l1, l2, v4, v2, v1, v2, v3, p1, p3, p2, p1, p2, p2, p1, p1, p2, p1, p2, p1, p2, p2, p1, p2, p3, p2, p3, p2, p1, v3, v4, v2, v1, v1], [v2, v3, v2, v2, v4, v3, p2, p3, p1, p3, p2, v2, v3, l3, l2, l1, l2, l3, v1, l2, v1, v3, v4, v2, v4, v1, p2, p2, p1, p2, p2, p3, p3, p2, p3, p2, p1, p2, p1, p2, p3, p2, p3, p2, p1, p2, p1, p2, v3, v4, v2, v1, v1], [v3, v4, v2, v2, v1, v4, p3, p1, p2, p1, p2, p1, v1, l2, l3, l1, l3, v4, v2, v2, v1, p2, p3, p1, p2, p1, p1, p3, p1, p2, p1, p2, p1, p1, p1, p1, p2, p3, p3, p2, p3, p2, p1, p2, p3, p1, p3, v3, v4, v2, v1, v1, v3], [v3, v2, v4, v1, v1, v3, p2, p2, p1, p2, p3, p2, v1, v4, l1, l1, v1, v3, v3, p1, p2, p1, p2, p2, p2, p3, p2, p2, v3, v3, v3, p2, p2, v3, p2, p2, p3, p2, p1, p1, p1, p3, p1, p2, p1, p2, v3, v4, v2, v1, v1, v3, v4], [v1, v4, v3, v3, v1, v2, v3, p3, p2, p3, p2, p3, v3, v4, v2, v1, v1, p3, p2, p3, p2, p2, p1, p2, p3, p2, p1, v1, v1, v2, v3, v4, v4, v2, v2, v1, p1, p3, p2, p3, p2, p1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3], [v3, v1, v2, v1, v1, v3, v1, p1, p3, p1, p2, p3, v2, v3, v2, v3, p2, p2, p3, p2, p3, p2, p1, p2, p2, p3, v2, v3, v1, v1, v3, v2, v1, v4, v4, v3, v2, v1, v3, v2, v4, v3, v3, l3, l1, l1, v3, v4, v4, v2, v1, v3, v2], [v3, v4, v2, v1, l1, v4, v3, p2, p2, p3, p2, p1, p3, v2, v3, v1, p1, p2, p1, p3, p2, p3, p3, p2, p1, v2, v3, v1, l1, l2, v2, l2, l1, l2, l3, v2, v1, v3, v2, v4, v3, l2, l1, l2, l3, l2, l3, v4, v2, v1, v3, v2, v3], [v2, v2, l3, v2, l2, l3, v1, v2, p1, p2, p1, p2, p2, v3, v4, v3, v3, p3, p2, p1, p3, p1, v3, v4, v2, v1, v1, l1, l2, l3, l2, l2, l1, l3, l2, l3, v2, v4, v3, v1, l1, l3, l2, l1, l2, l3, l2, v4, l2, l3, v1, v1, v4], [v3, v4, l2, v1, l1, l1, v3, v3, p2, p3, p2, p3, p1, v3, v4, l2, v2, v1, p3, p2, p2, v2, v3, v1, v1, v3, l2, l3, v4, l1, l1, v2, l1, l1, l3, l2, l3, v3, v4, v2, l1, l2, l2, v4, v2, l1, l2, l1, l3, l2, l1, v1, v3], [v2, v2, l3, l2, l3, l1, l2, v2, p3, p2, p1, p2, p2, p3, v2, l3, l1, v2, v3, v2, v1, v4, l2, v3, v2, v1, l1, v2, v4, v3, v3, v4, v2, l1, l2, l3, l2, v2, l2, l3, l2, l3, v1, v1, v2, l2, l3, l1, l2, l3, l2, l3, l2], [v3, v4, v2, l3, l2, v3, v3, v3, p2, p2, p3, p2, p3, p2, v2, v3, l2, l2, l3, v4, v3, l3, l1, l1, v3, v4, v2, v1, v4, v2, v3, v1, v4, v2, l1, l2, l1, l3, l1, l2, v4, l3, l2, v1, l2, l3, l1, l2, l1, l2, l2, l3, l2], [v1, v3, v2, v3, v4, v4, v2, v2, v1, p1, p2, p3, p2, p1, p3, v2, v3, v1, l2, v2, l1, l2, l3, l2, v1, v3, p2, p1, p3, p2, v2, v3, v1, v4, v2, l3, l2, l1, l1, v1, v2, l2, l1, l3, l2, l2, l1, l3, l2, l1, l3, l1, l3], [v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, p2, p3, p2, p1, p2, p2, p1, v2, v2, v1, v3, v2, v4, v1, v2, p1, p3, p2, p1, p3, p1, p2, v2, v3, v1, l2, l3, l2, l3, v1, v1, v1, l3, l2, l3, v4, v2, l2, l1, l1, l2, l2, l1], [v3, v4, v2, v4, v1, v3, v4, l3, l1, v1, p1, p2, p1, p3, p2, p1, p2, p1, p2, p2, v3, v3, v3, p2, p2, p3, p2, p2, p3, p2, p3, p2, p3, p2, v2, v3, l1, l3, v2, v4, v3, v1, v1, v1, v2, v2, v1, v2, l2, l3, l2, l3, v3], [v2, v3, v1, v4, v2, v4, l3, l2, v4, v1, p3, p3, p2, p2, p1, p2, p3, p2, p1, p2, p3, p2, p1, p3, p3, p2, p2, p1, p2, p3, p2, p1, p1, p2, p1, v3, v4, v2, v1, v1, v3, v3, p2, p1, p2, v3, v4, v2, v1, l2, l1, v3, v3], [v3, v4, v2, v1, v1, v2, l2, l3, v1, v2, v3, p1, p3, p2, p1, p2, p1, p2, p3, p2, p2, p1, p2, p3, p2, p1, p3, p1, p2, p3, p2, p3, p2, p1, p3, p2, p3, v3, v3, v3, p1, p2, p3, p2, p3, p2, p1, v3, v4, v2, v1, v1, v3], [v3, v4, v2, v1, l1, v3, v4, v1, v1, v2, v4, p2, p2, p1, p2, p3, p1, p3, p2, p2, p1, p2, p3, p2, p1, p1, p2, v3, v3, v3, p2, p1, p2, p3, p2, p3, p2, p1, p2, p1, p2, p3, p2, p1, p2, p1, p2, p1, v3, v4, v2, v1, v1], [v2, v3, v1, v4, l1, l3, v3, v1, v3, v1, v2, v3, p3, p2, v3, v3, v3, p1, p3, p3, p2, p3, p2, p1, p2, p3, p1, v3, v3, v3, v3, p2, p1, p2, p1, p2, p1, p2, p3, p2, p3, p2, p3, p2, p1, p2, p1, p2, p1, v3, v3, v2, v3], [v3, v4, v2, l1, l2, v2, v4, v2, v1, v1, v3, v4, v2, v1, v1, v3, v3, p2, p2, p1, p1, p2, p1, p2, p2, p3, v3, v4, v2, v1, v1, p3, p2, p3, p2, p2, p1, p2, p3, p3, p2, p3, p2, p1, p2, p3, p2, p3, p2, pp, v4, v3, v4], [v3, v4, v2, l3, l2, l3, v4, v2, v4, v1, v2, v2, v1, l1, l2, l1, v1, v2, p1, p2, p3, p3, p2, p1, v2, v2, v1, v2, l3, l3, v1, v2, p3, p2, p3, p1, p2, p3, p1, p2, p3, p2, p1, p2, p3, p2, p1, p2, p1, v3, v3, v1, v3], [v2, v3, v1, v1, l1, l2, l1, v4, v4, v3, v2, v1, l2, l3, l1, l3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v2, l3, l2, v4, l2, l1, v3, v1, v1, v1, v3, v3, p2, p3, p2, p1, v3, v3, v3, p2, p3, p2, p3, v3, v4, v2, v1, v1], [v2, v3, v1, v4, l3, l2, l3, v1, v1, v1, l3, l2, l1, l2, l3, l2, v4, v4, v1, v1, v2, v3, v1, v4, v2, l2, l1, v1, v1, v2, l1, l3, l2, l3, v1, v3, v4, v4, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v4, v3, v3], [v2, v3, v1, v1, v3, l1, v1, v4, v4, v3, v2, l2, l2, l3, l2, l1, v3, v4, v2, v1, v3, v4, v4, v2, v1, l2, l3, v1, v1, l1, l1, l1, l1, l1, l2, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v3, v1, v2], [v3, v4, v2, v1, v1, v3, v4, v2, v2, v1, v3, v4, l3, l2, v1, v3, v4, v2, v3, v1, v2, v3, v1, v4, v2, l1, l3, l1, l2, l3, l3, v4, l3, v1, v1, v1, v4, v2, v1, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v1, v2, v3], [v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v3, v4, v2, v1, v1, v3, v4, v2, v2, v1, v2, v3, v1, v1, v3, v2, l1, l2, l1, v3, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v3, v4, v2, v1, v1, v3, v3, v2], [v3, v3, v1, v1, v3, v2, v1, v4, v4, v3, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v2, v3, l3, v4, v2, v4, v3, v1, v1, v1, v3, v4, v3, v1, v1, v3, v4, v1, v1, v1, v3, v4, v2, v1, v1, v3, v1, v3], [v4, v3, v1, v4, v2, v4, v3, v1, v1, v1, v2, v4, v2, v1, v1, v2, v3, v1, v1, v3, v2, v1, v4, v4, v3, v2, v1, v3, v2, v4, v3, v3, v4, v2, v1, v3, v4, v4, v2, v1, v2, v3, v1, v4, v2, v4, v3, v1, v1, v1, v1, v4, v3]], 'elevation': [['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', e2, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, e2, e1, e1, e1, '', '', e1, e1, e1, e1, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, '', '', '', '', '', e1, e1, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, '', '', '', '', '', e1, e2, e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', e1, '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, '', '', '', '', '', '', '', e2, e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', e1, e1, e1, '', '', '', ''], ['', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, '', '', ''], ['', '', '', '', '', '', '', '', e1, e2, e2, e2, '', '', '', '', e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, e2, '', '', '', '', '', '', e2, e1, e1, e1, e1, e1, e1, '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, e2, e2, '', '', '', '', e2, e2, e1, e1, e1, e1, e1, '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e1, e1, e1, e1, e1, '', '', '', ''], ['', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e3, e3, e3, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e1, e1, e1, e1, '', '', '', '', ''], ['', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e3, e3, e3, e3, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e1, e1, e1, '', '', '', '', ''], ['', '', '', '', '', '', e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', e5, e4, e4, e4, e4, e3, e3, e3, e3, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e1, e1, '', '', '', '', '', ''], ['', '', '', '', '', '', e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', e5, e5, e5, e4, e4, e4, e4, e3, e3, '', '', '', e2, e2, '', e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', '', '', '', e5, e5, e5, e5, e5, e4, e4, e4, e4, e3, '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', '', '', e5, e5, e5, e5, e5, e5, e5, e4, e4, e4, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, '', '', '', e5, e5, e5, e5, e5, e5, e5, e4, e4, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', '', '', e5, e5, e5, e5, e5, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', '', '', '', e5, e5, e5, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', e1, e1, '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']]}, 'cave': {'moveable': [s1, s2, s3, pp], 'players': {}, 'background': r2, 'map': [[r2, r3, r1, r3, r3, r3, r2, r1, r1, r1, r3, r2, r3, r1, r2, r3, r3, r1, r1, r2, r3, r3, r1, r3, r1, r2, r3, r3, r1, r1, r3, r1, r2, r3, r3, r2, r3, r3, r2, r3, r3, r3, r3, r2, r3, r3, r3, r3, r3, r2, r3, r2, r2, r3, r3, r1, r2], [r2, r1, r3, r3, b2, b2, r1, r2, r3, r1, r1, r2, r2, r1, r2, r3, r1, r1, r2, r3, r2, r3, r2, r3, r3, r1, r3, r2, r1, r2, r3, r3, r3, r3, r3, r3, r3, r3, r3, r1, r1, r3, r3, l1, l1, l2, l1, r2, r3, r2, r3, r1, r1, r3, r1, r4, r3], [r2, r2, r3, b2, b2, b3, b1, r3, r3, r3, r3, r1, r1, r3, r1, r3, r1, r2, r3, r3, r2, r1, r2, r1, r2, r3, r3, r2, r1, r3, r2, r3, r2, r2, r2, r3, r2, r3, r3, r2, l3, l3, l1, l3, l3, l2, l3, l3, l3, l2, l3, l3, r3, r2, r1, r3, r1], [r4, r2, r1, b1, b2, b1, b1, r3, r3, r3, r3, r1, r1, r1, r3, r2, r1, r2, r1, r3, r3, r2, r3, r3, r1, r3, r1, r2, r2, r1, r3, r2, r2, r3, r3, r2, r3, r3, r3, r3, l2, l2, l2, l1, l3, l1, l2, l2, l2, l3, l1, l2, l3, r3, r1, r2, r4], [r1, r2, r3, r3, b1, b1, r1, r3, r1, r2, r3, r1, r3, r1, r3, r3, r2, r1, r2, r1, r3, r1, r3, r1, r3, r1, r2, r1, r1, r2, b3, r1, r1, r2, r3, r3, r3, r1, r3, r1, r1, l2, l1, r1, r1, r3, r1, r1, r1, r1, l3, l2, l3, r1, r3, r1, r2], [r2, r4, r3, r3, b1, b2, r1, r2, r1, r2, r3, r3, r3, r3, r1, r3, r3, r2, r3, r1, r2, r1, r1, r1, r3, r3, r3, r3, r1, b3, b3, b3, b1, r1, r3, r2, r1, r2, r3, r3, r3, r2, r1, r3, r2, s3, s3, s3, s1, r3, r3, l3, l1, l2, r3, r3, r1], [r2, r1, r3, r3, r3, r3, r2, r3, r3, s2, s1, s2, s1, s3, s3, s2, s3, r3, r3, r3, r3, s2, s3, s1, s2, s3, r3, r2, b3, b3, b2, b1, b3, b1, r1, r2, r3, r3, r3, r3, r3, r2, s3, s1, s1, s3, s3, s3, s1, s1, r3, l1, l3, l2, r3, r4, r3], [r3, r4, r3, r1, r1, r3, r3, r3, s1, s2, s1, s3, s3, s1, s1, s1, s2, s2, s2, s2, s2, s2, s2, s2, s2, s1, s3, r2, r3, b3, b1, r2, b3, b2, r1, r3, r3, r3, r2, r3, r2, s3, s2, s2, s1, s1, r1, r3, s2, s3, r2, l1, l2, l3, r1, r3, r1], [r1, r2, r1, r3, r1, r1, r2, s1, s2, s2, s3, s1, s1, s3, r2, r3, r1, s3, s1, s1, s1, r3, r3, s1, s1, s3, s2, s3, r3, r3, r2, r3, r3, r1, r2, r1, s3, s3, s1, s3, s3, s2, s2, r3, r2, r1, r3, r2, s2, s2, r1, l3, l3, l1, l2, r4, r3], [r4, r3, r3, r3, r1, r3, s3, s3, s1, s2, r1, r1, r3, r3, r2, r2, r2, r3, r1, r3, r3, r3, r2, r3, s1, s1, s3, s2, s3, r3, r3, r1, r3, r1, r2, s1, s1, s1, s3, s3, s3, s1, s3, r1, r3, r2, r3, r3, s3, s3, r3, r2, l1, l2, l2, r3, r1], [r2, r1, r3, r3, r1, r2, s3, s3, s1, r2, r3, r3, r3, r3, b1, b2, b2, b3, r3, r2, b1, r1, r1, r3, r3, s2, s3, s1, s1, s2, r3, s1, s3, s3, s1, s2, s3, r3, r1, r3, s2, s3, r3, r2, r3, r3, r3, s1, s1, s3, r3, r2, l1, l1, l1, r1, r2], [r3, r4, r2, r2, r1, r3, s3, s2, s2, r1, r3, r2, r3, r3, r3, b2, b2, b1, b3, b1, b2, r3, r1, r2, r3, r1, s2, s3, s3, s2, s3, s1, s1, s2, s1, s3, r1, r3, r2, r2, s3, s3, s2, r3, r1, s3, s2, s3, s1, r2, r3, l2, l3, l1, r3, r4, r3], [r2, r1, r3, r1, r3, r3, s1, s1, s3, s3, r3, r3, r3, r3, r1, r2, r1, b2, b3, b3, r3, r3, r3, r3, r3, r3, r1, s1, s1, s3, s3, s3, s2, r2, r3, r3, r3, r2, r3, r1, r3, s3, s2, s3, s2, s3, s1, r3, r3, r1, l3, l1, l2, l2, r1, r2, r4], [r4, r2, r2, r3, r1, r3, r2, s1, s2, s3, s2, r3, r3, s2, s3, s3, r1, r3, r1, r3, r3, r1, s1, s1, r1, r3, r3, r3, s3, s1, s3, r3, r3, r3, r3, l3, l3, l3, r3, r1, r1, s1, s3, s2, s1, s1, s3, r3, r3, l2, l2, l2, l3, r3, r2, r1, r2], [r3, r4, r3, r3, r3, r3, r2, r1, s3, s3, s3, s3, s2, s1, s3, s2, s3, r2, r3, r3, s3, s3, s1, s3, s3, r2, r1, r3, r3, r3, r3, r3, r3, r2, r3, l1, l2, l1, l1, r3, r2, r3, r2, r3, r3, r3, r3, r1, r3, r3, l3, l3, r2, r3, r3, r3, r1], [r2, r1, r3, r1, r1, r3, r3, r3, r3, s2, s2, s2, s3, s1, s3, s2, s3, s1, s2, s3, s1, s3, s1, s3, s3, s1, r1, r3, r1, r3, r3, r1, r3, r1, r2, r2, l1, l1, l1, r3, r1, r2, s2, s1, s1, r1, r1, r1, r3, r3, r1, r2, r3, r3, r3, r4, r3], [r2, r4, r3, r1, r3, r1, r1, r3, r1, s3, s1, s1, r2, r3, r3, r2, s2, s1, s3, s2, s3, s3, s1, s1, s3, s1, s1, r3, r1, r3, r2, r1, r3, r3, r3, r2, r3, l2, r2, r1, r3, s1, s2, s3, s3, s1, s3, r1, r1, r3, r3, r1, r1, r3, r1, r1, r2], [r3, r2, r1, b1, b2, r2, r3, r3, r1, s2, s2, r3, r2, r1, r3, r3, r3, s3, s2, s3, s1, s1, r1, r3, r1, s3, s1, s3, s3, r3, r3, r1, r3, r3, r1, r3, r3, r3, r2, r1, s3, s3, s1, s3, s1, s2, s1, s1, r3, r1, r3, r2, r3, r3, r1, r2, r4], [r4, r1, b1, b1, b1, r3, r1, r1, s2, s1, s2, r2, r3, r3, r3, r1, r3, r1, r2, r2, r3, r3, r2, r3, r3, r3, s1, s3, s2, s1, s1, s1, s1, s3, s1, s3, s3, s1, s1, s3, s2, s2, r2, r3, r2, s3, s3, s2, r1, r2, r3, r3, r2, r3, r3, r3, r1], [r3, b2, b3, b3, b2, r1, r1, r2, s3, s1, s2, s1, r3, r3, r3, r1, r1, r1, r3, r3, r3, b2, b1, b3, b1, r3, r3, s3, s2, s2, s3, s3, s1, s3, s2, s3, s3, s2, s2, s2, s2, r1, r1, r2, r3, s3, s2, s3, r3, r3, r2, r3, r3, r3, r2, r4, r3], [r2, b3, b1, b1, b1, r1, r3, r1, s1, s3, s2, s3, r1, r1, r1, r2, r3, s2, s2, s3, r3, r2, b1, b2, b1, r3, r3, r1, r3, s3, s1, s3, s1, s2, s3, s3, s1, s3, s1, s1, r3, r2, r2, r3, r2, s1, s2, s3, r2, l2, l3, r3, r2, r3, r2, r2, r4], [r4, r2, r1, b1, r3, r1, r3, r3, s3, s3, s1, s3, r1, r2, r3, r3, s1, s2, s2, s3, s2, r3, b3, b3, b3, b3, b3, r3, r2, r2, s2, s3, s1, s2, r3, r2, r1, r1, r3, r1, r2, r1, r1, r3, r3, s2, s2, s3, r3, l3, l1, l1, r3, r3, r2, r4, r3], [r4, r2, r1, r3, r3, r2, r3, r1, s2, s2, s2, s1, r3, r1, s2, s3, s1, s3, s1, s3, s2, r3, r3, b2, b3, b3, b2, r1, r3, s1, s1, s3, s2, r2, r3, r3, r3, r3, r3, r3, r1, r2, r3, r3, r3, r3, s1, s1, r3, l3, l1, l3, r2, r2, r3, r3, r1], [r3, r3, r1, r2, r3, r1, r3, r3, s3, s2, s3, s2, r1, s1, s3, s2, s1, s3, s1, s3, s3, s2, r1, b3, b3, r1, r3, r3, s3, s2, s2, s3, r2, r2, r2, r2, r3, r2, r3, r3, r3, r1, r3, r3, r3, r2, s3, s3, r2, r1, l1, l3, r1, r1, r2, r1, r2], [r4, r2, r1, r1, r3, r3, r2, r3, r3, r3, s1, s2, s2, s3, s3, s3, r1, r2, s1, s2, s2, s3, r1, r1, r3, r3, r1, s3, s3, s3, s1, s2, s3, r1, r2, r2, r3, r3, r3, r1, r1, r3, r3, r3, r1, r3, s2, s2, r3, r3, l2, l2, r3, r1, r3, r2, r4], [r1, r2, r1, r1, r3, r3, r1, r2, r3, r2, s1, s3, s3, s3, s3, r2, r1, r2, r2, s1, s2, s3, s2, r3, r3, r1, r1, s1, s1, s3, s1, s3, s1, s3, r2, r1, r2, r1, r2, r3, r3, r3, r1, r2, r2, r2, s2, s3, r3, r3, r3, r3, r1, r3, r2, r4, r3], [r3, r2, r3, r3, r3, r2, r3, r3, r3, s1, s2, s2, s3, r1, r2, r2, r3, r3, r2, r2, s3, s3, s2, s3, r2, r3, r3, s2, s1, s3, s3, s2, s3, s1, s1, s3, r1, r1, r2, r2, r3, r3, r3, r2, r3, s3, s3, s1, r3, r3, r3, r1, r1, r3, r1, r3, r1], [r2, r1, r1, r3, r1, r3, r2, r3, s3, s2, s1, s2, r2, r3, r3, r3, r3, r2, r3, r1, s3, s1, s2, s3, s1, r3, s2, s2, s3, s1, s2, s2, s3, s2, s1, s3, s3, s3, r3, r3, r3, r1, r3, r3, s2, s2, s2, s2, r1, r3, r3, r3, r3, r1, r3, r4, r3], [r2, r4, r1, r3, r3, r3, r3, r3, s1, s3, s1, r3, r3, r1, r3, r3, r3, r2, r1, r2, r3, s2, s1, s1, s1, s1, s3, s2, s2, s1, s1, s1, r3, r1, s1, s2, s3, s1, r2, r1, r3, r1, r3, r2, s3, s1, s3, r2, r3, b2, b1, r3, r2, r2, r3, r2, r4], [r4, r1, r2, r2, r2, r3, r3, s3, s3, s2, r2, r2, r3, r1, r3, r3, r3, r2, r2, r3, r1, r1, s1, s3, s3, s2, s2, s3, s3, s2, r1, r2, r3, r1, r2, s1, s3, s3, s1, s2, r1, r1, r1, s1, s3, s2, r1, r3, b2, b1, b1, b1, r3, r1, r2, r1, r2], [r2, r2, r1, r2, r2, r2, r3, s2, s2, s1, r2, r3, r3, r3, r3, s1, s2, r3, r3, r2, r1, r1, s2, s2, s2, s2, s2, s1, r2, r2, r3, r1, r3, r2, r1, r3, s2, s1, s2, s3, s1, r3, r3, s1, s2, s3, r1, r3, b1, b2, b2, b1, b2, r2, r3, r2, r4], [r4, r4, r3, r1, r2, r3, r1, s3, s1, s3, r2, r3, r3, r3, s1, s2, s1, r3, r2, r2, r3, r3, r1, s2, s1, s2, s1, r1, r3, r3, r3, r1, r2, r2, r2, r3, r3, r2, s3, s3, s1, s2, s3, s3, s1, r1, r2, r1, r3, b2, b1, b1, b3, r3, r3, r4, r3], [r3, r1, r2, r2, r2, r2, r3, s1, s3, s2, s3, r3, r1, r3, s1, s2, s1, s3, r3, r3, r3, r3, r1, r3, s3, s2, s3, r2, r2, r1, r2, r2, r3, r3, r1, r3, r2, r2, r1, s3, s1, s3, s2, s1, r3, r3, r3, r1, r1, r3, b1, b1, b2, r3, r2, r3, r1], [r3, r2, l2, r3, r1, r2, r1, s2, s2, s1, s3, s2, s1, s3, s1, s1, s1, s2, s2, r3, r3, r1, r2, s3, s1, s3, r2, r2, r3, r1, r1, r2, r1, r3, r3, r3, r3, r3, r2, s3, s2, s2, s2, r3, r3, r2, r2, r1, r3, r3, r3, r3, r1, r3, r2, r2, r4], [r1, r2, l3, l1, r3, r2, r3, s1, s3, s3, s3, s2, s2, s2, s2, s1, s2, s1, s3, s3, r3, r2, s1, s2, s2, r3, r1, r2, r3, r1, r3, r3, r2, r3, r3, r3, r2, r2, r3, r3, s1, s2, s2, r3, r3, l2, l3, r3, r3, r1, r3, r1, r3, r1, r3, r1, r2], [r2, r4, l1, l1, l2, r3, r3, s2, s3, s2, s2, s1, s1, s1, s1, r3, s3, s3, s3, s1, s2, s1, s1, s1, s2, r3, r2, r3, r1, r1, r2, r1, r3, r2, r3, r3, r1, r3, s2, s1, s2, s1, r3, r3, r3, l3, l1, l3, r2, r2, r2, r1, r3, r3, r3, r3, r1], [r1, r3, r2, l3, l3, r3, r3, r3, s3, s2, s2, s3, s2, s1, r2, r1, s2, s2, s1, s1, s2, s1, s2, s2, s2, r2, r3, r1, r3, r2, r3, r3, r3, r3, r2, r3, r3, s3, s3, s3, s2, r3, r2, r3, r1, r3, l3, l3, l2, r3, r2, r1, r3, r1, r3, r1, r2], [r4, r3, r3, r2, l2, r3, r3, r2, r3, s3, s1, s1, s2, r1, r2, r3, r3, s1, s3, s1, s2, s3, s1, s3, s1, s1, r2, r3, r3, r1, r3, r3, r3, r3, r3, r1, s2, s2, s1, s2, r2, r3, r3, r3, r2, r3, l3, l2, l2, l2, r2, r3, r3, r1, r3, r3, r1], [r2, r1, r3, r3, r1, r2, r1, r2, r3, r2, s3, s2, s2, r3, r2, r2, r3, s3, s3, s2, s1, s3, r2, s1, s2, s1, s1, r3, r1, r3, s1, s2, s1, s1, s1, s2, s3, s1, r3, r2, r3, r2, r3, r2, r1, r3, r1, l3, l2, l1, r3, r3, r2, r3, r2, r4, r3], [r3, r1, r1, r2, r3, r2, r2, r3, r1, r1, s3, s2, s1, r3, r2, r1, s2, s2, s1, s3, s2, s3, r2, r1, s3, s3, s3, s2, r2, s2, s2, s2, s3, s1, s2, s3, s2, r3, r1, r3, r3, r2, r2, r2, r1, r1, r1, r3, l1, l3, r2, r3, r1, r1, r3, r2, r4], [r2, r4, r1, r1, r3, r3, r3, r1, r3, r1, s3, s3, s2, r3, s3, s2, s2, s1, s2, s2, s3, r3, r3, r1, r2, s1, s1, s3, s3, s3, s1, s1, s3, s2, s3, s1, r3, r1, r2, r3, s3, s2, s2, s3, r3, r1, r1, r3, r2, r3, r3, r1, r2, r1, r3, r3, r1], [r1, r3, r3, r1, r1, r3, r3, r3, r1, s1, s3, s1, s2, s2, s2, s3, s1, s1, s3, s2, r1, r3, r3, r1, r1, r1, s2, s3, s3, s3, s3, s2, s3, r3, s1, s1, s2, r3, r1, s2, s2, s3, s1, s1, s2, r2, r3, r3, r3, r3, r3, r3, r1, r1, r3, r4, r3], [r2, r3, r3, r1, r3, r3, r1, r2, s2, s3, s1, s3, s3, s3, s1, s3, r2, s2, s2, r2, r1, r1, r3, r3, r1, r2, r1, s3, s2, r3, r2, r2, r3, r3, s1, s2, s2, s3, s1, s1, s3, s3, s1, s2, s2, s3, s2, r3, r1, r1, r3, r2, r3, r3, r3, r2, r4], [r4, r3, r1, r3, r1, r3, r1, s1, s1, s1, s1, s3, s2, s2, s2, r3, r2, r2, r3, r2, r3, r3, r3, r2, r2, r3, r3, r3, r1, r1, r1, r3, r3, r2, r3, s3, s2, s2, s3, s3, s2, s3, r2, r3, s2, s1, s1, s3, r2, r3, r3, r1, r1, r3, r1, r1, r2], [r1, r2, r2, r3, r2, r1, r1, s1, s2, s1, s1, s3, r1, r2, r3, r2, b3, b1, b2, r2, r1, r1, r1, r1, r1, r2, r1, r3, r3, r3, b1, b2, r3, r1, r1, r3, s3, s3, s3, s1, s1, r3, r3, r2, r3, s3, s1, s2, s1, s3, r3, r1, r2, r3, r3, r2, r4], [r4, r1, r3, r3, r3, r1, r3, s1, s1, s1, s3, s2, r2, r2, b3, b2, b3, b2, b2, b1, r3, r3, r3, r2, r1, r2, r2, r3, r2, b2, b1, b1, b1, b3, r3, r1, r2, r3, r2, r3, r2, r2, l1, r2, r2, r3, r3, r2, r3, s2, r1, r1, r1, r3, r2, r3, r1], [r3, r1, r2, r3, r1, r3, r2, pp, s2, s3, s2, r1, r3, b2, b3, b1, b2, b1, b2, b2, r2, r3, r3, r3, r3, r1, r3, b3, b2, b2, b3, b1, b2, b2, r3, r2, r3, r3, r2, r2, r3, r2, l2, l2, r3, r1, r3, r3, r2, pp, r3, r1, r2, r1, r3, r4, r3], [r1, r2, r3, l2, r1, r2, r1, r2, r3, r2, r2, r2, b2, b3, b2, b1, b3, b1, b2, b1, b3, r3, r1, r1, r3, r3, b1, b2, b2, b3, r2, b1, b1, b2, b2, r3, r3, r3, r3, r2, r1, l3, l1, l1, l1, r1, r3, r3, r3, r3, r2, r3, r3, r2, r1, r2, r4], [r4, r2, r2, l2, l3, r3, r3, r3, r3, r3, r1, r2, b2, b2, b1, b2, b1, b3, b2, b3, b3, r2, r1, r3, r3, b1, b3, b3, b2, r3, r1, r1, b1, b2, b2, r3, r2, r3, r2, r1, l3, l2, r3, l2, l2, r1, r2, r2, r3, r1, r2, r2, r3, r3, r3, r3, r1], [r1, r2, r1, l1, l2, l1, r1, r3, r1, r1, r1, b2, b1, b1, b1, b2, b3, b2, b1, b1, b3, b1, r3, r2, b1, b2, b3, r1, r2, r1, r2, r2, r3, r3, r1, r2, r2, r1, r3, r3, r1, r3, r3, r3, r3, r3, r3, r2, r2, r3, r1, r2, r3, r3, r1, r2, r4], [r4, r1, r3, r3, l3, l3, r3, r2, r3, r2, r3, b2, b2, b2, b3, b3, b3, b3, b2, b1, b3, b1, b2, b2, b2, b3, r3, r3, r2, r3, r3, r2, r3, r1, r3, r2, r2, r1, r2, r2, r3, r2, r3, r1, r3, r3, r3, r3, r1, r3, r3, r2, r3, r3, r3, r1, r2], [r3, r1, r2, r2, r2, r1, r3, r3, r2, r3, r3, r1, b2, b1, b2, b2, b2, b1, b2, b3, b2, b1, b1, b1, b2, r2, r1, r3, r3, r2, r3, r2, r3, r2, r3, r3, r3, r1, r2, r3, r2, r3, r3, r1, r3, r3, r3, r1, r2, r3, r3, r1, r2, r1, r3, r3, r1], [r2, r3, r1, r3, r3, r3, r2, r1, r1, r1, r3, r2, b3, b2, b1, b1, b3, b2, b3, b2, b3, b2, b3, b3, r1, r2, r3, r3, r1, r1, r3, r1, r2, r3, r3, r2, r3, r3, r2, r3, r3, r3, r3, r2, r3, r3, r3, r3, r3, r2, r3, r2, r2, r3, r3, r4, r3]], 'elevation': [['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, '', '', e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, '', '', '', e1, e1, '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', e1, e1, e1, '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, '', '', e1, e1, e1, '', '', '', '', '', '', e1, e1, '', '', '', '', e1, e1, e1, '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e1, e1, e1, '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e1, e1, '', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', e1, e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', e1, e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, '', '', e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, '', '', '', '', '', e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', '', '', e1, e1, e1, e1, '', '', '', '', e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, '', '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', e1, e1, e1, e1, e1, '', '', '', e1, e1, e1, '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, '', '', '', '', '', e1, e1, '', '', '', '', '', e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', e1, e1, e1, '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, '', '', '', '', e1, e1, e1, '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e1, e1, e1, '', '', '', '', e1, e1, e1, e1, e1, '', e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e1, e1, e1, '', '', '', e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, '', e1, e1, e1, '', '', e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, '', e1, e1, '', '', '', '', '', '', '', '', e1, e1, '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', '', '', e1, e1, e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']]}, 'snow': {'players': {}, 'background': r2, 'map': [[r1, r1, r1, r2, r1, r1, r2, r1, r1, r1, r1, r1, r1, r3, r2, r3, r3, r2, r1, r1, r2, w1, r3, r1, r1, r1, r1, r3, r3, r2, r1, r1, r1, r1, r3, r1, r2, r1, w3, r1, r3, r2], [r2, i2, i1, r1, r1, r4, r1, r3, r1, r1, r1, r1, r3, r1, r2, r1, r1, r1, r2, r1, w2, w1, r1, r2, r1, r1, r1, r2, r3, r2, r2, r1, r2, r3, r3, r3, r1, r2, w3, w2, r2, r3], [i2, i1, i1, i2, r1, r1, r2, r1, w2, w3, r3, r2, i2, i2, i1, i1, r3, r3, r3, r3, r2, w2, w3, r2, r2, w1, w3, w2, r2, r3, r1, w3, w1, r3, r3, r1, r3, r1, r2, r1, r1, r3], [i1, i2, i3, i2, i2, r3, r2, w1, w3, w1, r3, i2, i1, i1, i1, i1, i3, r1, r1, r1, w2, w3, r1, r3, w3, w3, w3, w2, w1, r1, r1, r1, w1, w1, r2, r3, r2, w2, w3, r2, r3, r1], [i3, i3, i2, i1, i3, r3, r1, w3, w2, r3, r3, r3, i3, i2, i1, i1, i3, r2, r1, r2, r1, r2, r3, r3, w1, w3, r1, w1, w2, w1, r3, r3, r2, r2, r3, r3, w1, w3, w3, r1, r1, r3], [r3, i3, i2, i1, i2, r1, r2, r2, r1, r2, r1, r2, r2, r1, r3, r2, r3, r3, r3, r2, r1, r1, r3, r2, r2, r3, r2, r1, w1, w2, w2, r1, r2, r3, r1, r1, r2, w1, r1, r1, r1, r2], [r2, i2, i3, i1, i2, i3, r1, w3, r1, r2, r3, r2, r3, r3, w1, r3, w3, r1, r1, r2, r2, r1, r2, r2, r1, r1, r1, r3, r3, w2, w1, w2, r1, w1, w3, r2, r1, r3, r2, r1, r3, r2], [r2, r1, r1, i1, i1, r1, r1, r1, r2, r3, r1, w3, w2, w2, r3, r3, r1, r1, r3, w2, w3, w3, w3, r1, r1, r1, w3, r1, r3, r1, w1, w1, r3, r3, r1, w1, r1, r1, r2, r2, r2, r3], [r2, r3, r2, r1, r1, r1, r3, w3, w1, w1, r2, r1, r1, r2, r1, r3, w3, w3, w3, w2, w2, w2, w3, w1, w3, w2, w2, w2, r2, r3, r1, r1, r2, r2, r1, r3, r3, r2, w1, w3, r1, r1], [r3, r3, w3, r3, r1, r1, r1, w1, w3, r1, r3, r1, r3, r3, pp, w3, w3, w3, w1, w1, w1, w1, w2, w1, w3, w1, w3, w2, r2, r2, r1, r1, r1, r2, w2, r2, r3, w2, w2, w2, r1, r3], [r3, w3, w2, r3, r1, w3, w3, r1, r3, r2, r2, r1, w2, w1, w1, w1, w3, w1, w3, r2, r1, r1, w1, w3, w1, w2, r1, r1, r2, r1, r3, w3, w1, r1, r2, r1, r2, r2, w2, r1, r1, r1], [r1, r1, r1, r3, w3, w2, w1, r3, w2, r2, r3, w2, w3, w2, w1, w1, w2, w2, w2, w2, r2, w1, w1, w1, w2, r1, r1, r2, r3, w1, w3, w3, w1, w2, r3, r2, w3, r3, r3, r2, r2, r3], [r1, r2, w3, w3, r1, w2, r3, r2, r2, r2, w2, w2, w2, r2, r1, w1, w2, w3, w2, w1, w2, w1, w1, w2, r1, r1, r2, r1, r3, w3, w3, w3, w3, w2, r3, r2, w3, r1, r1, r1, r2, r2], [r3, r3, r2, r1, r1, r3, r3, r1, r2, r1, w2, w1, r1, r1, r3, r2, w2, w1, w3, w1, w1, w1, w1, w3, w3, r1, r1, r2, w3, w2, w2, w3, w2, w3, r2, r2, w3, r3, r1, r1, r1, r1], [r1, r2, r2, r1, r2, r1, w2, r2, r2, w1, w3, r1, r3, r1, i1, i2, i3, i3, w3, w1, w2, w1, w2, w1, w1, w1, w2, w1, w3, w3, w2, w3, w2, w3, w3, r2, r2, r3, w3, w3, r2, r1], [r3, r3, r1, r1, r3, r1, w1, r2, r3, w2, w3, r3, i2, i1, i2, i1, i1, i2, i1, w1, w2, w2, w1, w3, w2, w2, w3, w2, w3, w2, w3, w3, w1, w3, w2, r2, r3, w3, w1, w1, r3, r1], [r2, r1, r3, r1, r1, w2, r1, r3, r1, w3, w1, w2, i1, i3, i1, i2, i3, i3, i2, w3, w1, w1, w1, w3, w2, w3, w2, w2, w2, w1, w2, w2, w1, w3, w2, r2, r3, r1, w3, w1, w1, r1], [r1, r1, r3, r2, w2, r2, r3, r1, w3, w1, w2, i2, i1, i1, i2, i2, i2, i3, i2, i3, r2, r3, w3, w2, w3, w2, w2, w2, w1, w2, w2, w1, w1, w3, w1, r1, r3, r2, r1, r1, r1, r1], [r2, r2, w1, r3, r2, r2, r2, r1, w2, w3, w3, i2, i1, i1, i1, i3, i3, i2, i1, i1, r3, r3, r2, w1, w2, w3, w1, w2, w3, w2, w2, w1, w1, w3, w2, r1, r1, r3, r3, r1, r1, r3], [r2, w2, w3, r1, r1, r2, r3, r3, w1, w3, w1, i1, i2, i1, i2, i2, i1, i2, i1, i2, i1, r1, r2, r1, w1, w1, w3, w1, w1, r2, r1, w1, w1, w2, w2, r3, r3, w1, w3, r2, r3, r3], [r2, r1, r1, r1, r3, r1, r1, w3, w3, w1, w3, i2, i1, i2, i1, i3, i3, i1, i2, i1, i3, i3, i3, i2, w1, w1, w2, w3, r3, r1, r2, w1, w3, w2, r1, r3, r2, w3, w3, r3, r1, r1], [r2, r1, r1, r1, w3, r1, r1, w1, w1, w2, w3, w1, i3, i1, i1, i1, i3, i1, i3, i3, i1, i3, i3, i1, i2, w2, w3, w1, r3, r2, r1, r3, w2, w3, r1, r2, r3, w3, r1, r1, r2, r2], [r1, r1, r1, w3, w3, r1, r3, w1, w2, w2, w2, w3, w3, w2, i1, i3, i1, i3, i3, i1, i3, i3, i1, i2, i3, i1, w2, w3, w2, r1, r1, r2, w3, w1, r2, r2, r1, r2, r2, r1, r3, r1], [r1, r1, r2, r1, r3, w3, r1, r3, w3, w1, w3, w2, w3, w1, w3, r3, r1, i3, i1, i1, i2, i1, i2, i3, i2, i2, w2, w1, w3, w2, w2, w1, w1, r2, r2, r2, w2, r2, r1, r3, r1, r2], [r3, r2, r1, r1, w2, w3, r1, r3, w2, w1, w2, w2, w2, w1, w1, w2, r1, r3, r3, i3, i3, i1, i3, i2, i1, i2, w2, w1, w1, w3, w1, w3, w1, r1, r1, r2, r2, w3, r3, w2, w1, r1], [r3, r1, r3, r1, w1, r1, r1, r1, w1, w2, w2, w2, w3, w1, w2, w1, w1, r2, r1, i1, i3, i1, i2, i3, i3, w1, w2, w1, w1, w2, w1, w3, w2, r2, r1, r2, w3, w3, w1, r1, w1, r2], [r3, r1, r1, w3, w2, r3, r1, w2, w3, w1, w1, w1, w1, w2, w3, w2, w1, w2, i2, i2, i2, i1, i1, i3, w1, w1, w1, w2, w1, w2, w2, w2, w1, w2, r1, r3, r3, w2, w2, r2, r2, r1], [r1, r1, w3, w1, w2, r2, r2, w3, w3, w1, w2, w2, w2, w1, w1, w2, w3, w1, w3, i1, i3, i2, i3, w1, w3, w1, w2, w3, w2, w1, w1, w3, w2, w2, r3, r1, r1, r1, r1, r1, r1, r1], [r1, r3, r3, w2, r3, r3, r2, w3, w3, w2, w1, w3, r2, w3, w1, w1, w3, w1, w1, w3, w3, w1, w2, w2, w1, w2, w1, w3, w2, r1, r1, w2, w1, w1, w1, r1, w2, w1, r1, r3, r2, r1], [r1, w3, r3, r1, r1, r1, r3, w1, w3, w1, w2, w2, r3, r1, w1, w1, w2, w1, w2, w1, w3, w2, w3, w1, w3, w2, w2, w1, r3, r1, r1, w1, w2, w1, w1, r2, r2, w2, w3, r1, r1, r1], [r1, w3, r1, r2, w1, r1, r1, r1, w2, w3, w2, w2, w1, w3, w1, w3, w1, w3, w3, w1, w3, w3, w3, w1, w3, w2, w1, w1, r1, r1, w2, w1, w1, w3, w1, r3, r2, r3, w1, w3, w1, r3], [r1, r1, r1, w3, w3, w2, r2, r2, w1, w2, w1, w2, w1, w2, w2, w2, w1, w3, w3, w1, w3, w3, w3, w2, w2, w3, w1, w2, w3, w2, w2, w3, w3, w3, w1, r3, r1, w3, r3, w3, r1, r3], [r1, r2, r3, r3, r2, r3, r1, r3, w3, w3, w3, w1, w2, w2, w2, w2, w2, w1, w3, w3, w1, w2, w1, w2, w3, w1, w1, w3, w3, w2, w3, w1, w2, w1, w2, r1, w2, w1, r1, r2, r1, r2], [r2, r2, i2, i2, r3, r1, r2, r1, r3, w2, w2, w3, w3, w1, w1, w3, w3, w3, r2, r1, w3, w3, w1, w3, w1, w3, w3, w3, w2, w2, w1, w1, w2, w1, w2, r2, r1, i3, i1, w1, r1, r1], [r2, i1, i3, i2, i2, i3, r1, r1, r3, w3, w1, w3, w2, w3, w2, w1, w3, r1, r3, r1, r3, w3, w1, w3, w1, w3, w2, w3, r1, r1, r1, r2, w1, w2, w3, r1, i3, i2, i2, i3, r1, r1], [r1, i1, i3, i2, i1, i1, i3, r1, r1, w2, w1, w1, w2, w1, w2, w1, w3, r1, r2, r3, r3, r1, w2, w3, w3, w1, w2, r1, r3, i1, i2, r2, w2, w1, w1, r3, i2, i2, i2, i1, w2, r3], [r1, i3, i3, i1, i1, i3, i2, r1, r1, r2, w3, w2, w3, w3, w1, w1, w3, w1, r2, r2, r1, r1, r1, w3, w2, w3, r2, r1, i3, i1, i1, r2, w3, w3, w2, r1, i2, i3, i3, i3, r2, r1], [r1, i3, i3, i1, i1, i1, r3, r3, r1, r1, w3, w3, w2, w1, w2, w1, w2, w1, r3, r2, r1, r1, w1, w3, w3, w2, r3, i3, i3, i3, r2, r2, w1, w3, r1, r1, r1, i2, i3, i1, r1, r3], [r1, r3, i1, i1, r1, r1, r2, r3, r1, r3, w3, w1, w3, r1, r1, w3, w2, w3, w1, w3, r2, w2, w2, w3, w3, w1, r1, i3, i3, r1, r2, w1, w1, r1, r1, r3, r1, r1, r1, r1, r2, r1], [r1, r3, r1, r1, r1, w2, r1, r3, r1, w2, w1, w2, w3, r1, r2, r3, w2, w3, w2, w1, w3, w1, w2, w1, w1, w1, r2, r1, r2, r3, w2, w1, w1, r1, r1, w1, r2, w2, w2, w1, r3, r1], [r1, r3, r2, r2, w3, w3, r2, r2, r3, w1, w1, w1, w1, w3, r3, w3, w1, w2, w2, w2, w3, w1, w2, w2, w3, w1, w1, w3, w3, w3, w1, w1, r1, r3, w1, w2, r3, r2, r2, w3, w2, r1], [r2, w1, w1, w3, r2, r1, r3, r1, w1, w2, w1, w1, w1, w3, w2, w2, w1, w3, w3, w3, w3, w2, w1, w3, w1, w3, w1, w2, w3, w3, w3, w3, r1, r1, r1, r1, r1, w3, r2, w3, w2, r1], [r1, r1, w2, r3, r1, r2, r1, pp, w2, w3, w3, w1, w3, w2, w2, w2, w1, w2, r1, r3, r1, w1, w3, w1, w1, w2, w2, w1, w2, r1, r1, r3, r2, w1, r1, r1, w3, w1, r3, w3, w1, r2], [r1, r1, r2, r2, r2, r2, r3, r1, r1, w3, w2, w1, w2, w1, w3, w2, r1, r2, r1, r1, r2, r3, w2, w1, w2, pp, r3, r2, r1, r1, r2, r2, r2, w3, w2, r1, w2, w1, w2, r3, r2, r2], [r1, r1, r2, r1, r1, r1, r1, r1, r2, r3, r1, r1, r3, r1, r2, r2, r1, r3, r1, r2, r2, r1, r3, r1, r3, r2, r1, r1, r1, r1, r1, r3, r1, w3, r1, r3, r2, w1, r1, r1, w2, r1], [r2, r1, r2, r1, r3, w3, r2, r2, w2, r1, r1, r1, r3, r1, r3, r2, w2, r1, r3, r2, w2, w2, r3, r1, r1, r2, r2, r1, r1, r1, r1, r2, w1, w3, r1, r1, r1, w2, w2, r1, r2, r2], [r2, r1, r1, r2, w3, w3, r1, r2, w2, r2, w3, r1, w1, w2, r2, w3, w2, r2, r2, r1, r1, w2, r1, r1, r3, r2, w2, w2, r1, r3, r2, w2, w1, r1, r1, w1, r1, r2, w2, w1, r1, r1], [r1, r1, r2, r3, r1, r3, r2, r2, r1, r2, r1, w3, w2, w3, r3, w2, w2, w3, r3, r3, r1, r1, r2, r3, r1, r1, w1, w3, w1, r3, r1, w3, r1, r2, w1, w2, w3, r3, w1, w3, w3, r3], [r3, w1, w3, r1, r3, w2, r1, r2, w2, r1, r3, r2, w1, r3, r3, r1, w1, r3, r3, r2, w2, w2, r3, w2, r1, r1, r2, w3, w2, r1, r1, r1, r3, r3, w1, w2, r1, r1, r1, w3, w2, r3], [r1, r3, w3, r1, r2, r3, r2, r3, r1, r3, w1, r3, r3, r1, r1, r1, r3, r1, r1, w3, w1, w2, w3, w3, w1, r1, r3, r1, r1, r3, r1, r3, r1, r1, r2, r1, r3, r2, w3, w1, w2, w3], [r1, r1, r2, r1, r2, r1, r2, r2, r1, r1, r1, r2, r2, r1, r1, r2, r3, r1, w3, w3, w2, r1, r1, w3, w1, r2, r1, r2, r1, r3, r1, r1, r2, r1, r3, r1, r1, r1, r2, w2, w3, r1]], 'elevation': [['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, '', '', '', '', '', e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, '', '', '', '', e1, e1, e1, e1, e1, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e1, e1, e1, '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', e1, e1, e1, e1, e1, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e1, e1, '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e1, e1, '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e1, e1, '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', e1, e1, e1, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, '', '', '', '', e1, e1, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, '', '', '', e1, e1, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', e1, e1, e1, e1, e1, e1, e1, '', '', '', '', e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', e1, e1, e1, e1, e1, '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', e1, e1, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e1, e1, e1, '', '', e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, '', '', '', '', '', e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', e1, e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']]}, 'beach': {'players': {}, 'background': b3, 'map': [[r1, r3, r2, r3, r2, r2, r4, r3, r3, r3, r1, r2, r2, r4, r3, r4, r2, r4, r3, r4, r2, r4, r4, w1, w1, w2, w1, w1, w1, r1, r3, r3, r4, r3, r4, r1, r3, r1, r2, r2, r2, r4, r4, r1, r2, r4, r2, r3, r4, r3, r4, r3, r4], [r3, r2, r1, r1, r2, r2, r4, r3, r4, r4, r4, r1, r1, r4, r4, w1, r3, r4, r4, r2, r2, r4, r3, r1, w1, w1, w1, w2, r4, r3, r3, r4, r1, r1, r3, r2, r4, r2, r2, r3, r1, r1, r2, r1, r2, r2, r3, r3, r4, r2, r4, r4, r4], [r2, r3, r4, r2, r1, r4, r4, r1, r2, r4, r3, r2, r4, r3, r4, w1, r2, r1, r3, r1, r2, r2, r3, r1, r3, r1, r4, r1, r3, r3, r2, r1, r1, r4, r2, r2, r2, r3, r4, r2, r3, w1, w1, w2, w2, r1, r3, r3, r2, r4, r2, r3, r4], [r1, r3, r2, r4, r1, r2, r1, r2, r4, r1, r1, r3, r1, r2, w2, w1, r4, r3, r4, r3, r1, r2, r4, r3, r3, r4, r1, r3, r3, r2, r2, r2, r2, r3, r3, r2, r4, r2, r1, r2, r2, r4, w1, w2, w2, w1, r1, r1, r2, r1, r3, r1, r3], [r1, r3, r3, r2, r4, r3, r1, r2, r3, r1, r3, r4, r4, r1, w1, w2, w2, r2, r1, r2, r4, r1, r1, r1, r2, r1, r1, r1, r3, r2, r4, r3, r2, r2, r3, r4, r1, r3, r4, r4, r1, r4, r2, w2, w1, w1, r2, r4, r3, r1, r3, r3, r4], [r4, r3, r3, r2, r2, r2, w2, w1, w2, r3, r1, r1, r1, r3, r2, w2, w1, r3, r4, r3, r3, r2, r4, r3, r2, r2, r1, r4, r4, r1, r2, r2, r2, r4, r2, w2, w1, w2, r4, r2, r3, r4, r1, r3, w1, w1, w1, r3, r1, r1, r4, r4, r4], [r4, r3, r3, r4, r3, w2, w2, w1, w1, w1, r4, r1, r1, r1, r3, w1, w1, r2, r3, r1, r1, r3, r3, r2, r2, r3, r3, r2, r4, r2, r3, r2, r1, r4, w2, w1, w1, w1, r4, r1, r1, r2, r3, r2, r1, w2, w1, r1, r3, r2, r3, r1, r1], [r2, r2, r4, r4, w2, w2, w2, w2, w1, w2, r1, r1, r3, r4, r4, r2, w1, w2, w2, w1, r4, r2, r4, r4, r3, r3, r1, r1, r2, r3, r4, r2, r3, r2, w1, w2, r3, r4, r1, r1, r4, r3, r1, r4, r1, w2, w1, r1, r2, r3, r3, r4, r1], [r3, r4, r3, w1, w1, w1, w1, r3, r1, r4, r4, r1, r3, r4, r2, r3, w2, w1, w1, w1, r1, r4, r1, r3, r3, w2, w1, w1, r1, r3, r2, r3, r2, r1, r3, r4, r3, r2, r3, r3, r3, r3, r2, r3, r2, r3, r2, r3, r1, r4, r2, r2, r2], [r2, r4, r3, r3, w2, w1, r3, r3, r3, r2, r2, r3, r1, r2, r4, r2, r3, w1, w1, r1, r2, r2, r4, r1, w1, w2, w1, w1, w1, r1, r4, r2, r2, r3, r2, r1, r4, r3, r3, r1, r2, r1, pp, r3, r4, r1, r2, r4, r4, r1, r4, r3, r2], [r1, r3, r1, r2, r2, r3, r3, r1, r4, r3, r1, r2, r4, r3, r4, r3, r4, r1, r4, r3, r2, r3, w1, w2, w1, w2, r1, r1, r2, r1, r2, r2, r2, r4, r2, r4, r4, r3, r4, p1, p2, p2, p3, r3, r1, r3, r4, r1, r4, r4, r2, r4, r2], [r2, r3, r2, r4, r2, r4, r2, r1, r1, r3, r3, pp, p3, r1, r1, r1, r2, r1, r2, r4, r2, r1, r1, w1, r4, r1, r4, r1, r3, r1, r4, r1, r3, r3, r3, r1, r4, r3, p3, p3, p3, p2, p3, r2, r1, r2, r3, r1, r2, r2, r3, r3, r4], [r1, r2, r2, r3, r3, r2, r2, r3, r4, r3, p2, p3, p2, p1, r3, r4, r1, r4, r2, r3, r4, r3, r1, r4, r1, r4, r2, r1, p3, p3, r3, r2, r2, p2, p2, p2, r4, p2, p2, p2, p2, p3, p3, r2, r3, r1, r1, r2, r4, r1, r4, r1, r4], [r1, r1, r1, r3, r1, r3, r3, r2, r1, r4, p2, p1, p2, p3, r4, r2, r2, r1, r1, r3, r1, r4, r3, r2, r4, r2, p2, p3, p3, p1, p1, r3, p3, p3, p3, p2, p2, p2, p1, p1, p3, p2, p1, r2, r1, r1, r3, r4, r4, r1, r4, r2, r3], [r1, r2, r1, r3, r1, r2, r4, r3, r1, r4, p3, p1, p3, p3, p1, r1, r1, r2, r3, r2, r2, r2, r4, r1, r2, p1, p2, p1, p1, p1, p1, p1, p1, p2, p1, p2, p3, p1, p2, p3, p2, r3, r4, r2, r3, r1, r2, r1, r2, r3, r3, r2, r1], [r2, r4, r2, r4, r3, r4, r2, r1, r3, r4, p2, p1, p1, p1, p3, p2, r4, r1, r4, r2, r2, r3, r2, r4, r2, p3, p3, p1, p2, p2, p1, p3, p2, p1, p3, p3, p1, p1, p2, p2, r3, r1, r4, r4, r3, r4, r2, r4, r4, r1, r2, r1, r4], [r4, r4, r3, r3, r3, r2, r4, r4, r4, r4, p1, p2, p1, p2, p2, p1, p3, p1, r4, r3, r3, r3, r1, r1, p2, p3, p2, p3, p1, p3, p3, p3, p2, p2, p1, p3, p1, p3, p3, r4, r1, r1, r2, r3, r3, r1, r3, r4, r4, r3, r2, r1, r4], [r1, r4, r2, r1, r2, r3, r2, r3, r4, r3, r4, p1, p2, p1, p1, p1, p1, p1, p1, p3, r2, r2, r4, p3, p3, p2, p3, p1, r4, p3, p3, p1, p3, r2, p2, p2, p2, p1, r2, r2, r1, r1, r3, r4, r1, r2, r2, r1, r1, r3, r4, r2, r2], [r4, r1, r4, r4, r1, r2, r4, r2, r2, r1, r2, p2, p1, p2, p3, p1, p2, p3, p3, p2, p3, p2, p3, p2, p3, p2, p3, r3, r3, r4, r3, r4, r1, r3, p3, p2, p2, p1, r3, r2, r4, r4, r3, r4, r3, r3, r3, r4, r3, r3, r4, r2, r2], [r3, r1, r1, r3, r2, r3, r2, r2, r2, r1, r2, p1, p1, p1, p3, p2, p2, p3, p1, p3, p2, p2, p2, p3, p1, r1, r3, r4, r3, r4, r2, r4, r2, p2, p3, p2, p2, r3, r3, r1, r4, r3, r2, r4, r4, r1, r2, r1, r3, r3, r3, r2, r2], [r4, r1, r4, r4, r1, r3, r1, r3, r3, r3, r1, r2, p3, p3, p1, p1, r1, r1, r3, p3, p3, p2, p1, p2, r1, r3, r3, r4, r3, r1, r4, r2, p2, p3, p3, p3, p2, r3, r3, r1, r1, r2, r1, r1, r4, r4, r3, r4, r3, r4, r4, r1, r3], [r2, r2, r4, r4, r4, r4, r1, r1, r1, r1, r1, r4, p1, p2, p3, p3, p3, r3, r4, r1, r2, r3, r3, r2, r1, r1, r1, r2, r3, r1, r4, r2, g3, g4, p2, p3, r3, r1, r3, r2, r1, r1, r3, r2, r2, r3, r1, r2, r3, r3, r3, r3, r4], [r2, r2, r3, r4, r4, r1, r2, r3, r4, r3, r2, r4, r2, p3, p2, p2, p3, r1, r1, r2, r2, r1, r3, r1, r2, r2, r2, r1, r2, g2, g1, g3, g4, g3, g4, p1, r2, r3, r1, r4, g1, r2, r4, r1, r4, r1, r3, r2, r2, r1, r2, r3, r2], [r2, r2, r4, r1, r2, r2, r2, r1, r3, r4, g2, g2, r3, r2, g3, p3, g4, g3, g1, r4, r1, r3, r4, r1, r1, r3, g1, g2, g3, g3, g2, g1, g2, g2, g2, g3, g2, r2, r4, g2, g2, g3, g2, g3, r1, r1, r1, r1, r3, r4, r2, r1, r4], [r4, r4, r3, r1, r2, r2, r2, r3, r3, g2, g3, g3, g2, g2, g4, g3, g2, g2, g2, g3, g3, g3, r3, r3, g1, g3, g3, g3, g3, g1, g2, g1, g3, g2, g1, g1, g2, g1, g2, g3, g1, g1, g1, g2, g1, g2, r4, r3, r2, r1, r1, r4, r1], [r3, r1, r1, r4, r4, r4, r1, r3, r1, g2, g3, g1, g2, g2, g3, g1, g2, s1, g3, g3, g3, g2, g3, g1, g2, g3, g1, g3, s2, s3, s2, s1, g3, g3, g3, g2, g1, g3, g3, g2, g1, g1, g3, g2, g1, g1, s1, r2, r3, r1, r4, r3, r2], [r4, r4, r4, r4, b2, b3, b3, s1, s2, s2, g2, g2, g1, g1, g3, g1, g1, s1, s3, s2, s2, g2, g2, g3, g2, s2, s1, s3, s2, s1, s3, s1, s2, s1, s3, s1, g1, g1, g2, g2, s2, s1, s2, s3, s3, s1, s1, r1, b1, b3, b1, r3, r2], [b1, b2, b3, b3, b2, b2, b1, s1, s1, s3, s2, s3, s3, s2, s1, s3, s1, s1, s2, s3, s1, s3, s3, s1, s1, s3, s3, s2, s1, s3, s1, s2, s3, s1, s2, s2, s3, s2, s2, s2, s3, s1, s3, s2, s2, s1, s2, b1, b1, b1, b3, b3, b1], [b2, b3, b3, b2, b1, b3, b2, b1, s2, s1, s2, s3, s2, s3, s1, s2, s1, s1, s2, s3, s2, s1, s3, s3, s1, s1, s3, s2, s1, s1, s1, s2, s3, s2, s2, s1, s1, s2, s3, s1, s1, s3, s3, s1, s3, s1, o1, b2, b1, b1, b2, b3, b2], [b3, b3, b1, b2, b2, b2, b2, b3, b3, o1, s3, s1, s2, s3, s2, s2, s1, s2, s2, s3, s1, s3, s1, s3, s3, s1, s1, s2, s3, s3, s3, s2, s1, s1, s2, s1, s1, s1, s2, s2, s2, s3, o2, o3, o2, o1, o1, b1, b3, b1, b2, b1, b3], [b1, b2, b1, b1, b3, b1, b3, b2, b3, b2, o2, o2, o2, o3, o2, o3, s2, s3, s1, o2, o1, s3, s3, s3, s3, o3, o2, o1, s3, s3, s2, s1, s1, s1, s2, s1, s3, s1, s3, s2, o3, o3, o2, o1, o3, o2, o3, b2, b3, b3, b3, b2, b2], [b1, b1, b3, b2, b3, b3, b1, b3, b3, b2, b1, b1, b1, o2, o1, o1, o1, o3, o1, o2, o2, o3, o2, o2, o3, o1, b2, o3, o3, o1, o3, o3, s3, s1, s3, s1, s3, s3, o3, o2, o2, b3, b1, o2, o1, o3, b2, b2, b3, b3, b1, b3, b1], [o1, o2, o2, o1, o2, o3, b3, b3, b2, b1, b1, b2, b3, o3, o3, o2, o1, b1, b2, b2, b3, b3, b3, b2, b1, b2, b1, b3, b2, b1, b1, o3, o3, o1, o2, o2, o1, o3, o1, b2, b1, b2, o1, o3, o2, o1, o2, b3, b1, b3, b3, b3, b3], [o3, s2, s2, s2, s3, o1, o1, b2, b2, b2, b2, b2, o1, o3, o3, o1, b1, b1, b3, b3, b3, b1, b3, b3, b3, b2, b3, b1, b3, b1, b1, b1, b3, o1, o2, o3, b1, b2, b2, b2, b1, o2, o2, s1, s1, s2, o1, b2, b3, b3, b3, b1, b2], [s1, s3, g1, g2, s3, s1, o1, b1, b1, b2, b2, b3, o2, o3, o1, o2, b3, b2, b1, b1, b1, b3, b1, b2, b2, b1, b3, b2, b2, b3, b2, b1, b1, b1, b3, b3, b1, b1, b1, b3, b3, o1, s2, s1, s2, s2, o3, b3, b1, b2, b1, b3, b3], [g1, g2, g1, g2, g2, s3, o2, b1, b1, b2, b2, o3, o2, o1, o2, b2, b2, b2, b3, b1, b2, b2, b3, b2, b3, b1, b2, b2, o3, o1, o3, o2, o1, b3, b1, b1, b1, b1, b2, b3, b1, o1, s1, s1, g2, s2, o2, b1, b3, b3, b1, b2, b1], [r4, r1, g1, g1, s2, s1, o3, b1, b1, b3, b2, o3, o1, o1, b1, b2, b3, b1, b2, b2, b3, b1, b1, b2, b3, b3, o1, o1, o2, s3, s1, s3, o2, o2, o3, b2, o1, o1, o3, b2, o3, s1, s1, g1, g1, s2, o1, b2, b3, b1, b1, b2, b1], [r2, r2, g1, s3, s3, s3, o3, b1, b1, b2, b3, o1, o3, o3, b2, b2, b2, b1, b1, b1, b3, b3, b2, b2, b2, o1, o3, s1, s2, s1, s1, s1, s2, s1, s2, o2, o3, s3, s2, o1, o1, s1, s1, s3, s2, s2, o3, b3, b3, b1, b1, b2, b2], [r2, s3, s3, s2, s3, o3, o3, b1, b2, b1, o2, o2, o2, o3, b2, b1, b1, b3, b1, b2, b3, b2, b1, b1, o3, o2, s2, s1, s2, s3, s2, s1, s2, s2, s3, s3, s2, s1, s2, s3, o2, o2, o2, o3, s3, s2, o1, b1, b1, b3, b3, b1, b2], [s1, s3, o3, o2, o2, o1, b1, b1, o2, o1, s3, s2, s1, o1, o3, o1, o1, b2, b2, b2, b1, b3, b1, b1, o1, s3, s1, s3, s3, g2, g2, g3, g3, s2, s2, s1, s2, s1, s1, s2, o2, o2, o3, o1, o3, o1, o3, b2, b2, b2, b1, b1, b3], [o3, o2, o2, b3, b3, b3, b3, o1, o1, s1, s1, s1, s3, s1, s2, s3, o1, o1, o2, b3, b2, b1, b3, b1, o2, s3, s3, s3, g2, g2, g1, g2, g2, g1, g3, g2, g2, g2, s1, s1, s2, o1, o3, b2, b3, b3, b3, b3, b3, b1, b1, b3, b2], [b1, b1, b1, b3, b3, b1, b1, o2, s2, s2, s2, g3, g3, s3, s2, s3, s3, s3, o1, o1, b3, b1, b2, b3, o1, s2, s3, g1, g3, g2, r4, r2, r2, g3, g1, g2, g3, g1, g2, s1, s2, s2, o2, o3, b2, b2, b3, b1, b1, b3, b1, b2, b1], [b3, b3, b3, b3, b1, b1, o2, o1, s2, s2, g3, g1, g3, s2, s1, s2, s2, s3, s3, o1, b3, b3, b2, b2, o2, s3, s3, g2, g2, r2, r4, r4, r2, r4, g2, r1, r3, g1, g2, g1, s1, s1, o1, o3, b3, b1, b2, b3, b2, b1, b1, b3, b1], [b2, b1, b3, b2, b2, b1, b2, s2, s3, g3, g3, g3, g2, g1, g2, s2, s3, s3, s3, o3, o1, o3, o2, b2, o3, s2, s1, g2, g3, r3, r1, b2, b1, r2, r3, r1, r4, r1, g1, g3, s2, s1, s3, o1, b1, b2, b3, b3, b1, b1, b3, b2, b2], [b2, b3, b3, b2, b1, b3, b3, s2, s1, g1, g3, r4, r2, g3, g3, g2, s3, s3, s3, s2, o1, o3, o2, o2, o1, s2, s2, g1, r4, r4, b2, b3, b2, b1, r2, g1, r1, r1, g2, g3, g2, s3, s3, o3, b2, b2, b3, b3, b2, b2, b1, b3, b2], [b2, b1, b3, b1, b2, b1, b2, s2, s1, s2, g3, r1, r3, r4, g3, g2, g2, s1, s1, s1, o3, o2, o1, o3, o3, s1, s2, g2, r3, b1, b2, b1, b3, b2, b1, g1, g3, g3, g3, g1, g1, s3, s2, o2, b2, b1, b3, b1, b1, b2, b1, b2, b2], [b3, b1, b1, b3, b1, b1, b3, s3, s1, s3, g2, r4, r1, r4, r4, g3, g2, s3, s3, s1, o1, o1, o2, o3, o1, s1, s1, s3, g1, b2, b3, g3, g3, b3, b2, g3, s2, s3, s3, s2, s3, s1, s1, o1, b1, b1, b3, b3, b1, b1, b1, b3, b1], [b2, b3, b2, b2, b2, b3, b2, s3, s1, g1, g3, r1, r4, r4, r4, g2, g1, s3, s1, s3, o3, b2, b2, o2, o2, s2, s3, s3, g2, g1, g1, g3, g2, g1, g2, s2, s3, s2, s3, s1, s2, s3, s1, o1, b3, b3, b1, b3, b3, b1, b1, b2, b2], [b1, b2, b2, b3, b3, b2, s2, s3, s2, g2, r3, r2, r2, r4, g1, g3, g3, s1, s1, s1, o2, b3, b3, b2, o1, o2, s3, s1, g2, g2, g2, g1, g2, g3, g2, s3, s1, o1, o3, o1, s2, s1, o3, b1, b2, b1, b2, b1, b3, b1, b1, b1, b2], [b1, b1, b2, b3, b2, b1, s2, s1, g3, g2, r4, r2, g2, g2, g3, g2, g1, s1, s3, o2, b1, b3, b3, b1, b2, o3, s3, s1, s1, g3, g2, g1, g1, g3, s3, s2, o2, o3, b2, o2, o1, o3, b3, b3, b3, o1, o3, o3, o1, o1, o3, b3, b1], [b2, b1, b1, b2, b1, b3, s2, s3, g3, g2, r3, r1, s2, s1, s3, g2, g2, s1, s2, o2, b2, b3, b2, b1, b3, o3, o2, s3, s3, s1, g2, g2, s1, s1, s3, s1, o3, b3, b3, b2, b2, b3, b1, b2, o3, o2, s1, s3, s1, s3, o1, o2, b1], [b2, b2, b3, b3, b2, b2, s1, s2, g2, s2, s1, s3, s3, s3, s2, s1, s1, s2, s3, o3, b2, b2, b1, b1, b1, b3, o3, o3, s3, s2, s1, s2, s1, s2, s1, o1, b2, b1, b1, b3, b2, b1, b1, o1, o3, s2, s3, s2, s3, s3, s2, o3, o2], [b1, b3, b2, b3, b2, b3, s1, s2, s1, s1, s1, s1, s2, s3, s3, s2, s1, s3, o1, b1, b2, b3, b1, b2, b1, b2, b3, o2, o2, s1, s3, s3, s2, o2, o2, o3, b2, b3, b2, b2, b2, b3, b3, o2, s1, s3, g1, g1, g3, s2, s3, s1, o3], [b3, b3, b2, b3, b2, b1, b3, s3, s3, s1, o3, o3, o3, o3, s3, s2, b2, b3, b1, b3, b2, b2, b1, b2, b2, b3, b1, b3, o2, o1, o2, o1, o3, o2, b3, b1, b1, b2, b3, b2, b3, b3, b1, o2, s3, s3, g3, r2, r3, g1, g1, s1, s2], [b2, b2, b3, b1, b1, b3, b1, b2, b1, b2, b1, b1, b2, b2, b1, b1, b2, b2, b2, b2, b2, b3, b3, b1, b1, b1, b3, b3, b3, b1, b2, b2, b3, b2, b1, b2, b1, b2, b1, b3, b3, b1, b2, o1, s3, s2, g2, r1, r1, r3, g2, g1, s2], [b3, b3, b3, b1, b3, b3, b2, b3, b2, b3, b2, b2, b1, b3, b3, b3, b2, b2, b1, b1, b3, b3, b2, b2, b3, b2, b3, b1, b2, b3, b3, b3, b2, b2, b3, b1, b2, b2, b1, b1, b2, b1, b2, o2, s3, s1, s2, g3, r1, r3, r4, g2, g2], [b1, b3, b1, b3, b1, b3, b2, b1, b2, b1, b2, b2, b3, b1, b3, b2, b2, b2, b3, b2, b2, b2, b3, b1, b3, b3, b1, b3, b3, b2, b2, b3, b2, b1, b1, b2, b1, b3, b2, b3, b3, b2, b1, b3, o3, s3, s3, g2, g2, r4, r3, r1, g2], [b1, b2, b1, b1, b1, b3, b3, b3, b3, b3, b2, b2, b3, b3, b2, b3, b1, b2, b3, b2, b3, b3, b3, b2, b3, b2, b1, b2, b1, b1, b3, b3, b2, b2, b1, b2, b3, b2, b1, b2, b1, b2, b1, b1, o1, s1, s2, g2, g2, r3, r2, g3, s2], [b3, b1, b1, b1, b3, b3, b1, b1, b3, b3, b2, b1, b1, b3, b2, b3, b3, b2, b3, b1, b1, b3, b1, b1, b3, b1, b2, b3, b1, b3, b2, b2, b3, b2, b2, b3, b1, b3, b2, b2, b2, b2, b3, b2, o2, s2, s2, s1, g1, g3, g1, s2, s3], [b2, b1, b3, b2, b1, b2, b1, b3, b1, b1, b3, b1, b2, b3, b2, b2, b2, b3, b2, b2, b1, b2, b2, b3, b2, b3, b3, b2, b2, b1, b1, b2, b3, b2, b1, b2, b3, b2, b2, b1, b1, b3, b1, b1, b2, o1, s3, s1, g2, g2, s1, s2, b3]], 'elevation': [['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e4, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e4, e4, e4, e4, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', e4, e4, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e4, e4, e4, e4, e4, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e4, e4, e4, e4, '', '', '', '', '', '', '', '', '', '', '', '', '', '', e3, e3, '', '', '', e3, e3, e3, '', e3, e4, e4, e4, e4, e4, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e4, e4, e4, e4, '', '', '', '', '', '', '', '', '', '', '', '', e3, e3, e3, e3, e3, '', e3, e3, e3, e3, e3, e3, e4, e4, e4, e4, e4, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e4, e4, e4, e4, e4, '', '', '', '', '', '', '', '', '', '', e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e4, '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e4, e4, e4, e4, e4, e4, '', '', '', '', '', '', '', '', '', e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e4, e4, e4, e4, e3, e3, e3, e3, '', '', '', '', '', '', e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', e4, e3, e3, e3, e3, e3, e3, e3, e3, '', '', '', e3, e3, e3, e3, e3, '', e3, e3, e3, e3, '', e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, '', '', '', '', '', '', '', e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, '', '', '', '', '', '', '', '', e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', e3, e2, e2, e2, '', '', '', e3, e3, e3, e3, e3, '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e2, '', '', '', '', e1, '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e1, e1, '', '', e2, e2, e1, e1, e1, '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e0, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e0, '', '', '', '', '', ''], ['', '', '', '', '', '', '', e0, e0, e0, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e0, e0, '', '', '', '', '', ''], ['', '', '', '', '', '', '', e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, '', e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', e0, e0, e0, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', e0, e0, e0, e0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', e0, e0, e0, e0, e0, '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', e0, e0, e0, e0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e0, e0, e0, '', '', '', '', '', e0, e0, e0, e0, e0, e0, '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', e0, e0, e0, e0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e0, e0, e0, e0, e0, e0, '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', e0, e0, e0, e0, '', '', '', '', '', '', '', '', '', '', '', '', '', e0, e0, e0, e0, e0, '', '', '', '', '', '', '', '', e0, e0, e0, e1, e0, e0, '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', e0, e0, e0, '', '', '', '', '', '', '', '', '', '', '', '', e0, e0, e0, e0, e0, e0, e0, e0, e0, '', e0, e0, e0, '', e0, e0, e0, e1, e1, e0, e0, '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', e0, e0, e0, '', '', '', '', '', '', '', '', '', '', '', e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e0, e0, e0, e0, '', '', '', '', '', '', '', '', '', '', e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', '', '', e0, e0, e0, e0, e0, e1, e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', e0, e0, e0, e0, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e0, e0, e0, e0, e0, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e0, e0, e0, e0, e1, e1, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', e0, e0, e0, e1, e1, e1, '', '', '', e1, e1, e1, e1, e1, e1, e0, e0, e0, e0, e0, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', e0, e0, e0, e0, e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', e0, e0, e0, e1, e1, '', '', '', '', '', e1, '', '', e1, e1, e1, e0, e0, e0, e0, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e0, e0, e1, e1, e1, e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, '', e0, e0, e0, e1, e1, '', '', '', '', '', '', '', '', '', e1, e1, e0, e0, e0, e0, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e0, e0, e1, e1, '', '', e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e1, '', '', '', '', '', '', '', e1, '', '', e1, e1, e1, e0, e0, e0, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e0, e0, e0, e1, '', '', '', e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e1, '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e0, e0, e0, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e0, e0, e0, e1, '', '', '', '', e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e1, '', '', e1, e1, '', '', e1, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e0, e0, e1, e1, '', '', '', '', e1, e1, e0, e0, e0, e0, '', '', e0, e0, e0, e0, e0, e1, e1, e1, e1, e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', e0, e0, e0, e1, '', '', '', '', e1, e1, e1, e0, e0, e0, e0, '', '', '', e0, e0, e0, e0, e1, e1, e1, e1, e1, e1, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', e0, e0, e1, e1, '', '', e1, e1, e1, e1, e1, e0, e0, e0, '', '', '', '', '', e0, e0, e0, e0, e1, e1, e1, e1, e1, e0, e0, e0, e0, '', e0, e0, e0, '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', e0, e0, e1, e1, '', '', e0, e0, e0, e1, e1, e0, e0, e0, '', '', '', '', '', e0, e0, e0, e0, e0, e1, e1, e0, e0, e0, e0, e0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', e0, e0, e1, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', '', e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', '', '', '', e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e0, e0, e0, e0, e0, e0, e0, e0, e0, '', '', '', '', '', '', '', '', '', '', '', '', e0, e0, e0, e0, e0, e0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']]}, 'abyss': {'hidden': True, 'score': 0.005, 'players': {}, 'background': 'black', 'map': [[bl, bl, bl, bl, bl, bl, pa, pa, pa, pa, bl, bl, bl, pa, pa, pa, pa, bl, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, pa, a1, a1, a2, a1, pa, bl, pa, a1, a3, a3, a2, pa, bl, bl, bl, bl, bl], [bl, bl, bl, bl, pa, a3, a2, a2, a3, a2, a1, pa, a1, a2, a2, a2, a1, a2, pa, bl, bl, bl, bl], [bl, bl, bl, pa, a1, a3, a3, a3, a2, a3, a2, a3, a2, a1, a3, a3, a3, a2, a3, pa, bl, bl, bl], [bl, bl, pa, a2, a1, a2, a2, pa, pa, a1, a3, a3, a1, a1, pa, pa, a1, a2, a1, a1, pa, bl, bl], [bl, pa, a3, a1, a2, a1, pa, b1, b1, pa, a2, a1, a2, pa, l2, l1, pa, a2, a3, a1, a1, pa, bl], [pa, a1, a3, a2, a3, a2, pa, b3, b1, pa, a2, a1, a1, pa, l1, l3, pa, a3, a3, a3, a2, a3, pa], [pa, a1, a2, a3, a2, a2, pa, b1, b2, pa, a3, a3, a2, pa, l3, l2, pa, a2, a1, a2, a1, a1, pa], [bl, pa, a2, a3, a1, a1, pa, b2, b3, pa, a2, a2, a2, pa, l1, l3, pa, a2, a2, a3, a3, pa, bl], [bl, bl, pa, a3, a3, a2, a1, pa, pa, a1, a3, a2, a1, a2, pa, pa, a2, a2, a2, a2, pa, bl, bl], [bl, bl, bl, pa, a2, a1, a2, a2, a1, a1, a1, a3, a1, a3, a1, a3, a3, a3, a1, pa, bl, bl, bl], [bl, bl, bl, pa, a3, a2, a2, a2, a2, a3, a1, a2, a3, a2, a1, a2, a2, a2, a3, pa, bl, bl, bl], [bl, bl, bl, bl, pa, a3, a1, a1, a2, a3, a3, a3, a2, a2, a2, a3, a1, a2, pa, bl, bl, bl, bl], [bl, bl, bl, bl, bl, pa, pa, pa, pa, a3, a3, a3, a1, a2, pa, pa, pa, pa, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, bl, bl, bl, bl, pa, a1, a2, a3, pa, bl, bl, bl, bl, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, bl, bl, bl, bl, pa, a2, a2, a3, pa, bl, bl, bl, bl, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, bl, bl, bl, bl, pa, a3, a3, a3, pa, bl, bl, bl, bl, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, bl, bl, bl, bl, pa, a3, a1, a2, pa, bl, bl, bl, bl, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, bl, bl, bl, pa, a1, a2, a1, a2, a2, pa, bl, bl, bl, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, bl, bl, pa, a3, a1, a1, a2, a3, a2, a1, pa, bl, bl, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, bl, bl, pa, a3, a2, a1, a2, a3, a2, a2, pa, bl, bl, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, bl, bl, pa, a1, a1, a1, pp, a2, a2, a3, pa, bl, bl, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, bl, bl, pa, a3, a3, a1, a1, a3, a2, a3, pa, bl, bl, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, bl, bl, bl, pa, a1, a2, a1, a3, a1, pa, bl, bl, bl, bl, bl, bl, bl, bl], [bl, bl, bl, bl, bl, bl, bl, bl, bl, pa, pa, pa, pa, pa, bl, bl, bl, bl, bl, bl, bl, bl, bl]], 'elevation': [['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', e3, e3, e3, e3, '', '', '', e3, e3, e3, e3, '', '', '', '', '', ''], ['', '', '', '', '', e3, e3, e3, e3, e3, e3, '', e3, e3, e3, e3, e3, e3, '', '', '', '', ''], ['', '', '', '', e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, '', '', '', ''], ['', '', '', e3, e3, e3, e3, '', '', e3, e3, e3, e3, e3, '', '', e3, e3, e3, e3, '', '', ''], ['', '', e3, e3, e3, e3, '', '', '', '', e3, e3, e3, '', '', '', '', e3, e3, e3, e3, '', ''], ['', e3, e3, e3, e3, e3, '', '', '', '', e3, e3, e3, '', '', '', '', e3, e3, e3, e3, e3, ''], ['', e3, e3, e3, e3, e3, '', '', '', '', e3, e3, e3, '', '', '', '', e3, e3, e3, e3, e3, ''], ['', '', e3, e3, e3, e3, '', '', '', '', e3, e3, e3, '', '', '', '', e3, e3, e3, e3, '', ''], ['', '', '', e3, e3, e3, e3, '', '', e3, e3, e3, e3, e3, '', '', e3, e3, e3, e3, '', '', ''], ['', '', '', '', e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, '', '', '', ''], ['', '', '', '', e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, '', '', '', ''], ['', '', '', '', '', e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, e3, '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e3, e3, e3, e3, e3, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e3, e3, e3, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e3, e3, e3, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e3, e3, e3, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e3, e3, e3, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e3, e3, e3, e3, e3, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e3, e3, e3, e3, e3, e3, e3, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e3, e3, e3, e3, e3, e3, e3, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e3, e3, e3, e3, e3, e3, e3, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e3, e3, e3, e3, e3, e3, e3, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e3, e3, e3, e3, e3, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']]}, 'treasure': {'hidden': True, 'score': 0.005, 'players': {}, 'background': b3, 'map': [[r1, r2, r2, r3, r2, r2, r2, r3, r1, r1, r3, r2, r1, r2, r2, r2, r3, r3, r3, r3, r1, r1, r2, r2, r1, r2, r3, r1, r3, r2, r1, r2, r2], [i1, i2, i1, r1, r2, i2, i2, i1, r2, r3, i2, i2, i1, r1, r2, i2, i2, i1, r3, r1, i2, i2, i1, r2, r1, i2, i2, i2, r1, r1, i2, i1, i1], [i2, t3, i2, r1, r1, i1, t5, i2, r3, r1, i2, t4, i1, r3, r2, i2, t3, i1, r1, r2, i2, t2, i1, r2, r1, i1, t5, i2, r2, r2, i2, t3, i1], [i1, i1, i1, r3, r2, i2, i2, i1, r3, r2, i1, i1, i1, r1, r2, i1, i2, i2, r1, r1, i2, i1, i1, r3, r2, i1, i1, i1, r2, r2, i2, i1, i1], [r1, r1, r1, r3, r3, r1, r2, r1, r2, r1, r3, r2, r3, r2, r2, r2, r1, r2, r1, r1, r1, r1, r3, r2, r2, r2, r3, r1, r1, r3, r2, r3, r2], [r2, r2, r3, r2, r3, r2, r1, r2, r3, r1, r1, r1, r3, r3, r2, r1, r1, r3, r1, r3, r1, r3, r3, r1, r3, r3, r3, r2, r2, r3, r2, r1, r3], [i2, i1, i2, r3, r2, i2, i1, i2, r1, r1, i2, i2, i1, r2, r1, i1, i2, i2, r2, r3, i2, i2, i2, r2, r1, i1, i1, i1, r2, r2, i1, i1, i1], [i1, t1, i1, r1, r3, i1, t2, i2, r2, r1, i2, t3, i1, r2, r2, i2, t2, i1, r2, r1, i1, t4, i1, r3, r3, i1, t3, i1, r2, r2, i1, t1, i2], [i2, i1, i2, r3, r3, i2, i2, i2, r1, r1, i2, i1, i1, r2, r3, i1, i1, i2, r1, r1, i2, i1, i2, r1, r2, i1, i1, i1, r2, r1, i2, i1, i2], [r1, r2, r1, r2, r3, r3, r3, r2, r2, r2, r1, r1, r2, r1, r3, r1, r1, r3, r1, r1, r3, r1, r1, r1, r1, r1, r3, r2, r2, r3, r3, r1, r2], [r1, r2, r2, r1, r2, r1, r1, r1, r1, r2, r2, r2, r3, r3, r3, s3, s2, s2, r1, r1, r3, r3, r3, r1, r1, r1, r3, r3, r1, r2, r3, r3, r3], [i1, i2, i1, r2, r2, i1, i2, i2, r3, r3, i2, i1, i2, r1, s1, s1, s1, s1, s2, r1, i1, i1, i1, r3, r3, i2, i2, i2, r2, r1, i1, i1, i1], [i2, t5, i1, r3, r1, i1, t1, i1, r3, r1, i1, t2, i2, r2, s2, s3, pp, s1, s1, r2, i2, t3, i1, r3, r1, i1, t2, i2, r1, r1, i1, t4, i2], [i1, i2, i1, r1, r3, i1, i2, i2, r2, r2, i1, i2, i1, r1, s2, s2, s3, s1, s1, r3, i1, i1, i2, r2, r1, i1, i1, i1, r2, r3, i2, i1, i2], [r2, r2, r3, r1, r3, r3, r2, r3, r2, r1, r3, r1, r3, r1, s1, s3, s1, s2, s1, r1, r3, r2, r1, r2, r1, r1, r2, r3, r3, r1, r1, r1, r3], [r3, r2, r1, r3, r2, r3, r3, r1, r1, r3, r2, r3, r3, r1, s1, s1, s2, s1, s1, r2, r1, r1, r1, r3, r2, r1, r3, r2, r2, r3, r3, r2, r1], [i2, i1, i2, r3, r1, i1, i1, i2, r3, r2, i1, i2, i1, r2, s3, s2, s3, s1, s3, r3, i1, i1, i1, r1, r3, i2, i1, i1, r3, r2, i1, i2, i2], [i2, t2, i1, r2, r3, i1, t3, i2, r2, r2, i2, t4, i1, r3, s2, s3, s1, s1, s3, r3, i2, t2, i1, r2, r3, i1, t1, i2, r1, r1, i1, t2, i2], [i2, i1, i2, r2, r2, i1, i2, i1, r1, r3, i1, i2, i1, r1, s1, s2, s3, s3, s2, r2, i1, i2, i2, r2, r2, i2, i1, i1, r3, r3, i1, i2, i2], [r3, r2, r2, r2, r2, r3, r1, r1, r2, r2, r1, r1, r3, r3, s1, s2, s2, s2, s2, r2, r1, r3, r2, r2, r2, r1, r3, r3, r1, r2, r2, r3, r2], [r3, r2, r3, r2, r2, r2, r3, r1, r2, r2, r3, r1, r3, r3, s1, s2, s2, s3, s3, r3, r3, r2, r2, r3, r3, r1, r2, r1, r3, r3, r1, r2, r3], [i1, i2, i2, r3, r2, i1, i2, i2, r2, r3, i1, i2, i1, r2, s2, s3, s3, s1, s2, r1, i1, i2, i1, r3, r2, i1, i2, i2, r1, r1, i2, i1, i2], [i1, t4, i1, r2, r1, i1, t5, i2, r2, r3, i1, t3, i1, r1, s2, s1, s1, s2, s3, r2, i2, t1, i2, r3, r1, i2, t4, i2, r2, r1, i1, t3, i2], [i1, i1, i2, r2, r3, i2, i2, i1, r3, r1, i2, i2, i2, r2, s3, s1, s3, s1, s1, r2, i2, i2, i1, r2, r1, i1, i2, i1, r3, r3, i2, i1, i2], [r3, r3, r1, r1, r1, r2, r2, r1, r1, r3, r3, r2, r1, r1, s3, s3, s3, s2, s1, r3, r1, r1, r3, r1, r3, r1, r2, r2, r3, r2, r1, r2, r2], [r3, r2, r2, r1, r3, r2, r1, r2, r1, r3, s3, s2, s2, s1, s3, s3, s2, s3, s3, s1, s3, s3, s1, r2, r3, r1, r2, r3, r2, r2, r1, r3, r3], [i1, i1, i2, r2, r1, i1, i1, i1, r1, s1, s3, s1, s3, s1, s3, s3, s1, s3, s1, s2, s1, s1, s1, s2, r1, i1, i2, i1, r1, r3, i1, i1, i1], [i2, t2, i1, r2, r1, i1, t3, i2, r3, s1, s2, s3, s2, s3, s3, s3, s1, s2, s3, s2, s2, s3, s2, s2, r1, i1, t5, i1, r3, r1, i2, t2, i2], [i1, i1, i1, r1, r1, i2, i2, i1, r3, s2, s1, s2, s3, s1, s2, s1, s1, s2, s2, s3, s3, s2, s2, s1, r2, i2, i1, i2, r3, r2, i2, i2, i1], [r2, r1, r2, r3, r2, r2, r1, r2, r3, s1, s2, s2, s1, s1, s2, s1, tb, s2, s1, s2, s2, s1, s2, s3, r1, r2, r3, r1, r1, r1, r2, r2, r1], [r2, r2, r1, r3, r2, r1, r1, r3, r1, s2, s3, s1, s1, s2, s2, s3, s3, s3, s2, s2, s3, s2, s1, s3, r2, r2, r1, r1, r2, r3, r2, r2, r1], [i1, i1, i2, r2, r3, i2, i2, i2, r1, s2, s2, s2, s2, s3, s1, s2, s1, s1, s3, s3, s2, s2, s2, s1, r3, i1, i2, i2, r2, r3, i1, i2, i1], [i2, t3, i1, r2, r1, i2, t4, i2, r2, s2, s3, s1, s1, s2, s3, s1, s1, s1, s3, s3, s2, s2, s3, s2, r1, i2, t3, i1, r1, r2, i1, t1, i2], [i1, i2, i2, r1, r1, i1, i2, i1, r3, s2, s1, s1, s3, s1, s3, s1, s3, s3, s1, s1, s1, s3, s1, s3, r2, i1, i2, i2, r2, r2, i2, i2, i1], [r2, r1, r2, r2, r1, r1, r2, r3, r3, r1, s1, s1, s3, s1, s3, s2, s2, s3, s1, s3, s2, s2, s3, r1, r2, r3, r3, r3, r2, r3, r1, r2, r2], [r2, r1, r3, r2, r1, r3, r2, r1, r2, r3, r2, r1, r2, r1, s2, s3, s2, s1, s1, r1, r2, r3, r3, r2, r2, r2, r2, r2, r3, r3, r1, r3, r3], [i1, i1, i2, r2, r2, i1, i1, i2, r1, r2, i2, i2, i2, r2, s2, s1, s3, s2, s3, r3, i1, i1, i2, r2, r1, i2, i1, i2, r2, r3, i1, i1, i2], [i1, t4, i1, r1, r3, i2, t5, i1, r3, r1, i1, t1, i1, r1, s2, s3, s2, s2, s2, r2, i1, t5, i2, r1, r2, i2, t2, i2, r3, r2, i1, t5, i1], [i2, i2, i1, r1, r1, i1, i2, i2, r1, r3, i2, i1, i1, r1, s3, s2, s1, s1, s1, r2, i2, i2, i1, r3, r1, i1, i1, i2, r1, r3, i1, i1, i2], [r2, r1, r3, r2, r2, r2, r1, r3, r3, r1, r1, r3, r1, r3, s1, s1, s2, s2, s3, r3, r1, r3, r2, r2, r1, r2, r2, r1, r1, r1, r1, r1, r2], [r3, r3, r2, r1, r3, r2, r2, r1, r3, r3, r1, r2, r2, r3, s3, s1, s1, s1, s2, r3, r2, r2, r3, r3, r3, r2, r2, r2, r1, r3, r2, r2, r1], [i1, i2, i1, r2, r1, i2, i1, i1, r1, r3, i2, i1, i1, r3, r1, s3, s1, s2, r1, r1, i2, i2, i2, r1, r1, i1, i1, i2, r2, r2, i1, i1, i2], [i1, t1, i2, r2, r1, i1, t3, i1, r3, r3, i1, t2, i1, r1, r1, r2, r1, r2, r1, r2, i1, t4, i1, r3, r2, i2, t1, i2, r3, r3, i2, t4, i1], [i2, i2, i2, r2, r2, i2, i2, i2, r3, r1, i2, i2, i1, r3, r1, r1, r3, r3, r1, r3, i2, i2, i1, r3, r2, i1, i1, i2, r3, r3, i1, i1, i1], [r2, r2, r3, r2, r2, r2, r2, r3, r2, r1, r1, r2, r1, r1, r3, r1, r2, r2, r2, r3, r3, r1, r1, r2, r1, r1, r3, r1, r3, r2, r1, r1, r1], [r2, r3, r3, r2, r3, r2, r1, r1, r2, r3, r3, r1, r3, r2, r3, r1, r3, r1, r2, r2, r1, r3, r3, r3, r2, r2, r1, r2, r3, r2, r3, r3, r2], [i1, i2, i2, r2, r2, i2, i1, i2, r1, r1, i2, i2, i2, r3, r1, i1, i2, i2, r3, r1, i1, i1, i2, r2, r1, i2, i1, i2, r2, r3, i2, i2, i1], [i1, t4, i1, r2, r1, i2, t1, i1, r3, r3, i1, t5, i2, r2, r3, i2, t3, i2, r1, r1, i1, t2, i1, r2, r2, i2, t3, i1, r2, r3, i2, t2, i2], [i1, i1, i1, r3, r3, i1, i2, i2, r1, r2, i1, i1, i1, r1, r2, i1, i2, i2, r3, r2, i2, i1, i2, r3, r2, i2, i1, i2, r2, r3, i2, i1, i1], [r3, r1, r3, r1, r2, r3, r1, r3, r1, r2, r3, r1, r1, r1, r2, r3, r2, r1, r1, r2, r2, r1, r3, r1, r3, r3, r3, r2, r2, r3, r2, r1, r2]], 'elevation': [['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, e2, '', '', '', e2, e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, e2, '', '', '', e2, e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', e2, e2, e2, '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']]}, 'mushroom': {'hidden': True, 'score': 0.005, 'players': {}, 'background': r3, 'map': [[r2, r3, r3, r3, r1, r4, r2, r4, r3, r4, r4, r4, r4, r4, r4, r1, r3, r3, r3, r1, r3, r3, r3, r1, r3, r3, r3, r1, r4, r3, r3, r1, r1], [r2, r1, r3, r3, r4, r1, r3, r1, r1, r1, r4, r1, r1, r4, r3, r3, r1, r1, r4, r4, r1, r2, r2, r2, r1, r1, r2, r1, r4, r3, r4, r2, r4], [r1, r3, r2, r3, r4, r2, r2, r3, r2, r1, r2, r2, r2, r1, r2, r1, r2, r2, r1, r3, r3, r3, r2, r1, r3, r4, r2, r1, r4, r3, r4, r3, r2], [r4, r3, r4, r4, r4, r3, r4, r1, r3, r3, r3, r1, r2, r2, r1, r1, r1, r2, r3, r2, r1, r1, r3, r4, r3, r4, r1, r4, r4, r3, r2, r1, r3], [r4, r2, r3, r2, r1, r3, r1, r2, r4, r2, r4, r2, r2, r3, r2, r1, r4, r1, r4, r1, r3, r1, r4, r4, r2, r4, r3, r2, r2, r1, r2, r4, r2], [r4, r2, r3, r4, r1, r3, r3, b3, b3, b2, b1, r1, r2, r2, r3, r3, r2, r1, r3, r3, r2, r1, r1, r3, r2, r2, r2, r3, r1, r1, r3, r1, r4], [r1, r2, r3, r2, r2, r3, b2, b1, b3, b2, b3, b1, r4, r1, r4, r4, r3, r1, r4, r2, r4, r4, r1, r4, r4, r3, r3, r3, r3, r3, r4, r3, r3], [r1, r2, r3, r3, r1, b3, b3, b1, b1, b2, b2, b1, p1, p1, p3, p1, p3, p3, p1, p1, p3, r1, r2, r2, r1, r1, r4, r1, r4, r4, r2, r4, r1], [r4, r1, r3, r1, r4, b3, b1, b2, b2, b1, b3, b1, p2, p2, p2, p3, p1, p3, p2, p2, p2, p1, p1, r4, r1, r3, r4, r2, r2, r2, r2, r2, r4], [r4, r4, r3, r1, r2, b3, b2, b2, b2, b1, b1, p3, p1, p2, p3, p2, p2, p1, p3, p2, p2, p3, p2, p2, p1, r1, r1, r4, r1, r4, r1, r3, r3], [r3, r3, r4, r3, r3, r3, b1, b3, b1, p1, p1, p2, p1, p1, p2, p1, p1, p1, r1, r1, p1, p1, p3, p2, p3, pp, r1, r1, r1, r4, r3, r3, r3], [r4, r3, r3, r1, r4, r2, r4, p1, p3, p2, p3, p2, p2, p3, p2, p1, p3, p2, r2, r2, r1, p3, p3, p2, p3, p2, r3, r1, r1, r1, r1, r3, r1], [r1, r4, r1, r2, r2, r3, r4, p2, p1, p2, p2, p3, p1, p2, p2, p3, p3, p1, r4, r4, r2, r4, p2, p1, p2, p2, r4, r4, r3, r1, r2, r3, r4], [r3, r1, r4, r2, r2, r4, r4, p3, p3, p3, p2, p3, p1, p2, p1, p2, p1, p3, p3, p2, r4, r1, p2, p2, p2, r3, r4, r4, r3, r1, r4, r4, r2], [r3, r3, r4, r4, r2, r1, r3, p3, p1, p3, p2, p3, p3, p1, p2, p1, p1, p2, p1, p2, p3, p2, p2, p3, p3, r3, r2, r1, r2, r3, r1, r1, r4], [r3, r4, r2, r1, r3, r1, r1, r1, p3, p2, p2, p3, p1, p3, p3, p2, p3, p1, p1, p2, p3, p1, p2, p2, p3, r2, r1, r1, r2, r2, r3, r4, r2], [r3, r4, r2, r2, r2, r3, r1, r1, p1, p2, p2, r3, p2, p3, p2, p3, p2, p3, p3, p3, p2, p2, p2, p3, r2, r4, r3, r1, r4, r4, r4, r2, r2], [r1, r2, r3, r4, r3, r1, r1, r2, p1, p2, r2, r2, r1, p1, p3, p2, p3, p1, p2, p1, p3, p1, p1, p3, r3, r4, r2, r3, r4, r2, r2, r2, r1], [r2, r4, r2, r2, r2, r3, r1, r1, p3, p3, r2, r3, r2, p1, p3, p2, p2, p1, p3, p1, p2, p2, p3, p2, r3, r2, r1, r4, r1, r1, r1, r3, r2], [r4, r1, r4, r1, r2, r1, r4, p3, p2, p3, r3, r1, p3, p1, p2, p1, p2, p2, p3, p2, p3, p1, p3, p3, p3, r1, r3, r1, r3, r2, r4, r3, r4], [r4, r2, r3, r3, r3, r3, r4, p1, p2, p2, p3, p3, p1, p1, p1, p3, p1, p1, p1, p1, p3, p1, p3, p1, p2, p1, r4, r1, r2, r4, r3, r3, r1], [r2, r2, r4, r2, r1, r4, r3, r3, p3, p2, p1, p2, p2, p3, p2, p1, p1, p3, p2, p3, p3, p2, p2, p1, p1, p2, r4, r3, r3, r4, r2, r1, r2], [r4, r2, r2, r3, r1, r3, r4, r4, p2, p3, p2, p1, p2, p3, p1, p2, p3, p2, p3, p3, p3, p2, p1, p3, p2, p1, r1, r3, r3, r1, r4, r4, r4], [r1, r2, r4, r3, r3, r3, r3, r3, r3, p3, p3, p3, p3, p3, b1, b3, b1, b3, p2, p1, p3, p2, p1, p2, p3, r1, r4, r4, r4, r1, r4, r1, r4], [r1, r3, r1, r1, r4, r1, r3, r3, r1, r3, r3, p3, p2, b1, b3, b3, b2, b1, b2, b2, p2, p2, p1, r1, r4, r2, r1, r3, r1, r3, r4, r3, r1], [r1, r4, r2, r2, r2, r3, r1, r3, r3, r2, r2, r3, r1, b2, b1, b3, b3, b3, b1, b1, b3, r2, r3, r1, r3, r4, r4, r3, r4, r3, r1, r2, r3], [r4, r1, r1, r3, r4, r1, r4, r4, r3, r1, r1, r4, r3, r4, b1, b3, b2, b1, b3, b2, b1, r1, r2, r1, r3, r2, r2, r4, r4, r3, r4, r4, r4], [r1, r3, r4, r1, r3, r2, r4, r3, r3, r4, r4, r3, r4, b3, b3, b3, b1, b2, b2, r2, r3, r3, r4, r2, r1, r2, r2, r3, r4, r3, r3, r3, r3], [r4, r4, r3, r1, r2, r3, r3, r1, r3, r3, r2, r2, r2, b1, b1, b3, b3, b3, r1, r1, r1, r2, r2, r3, r4, r1, r4, r4, r3, r2, r1, r3, r3], [r1, r2, r4, r3, r1, r1, r2, r4, r2, r3, r1, r1, r4, r2, b3, b2, b1, r4, r3, r1, r2, r3, r1, r4, r1, r4, r1, r2, r4, r1, r2, r1, r4], [r1, r2, r1, r4, r4, r3, r1, r4, r3, r1, r1, r3, r3, r2, r4, r4, r4, r4, r2, r1, r1, r2, r3, r1, r2, r2, r4, r4, r3, r2, r2, r2, r3], [r3, r1, r1, r1, r1, r4, r2, r3, r1, r4, r3, r2, r4, r1, r2, r2, r4, r3, r3, r3, r4, r4, r1, r1, r4, r1, r3, r4, r1, r3, r4, r2, r3]], 'elevation': [['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', e1, e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', e1, e1, e1, e1, e1, '', '', '', '', e1, e1, e1, e1, e1, e1, e1, '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', e1, e1, '', '', '', '', '', '', '', e1, e1, e1, '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']]}, 'cursed': {'hidden': True, 'score': 0.005, 'players': {}, 'background': sk, 'map': [[p3, v3, l3, l1, v4, l1, b3, v3, g1, sk, v3, r1, b1, l1, b1, g1, l2, sk, v2, l2, r4, b1, v1, v2, p2, v4, l3, r1, g3, l2, p1, r1, v2, r3, r2, l1, g4, w3, l3, l1, r3], [sk, w2, b2, g3, sk, v4, r2, v2, g4, b3, l2, r4, v2, g4, b3, p1, v4, l2, w3, r1, v2, p2, w1, w2, l3, r1, w2, v3, l3, w1, sk, sk, v3, sk, sk, p1, g4, sk, l2, w1, g4], [r4, p3, r4, b2, r4, v3, l2, g3, p1, l2, w3, r4, p3, v1, v1, p1, w3, w1, g3, r4, g2, l1, g2, p3, w3, l2, w1, v2, w1, r3, l1, r1, r3, l2, p1, b3, r3, r2, sk, sk, r4], [r4, l2, p1, b3, b3, b1, p1, v1, l1, g4, sk, l3, p1, b1, w3, g3, g3, l1, g1, w1, r3, r3, l2, r1, p1, r3, sk, l2, sk, v2, p2, p1, v2, b1, l3, b2, l2, v4, r3, r4, b3], [g4, v1, b1, sk, b3, r1, w3, p3, g4, sk, b2, r2, l1, v1, r1, b2, r1, sk, w1, l1, p1, r2, w1, p2, w2, g2, r3, l2, p2, r3, l1, r3, p1, l3, r3, g2, sk, l2, v4, v1, l3], [r3, r1, v1, l2, r3, b3, v3, w1, sk, g1, g3, w2, b3, l3, w1, p3, w3, r1, g3, l3, g3, w3, v2, g4, p1, g3, sk, g4, l3, b2, v2, r3, g4, g2, r1, w3, p1, r4, p2, w3, p3], [g1, v1, l2, b3, b3, w1, v2, b3, v4, l3, b1, l1, p1, r4, p2, l2, w1, p2, p1, l1, v4, sk, g2, v4, r2, v2, g2, v4, l3, b3, r3, p1, w2, r1, r1, g3, p3, r2, g4, r2, p3], [r2, l1, b2, r4, g3, w2, r4, l1, w2, w3, w2, b3, b2, p1, p3, v1, sk, l2, v3, sk, r2, p3, g1, b3, v1, b3, w3, v3, v1, l2, p3, v3, w1, b1, w2, w1, sk, b3, r4, r4, g1], [r1, b1, r4, l3, w1, v2, b2, v3, b2, g3, l2, p3, w1, g2, l1, w2, r1, v4, l3, g4, b1, p2, g4, g1, r3, g1, g3, l2, g3, l2, v4, v1, l1, r1, b1, r1, w2, v4, b3, w3, r2], [v1, l2, r2, v1, b3, w3, w2, v1, w3, l2, w2, v3, r4, b2, g3, g2, p2, w1, r1, p2, l2, v1, v1, g1, v1, r4, sk, p3, w3, l3, b3, sk, r4, g3, sk, w1, p2, p1, v4, w1, b2], [g1, v1, g3, w1, v4, g2, w1, v2, v4, r3, v2, g2, p1, l2, l2, l1, g4, g4, l3, g1, b2, p1, p1, b1, v4, b1, r2, p2, b3, w3, v3, sk, g2, v4, r2, l1, r4, b1, w3, v2, l3], [p1, v1, g2, l1, b2, g3, r1, r4, v3, sk, p1, v4, v1, r4, v2, v4, sk, r1, p1, r4, g1, g2, w1, l2, l1, l2, r2, g3, w1, r2, g3, r2, g3, p1, r1, l2, b2, r4, g1, l2, w1], [v4, b1, p3, w3, g1, g3, l1, g4, r3, p1, g4, p1, p2, sk, r3, l3, w1, r3, r4, r2, p1, v2, r1, v3, b3, v4, p2, g3, g3, r2, r3, l2, b2, b3, r1, l3, v3, g4, w2, b1, g4], [b2, l3, w2, g2, g1, v2, l1, r2, l2, sk, r2, p3, g1, w3, p2, g4, b2, w2, p1, p1, g2, l2, l2, r4, r1, r3, g2, r1, b1, r2, v4, w3, b3, b2, g2, g2, w3, v2, l2, g1, l2], [b2, p3, b3, r1, p1, v2, l3, p3, l2, r2, b2, v4, r3, w2, g2, v1, b2, v4, sk, g2, sk, p3, w2, l1, r2, b3, p3, w1, l3, p3, g3, r1, p3, g1, w2, r2, w2, g4, p3, l2, v3], [b2, l3, g3, b3, p3, w1, l2, g2, g3, b2, v2, b2, v1, g3, v3, v3, w3, v1, g2, v4, r2, r3, g4, r1, v3, l2, v4, g3, l1, l2, p1, r1, p3, p1, p1, w1, sk, g1, sk, l1, b2], [g1, g1, w2, l3, g2, b1, g3, l2, w3, b1, v1, r1, p3, r2, b3, r2, b2, v1, r2, w2, l2, v4, v3, r2, l2, g1, l1, l2, l2, v3, p1, p2, p1, v2, p1, l3, w1, b2, v1, r1, w1], [b2, sk, v2, p1, g2, w3, g3, p1, v4, l2, l2, p1, g1, b2, r1, r4, l1, w3, g2, w3, g3, r3, l1, l1, p3, r3, r4, g3, l3, g4, b2, l2, p1, v4, v3, l2, r3, sk, w3, l2, r2], [r3, l1, l2, g3, r2, l3, b2, l3, v1, l2, l1, p1, w3, v4, w1, b2, w3, p3, sk, r3, r3, l2, g2, g1, l1, b3, g2, p2, w3, b3, l2, l3, r1, w2, l1, l2, v4, l3, r3, w2, l2], [r2, w2, b2, r4, w3, l1, v3, p1, l2, v3, r4, l3, g1, p3, w2, w1, g4, p1, w3, sk, l2, b1, w1, v4, p2, v1, b2, r3, p1, sk, l2, g3, g2, g2, v2, w1, g2, v3, g2, g4, r2], [w2, w3, b2, v1, w1, r3, g4, b2, b3, v3, l2, v4, g4, b3, w2, v4, r1, r2, r3, v1, r1, sk, g4, r3, sk, b2, l3, r1, v1, r1, b2, g3, p1, g4, l2, r2, r4, g2, g4, p1, r4], [w2, l2, r3, g1, l3, v4, g1, v4, g2, l2, g3, l2, g4, g2, v1, l3, g2, r1, r2, b3, w2, v3, p3, p2, w2, g2, w3, b2, w1, g4, g3, l1, b3, v3, g4, r2, sk, b2, g3, l3, w1], [w1, r1, w2, g1, r2, p3, p3, v4, g2, r2, v3, r2, l2, r4, l3, l2, p1, b3, r3, b1, v2, w1, w3, l1, r4, w1, b2, p2, r1, v4, v1, b2, b1, g4, l1, v1, p3, w3, r1, p2, sk], [l2, l2, v3, w3, w2, v2, v4, g4, g1, l1, v3, p3, l1, p2, p1, w3, r3, w3, w2, l3, b3, w2, v2, sk, r4, r1, l2, b1, g3, w2, v2, r2, l2, b2, sk, p3, l3, w3, w2, r2, g1], [p2, l1, r3, sk, r4, b3, r4, v2, b2, b3, b1, v3, r1, r1, r4, w2, r4, w2, l3, l2, r4, v1, r1, w2, l2, g3, v4, g3, w2, g3, b2, w3, g1, w3, v1, w2, v3, r2, r4, b1, w3], [sk, r1, r3, b3, r1, sk, v4, l2, r3, r1, l1, g2, g1, v4, b2, w3, w3, v4, l1, v4, p2, p1, p1, p2, w2, l1, p2, sk, b1, w1, w3, r1, p2, l1, v3, v3, r2, g2, w2, w1, p1], [sk, l3, w3, r4, r1, v4, p3, r1, g3, p3, l2, v1, p2, v2, v2, w1, l2, r1, p2, b1, w2, l2, v1, l3, g4, v4, sk, g3, sk, v2, w3, b1, w1, l2, w2, r4, r1, l2, r1, v4, r3], [g1, w1, p3, b1, g2, w3, r2, b3, r1, w3, v4, v3, l2, l2, v2, v1, r4, v2, l1, r4, b2, sk, w3, l1, l2, l1, w1, b3, g2, l2, v3, p1, r2, l3, g3, p2, w1, l1, w2, v4, v3], [v1, g3, w2, b1, l3, v3, l2, g4, l2, b2, r4, g4, b3, g2, g2, p1, l2, r4, g1, g1, l3, r4, g4, p3, b2, v4, g4, p2, l1, l1, p2, l3, b3, b2, w1, l2, r1, r2, b1, w1, g4], [v1, g3, g1, b3, p3, b1, w3, v2, b2, p1, g1, v2, l2, v2, v3, v4, r1, p1, l1, r1, v4, v4, p1, g3, r2, r1, w2, p1, v4, r2, l2, sk, w3, b2, w1, sk, b3, b3, r1, w2, r4], [p1, p1, b3, sk, l2, v2, g4, l1, p3, l2, w1, p3, r3, l3, b3, l2, b3, r2, w1, p3, r1, l2, r4, b3, g1, b1, l2, b2, l1, sk, v3, v3, b3, g4, r3, v3, b1, l3, l2, v3, p3], [g3, v2, g2, v4, g4, p2, w2, r2, g1, w2, r1, g3, v1, w3, v1, g2, r3, p3, w3, p2, v3, g2, b3, l1, r1, l1, w3, g4, b3, l1, r4, l3, p2, l2, r1, p2, g2, r2, p2, w2, l1], [b3, g3, r4, b1, l1, l2, g4, g1, v1, r2, w1, v1, v4, sk, l3, r2, r3, p2, w2, v3, g4, l2, r1, p1, g4, w3, l2, l1, w1, v1, g3, r4, l3, l2, l3, v4, r3, w3, v3, g4, pp], [b2, v4, b1, r2, g2, v2, p1, r4, g4, l2, l2, r3, v3, l3, v4, w2, b3, l3, b2, w3, p3, l2, v1, r1, b3, g4, l2, g2, r2, b2, l2, p1, p3, v3, w2, p3, l3, r2, b2, l2, v4], [b2, v4, p3, w3, r2, sk, v4, l1, l1, g1, v2, b3, v1, l2, v1, g4, w1, l2, g4, v3, g1, g3, b2, g4, p2, v3, sk, b1, w2, w2, p1, v2, g2, r1, v2, l2, r4, v1, r4, b1, g2], [sk, l1, v3, l3, g3, l2, g3, w2, g2, r3, v1, l3, v3, g1, g1, v4, sk, p2, p3, l1, g1, r4, l3, r3, w3, w2, l1, v3, w1, g3, v3, p1, g4, r4, r2, l3, p3, p1, b2, l2, w3], [v1, b3, g1, p1, w1, l3, l2, l3, g2, v4, v1, p1, r3, v2, r3, v3, r1, v1, r4, g2, w1, v2, p1, l2, v4, v2, b2, l2, v1, g4, v2, r4, r2, l1, p1, w1, v4, l2, w3, l1, v3], [l2, b1, v4, b2, r1, l2, l1, w1, v4, g4, b3, b3, l3, p3, g4, p1, g1, r3, l1, v4, l3, r4, g2, l1, g4, l2, v4, r4, w2, b3, g2, l2, l1, g3, g1, l2, g1, g2, v3, v2, g1], [p3, w3, r4, p1, l2, b3, l2, g1, p1, v2, r4, r2, v2, g2, sk, p2, w1, p3, l3, g4, b1, g2, r3, l3, p1, l2, l2, l3, l3, g3, v4, r2, g1, r3, g2, p2, w3, w3, w3, r2, r3], [l1, w1, r3, v1, r1, v2, b1, b2, g3, r1, b1, g1, l3, g3, l1, b3, r4, l2, g1, r3, b3, g2, v2, b1, v3, l2, w2, l2, l2, p2, l2, w2, l3, r3, r3, p3, r3, v1, l2, v1, p1]], 'elevation': [['', e1, e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1, '', e1, e1, e1, '', e1, '', e1, e1, e1, e1, e1, '', e1, e1, e1, e1], [e1, e1, e1, '', e1, e1, e1, e1, '', e1, e1, e1, e1, '', e1, '', e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, ''], [e1, '', e1, e1, e1, e1, e1, '', '', e1, e1, e1, '', e1, e1, '', e1, e1, '', e1, '', e1, '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1], [e1, e1, '', e1, e1, e1, '', e1, e1, '', e1, e1, '', e1, e1, '', '', e1, '', e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1], ['', e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', e1, e1, '', e1, '', e1, e1, '', e1, e1, e1, '', e1, e1, '', e1, e1, e1, e1, e1], [e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, '', e1, e1, '', e1, '', e1, e1, '', '', '', e1, '', e1, e1, e1, e1, '', '', e1, e1, '', e1, '', e1, ''], ['', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', e1, '', e1, e1, '', '', e1, e1, e1, '', e1, e1, e1, '', e1, e1, e1, e1, '', e1, e1, e1, '', '', e1, '', e1, ''], [e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1, e1, ''], [e1, e1, e1, e1, e1, e1, e1, e1, e1, '', e1, '', e1, '', e1, e1, e1, e1, e1, '', e1, '', '', '', e1, '', '', e1, '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1], [e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', e1, e1, '', e1, e1, e1, '', e1, e1, e1, '', e1, e1, e1, e1, e1, '', e1, e1, '', '', e1, e1, e1], ['', e1, '', e1, e1, '', e1, e1, e1, e1, e1, '', '', e1, e1, e1, '', '', e1, '', e1, '', '', e1, e1, e1, e1, '', e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1], ['', e1, '', e1, e1, '', e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, '', e1, '', '', e1, e1, e1, e1, e1, '', e1, e1, '', e1, '', '', e1, e1, e1, e1, '', e1, e1], [e1, e1, '', e1, '', '', e1, '', e1, '', '', '', '', e1, e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, '', '', '', e1, e1, e1, e1, e1, e1, e1, e1, '', e1, e1, ''], [e1, e1, e1, '', '', e1, e1, e1, e1, e1, e1, '', '', e1, '', '', e1, e1, '', '', '', e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, '', e1], [e1, '', e1, e1, '', e1, e1, '', e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, '', e1, '', e1, e1, e1, e1, '', e1, e1, '', '', e1, '', '', e1, e1, e1, '', '', e1, e1], [e1, e1, '', e1, '', e1, e1, '', '', e1, e1, e1, e1, '', e1, e1, e1, e1, '', e1, e1, e1, '', e1, e1, e1, e1, '', e1, e1, '', e1, '', '', '', e1, e1, '', e1, e1, e1], ['', '', e1, e1, '', e1, '', e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, '', '', '', e1, '', e1, e1, e1, e1, e1, e1], [e1, e1, e1, '', '', e1, '', '', e1, e1, e1, '', '', e1, e1, e1, e1, e1, '', e1, '', e1, e1, e1, '', e1, e1, '', e1, '', e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1], [e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, '', e1, e1, e1, e1, '', '', e1, e1, '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1], [e1, e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, '', '', e1, e1, '', '', e1, e1, e1, e1, e1, e1, '', e1, e1, e1, '', e1, e1, '', '', '', e1, e1, '', e1, '', '', e1], [e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1, '', '', '', e1, e1, e1, '', '', '', e1], [e1, e1, e1, '', e1, e1, '', e1, '', e1, '', e1, '', '', e1, e1, '', e1, e1, e1, e1, e1, '', '', e1, '', e1, e1, e1, '', '', e1, e1, e1, '', e1, e1, e1, '', e1, e1], [e1, e1, e1, '', e1, '', '', e1, '', e1, e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, '', e1, e1, '', e1, e1, '', e1], [e1, e1, e1, e1, e1, e1, e1, '', '', e1, e1, '', e1, '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, ''], ['', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', e1, '', e1, '', e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1], [e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', '', e1, e1, e1, e1, e1, e1, e1, '', '', '', '', e1, e1, '', e1, e1, e1, e1, e1, '', e1, e1, e1, e1, '', e1, e1, ''], [e1, e1, e1, e1, e1, e1, '', e1, '', '', e1, e1, '', e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, '', e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1], [e1, e1, '', e1, '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', e1, e1, '', e1, e1, '', '', e1, e1, e1, e1, e1], [e1, '', e1, e1, e1, e1, e1, '', e1, e1, e1, '', e1, '', '', '', e1, e1, '', '', e1, e1, '', '', e1, e1, '', '', e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1, e1, ''], [e1, '', '', e1, '', e1, e1, e1, e1, '', '', e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, '', '', e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1], ['', '', e1, e1, e1, e1, '', e1, '', e1, e1, '', e1, e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, ''], ['', e1, '', e1, '', '', e1, e1, '', e1, e1, '', e1, e1, e1, '', e1, '', e1, '', e1, '', e1, e1, e1, e1, e1, '', e1, e1, e1, e1, '', e1, e1, '', '', e1, '', e1, e1], [e1, '', e1, e1, e1, e1, '', '', e1, e1, e1, e1, e1, e1, e1, e1, e1, '', e1, e1, '', e1, e1, '', '', e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1, e1, e1, '', e1], [e1, e1, e1, e1, '', e1, '', e1, '', e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, '', e1, '', e1, e1, e1, '', '', e1, e1, '', e1, e1, e1, e1, e1], [e1, e1, '', e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, '', e1, e1, '', e1, '', '', e1, '', '', e1, e1, e1, e1, e1, '', e1, '', e1, e1, e1, e1, e1, e1, e1, ''], [e1, e1, e1, e1, '', e1, '', e1, '', e1, e1, e1, e1, '', '', e1, e1, '', '', e1, '', e1, e1, e1, e1, e1, e1, e1, e1, '', e1, '', '', e1, e1, e1, '', '', e1, e1, e1], [e1, e1, '', '', e1, e1, e1, e1, '', e1, e1, '', e1, e1, e1, e1, e1, e1, e1, '', e1, e1, '', e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, '', e1, e1, e1, e1, e1, e1], [e1, e1, e1, e1, e1, e1, e1, e1, e1, '', e1, e1, e1, '', e1, '', '', e1, e1, e1, e1, e1, '', e1, '', e1, e1, e1, e1, e1, '', e1, e1, '', '', e1, '', '', e1, e1, ''], ['', e1, e1, '', e1, e1, e1, '', '', e1, e1, e1, e1, '', e1, '', e1, '', e1, '', e1, '', e1, e1, '', e1, e1, e1, e1, '', e1, e1, '', e1, '', '', e1, e1, e1, e1, e1], [e1, e1, e1, e1, e1, e1, e1, e1, '', e1, e1, '', e1, '', e1, e1, e1, e1, '', e1, e1, '', e1, e1, e1, e1, e1, e1, e1, '', e1, e1, e1, e1, e1, '', e1, e1, e1, e1, '']]}}
|
description = 'Some kind of SKF chopper'
pv_root = 'LabS-Embla:Chop-Drv-0601:'
devices = dict(
skf_drive_temp=device('nicos.devices.epics.pva.EpicsReadable',
description='Drive temperature',
readpv='{}DrvTmp_Stat'.format(pv_root),
monitor=True,
),
skf_motor_temp=device('nicos.devices.epics.pva.EpicsReadable',
description='Motor temperature',
readpv='{}MtrTmp_Stat'.format(pv_root),
monitor=True,
),
skf_pos_v13=device('nicos.devices.epics.pva.EpicsReadable',
description='Position',
readpv='{}PosV13_Stat'.format(pv_root),
monitor=True,
),
skf_pos_v24=device('nicos.devices.epics.pva.EpicsReadable',
description='Position',
readpv='{}PosV24_Stat'.format(pv_root),
monitor=True,
),
skf_pos_w13=device('nicos.devices.epics.pva.EpicsReadable',
description='Position',
readpv='{}PosW13_Stat'.format(pv_root),
monitor=True,
),
skf_pos_w24=device('nicos.devices.epics.pva.EpicsReadable',
description='Position',
readpv='{}PosW24_Stat'.format(pv_root),
monitor=True,
),
skf_pos_Z12=device('nicos.devices.epics.pva.EpicsReadable',
description='Position',
readpv='{}PosZ12_Stat'.format(pv_root),
monitor=True,
),
skf_status=device('nicos.devices.epics.pva.EpicsStringReadable',
description='The chopper status.',
readpv='{}Chop_Stat'.format(pv_root),
monitor=True,
),
skf_control=device('nicos.devices.epics.pva.EpicsMappedMoveable',
description='Used to start and stop the chopper.',
readpv='{}Cmd'.format(pv_root),
writepv='{}Cmd'.format(pv_root),
requires={'level': 'user'},
mapping={'Clear chopper': 8,
'Start chopper': 6,
'Async start': 5,
'Stop chopper': 3,
'Reset chopper': 1,
},
),
skf_speed=device('nicos.devices.epics.pva.EpicsAnalogMoveable',
description='The current speed.',
requires={'level': 'user'},
readpv='{}Spd_Stat'.format(pv_root),
writepv='{}Spd_SP'.format(pv_root),
abslimits=(0.0, 77),
monitor=True,
),
)
|
description = 'Some kind of SKF chopper'
pv_root = 'LabS-Embla:Chop-Drv-0601:'
devices = dict(skf_drive_temp=device('nicos.devices.epics.pva.EpicsReadable', description='Drive temperature', readpv='{}DrvTmp_Stat'.format(pv_root), monitor=True), skf_motor_temp=device('nicos.devices.epics.pva.EpicsReadable', description='Motor temperature', readpv='{}MtrTmp_Stat'.format(pv_root), monitor=True), skf_pos_v13=device('nicos.devices.epics.pva.EpicsReadable', description='Position', readpv='{}PosV13_Stat'.format(pv_root), monitor=True), skf_pos_v24=device('nicos.devices.epics.pva.EpicsReadable', description='Position', readpv='{}PosV24_Stat'.format(pv_root), monitor=True), skf_pos_w13=device('nicos.devices.epics.pva.EpicsReadable', description='Position', readpv='{}PosW13_Stat'.format(pv_root), monitor=True), skf_pos_w24=device('nicos.devices.epics.pva.EpicsReadable', description='Position', readpv='{}PosW24_Stat'.format(pv_root), monitor=True), skf_pos_Z12=device('nicos.devices.epics.pva.EpicsReadable', description='Position', readpv='{}PosZ12_Stat'.format(pv_root), monitor=True), skf_status=device('nicos.devices.epics.pva.EpicsStringReadable', description='The chopper status.', readpv='{}Chop_Stat'.format(pv_root), monitor=True), skf_control=device('nicos.devices.epics.pva.EpicsMappedMoveable', description='Used to start and stop the chopper.', readpv='{}Cmd'.format(pv_root), writepv='{}Cmd'.format(pv_root), requires={'level': 'user'}, mapping={'Clear chopper': 8, 'Start chopper': 6, 'Async start': 5, 'Stop chopper': 3, 'Reset chopper': 1}), skf_speed=device('nicos.devices.epics.pva.EpicsAnalogMoveable', description='The current speed.', requires={'level': 'user'}, readpv='{}Spd_Stat'.format(pv_root), writepv='{}Spd_SP'.format(pv_root), abslimits=(0.0, 77), monitor=True))
|
class BaseSelector:
def __init__(self):
pass
def select_model(self, X, y,
total_time,
learners=None,
metric=None,
save_directory=None):
"""
Find the best model with its hyperparameters from the autotf's model zool
Parameters
----------
X: array-like or sparse matrix
y: the target classes
total_time: the training time
metric: the eay to evaluate the model
save_directory: the path to save the
"""
return "the best model object"
def fit(self, X, y):
"""
Train with the best model
"""
pass
def predict(self, X):
"""
Predict with the best model
"""
def best_score(self):
"""
Return the best score such as cross-validation accuracy or f1.
:return:
"""
return "best score"
def show_models(self):
"""
Display the models which the selector has found.
:return:
"""
pass
|
class Baseselector:
def __init__(self):
pass
def select_model(self, X, y, total_time, learners=None, metric=None, save_directory=None):
"""
Find the best model with its hyperparameters from the autotf's model zool
Parameters
----------
X: array-like or sparse matrix
y: the target classes
total_time: the training time
metric: the eay to evaluate the model
save_directory: the path to save the
"""
return 'the best model object'
def fit(self, X, y):
"""
Train with the best model
"""
pass
def predict(self, X):
"""
Predict with the best model
"""
def best_score(self):
"""
Return the best score such as cross-validation accuracy or f1.
:return:
"""
return 'best score'
def show_models(self):
"""
Display the models which the selector has found.
:return:
"""
pass
|
# Given a list x of length n, a number to be inserted into the list and a position where to insert the number
# return the new list
# e.g given [2, 3, 6, 7], num=8 and position=2, return [2, 3, 8, 6, 7]
# for more info on this quiz, go to this url: http://www.programmr.com/insertion-specified-position-array-0
def insert_into_list(arr, num, position):
b = arr[:position] + [num] + arr[position:]
return b
if __name__ == "__main__":
print(insert_into_list([1, 2, 3, 4], 5, 4))
|
def insert_into_list(arr, num, position):
b = arr[:position] + [num] + arr[position:]
return b
if __name__ == '__main__':
print(insert_into_list([1, 2, 3, 4], 5, 4))
|
"""This module contains exceptions defined for Rhasspy Desktop Satellite."""
class RDSatelliteServerError(Exception):
"""Base class for exceptions raised by Rhasspy Desktop Satellite code.
By catching this exception type, you catch all exceptions that are
defined by the Hermes Audio Server code."""
class ConfigurationFileNotFoundError(RDSatelliteServerError):
"""Raised when the configuration file is not found."""
def __init__(self, filename):
"""Initialize the exception with a string representing the filename."""
self.filename = filename
class NoDefaultAudioDeviceError(RDSatelliteServerError):
"""Raised when there's no default audio device available."""
def __init__(self, inout):
"""Initialize the exception with a string representing input or output.
"""
self.inout = inout
class UnsupportedPlatformError(RDSatelliteServerError):
"""Raised when the platform Rhasspy Desktop Satellite is running on is not
supported."""
def __init__(self, platform):
"""Initialize the exception with a string representing the platform."""
self.platform = platform
|
"""This module contains exceptions defined for Rhasspy Desktop Satellite."""
class Rdsatelliteservererror(Exception):
"""Base class for exceptions raised by Rhasspy Desktop Satellite code.
By catching this exception type, you catch all exceptions that are
defined by the Hermes Audio Server code."""
class Configurationfilenotfounderror(RDSatelliteServerError):
"""Raised when the configuration file is not found."""
def __init__(self, filename):
"""Initialize the exception with a string representing the filename."""
self.filename = filename
class Nodefaultaudiodeviceerror(RDSatelliteServerError):
"""Raised when there's no default audio device available."""
def __init__(self, inout):
"""Initialize the exception with a string representing input or output.
"""
self.inout = inout
class Unsupportedplatformerror(RDSatelliteServerError):
"""Raised when the platform Rhasspy Desktop Satellite is running on is not
supported."""
def __init__(self, platform):
"""Initialize the exception with a string representing the platform."""
self.platform = platform
|
# Implementor
class drawing_api:
def draw_circle(self, x, y, radius):
pass
# ConcreteImplementor 1/2
class drawing_api1(drawing_api):
def draw_circle(self, x, y, radius):
print('API1.circle at %f:%f radius %f' % (x, y, radius))
# ConcreteImplementor 2/2
class drawing_api2(drawing_api):
def draw_circle(self, x, y, radius):
print('API2.circle at %f:%f radius %f' % (x, y, radius))
# Abstraction
class Shape:
def draw(self):
pass
def resize_by_percentage(self, pct):
pass
# Refined Abstraction
class CircleShape(Shape):
def __init__(self, x, y, radius, drawing_api):
self.x = x
self.y = y
self.radius = radius
self.drawing_api = drawing_api
def draw(self):
self.drawing_api.draw_circle(self.x, self.y, self.radius)
def resize_by_percentage(self, pct):
self.radius *= pct
# Client
if __name__ == '__main__':
shapes = [
CircleShape(1, 2, 3, drawing_api1()),
CircleShape(5, 7, 11, drawing_api2())
]
for shape in shapes:
shape.resize_by_percentage(2.5)
shape.draw()
|
class Drawing_Api:
def draw_circle(self, x, y, radius):
pass
class Drawing_Api1(drawing_api):
def draw_circle(self, x, y, radius):
print('API1.circle at %f:%f radius %f' % (x, y, radius))
class Drawing_Api2(drawing_api):
def draw_circle(self, x, y, radius):
print('API2.circle at %f:%f radius %f' % (x, y, radius))
class Shape:
def draw(self):
pass
def resize_by_percentage(self, pct):
pass
class Circleshape(Shape):
def __init__(self, x, y, radius, drawing_api):
self.x = x
self.y = y
self.radius = radius
self.drawing_api = drawing_api
def draw(self):
self.drawing_api.draw_circle(self.x, self.y, self.radius)
def resize_by_percentage(self, pct):
self.radius *= pct
if __name__ == '__main__':
shapes = [circle_shape(1, 2, 3, drawing_api1()), circle_shape(5, 7, 11, drawing_api2())]
for shape in shapes:
shape.resize_by_percentage(2.5)
shape.draw()
|
class Solution:
# @param {integer} k
# @param {integer} n
# @return {integer[][]}
def combinationSum3(self, k, n):
nums = range(1, 10)
self.results = []
self.combination(nums, n, k, 0, [])
return self.results
def combination(self, nums, target, k, start, result):
if k <= 0 :
return
elif k == 1:
for i in nums:
if i == target:
self.results.append([i])
elif k == 2:
end = len(nums) - 1
while start < end:
s = nums[start] + nums[end]
if s == target:
result.append(nums[start])
result.append(nums[end])
self.results.append(result[:])
result.pop()
result.pop()
start += 1
elif s < target:
start += 1
else:
#s > target
end -= 1
else:
for i in range(start, len(nums)-1):
t = target - nums[i]
if t >= nums[i+1]:
result.append(nums[i])
self.combination(nums, t, k -1, i + 1, result )
result.pop()
else:
break
|
class Solution:
def combination_sum3(self, k, n):
nums = range(1, 10)
self.results = []
self.combination(nums, n, k, 0, [])
return self.results
def combination(self, nums, target, k, start, result):
if k <= 0:
return
elif k == 1:
for i in nums:
if i == target:
self.results.append([i])
elif k == 2:
end = len(nums) - 1
while start < end:
s = nums[start] + nums[end]
if s == target:
result.append(nums[start])
result.append(nums[end])
self.results.append(result[:])
result.pop()
result.pop()
start += 1
elif s < target:
start += 1
else:
end -= 1
else:
for i in range(start, len(nums) - 1):
t = target - nums[i]
if t >= nums[i + 1]:
result.append(nums[i])
self.combination(nums, t, k - 1, i + 1, result)
result.pop()
else:
break
|
X = int(input())
Y = int(input())
soma = 0
if X > Y:
troca = Y
Y = X
X = troca
sam = X
while sam <= Y:
if sam%13 != 0:
soma = soma + sam
sam += 1
print(soma)
|
x = int(input())
y = int(input())
soma = 0
if X > Y:
troca = Y
y = X
x = troca
sam = X
while sam <= Y:
if sam % 13 != 0:
soma = soma + sam
sam += 1
print(soma)
|
pMMO_dna_seq = 'ATGAAAACTATTAAAGATAGAATTGCTAAATGGTCTGCTATTGGTTTGTTGTCTGCTGTTGCTGCTACTGCTTTTTATGCTCCATCTGCTTCTGCTCATGGTGAAAAATCTCAAGCTGCTTTTATGAGAATGAGGACTATTCATTGGTATGACTTATCTTGGTCTAAGGAAAAGGTTAAAATAAACGAAACTGTTGAGATTAAAGGTAAATTTCATGTTTTTGAAGGTTGGCCTGAAACTGTTGATGAACCTGATGTTGCTTTTTTGAATGTTGGTATGCCTGGTCCTGTTTTTATTAGAAAAGAATCTTATATTGGTGGTCAATTGGTTCCAAGATCTGTTAGATTGGAAATTGGTAAAACTTATGATTTTAGAGTTGTTTTGAAAGCTAGAAGACCTGGTGATTGGCATGTTCATACTATGATGAATGTTCAAGGTGGTGGTCCAATTATTGGTCCTGGTAAATGGATTACTGTTGAAGGTTCTATGTCTGAATTTAGAAATCCTGTTACTACTTTGACTGGTCAAACTGTTGATTTGGAAAATTATAATGAAGGTAATACTTATTTCTGGCACGCTTTTTGGTTCGCAATAGGCGTTGCCTGGATTGGATATTGGTCGAGGAGACCTATCTTCATACCAAGGTTATTGATGGTTGATGCTGGTAGAGCTGATGAATTGGTTTCTGCTACTGATAGAAAAGTTGCTATGGGTTTTTTGGCTGCTACTATTTTGATTGTTGTTATGGCTATGTCTTCTGCTAATTCTAAATATCCAATTACTATTCCATTGCAAGCTGGTACTATGAGAGGTATGAAACCATTGGAATTGCCTGCTCCAACTGTTTCTGTTAAAGTTGAAGATGCTACTTATAGAGTTCCTGGTAGAGCTATGAGAATGAAATTGACTATTACTAATCATGGTAATTCTCCAATTAGATTGGGTGAATTTTATACTGCTTCTGTTAGATTTTTGGATTCTGATGTTTATAAAGATACTACTGGTTATCCTGAAGATTTGTTGGCTGAAGATGGTTTGTCTGTTTCTGATAATTCTCCATTGGCTCCTGGTGAAACTAGAACTGTTGATGTTACTGCTTCTGATGCTGCTTGGGAAGTTTATAGATTGTCTGATATTATTTATGATCCTGATTCTAGATTTGCTGGTTTGTTGTTTTTTTTTGATGCTACTGGTAATAGACAAGTTGTTCAAATTGATGCTCCATTGATTCCATCTTTTATGTAAATGGTGAGCAAGGGCGAGGAGCTGTTCACCGGGGTGGTGCCCATCCTGGTCGAGCTGGACGGCGACGTAAACGGCCACAAGTTCAGCGTGTCCGGCGAGGGCGAGGGCGATGCCACCTACGGCAAGCTGACCCTGAAGCTGATCTGCACCACCGGCAAGCTGCCCGTGCCCTGGCCCACCCTCGTGACCACCCTGGGCTACGGCCTGCAGTGCTTCGCCCGCTACCCCGACCACATGAAGCAGCACGACTTCTTCAAGTCCGCCATGCCCGAAGGCTACGTCCAGGAGCGCACCATCTTCTTCAAGGACGACGGCAACTACAAGACCCGCGCCGAGGTGAAGTTCGAGGGCGACACCCTGGTGAACCGCATCGAGCTGAAGGGCATCGACTTCAAGGAGGACGGCAACATCCTGGGGCACAAGCTGGAGTACAACTACAACAGCCACAACGTCTATATCACCGCCGACAAGCAGAAGAACGGCATCAAGGCCAACTTCAAGATCCGCCACAACATCGAGGACGGCGGCGTGCAGCTCGCCGACCACTACCAGCAGAACACCCCCATCGGCGACGGCCCCGTGCTGCTGCCCGACAACCACTACCTGAGCTACCAGTCCAAGCTGAGCAAAGACCCCAACGAGAAGCGCGATCACATGGTCCTGCTGGAGTTCGTGACCGCCGCCGGGATCACTCTCGGCATGGACGAGCTGTACAAGTAATTACTTGTACAGCTCGTCCATGCCGAGAGTGATCCCGGCGGCGGTCACGAACTCCAGCAGGACCATGTGATCGCGCTTCTCGTTGGGGTCTTTGCTCAGCTTGGACTGGTAGCTCAGGTAGTGGTTGTCGGGCAGCAGCACGGGGCCGTCGCCGATGGGGGTGTTCTGCTGGTAGTGGTCGGCGAGCTGCACGCCGCCGTCCTCGATGTTGTGGCGGATCTTGAAGTTGGCCTTGATGCCGTTCTTCTGCTTGTCGGCGGTGATATAGACGTTGTGGCTGTTGTAGTTGTACTCCAGCTTGTGCCCCAGGATGTTGCCGTCCTCCTTGAAGTCGATGCCCTTCAGCTCGATGCGGTTCACCAGGGTGTCGCCCTCGAACTTCACCTCGGCGCGGGTCTTGTAGTTGCCGTCGTCCTTGAAGAAGATGGTGCGCTCCTGGACGTAGCCTTCGGGCATGGCGGACTTGAAGAAGTCGTGCTGCTTCATGTGGTCGGGGTAGCGGGCGAAGCACTGCAGGCCGTAGCCCAGGGTGGTCACGAGGGTGGGCCAGGGCACGGGCAGCTTGCCGGTGGTGCAGATCAGCTTCAGGGTCAGCTTGCCGTAGGTGGCATCGCCCTCGCCCTCGCCGGACACGCTGAACTTGTGGCCGTTTACGTCGCCGTCCAGCTCGACCAGGATGGGCACCACCCCGGTGAACAGCTCCTCGCCCTTGCTCACCATTTACATAAAAGATGGAATCAATGGAGCATCAATTTGAACAACTTGTCTATTACCAGTAGCATCAAAAAAAAACAACAAACCAGCAAATCTAGAATCAGGATCATAAATAATATCAGACAATCTATAAACTTCCCAAGCAGCATCAGAAGCAGTAACATCAACAGTTCTAGTTTCACCAGGAGCCAATGGAGAATTATCAGAAACAGACAAACCATCTTCAGCCAACAAATCTTCAGGATAACCAGTAGTATCTTTATAAACATCAGAATCCAAAAATCTAACAGAAGCAGTATAAAATTCACCCAATCTAATTGGAGAATTACCATGATTAGTAATAGTCAATTTCATTCTCATAGCTCTACCAGGAACTCTATAAGTAGCATCTTCAACTTTAACAGAAACAGTTGGAGCAGGCAATTCCAATGGTTTCATACCTCTCATAGTACCAGCTTGCAATGGAATAGTAATTGGATATTTAGAATTAGCAGAAGACATAGCCATAACAACAATCAAAATAGTAGCAGCCAAAAAACCCATAGCAACTTTTCTATCAGTAGCAGAAACCAATTCATCAGCTCTACCAGCATCAACCATCAATAACCTTGGTATGAAGATAGGTCTCCTCGACCAATATCCAATCCAGGCAACGCCTATTGCGAACCAAAAAGCGTGCCAGAAATAAGTATTACCTTCATTATAATTTTCCAAATCAACAGTTTGACCAGTCAAAGTAGTAACAGGATTTCTAAATTCAGACATAGAACCTTCAACAGTAATCCATTTACCAGGACCAATAATTGGACCACCACCTTGAACATTCATCATAGTATGAACATGCCAATCACCAGGTCTTCTAGCTTTCAAAACAACTCTAAAATCATAAGTTTTACCAATTTCCAATCTAACAGATCTTGGAACCAATTGACCACCAATATAAGATTCTTTTCTAATAAAAACAGGACCAGGCATACCAACATTCAAAAAAGCAACATCAGGTTCATCAACAGTTTCAGGCCAACCTTCAAAAACATGAAATTTACCTTTAATCTCAACAGTTTCGTTTATTTTAACCTTTTCCTTAGACCAAGATAAGTCATACCAATGAATAGTCCTCATTCTCATAAAAGCAGCTTGAGATTTTTCACCATGAGCAGAAGCAGATGGAGCATAAAAAGCAGTAGCAGCAACAGCAGACAACAAACCAATAGCAGACCATTTAGCAATTCTATCTTTAATAGTTTTCATTCATGAGATTATTGGAAACCACCAGAATCGAATATAAAAGGCGAACACCTTTCCCAATTTTGGTTTCTCCTGACCCAAAGACTTTTCATGAGATTATTGGAAACCACCAGAATCGAATATAAAAGGCGAACACCTTTCCCAATTTTGGTTTCTCCTGACCCAAAGACTTTTCATGAGATTATTGGAAACCACCAGAATCGAATATAAAAGGCGAACACCTTTCCCAATTTTGGTTTCTCCTGACCCAAAGACTTTAAAGTCTTTGGGTCAGGAGAAACCAAAATTGGGAAAGGTGTTCGCCTTTTATATTCGATTCTGGTGGTTTCCAATAATCTCATGAAAAGTCTTTGGGTCAGGAGAAACCAAAATTGGGAAAGGTGTTCGCCTTTTATATTCGATTCTGGTGGTTTCCAATAATCTCATGAAAAGTCTTTGGGTCAGGAGAAACCAAAATTGGGAAAGGTGTTCGCCTTTTATATTCGATTCTGGTGGTTTCCAATAATCTCATGAACTGACAATAAAAAGATTCTTGTTTTCAAGAACTTGTCATTTGTATAGTTTTTTTATATTGTAGTTGTTCTATTTTAATCAAATGTTAGCGTGATTTATATTTTTTTTCGCCTCGACATCATCTGCCCAGATGCGAAGTTAAGTGCGCAGAAAGTAATATCATGCGTCAATCGTATGTGAATGCTGGTCGCTATACTGACTGACAATAAAAAGATTCTTGTTTTCAAGAACTTGTCATTTGTATAGTTTTTTTATATTGTAGTTGTTCTATTTTAATCAAATGTTAGCGTGATTTATATTTTTTTTCGCCTCGACATCATCTGCCCAGATGCGAAGTTAAGTGCGCAGAAAGTAATATCATGCGTCAATCGTATGTGAATGCTGGTCGCTATACTGACTGACAATAAAAAGATTCTTGTTTTCAAGAACTTGTCATTTGTATAGTTTTTTTATATTGTAGTTGTTCTATTTTAATCAAATGTTAGCGTGATTTATATTTTTTTTCGCCTCGACATCATCTGCCCAGATGCGAAGTTAAGTGCGCAGAAAGTAATATCATGCGTCAATCGTATGTGAATGCTGGTCGCTATACTGCAGTATAGCGACCAGCATTCACATACGATTGACGCATGATATTACTTTCTGCGCACTTAACTTCGCATCTGGGCAGATGATGTCGAGGCGAAAAAAAATATAAATCACGCTAACATTTGATTAAAATAGAACAACTACAATATAAAAAAACTATACAAATGACAAGTTCTTGAAAACAAGAATCTTTTTATTGTCAGTCAGTATAGCGACCAGCATTCACATACGATTGACGCATGATATTACTTTCTGCGCACTTAACTTCGCATCTGGGCAGATGATGTCGAGGCGAAAAAAAATATAAATCACGCTAACATTTGATTAAAATAGAACAACTACAATATAAAAAAACTATACAAATGACAAGTTCTTGAAAACAAGAATCTTTTTATTGTCAGTCAGTATAGCGACCAGCATTCACATACGATTGACGCATGATATTACTTTCTGCGCACTTAACTTCGCATCTGGGCAGATGATGTCGAGGCGAAAAAAAATATAAATCACGCTAACATTTGATTAAAATAGAACAACTACAATATAAAAAAACTATACAAATGACAAGTTCTTGAAAACAAGAATCTTTTTATTGTCAGTATGAAACTACTCTTACCATTATTGACACTCGTTGCTGTTGCTAAGGCCATGTCTGCTGCTCAATCTGCTGTTAGATCTCATGCTGAAGCTGTTCAAGTTTCTAGAACTATTGATTGGATGGCTTTGTTTGTTGTTTTTTTTGTTATTGTTGGTTCTTATCATATTCATGCTATGTTGACTATGGGTGATTGGGATTTTTGGTCTGATTGGAAAGATAGAAGATTGTGGGTTACTGTTACTCCAATTGTTTTGGTTACTTTTCCTGCTGCTGTTCAATCTTATTTGTGGGAAAGATATAGATTGCCATGGGGTGCTACTGTTTGTGTTTTGGGTTTGTTGTTGGGTGAATGGATTAATAGATATTTTAATTTTTGGGGTTGGACTTATTTTCCAATTAATTTTGTTTTTCCTGCTTCTTTGGTTCCTGGTGCTATTATTTTGGATACTGTTTTGATGTTGTCTGGTTCTTATTTGTTTACTGCTATTGTTGGTGCTATGGGTTGGGGTTTGATTTTTTATCCTGGTAATTGGCCAATTATTGCTCCATTGCATGTTCCTGTTGAAAATAATGGTATGTTGATGTCTATTGCTGATATTCAAGGTTATAATTATGTTAGAACTGGTACTCCTGAATATATTAGAATGGTTGAAAAAGGTACTTTGAGAACTTTTGGTAAAGATGTTGCGCCCGTTTCAGCTTTTTTTTCTGCGTTCATGTCTATATTGATATATTTTATGTGGCATTTCATTGGTAGATGGTTTTCTAATGAAAGATTTTTGCAATCTACTTAATTAAGTAGATTGCAAAAATCTTTCATTAGAAAACCATCTACCAATGAAATGCCACATAAAATATATCAATATAGACATGAACGCAGAAAAAAAAGCTGAAACGGGCGCAACATCTTTACCAAAAGTTCTCAAAGTACCTTTTTCAACCATTCTAATATATTCAGGAGTACCAGTTCTAACATAATTATAACCTTGAATATCAGCAATAGACATCAACATACCATTATTTTCAACAGGAACATGCAATGGAGCAATAATTGGCCAATTACCAGGATAAAAAATCAAACCCCAACCCATAGCACCAACAATAGCAGTAAACAAATAAGAACCAGACAACATCAAAACAGTATCCAAAATAATAGCACCAGGAACCAAAGAAGCAGGAAAAACAAAATTAATTGGAAAATAAGTCCAACCCCAAAAATTAAAATATCTATTAATCCATTCACCCAACAACAAACCCAAAACACAAACAGTAGCACCCCATGGCAATCTATATCTTTCCCACAAATAAGATTGAACAGCAGCAGGAAAAGTAACCAAAACAATTGGAGTAACAGTAACCCACAATCTTCTATCTTTCCAATCAGACCAAAAATCCCAATCACCCATAGTCAACATAGCATGAATATGATAAGAACCAACAATAACAAAAAAAACAACAAACAAAGCCATCCAATCAATAGTTCTAGAAACTTGAACAGCTTCAGCATGAGATCTAACAGCAGATTGAGCAGCAGACATGGCCTTAGCAACAGCAACGAGTGTCAATAATGGTAAGAGTAGTTTCATATGAAACTACTCTTACCATTATTGACACTCGTTGCTGTTGCTAAGGCCATGGCTGCTACTACTATTGGTGGTGCTGCTGCTGCTGAAGCTCCATTGTTAGATAAGAAATGGTTGACATTTGCTTTGGCTATATACACTGTTTTTTATTTGTGGGTTAGATGGTATGAGGGGGTTTATGGCTGGTCTGCTGGTTTGGATTCTTTCGCTCCGGAGTTTGAAACTTATTGGATGAATTTCTTGTATACGGAGATTGTTTTGGAAATTGTTACTGCTTCTATTTTGTGGGGTTACTTATGGAAAACTAGAGATAGAAATTTGGCTGCTTTGACTCCAAGAGAAGAATTGAGAAGAAATTTTACTCATTTGGTATGGTTGGTTGCTTATGCTTGGGCTATTTACTGGGGTGCTTCTTATTTTACTGAACAAGATGGTACTTGGCACCAAACAATAGTTAGGGACACTGATTTTACACCTTCTCATATTATTGAATTCTATTTGTCTTACCCAATTTATATTATTACTGGGTTTGCTGCTTTTATTTATGCTAAAACTAGATTGCCATTTTTTGCTAAAGGTATTTCTTTGCCATATTTGGTTTTGGTTGTTGGTCCATTTATGATTTTGCCAAATGTTGGTTTGAATGAATGGGGTCATACTTTTTGGTTTATGGAAGAATTGTTTGTTGCTCCATTGCATTATGGTTTTGTTATTTTCGGTTGGTTGGCTTTGGCTGTTATGGGTACTTTGACTCAAACTTTTTATAGATTTGCTCAAGGTGGTTTGGGTCAATCTTTGTGTGAAGCTGTTGATGAAGGTTTGATTGCTAAATAATTATTTAGCAATCAAACCTTCATCAACAGCTTCACACAAAGATTGACCCAAACCACCTTGAGCAAATCTATAAAAAGTTTGAGTCAAAGTACCCATAACAGCCAAAGCCAACCAACCGAAAATAACAAAACCATAATGCAATGGAGCAACAAACAATTCTTCCATAAACCAAAAAGTATGACCCCATTCATTCAAACCAACATTTGGCAAAATCATAAATGGACCAACAACCAAAACCAAATATGGCAAAGAAATACCTTTAGCAAAAAATGGCAATCTAGTTTTAGCATAAATAAAAGCAGCAAACCCAGTAATAATATAAATTGGGTAAGACAAATAGAATTCAATAATATGAGAAGGTGTAAAATCAGTGTCCCTAACTATTGTTTGGTGCCAAGTACCATCTTGTTCAGTAAAATAAGAAGCACCCCAGTAAATAGCCCAAGCATAAGCAACCAACCATACCAAATGAGTAAAATTTCTTCTCAATTCTTCTCTTGGAGTCAAAGCAGCCAAATTTCTATCTCTAGTTTTCCATAAGTAACCCCACAAAATAGAAGCAGTAACAATTTCCAAAACAATCTCCGTATACAAGAAATTCATCCAATAAGTTTCAAACTCCGGAGCGAAAGAATCCAAACCAGCAGACCAGCCATAAACCCCCTCATACCATCTAACCCACAAATAAAAAACAGTGTATATAGCCAAAGCAAATGTCAACCATTTCTTATCTAACAATGGAGCTTCAGCAGCAGCAGCACCACCAATAGTAGTAGCAGCCATGGCCTTAGCAACAGCAACGAGTGTCAATAATGGTAAGAGTAGTTTCAT'
pMMO_rna_seq = 'UUAAGUAGAUUGCAAAAAUCUUUCAUUAGAAAACCAUCUACCAAUGAAAUGCCACAUAAAAUAUAUCAAUAUAGACAUGAACGCAGAAAAAAAAGCUGAAACGGGCGCAACAUCUUUACCAAAAGUUCUCAAAGUACCUUUUUCAACCAUUCUAAUAUAUUCAGGAGUACCAGUUCUAACAUAAUUAUAACCUUGAAUAUCAGCAAUAGACAUCAACAUACCAUUAUUUUCAACAGGAACAUGCAAUGGAGCAAUAAUUGGCCAAUUACCAGGAUAAAAAAUCAAACCCCAACCCAUAGCACCAACAAUAGCAGUAAACAAAUAAGAACCAGACAACAUCAAAACAGUAUCCAAAAUAAUAGCACCAGGAACCAAAGAAGCAGGAAAAACAAAAUUAAUUGGAAAAUAAGUCCAACCCCAAAAAUUAAAAUAUCUAUUAAUCCAUUCACCCAACAACAAACCCAAAACACAAACAGUAGCACCCCAUGGCAAUCUAUAUCUUUCCCACAAAUAAGAUUGAACAGCAGCAGGAAAAGUAACCAAAACAAUUGGAGUAACAGUAACCCACAAUCUUCUAUCUUUCCAAUCAGACCAAAAAUCCCAAUCACCCAUAGUCAACAUAGCAUGAAUAUGAUAAGAACCAACAAUAACAAAAAAAACAACAAACAAAGCCAUCCAAUCAAUAGUUCUAGAAACUUGAACAGCUUCAGCAUGAGAUCUAACAGCAGAUUGAGCAGCAGACAUGGCCUUAGCAACAGCAACGAGUGUCAAUAAUGGUAAGAGUAGUUUCAUUUACUUGUACAGCUCGUCCAUGCCGAGAGUGAUCCCGGCGGCGGUCACGAACUCCAGCAGGACCAUGUGAUCGCGCUUCUCGUUGGGGUCUUUGCUCAGCUUGGACUGGUAGCUCAGGUAGUGGUUGUCGGGCAGCAGCACGGGGCCGUCGCCGAUGGGGGUGUUCUGCUGGUAGUGGUCGGCGAGCUGCACGCCGCCGUCCUCGAUGUUGUGGCGGAUCUUGAAGUUGGCCUUGAUGCCGUUCUUCUGCUUGUCGGCGGUGAUAUAGACGUUGUGGCUGUUGUAGUUGUACUCCAGCUUGUGCCCCAGGAUGUUGCCGUCCUCCUUGAAGUCGAUGCCCUUCAGCUCGAUGCGGUUCACCAGGGUGUCGCCCUCGAACUUCACCUCGGCGCGGGUCUUGUAGUUGCCGUCGUCCUUGAAGAAGAUGGUGCGCUCCUGGACGUAGCCUUCGGGCAUGGCGGACUUGAAGAAGUCGUGCUGCUUCAUGUGGUCGGGGUAGCGGGCGAAGCACUGCAGGCCGUAGCCCAGGGUGGUCACGAGGGUGGGCCAGGGCACGGGCAGCUUGCCGGUGGUGCAGAUCAGCUUCAGGGUCAGCUUGCCGUAGGUGGCAUCGCCCUCGCCCUCGCCGGACACGCUGAACUUGUGGCCGUUUACGUCGCCGUCCAGCUCGACCAGGAUGGGCACCACCCCGGUGAACAGCUCCUCGCCCUUGCUCACCAUUUACAUAAAAGAUGGAAUCAAUGGAGCAUCAAUUUGAACAACUUGUCUAUUACCAGUAGCAUCAAAAAAAAACAACAAACCAGCAAAUCUAGAAUCAGGAUCAUAAAUAAUAUCAGACAAUCUAUAAACUUCCCAAGCAGCAUCAGAAGCAGUAACAUCAACAGUUCUAGUUUCACCAGGAGCCAAUGGAGAAUUAUCAGAAACAGACAAACCAUCUUCAGCCAACAAAUCUUCAGGAUAACCAGUAGUAUCUUUAUAAACAUCAGAAUCCAAAAAUCUAACAGAAGCAGUAUAAAAUUCACCCAAUCUAAUUGGAGAAUUACCAUGAUUAGUAAUAGUCAAUUUCAUUCUCAUAGCUCUACCAGGAACUCUAUAAGUAGCAUCUUCAACUUUAACAGAAACAGUUGGAGCAGGCAAUUCCAAUGGUUUCAUACCUCUCAUAGUACCAGCUUGCAAUGGAAUAGUAAUUGGAUAUUUAGAAUUAGCAGAAGACAUAGCCAUAACAACAAUCAAAAUAGUAGCAGCCAAAAAACCCAUAGCAACUUUUCUAUCAGUAGCAGAAACCAAUUCAUCAGCUCUACCAGCAUCAACCAUCAAUAACCUUGGUAUGAAGAUAGGUCUCCUCGACCAAUAUCCAAUCCAGGCAACGCCUAUUGCGAACCAAAAAGCGUGCCAGAAAUAAGUAUUACCUUCAUUAUAAUUUUCCAAAUCAACAGUUUGACCAGUCAAAGUAGUAACAGGAUUUCUAAAUUCAGACAUAGAACCUUCAACAGUAAUCCAUUUACCAGGACCAAUAAUUGGACCACCACCUUGAACAUUCAUCAUAGUAUGAACAUGCCAAUCACCAGGUCUUCUAGCUUUCAAAACAACUCUAAAAUCAUAAGUUUUACCAAUUUCCAAUCUAACAGAUCUUGGAACCAAUUGACCACCAAUAUAAGAUUCUUUUCUAAUAAAAACAGGACCAGGCAUACCAACAUUCAAAAAAGCAACAUCAGGUUCAUCAACAGUUUCAGGCCAACCUUCAAAAACAUGAAAUUUACCUUUAAUCUCAACAGUUUCGUUUAUUUUAACCUUUUCCUUAGACCAAGAUAAGUCAUACCAAUGAAUAGUCCUCAUUCUCAUAAAAGCAGCUUGAGAUUUUUCACCAUGAGCAGAAGCAGAUGGAGCAUAAAAAGCAGUAGCAGCAACAGCAGACAACAAACCAAUAGCAGACCAUUUAGCAAUUCUAUCUUUAAUAGUUUUCAUUUAUUUAGCAAUCAAACCUUCAUCAACAGCUUCACACAAAGAUUGACCCAAACCACCUUGAGCAAAUCUAUAAAAAGUUUGAGUCAAAGUACCCAUAACAGCCAAAGCCAACCAACCGAAAAUAACAAAACCAUAAUGCAAUGGAGCAACAAACAAUUCUUCCAUAAACCAAAAAGUAUGACCCCAUUCAUUCAAACCAACAUUUGGCAAAAUCAUAAAUGGACCAACAACCAAAACCAAAUAUGGCAAAGAAAUACCUUUAGCAAAAAAUGGCAAUCUAGUUUUAGCAUAAAUAAAAGCAGCAAACCCAGUAAUAAUAUAAAUUGGGUAAGACAAAUAGAAUUCAAUAAUAUGAGAAGGUGUAAAAUCAGUGUCCCUAACUAUUGUUUGGUGCCAAGUACCAUCUUGUUCAGUAAAAUAAGAAGCACCCCAGUAAAUAGCCCAAGCAUAAGCAACCAACCAUACCAAAUGAGUAAAAUUUCUUCUCAAUUCUUCUCUUGGAGUCAAAGCAGCCAAAUUUCUAUCUCUAGUUUUCCAUAAGUAACCCCACAAAAUAGAAGCAGUAACAAUUUCCAAAACAAUCUCCGUAUACAAGAAAUUCAUCCAAUAAGUUUCAAACUCCGGAGCGAAAGAAUCCAAACCAGCAGACCAGCCAUAAACCCCCUCAUACCAUCUAACCCACAAAUAAAAAACAGUGUAUAUAGCCAAAGCAAAUGUCAACCAUUUCUUAUCUAACAAUGGAGCUUCAGCAGCAGCAGCACCACCAAUAGUAGUAGCAGCCAUGGCCUUAGCAACAGCAACGAGUGUCAAUAAUGGUAAGAGUAGUUUCAU'
pMMO_aa_seq = 'MKLLLPLLTLVAVAKAMAATTIGGAAAAEAPLLDKKWLTFALAIYTVFYLWVRWYEGVYGWSAGLDSFAPEFETYWMNFLYTEIVLEIVTASILWGYLWKTRDRNLAALTPREELRRNFTHLVWLVAYAWAIYWGASYFTEQDGTWHQTIVRDTDFTPSHIIEFYLSYPIYIITGFAAFIYAKTRLPFFAKGISLPYLVLVVGPFMILPNVGLNEWGHTFWFMEELFVAPLHYGFVIFGWLALAVMGTLTQTFYRFAQGGLGQSLCEAVDEGLIAKMKTIKDRIAKWSAIGLLSAVAATAFYAPSASAHGEKSQAAFMRMRTIHWYDLSWSKEKVKINETVEIKGKFHVFEGWPETVDEPDVAFLNVGMPGPVFIRKESYIGGQLVPRSVRLEIGKTYDFRVVLKARRPGDWHVHTMMNVQGGGPIIGPGKWITVEGSMSEFRNPVTTLTGQTVDLENYNEGNTYFWHAFWFAIGVAWIGYWSRRPIFIPRLLMVDAGRADELVSATDRKVAMGFLAATILIVVMAMSSANSKYPITIPLQAGTMRGMKPLELPAPTVSVKVEDATYRVPGRAMRMKLTITNHGNSPIRLGEFYTASVRFLDSDVYKDTTGYPEDLLAEDGLSVSDNSPLAPGETRTVDVTASDAAWEVYRLSDIIYDPDSRFAGLLFFFDATGNRQVVQIDAPLIPSFMMVSKGEELFTGVVPILVELDGDVNGHKFSVSGEGEGDATYGKLTLKLICTTGKLPVPWPTLVTTLGYGLQCFARYPDHMKQHDFFKSAMPEGYVQERTIFFKDDGNYKTRAEVKFEGDTLVNRIELKGIDFKEDGNILGHKLEYNYNSHNVYITADKQKNGIKANFKIRHNIEDGGVQLADHYQQNTPIGDGPVLLPDNHYLSYQSKLSKDPNEKRDHMVLLEFVTAAGITLGMDELYKMKLLLPLLTLVAVAKAMSAAQSAVRSHAEAVQVSRTIDWMALFVVFFVIVGSYHIHAMLTMGDWDFWSDWKDRRLWVTVTPIVLVTFPAAVQSYLWERYRLPWGATVCVLGLLLGEWINRYFNFWGWTYFPINFVFPASLVPGAIILDTVLMLSGSYLFTAIVGAMGWGLIFYPGNWPIIAPLHVPVENNGMLMSIADIQGYNYVRTGTPEYIRMVEKGTLRTFGKDVAPVSAFFSAFMSILIYFMWHFIGRWFSNERFLQST'
hemo_dna_seq = 'ATGGGTGCTTTTACTGAAAAACAAGAGGCTTTGGTTTCTTCTAGCTTTGAAGCTTTTAAAGCTAACATTCCACAATATTCTGTTGTTTTTTATACTTCTATTTTGGAAAAAGCTCCTGCTGCTAAAGATTTGTTTTCTTTTTTGTCTAATGGTGTTGATCCATCTAATCCAAAATTGACTGGTCATGCTGAAAAATTGTTTGGTTTGGTTAGAGATTCTGCTGGTCAATTGAAAGCTAATGGTACTGTTGTTGCTGATGCTGCTTTGGGTTCTATTCATGCTCAAAAAGCTATTACTGATCCACAATTTGTTGTTGTTAAAGAAGCTTTGTTGAAAACTATTAAAGAAGCTGTTGGTGATAAATGGTCTGATGAATTGTCTTCTGCTTGGGAAGTTGCTTATGATGAATTGGCTGCTGCTATTAAAAAAGCTTTTAAAAGCTTTTTTAATAGCAGCAGCCAATTCATCATAAGCAACTTCCCAAGCAGAAGACAATTCATCAGACCATTTATCACCAACAGCTTCTTTAATAGTTTTCAACAAAGCTTCTTTAACAACAACAAATTGTGGATCAGTAATAGCTTTTTGAGCATGAATAGAACCCAAAGCAGCATCAGCAACAACAGTACCATTAGCTTTCAATTGACCAGCAGAATCTCTAACCAAACCAAACAATTTTTCAGCATGACCAGTCAATTTTGGATTAGATGGATCAACACCATTAGACAAAAAAGAAAACAAATCTTTAGCAGCAGGAGCTTTTTCCAAAATAGAAGTATAAAAAACAACAGAATATTGTGGAATGTTAGCTTTAAAAGCTTCAAAGCTAGAAGAAACCAAAGCCTCTTGTTTTTCAGTAAAAGCACCCATATGCTTCCAAGATTCTGGTGGGAATACTGCTGATAGCCTAACGTTCATGATCAAAATTTAACTGTTCTAACCCCTACTTGACAGGCAATATATAAACAGAAGGAAGCTGCCCTGTCTTAAACCTTTTTTTTTATCATCATTATTAGCTTACTTTCATAATTGCGACTGGTTCCAATTGACAAGCTTTTGATTTTAACGACTTTTAACGACAACTTGAGAAGATCAAAAAACAACTAATTATTCGAAACGATGGCTATCCCCGAAGAGTTTGATATCCTAGTTCTAGGTGGTGGATCCAGTGGATCCTGTATTGCCGGAAGATTGGCAAACTTGGACCACTCCTTGAAAGTACTTTCAAGGAGTGGTCCAAGTTTGCCAATCTTCCGGCAATACAGGATCCACTGGATCCACCACCTAGAACTAGGATATCAAACTCTTCGGGGATAGCCATCGTTTCGAATAATTAGTTGTTTTTTGATCTTCTCAAGTTGTCGTTAAAAGTCGTTAAAATCAAAAGCTTGTCAATTGGAACCAGTCGCAATTATGAAAGTAAGCTAATAATGATGATAAAAAAAAAGGTTTAAGACAGGGCAGCTTCCTTCTGTTTATATATTGCCTGTCAAGTAGGGGTTAGAACAGTTAAATTTTGATCATGAACGTTAGGCTATCAGCAGTATTCCCACCAGAATCTTGGAAGCATACTGACAATAAAAAGATTCTTGTTTTCAAGAACTTGTCATTTGTATAGTTTTTTTATATTGTAGTTGTTCTATTTTAATCAAATGTTAGCGTGATTTATATTTTTTTTCGCCTCGACATCATCTGCCCAGATGCGAAGTTAAGTGCGCAGAAAGTAATATCATGCGTCAATCGTATGTGAATGCTGGTCGCTATACTGCAGTATAGCGACCAGCATTCACATACGATTGACGCATGATATTACTTTCTGCGCACTTAACTTCGCATCTGGGCAGATGATGTCGAGGCGAAAAAAAATATAAATCACGCTAACATTTGATTAAAATAGAACAACTACAATATAAAAAAACTATACAAATGACAAGTTCTTGAAAACAAGAATCTTTTTATTGTCAGT'
hemo_rna_seq = 'AAAAGCUUUUUUAAUAGCAGCAGCCAAUUCAUCAUAAGCAACUUCCCAAGCAGAAGACAAUUCAUCAGACCAUUUAUCACCAACAGCUUCUUUAAUAGUUUUCAACAAAGCUUCUUUAACAACAACAAAUUGUGGAUCAGUAAUAGCUUUUUGAGCAUGAAUAGAACCCAAAGCAGCAUCAGCAACAACAGUACCAUUAGCUUUCAAUUGACCAGCAGAAUCUCUAACCAAACCAAACAAUUUUUCAGCAUGACCAGUCAAUUUUGGAUUAGAUGGAUCAACACCAUUAGACAAAAAAGAAAACAAAUCUUUAGCAGCAGGAGCUUUUUCCAAAAUAGAAGUAUAAAAAACAACAGAAUAUUGUGGAAUGUUAGCUUUAAAAGCUUCAAAGCUAGAAGAAACCAAAGCCUCUUGUUUUUCAGUAAAAGCACCCAU'
hemo_aa_seq = 'MGAFTEKQEALVSSSFEAFKANIPQYSVVFYTSILEKAPAAKDLFSFLSNGVDPSNPKLTGHAEKLFGLVRDSAGQLKANGTVVADAALGSIHAQKAITDPQFVVVKEALLKTIKEAVGDKWSDELSSAWEVAYDELAAAIKKAF'
|
p_mmo_dna_seq = 'ATGAAAACTATTAAAGATAGAATTGCTAAATGGTCTGCTATTGGTTTGTTGTCTGCTGTTGCTGCTACTGCTTTTTATGCTCCATCTGCTTCTGCTCATGGTGAAAAATCTCAAGCTGCTTTTATGAGAATGAGGACTATTCATTGGTATGACTTATCTTGGTCTAAGGAAAAGGTTAAAATAAACGAAACTGTTGAGATTAAAGGTAAATTTCATGTTTTTGAAGGTTGGCCTGAAACTGTTGATGAACCTGATGTTGCTTTTTTGAATGTTGGTATGCCTGGTCCTGTTTTTATTAGAAAAGAATCTTATATTGGTGGTCAATTGGTTCCAAGATCTGTTAGATTGGAAATTGGTAAAACTTATGATTTTAGAGTTGTTTTGAAAGCTAGAAGACCTGGTGATTGGCATGTTCATACTATGATGAATGTTCAAGGTGGTGGTCCAATTATTGGTCCTGGTAAATGGATTACTGTTGAAGGTTCTATGTCTGAATTTAGAAATCCTGTTACTACTTTGACTGGTCAAACTGTTGATTTGGAAAATTATAATGAAGGTAATACTTATTTCTGGCACGCTTTTTGGTTCGCAATAGGCGTTGCCTGGATTGGATATTGGTCGAGGAGACCTATCTTCATACCAAGGTTATTGATGGTTGATGCTGGTAGAGCTGATGAATTGGTTTCTGCTACTGATAGAAAAGTTGCTATGGGTTTTTTGGCTGCTACTATTTTGATTGTTGTTATGGCTATGTCTTCTGCTAATTCTAAATATCCAATTACTATTCCATTGCAAGCTGGTACTATGAGAGGTATGAAACCATTGGAATTGCCTGCTCCAACTGTTTCTGTTAAAGTTGAAGATGCTACTTATAGAGTTCCTGGTAGAGCTATGAGAATGAAATTGACTATTACTAATCATGGTAATTCTCCAATTAGATTGGGTGAATTTTATACTGCTTCTGTTAGATTTTTGGATTCTGATGTTTATAAAGATACTACTGGTTATCCTGAAGATTTGTTGGCTGAAGATGGTTTGTCTGTTTCTGATAATTCTCCATTGGCTCCTGGTGAAACTAGAACTGTTGATGTTACTGCTTCTGATGCTGCTTGGGAAGTTTATAGATTGTCTGATATTATTTATGATCCTGATTCTAGATTTGCTGGTTTGTTGTTTTTTTTTGATGCTACTGGTAATAGACAAGTTGTTCAAATTGATGCTCCATTGATTCCATCTTTTATGTAAATGGTGAGCAAGGGCGAGGAGCTGTTCACCGGGGTGGTGCCCATCCTGGTCGAGCTGGACGGCGACGTAAACGGCCACAAGTTCAGCGTGTCCGGCGAGGGCGAGGGCGATGCCACCTACGGCAAGCTGACCCTGAAGCTGATCTGCACCACCGGCAAGCTGCCCGTGCCCTGGCCCACCCTCGTGACCACCCTGGGCTACGGCCTGCAGTGCTTCGCCCGCTACCCCGACCACATGAAGCAGCACGACTTCTTCAAGTCCGCCATGCCCGAAGGCTACGTCCAGGAGCGCACCATCTTCTTCAAGGACGACGGCAACTACAAGACCCGCGCCGAGGTGAAGTTCGAGGGCGACACCCTGGTGAACCGCATCGAGCTGAAGGGCATCGACTTCAAGGAGGACGGCAACATCCTGGGGCACAAGCTGGAGTACAACTACAACAGCCACAACGTCTATATCACCGCCGACAAGCAGAAGAACGGCATCAAGGCCAACTTCAAGATCCGCCACAACATCGAGGACGGCGGCGTGCAGCTCGCCGACCACTACCAGCAGAACACCCCCATCGGCGACGGCCCCGTGCTGCTGCCCGACAACCACTACCTGAGCTACCAGTCCAAGCTGAGCAAAGACCCCAACGAGAAGCGCGATCACATGGTCCTGCTGGAGTTCGTGACCGCCGCCGGGATCACTCTCGGCATGGACGAGCTGTACAAGTAATTACTTGTACAGCTCGTCCATGCCGAGAGTGATCCCGGCGGCGGTCACGAACTCCAGCAGGACCATGTGATCGCGCTTCTCGTTGGGGTCTTTGCTCAGCTTGGACTGGTAGCTCAGGTAGTGGTTGTCGGGCAGCAGCACGGGGCCGTCGCCGATGGGGGTGTTCTGCTGGTAGTGGTCGGCGAGCTGCACGCCGCCGTCCTCGATGTTGTGGCGGATCTTGAAGTTGGCCTTGATGCCGTTCTTCTGCTTGTCGGCGGTGATATAGACGTTGTGGCTGTTGTAGTTGTACTCCAGCTTGTGCCCCAGGATGTTGCCGTCCTCCTTGAAGTCGATGCCCTTCAGCTCGATGCGGTTCACCAGGGTGTCGCCCTCGAACTTCACCTCGGCGCGGGTCTTGTAGTTGCCGTCGTCCTTGAAGAAGATGGTGCGCTCCTGGACGTAGCCTTCGGGCATGGCGGACTTGAAGAAGTCGTGCTGCTTCATGTGGTCGGGGTAGCGGGCGAAGCACTGCAGGCCGTAGCCCAGGGTGGTCACGAGGGTGGGCCAGGGCACGGGCAGCTTGCCGGTGGTGCAGATCAGCTTCAGGGTCAGCTTGCCGTAGGTGGCATCGCCCTCGCCCTCGCCGGACACGCTGAACTTGTGGCCGTTTACGTCGCCGTCCAGCTCGACCAGGATGGGCACCACCCCGGTGAACAGCTCCTCGCCCTTGCTCACCATTTACATAAAAGATGGAATCAATGGAGCATCAATTTGAACAACTTGTCTATTACCAGTAGCATCAAAAAAAAACAACAAACCAGCAAATCTAGAATCAGGATCATAAATAATATCAGACAATCTATAAACTTCCCAAGCAGCATCAGAAGCAGTAACATCAACAGTTCTAGTTTCACCAGGAGCCAATGGAGAATTATCAGAAACAGACAAACCATCTTCAGCCAACAAATCTTCAGGATAACCAGTAGTATCTTTATAAACATCAGAATCCAAAAATCTAACAGAAGCAGTATAAAATTCACCCAATCTAATTGGAGAATTACCATGATTAGTAATAGTCAATTTCATTCTCATAGCTCTACCAGGAACTCTATAAGTAGCATCTTCAACTTTAACAGAAACAGTTGGAGCAGGCAATTCCAATGGTTTCATACCTCTCATAGTACCAGCTTGCAATGGAATAGTAATTGGATATTTAGAATTAGCAGAAGACATAGCCATAACAACAATCAAAATAGTAGCAGCCAAAAAACCCATAGCAACTTTTCTATCAGTAGCAGAAACCAATTCATCAGCTCTACCAGCATCAACCATCAATAACCTTGGTATGAAGATAGGTCTCCTCGACCAATATCCAATCCAGGCAACGCCTATTGCGAACCAAAAAGCGTGCCAGAAATAAGTATTACCTTCATTATAATTTTCCAAATCAACAGTTTGACCAGTCAAAGTAGTAACAGGATTTCTAAATTCAGACATAGAACCTTCAACAGTAATCCATTTACCAGGACCAATAATTGGACCACCACCTTGAACATTCATCATAGTATGAACATGCCAATCACCAGGTCTTCTAGCTTTCAAAACAACTCTAAAATCATAAGTTTTACCAATTTCCAATCTAACAGATCTTGGAACCAATTGACCACCAATATAAGATTCTTTTCTAATAAAAACAGGACCAGGCATACCAACATTCAAAAAAGCAACATCAGGTTCATCAACAGTTTCAGGCCAACCTTCAAAAACATGAAATTTACCTTTAATCTCAACAGTTTCGTTTATTTTAACCTTTTCCTTAGACCAAGATAAGTCATACCAATGAATAGTCCTCATTCTCATAAAAGCAGCTTGAGATTTTTCACCATGAGCAGAAGCAGATGGAGCATAAAAAGCAGTAGCAGCAACAGCAGACAACAAACCAATAGCAGACCATTTAGCAATTCTATCTTTAATAGTTTTCATTCATGAGATTATTGGAAACCACCAGAATCGAATATAAAAGGCGAACACCTTTCCCAATTTTGGTTTCTCCTGACCCAAAGACTTTTCATGAGATTATTGGAAACCACCAGAATCGAATATAAAAGGCGAACACCTTTCCCAATTTTGGTTTCTCCTGACCCAAAGACTTTTCATGAGATTATTGGAAACCACCAGAATCGAATATAAAAGGCGAACACCTTTCCCAATTTTGGTTTCTCCTGACCCAAAGACTTTAAAGTCTTTGGGTCAGGAGAAACCAAAATTGGGAAAGGTGTTCGCCTTTTATATTCGATTCTGGTGGTTTCCAATAATCTCATGAAAAGTCTTTGGGTCAGGAGAAACCAAAATTGGGAAAGGTGTTCGCCTTTTATATTCGATTCTGGTGGTTTCCAATAATCTCATGAAAAGTCTTTGGGTCAGGAGAAACCAAAATTGGGAAAGGTGTTCGCCTTTTATATTCGATTCTGGTGGTTTCCAATAATCTCATGAACTGACAATAAAAAGATTCTTGTTTTCAAGAACTTGTCATTTGTATAGTTTTTTTATATTGTAGTTGTTCTATTTTAATCAAATGTTAGCGTGATTTATATTTTTTTTCGCCTCGACATCATCTGCCCAGATGCGAAGTTAAGTGCGCAGAAAGTAATATCATGCGTCAATCGTATGTGAATGCTGGTCGCTATACTGACTGACAATAAAAAGATTCTTGTTTTCAAGAACTTGTCATTTGTATAGTTTTTTTATATTGTAGTTGTTCTATTTTAATCAAATGTTAGCGTGATTTATATTTTTTTTCGCCTCGACATCATCTGCCCAGATGCGAAGTTAAGTGCGCAGAAAGTAATATCATGCGTCAATCGTATGTGAATGCTGGTCGCTATACTGACTGACAATAAAAAGATTCTTGTTTTCAAGAACTTGTCATTTGTATAGTTTTTTTATATTGTAGTTGTTCTATTTTAATCAAATGTTAGCGTGATTTATATTTTTTTTCGCCTCGACATCATCTGCCCAGATGCGAAGTTAAGTGCGCAGAAAGTAATATCATGCGTCAATCGTATGTGAATGCTGGTCGCTATACTGCAGTATAGCGACCAGCATTCACATACGATTGACGCATGATATTACTTTCTGCGCACTTAACTTCGCATCTGGGCAGATGATGTCGAGGCGAAAAAAAATATAAATCACGCTAACATTTGATTAAAATAGAACAACTACAATATAAAAAAACTATACAAATGACAAGTTCTTGAAAACAAGAATCTTTTTATTGTCAGTCAGTATAGCGACCAGCATTCACATACGATTGACGCATGATATTACTTTCTGCGCACTTAACTTCGCATCTGGGCAGATGATGTCGAGGCGAAAAAAAATATAAATCACGCTAACATTTGATTAAAATAGAACAACTACAATATAAAAAAACTATACAAATGACAAGTTCTTGAAAACAAGAATCTTTTTATTGTCAGTCAGTATAGCGACCAGCATTCACATACGATTGACGCATGATATTACTTTCTGCGCACTTAACTTCGCATCTGGGCAGATGATGTCGAGGCGAAAAAAAATATAAATCACGCTAACATTTGATTAAAATAGAACAACTACAATATAAAAAAACTATACAAATGACAAGTTCTTGAAAACAAGAATCTTTTTATTGTCAGTATGAAACTACTCTTACCATTATTGACACTCGTTGCTGTTGCTAAGGCCATGTCTGCTGCTCAATCTGCTGTTAGATCTCATGCTGAAGCTGTTCAAGTTTCTAGAACTATTGATTGGATGGCTTTGTTTGTTGTTTTTTTTGTTATTGTTGGTTCTTATCATATTCATGCTATGTTGACTATGGGTGATTGGGATTTTTGGTCTGATTGGAAAGATAGAAGATTGTGGGTTACTGTTACTCCAATTGTTTTGGTTACTTTTCCTGCTGCTGTTCAATCTTATTTGTGGGAAAGATATAGATTGCCATGGGGTGCTACTGTTTGTGTTTTGGGTTTGTTGTTGGGTGAATGGATTAATAGATATTTTAATTTTTGGGGTTGGACTTATTTTCCAATTAATTTTGTTTTTCCTGCTTCTTTGGTTCCTGGTGCTATTATTTTGGATACTGTTTTGATGTTGTCTGGTTCTTATTTGTTTACTGCTATTGTTGGTGCTATGGGTTGGGGTTTGATTTTTTATCCTGGTAATTGGCCAATTATTGCTCCATTGCATGTTCCTGTTGAAAATAATGGTATGTTGATGTCTATTGCTGATATTCAAGGTTATAATTATGTTAGAACTGGTACTCCTGAATATATTAGAATGGTTGAAAAAGGTACTTTGAGAACTTTTGGTAAAGATGTTGCGCCCGTTTCAGCTTTTTTTTCTGCGTTCATGTCTATATTGATATATTTTATGTGGCATTTCATTGGTAGATGGTTTTCTAATGAAAGATTTTTGCAATCTACTTAATTAAGTAGATTGCAAAAATCTTTCATTAGAAAACCATCTACCAATGAAATGCCACATAAAATATATCAATATAGACATGAACGCAGAAAAAAAAGCTGAAACGGGCGCAACATCTTTACCAAAAGTTCTCAAAGTACCTTTTTCAACCATTCTAATATATTCAGGAGTACCAGTTCTAACATAATTATAACCTTGAATATCAGCAATAGACATCAACATACCATTATTTTCAACAGGAACATGCAATGGAGCAATAATTGGCCAATTACCAGGATAAAAAATCAAACCCCAACCCATAGCACCAACAATAGCAGTAAACAAATAAGAACCAGACAACATCAAAACAGTATCCAAAATAATAGCACCAGGAACCAAAGAAGCAGGAAAAACAAAATTAATTGGAAAATAAGTCCAACCCCAAAAATTAAAATATCTATTAATCCATTCACCCAACAACAAACCCAAAACACAAACAGTAGCACCCCATGGCAATCTATATCTTTCCCACAAATAAGATTGAACAGCAGCAGGAAAAGTAACCAAAACAATTGGAGTAACAGTAACCCACAATCTTCTATCTTTCCAATCAGACCAAAAATCCCAATCACCCATAGTCAACATAGCATGAATATGATAAGAACCAACAATAACAAAAAAAACAACAAACAAAGCCATCCAATCAATAGTTCTAGAAACTTGAACAGCTTCAGCATGAGATCTAACAGCAGATTGAGCAGCAGACATGGCCTTAGCAACAGCAACGAGTGTCAATAATGGTAAGAGTAGTTTCATATGAAACTACTCTTACCATTATTGACACTCGTTGCTGTTGCTAAGGCCATGGCTGCTACTACTATTGGTGGTGCTGCTGCTGCTGAAGCTCCATTGTTAGATAAGAAATGGTTGACATTTGCTTTGGCTATATACACTGTTTTTTATTTGTGGGTTAGATGGTATGAGGGGGTTTATGGCTGGTCTGCTGGTTTGGATTCTTTCGCTCCGGAGTTTGAAACTTATTGGATGAATTTCTTGTATACGGAGATTGTTTTGGAAATTGTTACTGCTTCTATTTTGTGGGGTTACTTATGGAAAACTAGAGATAGAAATTTGGCTGCTTTGACTCCAAGAGAAGAATTGAGAAGAAATTTTACTCATTTGGTATGGTTGGTTGCTTATGCTTGGGCTATTTACTGGGGTGCTTCTTATTTTACTGAACAAGATGGTACTTGGCACCAAACAATAGTTAGGGACACTGATTTTACACCTTCTCATATTATTGAATTCTATTTGTCTTACCCAATTTATATTATTACTGGGTTTGCTGCTTTTATTTATGCTAAAACTAGATTGCCATTTTTTGCTAAAGGTATTTCTTTGCCATATTTGGTTTTGGTTGTTGGTCCATTTATGATTTTGCCAAATGTTGGTTTGAATGAATGGGGTCATACTTTTTGGTTTATGGAAGAATTGTTTGTTGCTCCATTGCATTATGGTTTTGTTATTTTCGGTTGGTTGGCTTTGGCTGTTATGGGTACTTTGACTCAAACTTTTTATAGATTTGCTCAAGGTGGTTTGGGTCAATCTTTGTGTGAAGCTGTTGATGAAGGTTTGATTGCTAAATAATTATTTAGCAATCAAACCTTCATCAACAGCTTCACACAAAGATTGACCCAAACCACCTTGAGCAAATCTATAAAAAGTTTGAGTCAAAGTACCCATAACAGCCAAAGCCAACCAACCGAAAATAACAAAACCATAATGCAATGGAGCAACAAACAATTCTTCCATAAACCAAAAAGTATGACCCCATTCATTCAAACCAACATTTGGCAAAATCATAAATGGACCAACAACCAAAACCAAATATGGCAAAGAAATACCTTTAGCAAAAAATGGCAATCTAGTTTTAGCATAAATAAAAGCAGCAAACCCAGTAATAATATAAATTGGGTAAGACAAATAGAATTCAATAATATGAGAAGGTGTAAAATCAGTGTCCCTAACTATTGTTTGGTGCCAAGTACCATCTTGTTCAGTAAAATAAGAAGCACCCCAGTAAATAGCCCAAGCATAAGCAACCAACCATACCAAATGAGTAAAATTTCTTCTCAATTCTTCTCTTGGAGTCAAAGCAGCCAAATTTCTATCTCTAGTTTTCCATAAGTAACCCCACAAAATAGAAGCAGTAACAATTTCCAAAACAATCTCCGTATACAAGAAATTCATCCAATAAGTTTCAAACTCCGGAGCGAAAGAATCCAAACCAGCAGACCAGCCATAAACCCCCTCATACCATCTAACCCACAAATAAAAAACAGTGTATATAGCCAAAGCAAATGTCAACCATTTCTTATCTAACAATGGAGCTTCAGCAGCAGCAGCACCACCAATAGTAGTAGCAGCCATGGCCTTAGCAACAGCAACGAGTGTCAATAATGGTAAGAGTAGTTTCAT'
p_mmo_rna_seq = 'UUAAGUAGAUUGCAAAAAUCUUUCAUUAGAAAACCAUCUACCAAUGAAAUGCCACAUAAAAUAUAUCAAUAUAGACAUGAACGCAGAAAAAAAAGCUGAAACGGGCGCAACAUCUUUACCAAAAGUUCUCAAAGUACCUUUUUCAACCAUUCUAAUAUAUUCAGGAGUACCAGUUCUAACAUAAUUAUAACCUUGAAUAUCAGCAAUAGACAUCAACAUACCAUUAUUUUCAACAGGAACAUGCAAUGGAGCAAUAAUUGGCCAAUUACCAGGAUAAAAAAUCAAACCCCAACCCAUAGCACCAACAAUAGCAGUAAACAAAUAAGAACCAGACAACAUCAAAACAGUAUCCAAAAUAAUAGCACCAGGAACCAAAGAAGCAGGAAAAACAAAAUUAAUUGGAAAAUAAGUCCAACCCCAAAAAUUAAAAUAUCUAUUAAUCCAUUCACCCAACAACAAACCCAAAACACAAACAGUAGCACCCCAUGGCAAUCUAUAUCUUUCCCACAAAUAAGAUUGAACAGCAGCAGGAAAAGUAACCAAAACAAUUGGAGUAACAGUAACCCACAAUCUUCUAUCUUUCCAAUCAGACCAAAAAUCCCAAUCACCCAUAGUCAACAUAGCAUGAAUAUGAUAAGAACCAACAAUAACAAAAAAAACAACAAACAAAGCCAUCCAAUCAAUAGUUCUAGAAACUUGAACAGCUUCAGCAUGAGAUCUAACAGCAGAUUGAGCAGCAGACAUGGCCUUAGCAACAGCAACGAGUGUCAAUAAUGGUAAGAGUAGUUUCAUUUACUUGUACAGCUCGUCCAUGCCGAGAGUGAUCCCGGCGGCGGUCACGAACUCCAGCAGGACCAUGUGAUCGCGCUUCUCGUUGGGGUCUUUGCUCAGCUUGGACUGGUAGCUCAGGUAGUGGUUGUCGGGCAGCAGCACGGGGCCGUCGCCGAUGGGGGUGUUCUGCUGGUAGUGGUCGGCGAGCUGCACGCCGCCGUCCUCGAUGUUGUGGCGGAUCUUGAAGUUGGCCUUGAUGCCGUUCUUCUGCUUGUCGGCGGUGAUAUAGACGUUGUGGCUGUUGUAGUUGUACUCCAGCUUGUGCCCCAGGAUGUUGCCGUCCUCCUUGAAGUCGAUGCCCUUCAGCUCGAUGCGGUUCACCAGGGUGUCGCCCUCGAACUUCACCUCGGCGCGGGUCUUGUAGUUGCCGUCGUCCUUGAAGAAGAUGGUGCGCUCCUGGACGUAGCCUUCGGGCAUGGCGGACUUGAAGAAGUCGUGCUGCUUCAUGUGGUCGGGGUAGCGGGCGAAGCACUGCAGGCCGUAGCCCAGGGUGGUCACGAGGGUGGGCCAGGGCACGGGCAGCUUGCCGGUGGUGCAGAUCAGCUUCAGGGUCAGCUUGCCGUAGGUGGCAUCGCCCUCGCCCUCGCCGGACACGCUGAACUUGUGGCCGUUUACGUCGCCGUCCAGCUCGACCAGGAUGGGCACCACCCCGGUGAACAGCUCCUCGCCCUUGCUCACCAUUUACAUAAAAGAUGGAAUCAAUGGAGCAUCAAUUUGAACAACUUGUCUAUUACCAGUAGCAUCAAAAAAAAACAACAAACCAGCAAAUCUAGAAUCAGGAUCAUAAAUAAUAUCAGACAAUCUAUAAACUUCCCAAGCAGCAUCAGAAGCAGUAACAUCAACAGUUCUAGUUUCACCAGGAGCCAAUGGAGAAUUAUCAGAAACAGACAAACCAUCUUCAGCCAACAAAUCUUCAGGAUAACCAGUAGUAUCUUUAUAAACAUCAGAAUCCAAAAAUCUAACAGAAGCAGUAUAAAAUUCACCCAAUCUAAUUGGAGAAUUACCAUGAUUAGUAAUAGUCAAUUUCAUUCUCAUAGCUCUACCAGGAACUCUAUAAGUAGCAUCUUCAACUUUAACAGAAACAGUUGGAGCAGGCAAUUCCAAUGGUUUCAUACCUCUCAUAGUACCAGCUUGCAAUGGAAUAGUAAUUGGAUAUUUAGAAUUAGCAGAAGACAUAGCCAUAACAACAAUCAAAAUAGUAGCAGCCAAAAAACCCAUAGCAACUUUUCUAUCAGUAGCAGAAACCAAUUCAUCAGCUCUACCAGCAUCAACCAUCAAUAACCUUGGUAUGAAGAUAGGUCUCCUCGACCAAUAUCCAAUCCAGGCAACGCCUAUUGCGAACCAAAAAGCGUGCCAGAAAUAAGUAUUACCUUCAUUAUAAUUUUCCAAAUCAACAGUUUGACCAGUCAAAGUAGUAACAGGAUUUCUAAAUUCAGACAUAGAACCUUCAACAGUAAUCCAUUUACCAGGACCAAUAAUUGGACCACCACCUUGAACAUUCAUCAUAGUAUGAACAUGCCAAUCACCAGGUCUUCUAGCUUUCAAAACAACUCUAAAAUCAUAAGUUUUACCAAUUUCCAAUCUAACAGAUCUUGGAACCAAUUGACCACCAAUAUAAGAUUCUUUUCUAAUAAAAACAGGACCAGGCAUACCAACAUUCAAAAAAGCAACAUCAGGUUCAUCAACAGUUUCAGGCCAACCUUCAAAAACAUGAAAUUUACCUUUAAUCUCAACAGUUUCGUUUAUUUUAACCUUUUCCUUAGACCAAGAUAAGUCAUACCAAUGAAUAGUCCUCAUUCUCAUAAAAGCAGCUUGAGAUUUUUCACCAUGAGCAGAAGCAGAUGGAGCAUAAAAAGCAGUAGCAGCAACAGCAGACAACAAACCAAUAGCAGACCAUUUAGCAAUUCUAUCUUUAAUAGUUUUCAUUUAUUUAGCAAUCAAACCUUCAUCAACAGCUUCACACAAAGAUUGACCCAAACCACCUUGAGCAAAUCUAUAAAAAGUUUGAGUCAAAGUACCCAUAACAGCCAAAGCCAACCAACCGAAAAUAACAAAACCAUAAUGCAAUGGAGCAACAAACAAUUCUUCCAUAAACCAAAAAGUAUGACCCCAUUCAUUCAAACCAACAUUUGGCAAAAUCAUAAAUGGACCAACAACCAAAACCAAAUAUGGCAAAGAAAUACCUUUAGCAAAAAAUGGCAAUCUAGUUUUAGCAUAAAUAAAAGCAGCAAACCCAGUAAUAAUAUAAAUUGGGUAAGACAAAUAGAAUUCAAUAAUAUGAGAAGGUGUAAAAUCAGUGUCCCUAACUAUUGUUUGGUGCCAAGUACCAUCUUGUUCAGUAAAAUAAGAAGCACCCCAGUAAAUAGCCCAAGCAUAAGCAACCAACCAUACCAAAUGAGUAAAAUUUCUUCUCAAUUCUUCUCUUGGAGUCAAAGCAGCCAAAUUUCUAUCUCUAGUUUUCCAUAAGUAACCCCACAAAAUAGAAGCAGUAACAAUUUCCAAAACAAUCUCCGUAUACAAGAAAUUCAUCCAAUAAGUUUCAAACUCCGGAGCGAAAGAAUCCAAACCAGCAGACCAGCCAUAAACCCCCUCAUACCAUCUAACCCACAAAUAAAAAACAGUGUAUAUAGCCAAAGCAAAUGUCAACCAUUUCUUAUCUAACAAUGGAGCUUCAGCAGCAGCAGCACCACCAAUAGUAGUAGCAGCCAUGGCCUUAGCAACAGCAACGAGUGUCAAUAAUGGUAAGAGUAGUUUCAU'
p_mmo_aa_seq = 'MKLLLPLLTLVAVAKAMAATTIGGAAAAEAPLLDKKWLTFALAIYTVFYLWVRWYEGVYGWSAGLDSFAPEFETYWMNFLYTEIVLEIVTASILWGYLWKTRDRNLAALTPREELRRNFTHLVWLVAYAWAIYWGASYFTEQDGTWHQTIVRDTDFTPSHIIEFYLSYPIYIITGFAAFIYAKTRLPFFAKGISLPYLVLVVGPFMILPNVGLNEWGHTFWFMEELFVAPLHYGFVIFGWLALAVMGTLTQTFYRFAQGGLGQSLCEAVDEGLIAKMKTIKDRIAKWSAIGLLSAVAATAFYAPSASAHGEKSQAAFMRMRTIHWYDLSWSKEKVKINETVEIKGKFHVFEGWPETVDEPDVAFLNVGMPGPVFIRKESYIGGQLVPRSVRLEIGKTYDFRVVLKARRPGDWHVHTMMNVQGGGPIIGPGKWITVEGSMSEFRNPVTTLTGQTVDLENYNEGNTYFWHAFWFAIGVAWIGYWSRRPIFIPRLLMVDAGRADELVSATDRKVAMGFLAATILIVVMAMSSANSKYPITIPLQAGTMRGMKPLELPAPTVSVKVEDATYRVPGRAMRMKLTITNHGNSPIRLGEFYTASVRFLDSDVYKDTTGYPEDLLAEDGLSVSDNSPLAPGETRTVDVTASDAAWEVYRLSDIIYDPDSRFAGLLFFFDATGNRQVVQIDAPLIPSFMMVSKGEELFTGVVPILVELDGDVNGHKFSVSGEGEGDATYGKLTLKLICTTGKLPVPWPTLVTTLGYGLQCFARYPDHMKQHDFFKSAMPEGYVQERTIFFKDDGNYKTRAEVKFEGDTLVNRIELKGIDFKEDGNILGHKLEYNYNSHNVYITADKQKNGIKANFKIRHNIEDGGVQLADHYQQNTPIGDGPVLLPDNHYLSYQSKLSKDPNEKRDHMVLLEFVTAAGITLGMDELYKMKLLLPLLTLVAVAKAMSAAQSAVRSHAEAVQVSRTIDWMALFVVFFVIVGSYHIHAMLTMGDWDFWSDWKDRRLWVTVTPIVLVTFPAAVQSYLWERYRLPWGATVCVLGLLLGEWINRYFNFWGWTYFPINFVFPASLVPGAIILDTVLMLSGSYLFTAIVGAMGWGLIFYPGNWPIIAPLHVPVENNGMLMSIADIQGYNYVRTGTPEYIRMVEKGTLRTFGKDVAPVSAFFSAFMSILIYFMWHFIGRWFSNERFLQST'
hemo_dna_seq = 'ATGGGTGCTTTTACTGAAAAACAAGAGGCTTTGGTTTCTTCTAGCTTTGAAGCTTTTAAAGCTAACATTCCACAATATTCTGTTGTTTTTTATACTTCTATTTTGGAAAAAGCTCCTGCTGCTAAAGATTTGTTTTCTTTTTTGTCTAATGGTGTTGATCCATCTAATCCAAAATTGACTGGTCATGCTGAAAAATTGTTTGGTTTGGTTAGAGATTCTGCTGGTCAATTGAAAGCTAATGGTACTGTTGTTGCTGATGCTGCTTTGGGTTCTATTCATGCTCAAAAAGCTATTACTGATCCACAATTTGTTGTTGTTAAAGAAGCTTTGTTGAAAACTATTAAAGAAGCTGTTGGTGATAAATGGTCTGATGAATTGTCTTCTGCTTGGGAAGTTGCTTATGATGAATTGGCTGCTGCTATTAAAAAAGCTTTTAAAAGCTTTTTTAATAGCAGCAGCCAATTCATCATAAGCAACTTCCCAAGCAGAAGACAATTCATCAGACCATTTATCACCAACAGCTTCTTTAATAGTTTTCAACAAAGCTTCTTTAACAACAACAAATTGTGGATCAGTAATAGCTTTTTGAGCATGAATAGAACCCAAAGCAGCATCAGCAACAACAGTACCATTAGCTTTCAATTGACCAGCAGAATCTCTAACCAAACCAAACAATTTTTCAGCATGACCAGTCAATTTTGGATTAGATGGATCAACACCATTAGACAAAAAAGAAAACAAATCTTTAGCAGCAGGAGCTTTTTCCAAAATAGAAGTATAAAAAACAACAGAATATTGTGGAATGTTAGCTTTAAAAGCTTCAAAGCTAGAAGAAACCAAAGCCTCTTGTTTTTCAGTAAAAGCACCCATATGCTTCCAAGATTCTGGTGGGAATACTGCTGATAGCCTAACGTTCATGATCAAAATTTAACTGTTCTAACCCCTACTTGACAGGCAATATATAAACAGAAGGAAGCTGCCCTGTCTTAAACCTTTTTTTTTATCATCATTATTAGCTTACTTTCATAATTGCGACTGGTTCCAATTGACAAGCTTTTGATTTTAACGACTTTTAACGACAACTTGAGAAGATCAAAAAACAACTAATTATTCGAAACGATGGCTATCCCCGAAGAGTTTGATATCCTAGTTCTAGGTGGTGGATCCAGTGGATCCTGTATTGCCGGAAGATTGGCAAACTTGGACCACTCCTTGAAAGTACTTTCAAGGAGTGGTCCAAGTTTGCCAATCTTCCGGCAATACAGGATCCACTGGATCCACCACCTAGAACTAGGATATCAAACTCTTCGGGGATAGCCATCGTTTCGAATAATTAGTTGTTTTTTGATCTTCTCAAGTTGTCGTTAAAAGTCGTTAAAATCAAAAGCTTGTCAATTGGAACCAGTCGCAATTATGAAAGTAAGCTAATAATGATGATAAAAAAAAAGGTTTAAGACAGGGCAGCTTCCTTCTGTTTATATATTGCCTGTCAAGTAGGGGTTAGAACAGTTAAATTTTGATCATGAACGTTAGGCTATCAGCAGTATTCCCACCAGAATCTTGGAAGCATACTGACAATAAAAAGATTCTTGTTTTCAAGAACTTGTCATTTGTATAGTTTTTTTATATTGTAGTTGTTCTATTTTAATCAAATGTTAGCGTGATTTATATTTTTTTTCGCCTCGACATCATCTGCCCAGATGCGAAGTTAAGTGCGCAGAAAGTAATATCATGCGTCAATCGTATGTGAATGCTGGTCGCTATACTGCAGTATAGCGACCAGCATTCACATACGATTGACGCATGATATTACTTTCTGCGCACTTAACTTCGCATCTGGGCAGATGATGTCGAGGCGAAAAAAAATATAAATCACGCTAACATTTGATTAAAATAGAACAACTACAATATAAAAAAACTATACAAATGACAAGTTCTTGAAAACAAGAATCTTTTTATTGTCAGT'
hemo_rna_seq = 'AAAAGCUUUUUUAAUAGCAGCAGCCAAUUCAUCAUAAGCAACUUCCCAAGCAGAAGACAAUUCAUCAGACCAUUUAUCACCAACAGCUUCUUUAAUAGUUUUCAACAAAGCUUCUUUAACAACAACAAAUUGUGGAUCAGUAAUAGCUUUUUGAGCAUGAAUAGAACCCAAAGCAGCAUCAGCAACAACAGUACCAUUAGCUUUCAAUUGACCAGCAGAAUCUCUAACCAAACCAAACAAUUUUUCAGCAUGACCAGUCAAUUUUGGAUUAGAUGGAUCAACACCAUUAGACAAAAAAGAAAACAAAUCUUUAGCAGCAGGAGCUUUUUCCAAAAUAGAAGUAUAAAAAACAACAGAAUAUUGUGGAAUGUUAGCUUUAAAAGCUUCAAAGCUAGAAGAAACCAAAGCCUCUUGUUUUUCAGUAAAAGCACCCAU'
hemo_aa_seq = 'MGAFTEKQEALVSSSFEAFKANIPQYSVVFYTSILEKAPAAKDLFSFLSNGVDPSNPKLTGHAEKLFGLVRDSAGQLKANGTVVADAALGSIHAQKAITDPQFVVVKEALLKTIKEAVGDKWSDELSSAWEVAYDELAAAIKKAF'
|
"""MEF Eline Exceptions."""
class MEFELineException(Exception):
"""MEF Eline Base Exception."""
class EVCException(MEFELineException):
"""EVC Exception."""
class ValidationException(EVCException):
"""Exception for validation errors."""
class FlowModException(MEFELineException):
"""Exception for FlowMod errors."""
class InvalidPath(MEFELineException):
"""Exception for invalid path."""
|
"""MEF Eline Exceptions."""
class Mefelineexception(Exception):
"""MEF Eline Base Exception."""
class Evcexception(MEFELineException):
"""EVC Exception."""
class Validationexception(EVCException):
"""Exception for validation errors."""
class Flowmodexception(MEFELineException):
"""Exception for FlowMod errors."""
class Invalidpath(MEFELineException):
"""Exception for invalid path."""
|
# Copyright (c) 2021 homuler
#
# Use of this source code is governed by an MIT-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/MIT.
"""Proto compiler
Macro for generating C# source files corresponding to .proto files
"""
def csharp_proto_src(name, proto_src, deps):
"""Generate C# source code for *.proto
Args:
name: target name
deps: label list of dependent targets
proto_src: target .proto file path
"""
base_name = proto_src.split("/")[-1]
csharp_out = _camelize(base_name.split(".")[0]) + ".cs"
outdir = "$(GENDIR)"
native.genrule(
name = name,
srcs = deps + [
"@com_google_protobuf//:well_known_protos",
],
outs = [csharp_out],
cmd = """
mkdir -p {outdir}
$(location @com_google_protobuf//:protoc) \
--proto_path=. \
--proto_path={outdir} \
--proto_path=$$(pwd)/external/com_google_protobuf/src \
--proto_path=$$(pwd)/external/com_google_mediapipe \
--csharp_out={outdir} {}
mv {outdir}/{outfile} $$(dirname $(location {outfile}))
""".format(proto_src, outdir = outdir, outfile = csharp_out),
tools = [
"@com_google_protobuf//:protoc",
],
)
def _camelize(str):
res = ""
need_capitalize = True
for s in str.elems():
if not s.isalnum():
need_capitalize = True
continue
if need_capitalize:
res += s.capitalize()
else:
res += s
need_capitalize = s.isdigit()
return res
def _replace_suffix(string, old, new):
"""Returns a string with an old suffix replaced by a new suffix."""
return string.endswith(old) and string[:-len(old)] + new or string
|
"""Proto compiler
Macro for generating C# source files corresponding to .proto files
"""
def csharp_proto_src(name, proto_src, deps):
"""Generate C# source code for *.proto
Args:
name: target name
deps: label list of dependent targets
proto_src: target .proto file path
"""
base_name = proto_src.split('/')[-1]
csharp_out = _camelize(base_name.split('.')[0]) + '.cs'
outdir = '$(GENDIR)'
native.genrule(name=name, srcs=deps + ['@com_google_protobuf//:well_known_protos'], outs=[csharp_out], cmd='\nmkdir -p {outdir}\n$(location @com_google_protobuf//:protoc) --proto_path=. --proto_path={outdir} --proto_path=$$(pwd)/external/com_google_protobuf/src --proto_path=$$(pwd)/external/com_google_mediapipe --csharp_out={outdir} {}\nmv {outdir}/{outfile} $$(dirname $(location {outfile}))\n'.format(proto_src, outdir=outdir, outfile=csharp_out), tools=['@com_google_protobuf//:protoc'])
def _camelize(str):
res = ''
need_capitalize = True
for s in str.elems():
if not s.isalnum():
need_capitalize = True
continue
if need_capitalize:
res += s.capitalize()
else:
res += s
need_capitalize = s.isdigit()
return res
def _replace_suffix(string, old, new):
"""Returns a string with an old suffix replaced by a new suffix."""
return string.endswith(old) and string[:-len(old)] + new or string
|
c = int(input('digite o primeiro numero: '))
b = int(input('digite o segundo numero: '))
a = int(input('digite o terceiro numero: '))
cores= {'vermelho': '\033[0;31m',
'azul' : '\033[1;34m',
'zero': '\033[m' }
# qual o maior
maior = a
if b > c and b > a:
maior = b
if c > b and c > a:
maior = c
print('O maior valor foi {}{}{}'.format(cores['azul'],maior,cores['zero']))
# qual o menor
menor = c
if a < b and a < c:
menor = a
if b < a and b < c:
menor = b
print('O menor valor foi {}{}{}'.format(cores['vermelho'],menor,cores['zero']))
|
c = int(input('digite o primeiro numero: '))
b = int(input('digite o segundo numero: '))
a = int(input('digite o terceiro numero: '))
cores = {'vermelho': '\x1b[0;31m', 'azul': '\x1b[1;34m', 'zero': '\x1b[m'}
maior = a
if b > c and b > a:
maior = b
if c > b and c > a:
maior = c
print('O maior valor foi {}{}{}'.format(cores['azul'], maior, cores['zero']))
menor = c
if a < b and a < c:
menor = a
if b < a and b < c:
menor = b
print('O menor valor foi {}{}{}'.format(cores['vermelho'], menor, cores['zero']))
|
"""
A website requires the users to input username and password to register. Write a program to check the validity of password input by users.
"""
"""Question 18
Level 3
Question:
A website requires the users to input username and password to register. Write a program to check the validity of password input by users.
Following are the criteria for checking the password:
1. At least 1 letter between [a-z]
2. At least 1 number between [0-9]
1. At least 1 letter between [A-Z]
3. At least 1 character from [$#@]
4. Minimum length of transaction password: 6
5. Maximum length of transaction password: 12
Your program should accept a sequence of comma separated passwords and will check them according to the above criteria. Passwords that match the criteria are to be printed, each separated by a comma.
Example
If the following passwords are given as input to the program:
ABd1234@1,a F1#,2w3E*,2We3345
Then, the output of the program should be:
ABd1234@1
Hints:
In case of input data being supplied to the question, it should be assumed to be a console input.
"""
|
"""
A website requires the users to input username and password to register. Write a program to check the validity of password input by users.
"""
'Question 18\nLevel 3\nQuestion:\nA website requires the users to input username and password to register. Write a program to check the validity of password input by users.\nFollowing are the criteria for checking the password:\n1. At least 1 letter between [a-z]\n2. At least 1 number between [0-9]\n1. At least 1 letter between [A-Z]\n3. At least 1 character from [$#@]\n4. Minimum length of transaction password: 6\n5. Maximum length of transaction password: 12\nYour program should accept a sequence of comma separated passwords and will check them according to the above criteria. Passwords that match the criteria are to be printed, each separated by a comma.\nExample\nIf the following passwords are given as input to the program:\nABd1234@1,a F1#,2w3E*,2We3345\nThen, the output of the program should be:\nABd1234@1\nHints:\nIn case of input data being supplied to the question, it should be assumed to be a console input.\n\n'
|
class ACCOUNTS():
def __init__(self):
self.CodeChef = {
"username": "username",
"password": "password"
}
self.Hackerrank = {
"username": "username",
"password": "password",
"tracks": ["python"]
# Available (add as per your requirements):
# Languages: "java", "python", "c", "cpp", "ruby", "shell", "sql", "fp",
# Domians: "algorithms", "data-structures", "mathematics", "ai", "databases", "regex"
# "tutorials"
}
def getAccounts(self):
return vars(self)
|
class Accounts:
def __init__(self):
self.CodeChef = {'username': 'username', 'password': 'password'}
self.Hackerrank = {'username': 'username', 'password': 'password', 'tracks': ['python']}
def get_accounts(self):
return vars(self)
|
# TODO: implement a page_parser that uses nlp and stats to get a good read of a file.
class page_parser(object):
"""
a multi purpose parser that can read these file types
"""
def __init__(self):
pass
|
class Page_Parser(object):
"""
a multi purpose parser that can read these file types
"""
def __init__(self):
pass
|
# Source and destination file names.
test_source = "data/math.txt"
test_destination = "math_output_html.html"
# Keyword parameters passed to publish_file.
reader_name = "standalone"
parser_name = "rst"
writer_name = "html"
# Extra setting
settings_overrides['math_output'] = 'HTML'
settings_overrides['stylesheet_path'] = (
'../docutils/writers/html4css1/html4css1.css, '
'../docutils/writers/html4css1/math.css ')
|
test_source = 'data/math.txt'
test_destination = 'math_output_html.html'
reader_name = 'standalone'
parser_name = 'rst'
writer_name = 'html'
settings_overrides['math_output'] = 'HTML'
settings_overrides['stylesheet_path'] = '../docutils/writers/html4css1/html4css1.css, ../docutils/writers/html4css1/math.css '
|
'''
Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array.
Note:
The number of elements initialized in nums1 and nums2 are m and n respectively.
You may assume that nums1 has enough space (size that is greater or equal to m + n) to hold additional elements from nums2.
Example:
Input:
nums1 = [1,2,3,0,0,0], m = 3
nums2 = [2,5,6], n = 3
Output: [1,2,2,3,5,6]
'''
class Solution(object):
def merge(self, nums1, m, nums2, n):
"""
:type nums1: List[int]
:type m: int
:type nums2: List[int]
:type n: int
:rtype: void Do not return anything, modify nums1 in-place instead.
"""
while m > 0 and n > 0:
if nums1[m-1] >= nums2[n-1]:
nums1[m+n-1] = nums1[m-1]
m -= 1
else:
nums1[m+n-1] = nums2[n-1]
n -= 1
if n > 0:
nums1[:n] = nums2[:n]
|
"""
Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array.
Note:
The number of elements initialized in nums1 and nums2 are m and n respectively.
You may assume that nums1 has enough space (size that is greater or equal to m + n) to hold additional elements from nums2.
Example:
Input:
nums1 = [1,2,3,0,0,0], m = 3
nums2 = [2,5,6], n = 3
Output: [1,2,2,3,5,6]
"""
class Solution(object):
def merge(self, nums1, m, nums2, n):
"""
:type nums1: List[int]
:type m: int
:type nums2: List[int]
:type n: int
:rtype: void Do not return anything, modify nums1 in-place instead.
"""
while m > 0 and n > 0:
if nums1[m - 1] >= nums2[n - 1]:
nums1[m + n - 1] = nums1[m - 1]
m -= 1
else:
nums1[m + n - 1] = nums2[n - 1]
n -= 1
if n > 0:
nums1[:n] = nums2[:n]
|
def test_valid(cldf_dataset, cldf_logger):
assert cldf_dataset.validate(log=cldf_logger)
def test_parameters(cldf_dataset):
assert len(list(cldf_dataset["ParameterTable"])) == 100
def test_languages(cldf_dataset):
assert len(list(cldf_dataset["LanguageTable"])) > 4000
|
def test_valid(cldf_dataset, cldf_logger):
assert cldf_dataset.validate(log=cldf_logger)
def test_parameters(cldf_dataset):
assert len(list(cldf_dataset['ParameterTable'])) == 100
def test_languages(cldf_dataset):
assert len(list(cldf_dataset['LanguageTable'])) > 4000
|
description = 'setup for the status monitor'
group = 'special'
_expcolumn = Column(
Block('Experiment', [
BlockRow(
# Field(name='Proposal', key='exp/proposal', width=7),
# Field(name='Title', key='exp/title', width=20,
# istext=True, maxlen=20),
Field(name='Current status', key='exp/action', width=40,
istext=True, maxlen=40),
Field(name='Data file', key='exp/lastpoint'),
),
],
),
)
_sampletable = Column(
Block('Sample table', [
BlockRow(
Field(dev='omgs'),
),
BlockRow(
Field(dev='tths'),
),
],
),
)
_instrument = Column(
Block('Instrument', [
BlockRow(
Field(dev='wav'),
),
BlockRow(
Field(dev='slits'),
),
BlockRow(
Field(dev='mon'),
Field(name='Resosteps', key='adet/resosteps'),
Field(name='Step', key='adet/value[0]'),
),
],
),
)
_frm = Column(
Block('FRM II', [
BlockRow(
Field(dev='ReactorPower'),
),
],
),
Block('SPODI', [
BlockRow(
Field(name='O2', dev='o2_nguide'),
Field(name='O2 part', dev='o2part_nguide'),
),
BlockRow(
Field(name='p1 N-Guide', dev='p1_nguide'),
Field(name='p2 N-Guide', dev='p2_nguide'),
Field(name='p3 N-Guide', dev='p3_nguide'),
),
],
),
)
# generic CCR-stuff
ccrs = []
ccrsupps = []
ccrplots = []
_ccrnrs = [6,] + list(range(10, 22 + 1))
for i in _ccrnrs:
ccrs.append(
Block('CCR%d-Pulse tube' % i, [
BlockRow(
Field(dev='t_ccr%d_c' % i, name='Coldhead'),
Field(dev='t_ccr%d_d' % i, name='Regulation'),
Field(dev='t_ccr%d_b' % i, name='Sample'),
),
BlockRow(
Field(key='t_ccr%d/setpoint' % i, name='Setpoint'),
Field(key='t_ccr%d/p' % i, name='P', width=7),
Field(key='t_ccr%d/i' % i, name='I', width=7),
Field(key='t_ccr%d/d' % i, name='D', width=6),
),
],
setups='ccr%d and not cci3he0*' % i,
),
)
ccrsupps.append(
Block('CCR%d' % i, [
BlockRow(
Field(dev='T_ccr%d_A' % i, name='A'),
Field(dev='T_ccr%d_B' % i, name='B'),
Field(dev='T_ccr%d_C' % i, name='C'),
Field(dev='T_ccr%d_D' % i, name='D'),
),
BlockRow(
Field(key='t_ccr%d/setpoint' % i, name='SetP.', width=6),
Field(key='t_ccr%d/p' % i, name='P', width=4),
Field(key='t_ccr%d/i' % i, name='I', width=4),
Field(key='t_ccr%d/d' % i, name='D', width=3),
),
BlockRow(
Field(dev='ccr%d_p1' % i, name='P1'),
Field(dev='ccr%d_p2' % i, name='P2'),
),
],
setups='ccr%d' % i,
),
)
_cryo = Column(*ccrs)
_cryosup = Column(*ccrsupps)
_htf = Column(
Block('HTF', [
BlockRow(
Field(dev='T'),
Field(name='Power', key='T/heaterpower'),
),
],
setups='htf*',
),
)
_magnet = Column(
Block('Magnet', [
BlockRow(
Field(dev='B'),
),
],
setups='ccm*',
),
)
_sc = Column(
Block('Sample Changer', [
BlockRow(
Field(dev='sams'),
),
],
setups='samplechanger',
),
)
_e = Column(
Block('E field', [
BlockRow(
Field(dev='E'),
),
],
setups='efield',
),
)
_tension = Column(
Block('Tension rack', [
BlockRow(
Field(dev='teload'),
Field(dev='tepos'),
Field(dev='teext'),
Field(dev='topos'),
Field(dev='tomom'),
),
],
setups='tensile',
),
)
_nps =[1,2,3,10,11,12]
_npblocks = []
for i in _nps:
_npblocks.append(
Block('Newport', [
BlockRow(
Field(dev='sth_rsc%02d' % i),
),
],
setups='rsc%02d' % i,
),
)
_rsc = Column(*_npblocks)
devices = dict(
Monitor = device('nicos.services.monitor.html.Monitor',
title = 'SPODI status monitor',
loglevel = 'info',
interval = 10,
filename = '/spodicontrol/webroot/index.html',
cache = 'spodictrl.spodi.frm2',
font = 'Luxi Sans',
valuefont = 'Consolas',
prefix = 'nicos/',
padding = 0,
fontsize = 24,
layout = [
Row(_expcolumn),
Row(_frm, _instrument, _sampletable),
Row(_htf,),
Row(_cryosup),
Row(_tension),
Row(_magnet, _e,),
Row(_sc, _rsc),
],
noexpired = True,
),
)
|
description = 'setup for the status monitor'
group = 'special'
_expcolumn = column(block('Experiment', [block_row(field(name='Current status', key='exp/action', width=40, istext=True, maxlen=40), field(name='Data file', key='exp/lastpoint'))]))
_sampletable = column(block('Sample table', [block_row(field(dev='omgs')), block_row(field(dev='tths'))]))
_instrument = column(block('Instrument', [block_row(field(dev='wav')), block_row(field(dev='slits')), block_row(field(dev='mon'), field(name='Resosteps', key='adet/resosteps'), field(name='Step', key='adet/value[0]'))]))
_frm = column(block('FRM II', [block_row(field(dev='ReactorPower'))]), block('SPODI', [block_row(field(name='O2', dev='o2_nguide'), field(name='O2 part', dev='o2part_nguide')), block_row(field(name='p1 N-Guide', dev='p1_nguide'), field(name='p2 N-Guide', dev='p2_nguide'), field(name='p3 N-Guide', dev='p3_nguide'))]))
ccrs = []
ccrsupps = []
ccrplots = []
_ccrnrs = [6] + list(range(10, 22 + 1))
for i in _ccrnrs:
ccrs.append(block('CCR%d-Pulse tube' % i, [block_row(field(dev='t_ccr%d_c' % i, name='Coldhead'), field(dev='t_ccr%d_d' % i, name='Regulation'), field(dev='t_ccr%d_b' % i, name='Sample')), block_row(field(key='t_ccr%d/setpoint' % i, name='Setpoint'), field(key='t_ccr%d/p' % i, name='P', width=7), field(key='t_ccr%d/i' % i, name='I', width=7), field(key='t_ccr%d/d' % i, name='D', width=6))], setups='ccr%d and not cci3he0*' % i))
ccrsupps.append(block('CCR%d' % i, [block_row(field(dev='T_ccr%d_A' % i, name='A'), field(dev='T_ccr%d_B' % i, name='B'), field(dev='T_ccr%d_C' % i, name='C'), field(dev='T_ccr%d_D' % i, name='D')), block_row(field(key='t_ccr%d/setpoint' % i, name='SetP.', width=6), field(key='t_ccr%d/p' % i, name='P', width=4), field(key='t_ccr%d/i' % i, name='I', width=4), field(key='t_ccr%d/d' % i, name='D', width=3)), block_row(field(dev='ccr%d_p1' % i, name='P1'), field(dev='ccr%d_p2' % i, name='P2'))], setups='ccr%d' % i))
_cryo = column(*ccrs)
_cryosup = column(*ccrsupps)
_htf = column(block('HTF', [block_row(field(dev='T'), field(name='Power', key='T/heaterpower'))], setups='htf*'))
_magnet = column(block('Magnet', [block_row(field(dev='B'))], setups='ccm*'))
_sc = column(block('Sample Changer', [block_row(field(dev='sams'))], setups='samplechanger'))
_e = column(block('E field', [block_row(field(dev='E'))], setups='efield'))
_tension = column(block('Tension rack', [block_row(field(dev='teload'), field(dev='tepos'), field(dev='teext'), field(dev='topos'), field(dev='tomom'))], setups='tensile'))
_nps = [1, 2, 3, 10, 11, 12]
_npblocks = []
for i in _nps:
_npblocks.append(block('Newport', [block_row(field(dev='sth_rsc%02d' % i))], setups='rsc%02d' % i))
_rsc = column(*_npblocks)
devices = dict(Monitor=device('nicos.services.monitor.html.Monitor', title='SPODI status monitor', loglevel='info', interval=10, filename='/spodicontrol/webroot/index.html', cache='spodictrl.spodi.frm2', font='Luxi Sans', valuefont='Consolas', prefix='nicos/', padding=0, fontsize=24, layout=[row(_expcolumn), row(_frm, _instrument, _sampletable), row(_htf), row(_cryosup), row(_tension), row(_magnet, _e), row(_sc, _rsc)], noexpired=True))
|
"""Bazel rules and macros for running tsec over a ng_module or ts_library."""
load("@npm//@bazel/typescript/internal:ts_config.bzl", "TsConfigInfo")
load("@build_bazel_rules_nodejs//:providers.bzl", "DeclarationInfo")
load("@npm//tsec:index.bzl", _tsec_test = "tsec_test")
TsecTsconfigInfo = provider(fields = ["src", "exemption", "deps"])
def _tsec_config_impl(ctx):
deps = []
# Gather all extended tsconfig files.
if ctx.files.deps:
deps.extend(ctx.files.deps)
for d in ctx.attr.deps:
# Gather all files from extended ts_config targets.
if TsConfigInfo in d:
deps.extend(d[TsConfigInfo].deps)
# Gather all files from extended tsec_config targets.
if TsecTsconfigInfo in d:
deps.append(d[TsecTsconfigInfo].src)
if d[TsecTsconfigInfo].exemption:
deps.append(d[TsecTsconfigInfo].exemption)
deps.extend(d[TsecTsconfigInfo].deps)
src = ctx.file.src
return [
# We need $(rootpath tsec_config_target) to get the path
# of the top-level config file as the argument for tsec
# binary. Only `src` should be stored in the DefaultInfo
# provider.
DefaultInfo(files = depset([src])),
TsecTsconfigInfo(
src = src,
exemption = ctx.file.exemption,
deps = deps,
),
]
tsec_config = rule(
implementation = _tsec_config_impl,
attrs = {
"src": attr.label(
mandatory = True,
allow_single_file = [".json"],
doc = """The single tsconfig used for running tsec.""",
),
"deps": attr.label_list(
allow_files = [".json"],
doc = """Any configs extended by `src`.""",
),
"exemption": attr.label(
allow_single_file = [".json"],
doc = """The exemption list used by `src`.""",
),
},
doc = """Compute all transitive dependencies of a tsec_test config. """,
)
TsLibInfo = provider(fields = ["srcs", "deps"])
def _capture_tsec_deps_aspect_impl(target, ctx):
"""Forward `srcs` and `deps` of `ts_library` and `ng_module` macros to `_tsec_test`."""
return [TsLibInfo(srcs = ctx.rule.attr.srcs, deps = ctx.rule.attr.deps)]
_capture_tsec_deps_aspect = aspect(
implementation = _capture_tsec_deps_aspect_impl,
)
def _all_transitive_deps_impl(ctx):
files = []
if TsecTsconfigInfo not in ctx.attr.tsconfig:
fail("`tsconfig` must be a tsec_config target")
tsec_tsconfig_info = ctx.attr.tsconfig[TsecTsconfigInfo]
files.append(tsec_tsconfig_info.src)
if tsec_tsconfig_info.exemption:
files.append(tsec_tsconfig_info.exemption)
files.extend(tsec_tsconfig_info.deps)
if TsLibInfo not in ctx.attr.ts_target:
fail("`target` must be a ts_library or ng_module target")
ts_target_info = ctx.attr.ts_target[TsLibInfo]
for s in ts_target_info.srcs:
if hasattr(s, "files"):
files.extend(s.files.to_list())
for d in ts_target_info.deps:
if DeclarationInfo in d:
files.extend(d[DeclarationInfo].transitive_declarations.to_list())
if hasattr(d, "files"):
files.extend(d.files.to_list())
return [DefaultInfo(files = depset(files))]
_all_transitive_deps = rule(
implementation = _all_transitive_deps_impl,
attrs = {
"tsconfig": attr.label(),
"ts_target": attr.label(aspects = [_capture_tsec_deps_aspect]),
},
doc = """Expand all transitive dependencies needed to run `_tsec_test`.""",
)
def tsec_test(name, target, tsconfig):
"""Run tsec over a ts_library or ng_module target to check its compatibility with Trusted Types.
This rule DOES NOT check transitive dependencies.
Args:
name: name of the tsec test
target: the ts_library or ng_module target to be checked
tsconfig: the tsec_config target used for configuring tsec
"""
all_transitive_deps_name = "%s_all_transitive_deps" % name
_all_transitive_deps(
name = all_transitive_deps_name,
testonly = True,
tsconfig = tsconfig,
ts_target = target,
tags = ["tsec"],
)
_tsec_test(
name = name,
data = [tsconfig, all_transitive_deps_name],
tags = ["tsec"],
templated_args = ["-p", "$(rootpath %s)" % tsconfig],
)
|
"""Bazel rules and macros for running tsec over a ng_module or ts_library."""
load('@npm//@bazel/typescript/internal:ts_config.bzl', 'TsConfigInfo')
load('@build_bazel_rules_nodejs//:providers.bzl', 'DeclarationInfo')
load('@npm//tsec:index.bzl', _tsec_test='tsec_test')
tsec_tsconfig_info = provider(fields=['src', 'exemption', 'deps'])
def _tsec_config_impl(ctx):
deps = []
if ctx.files.deps:
deps.extend(ctx.files.deps)
for d in ctx.attr.deps:
if TsConfigInfo in d:
deps.extend(d[TsConfigInfo].deps)
if TsecTsconfigInfo in d:
deps.append(d[TsecTsconfigInfo].src)
if d[TsecTsconfigInfo].exemption:
deps.append(d[TsecTsconfigInfo].exemption)
deps.extend(d[TsecTsconfigInfo].deps)
src = ctx.file.src
return [default_info(files=depset([src])), tsec_tsconfig_info(src=src, exemption=ctx.file.exemption, deps=deps)]
tsec_config = rule(implementation=_tsec_config_impl, attrs={'src': attr.label(mandatory=True, allow_single_file=['.json'], doc='The single tsconfig used for running tsec.'), 'deps': attr.label_list(allow_files=['.json'], doc='Any configs extended by `src`.'), 'exemption': attr.label(allow_single_file=['.json'], doc='The exemption list used by `src`.')}, doc='Compute all transitive dependencies of a tsec_test config. ')
ts_lib_info = provider(fields=['srcs', 'deps'])
def _capture_tsec_deps_aspect_impl(target, ctx):
"""Forward `srcs` and `deps` of `ts_library` and `ng_module` macros to `_tsec_test`."""
return [ts_lib_info(srcs=ctx.rule.attr.srcs, deps=ctx.rule.attr.deps)]
_capture_tsec_deps_aspect = aspect(implementation=_capture_tsec_deps_aspect_impl)
def _all_transitive_deps_impl(ctx):
files = []
if TsecTsconfigInfo not in ctx.attr.tsconfig:
fail('`tsconfig` must be a tsec_config target')
tsec_tsconfig_info = ctx.attr.tsconfig[TsecTsconfigInfo]
files.append(tsec_tsconfig_info.src)
if tsec_tsconfig_info.exemption:
files.append(tsec_tsconfig_info.exemption)
files.extend(tsec_tsconfig_info.deps)
if TsLibInfo not in ctx.attr.ts_target:
fail('`target` must be a ts_library or ng_module target')
ts_target_info = ctx.attr.ts_target[TsLibInfo]
for s in ts_target_info.srcs:
if hasattr(s, 'files'):
files.extend(s.files.to_list())
for d in ts_target_info.deps:
if DeclarationInfo in d:
files.extend(d[DeclarationInfo].transitive_declarations.to_list())
if hasattr(d, 'files'):
files.extend(d.files.to_list())
return [default_info(files=depset(files))]
_all_transitive_deps = rule(implementation=_all_transitive_deps_impl, attrs={'tsconfig': attr.label(), 'ts_target': attr.label(aspects=[_capture_tsec_deps_aspect])}, doc='Expand all transitive dependencies needed to run `_tsec_test`.')
def tsec_test(name, target, tsconfig):
"""Run tsec over a ts_library or ng_module target to check its compatibility with Trusted Types.
This rule DOES NOT check transitive dependencies.
Args:
name: name of the tsec test
target: the ts_library or ng_module target to be checked
tsconfig: the tsec_config target used for configuring tsec
"""
all_transitive_deps_name = '%s_all_transitive_deps' % name
_all_transitive_deps(name=all_transitive_deps_name, testonly=True, tsconfig=tsconfig, ts_target=target, tags=['tsec'])
_tsec_test(name=name, data=[tsconfig, all_transitive_deps_name], tags=['tsec'], templated_args=['-p', '$(rootpath %s)' % tsconfig])
|
def shellSort(alist):
gap = len(alist) // 2
while gap > 0:
for i in range(gap, len(alist)):
val = alist[i]
j = i
while j >= gap and alist[j - gap] > val:
alist[j] = alist[j - gap]
j -= gap
alist[j] = val
gap //= 2
|
def shell_sort(alist):
gap = len(alist) // 2
while gap > 0:
for i in range(gap, len(alist)):
val = alist[i]
j = i
while j >= gap and alist[j - gap] > val:
alist[j] = alist[j - gap]
j -= gap
alist[j] = val
gap //= 2
|
#############################################################################
#
#
# Module of BFA that manages server statistics in realtime
#
#
#############################################################################
""" This module implements the real-time logging of in-game statistics specifically for one current bf checkpoint.
Dependencies:
None
note:: Author(s): Mitch last-check: 08.07.2021 """
# noinspection PyUnusedLocal
def __preload__(forClient: bool = True):
pass
# noinspection PyUnusedLocal
def __postload__(forClient: bool = True):
pass
class RealTimeCP:
""" A control point that exists on a map can have a corresponding real time control point to track it.
:param Id: Refractor id of this control point.
:param team: Team the control point is currently controlled by.
note:: Author(s): Mitch, henk """
def __init__(self, Id: int = None, team: int = None):
self.Id = Id
self.team = team
|
""" This module implements the real-time logging of in-game statistics specifically for one current bf checkpoint.
Dependencies:
None
note:: Author(s): Mitch last-check: 08.07.2021 """
def __preload__(forClient: bool=True):
pass
def __postload__(forClient: bool=True):
pass
class Realtimecp:
""" A control point that exists on a map can have a corresponding real time control point to track it.
:param Id: Refractor id of this control point.
:param team: Team the control point is currently controlled by.
note:: Author(s): Mitch, henk """
def __init__(self, Id: int=None, team: int=None):
self.Id = Id
self.team = team
|
#!/usr/bin/env python3
def foo():
a = 10
# infer that b is an int
b = a
assert b == 10
print(b)
if __name__ == "__main__":
foo()
|
def foo():
a = 10
b = a
assert b == 10
print(b)
if __name__ == '__main__':
foo()
|
x="There are %d types of people."%10
binary="binary"
do_not="don't"
y="Those who know %s and those who %s."%(binary,do_not)
print(x)
print(y)
print("I said: '%s'."%y)
hilarious=False
joke_evaluation="Isn't that joke so funny?! %r"
print (joke_evaluation % hilarious)
w="This is the left side of ..."
e="a string with a right side"
print (w+e)
|
x = 'There are %d types of people.' % 10
binary = 'binary'
do_not = "don't"
y = 'Those who know %s and those who %s.' % (binary, do_not)
print(x)
print(y)
print("I said: '%s'." % y)
hilarious = False
joke_evaluation = "Isn't that joke so funny?! %r"
print(joke_evaluation % hilarious)
w = 'This is the left side of ...'
e = 'a string with a right side'
print(w + e)
|
# -*- coding: utf-8 -*-
# -----------------------------------------------------------------------------
# Copyright (c) Spyder Project Contributors
#
# Licensed under the terms of the MIT License
# (see LICENSE.txt for details)
# -----------------------------------------------------------------------------
ANSI_COLORS = {
'emacs': {
'black': '#000000',
'red': '#800000',
'green': '#005100',
'yellow': '#abab67',
'blue': '#151d51',
'magenta': '#510051',
'cyan': '#105151',
'white': '#ffffff',
'brightBlack': '#555555',
'brightRed': '#c80000',
'brightGreen': '#00aa00',
'brightYellow': '#cbcb7b',
'brightBlue': '#3c51e8',
'brightMagenta': '#900090',
'brightCyan': '#20a7a7',
'brightWhite': '#ffffff'
},
'idle': {
'black': '#ffffff',
'red': '#8a0000',
'green': '#008a00',
'yellow': '#8a4000',
'blue': '#00008a',
'magenta': '#5a005a',
'cyan': '#105151',
'white': '#ffffff',
'brightBlack': '#555555',
'brightRed': '#dd0000',
'brightGreen': '#00aa00',
'brightYellow': '#ff7700',
'brightBlue': '#0000ff',
'brightMagenta': '#900090',
'brightCyan': '#20a7a7',
'brightWhite': '#ffffff'
},
'monokai': {
'black': '#48483e',
'red': '#dc2566',
'green': '#8fc029',
'yellow': '#d4c96e',
'blue': '#55bcce',
'magenta': '#9358fe',
'cyan': '#56b7a5',
'white': '#f8f8f2',
'brightBlack': '#76715e',
'brightRed': '#fa2772',
'brightGreen': '#a7e22e',
'brightYellow': '#e7db75',
'brightBlue': '#66d9ee',
'brightMagenta': '#ae82ff',
'brightCyan': '#66efd5',
'brightWhite': '#f9f8f5'
},
'pydev': {
'black': '#ffffff',
'red': '#800000',
'green': '#00aa00',
'yellow': '#ffff99',
'blue': '#0000ff',
'magenta': '#900090',
'cyan': '#007f7f',
'white': '#efefef',
'brightBlack': '#c0c0c0',
'brightRed': '#c10000',
'brightGreen': '#00cc00',
'brightYellow': '#fff569',
'brightBlue': '#015aff',
'brightMagenta': '#bf00bf',
'brightCyan': '#00a5a5',
'brightWhite': '#ffffff'
},
'scintilla': {
'black': '#ffffff',
'red': '#800000',
'green': '#007f00',
'yellow': '#ffff99',
'blue': '#00007f',
'magenta': '#7f007f',
'cyan': '#007f7f',
'white': '#efefef',
'brightBlack': '#adadad',
'brightRed': '#c10000',
'brightGreen': '#00ab00',
'brightYellow': '#fff569',
'brightBlue': '#0000ff',
'brightMagenta': '#be00be',
'brightCyan': '#00a5a5',
'brightWhite': '#ffffff'
},
'spyder': {
'black': '#ffffff',
'red': '#800000',
'green': '#00aa00',
'yellow': '#ffff99',
'blue': '#0000ff',
'magenta': '#900090',
'cyan': '#27b5ac',
'white': '#efefef',
'brightBlack': '#adadad',
'brightRed': '#c10000',
'brightGreen': '#00c800',
'brightYellow': '#fff569',
'brightBlue': '#0a37ff',
'brightMagenta': '#d500d5',
'brightCyan': '#2dd0c5',
'brightWhite': '#ffffff'
},
'spyder/dark': {
'black': '#19232D',
'red': '#c80000',
'green': '#11a642',
'yellow': '#c5bb29',
'blue': '#558eff',
'magenta': '#aa00aa',
'cyan': '#20b3a7',
'white': '#ffffff',
'brightBlack': '#4b4b4b',
'brightRed': '#ef0000',
'brightGreen': '#13c24b',
'brightYellow': '#e6e13f',
'brightBlue': '#4395ff',
'brightMagenta': '#da00da',
'brightCyan': '#23cbbd',
'brightWhite': '#ffffff'
},
'zenburn': {
'black': '#3F3F3F',
'red': '#705050',
'green': '#60B48A',
'yellow': '#DFAF8F',
'blue': '#506070',
'magenta': '#DC8CC3',
'cyan': '#8CD0D3',
'white': '#DCDCCC',
'brightBlack': '#709080',
'brightRed': '#DCA3A3',
'brightGreen': '#C3BF9F',
'brightYellow': '#F0DFAF',
'brightBlue': '#94BFF3',
'brightMagenta': '#EC93D3',
'brightCyan': '#93E0E3',
'brightWhite': '#DCDCCC'
},
'solarized/light': {
'black': '#fdf6e3',
'red': '#dc322f',
'green': '#859900',
'yellow': '#b58900',
'blue': '#268bd2',
'magenta': '#6c71c4',
'cyan': '#2aa198',
'white': '#93a1a1',
'brightBlack': '#657b83',
'brightRed': '#dc322f',
'brightGreen': '#859900',
'brightYellow': '#b58900',
'brightBlue': '#268bd2',
'brightMagenta': '#6c71c4',
'brightCyan': '#2aa198',
'brightWhite': '#fdf6e3'
},
'solarized/dark': {
'black': '#002b36',
'red': '#dc322f',
'green': '#859900',
'yellow': '#b58900',
'blue': '#268bd2',
'magenta': '#6c71c4',
'cyan': '#2aa198',
'white': '#93a1a1',
'brightBlack': '#657b83',
'brightRed': '#dc322f',
'brightGreen': '#859900',
'brightYellow': '#b58900',
'brightBlue': '#268bd2',
'brightMagenta': '#6c71c4',
'brightCyan': '#2aa198',
'brightWhite': '#fdf6e3'
},
'inkpot': {
'black': '#1f1f27',
'red': '#CD5200',
'green': '#9DCD00',
'yellow': '#cd8b00',
'blue': '#87cefa',
'magenta': '#8b8bff',
'cyan': '#87FAE5',
'white': '#93a1a1',
'brightBlack': '#313131',
'brightRed': '#CD2300',
'brightGreen': '#C0CD00',
'brightYellow': '#ffcd8b',
'brightBlue': '#B9E1FA',
'brightMagenta': '#A3A3FF',
'brightCyan': '#B8FAEE',
'brightWhite': '#cfbfad'
},
'minimal': {
'black': '#ffffff',
'red': '#D22D72',
'green': '#568C3B',
'yellow': '#8A8A0F',
'blue': '#257FAD',
'magenta': '#5D5DB1',
'cyan': '#2D8F6F',
'white': '#7EA2B4',
'brightBlack': '#5A7B8C',
'brightRed': '#D22D72',
'brightGreen': '#568C3B',
'brightYellow': '#8A8A0F',
'brightBlue': '#257FAD',
'brightMagenta': '#5D5DB1',
'brightCyan': '#2D8F6F',
'brightWhite': '#EBF8FF'
},
'nightlion': {
'black': '#4c4c4c',
'red': '#bb0000',
'green': '#5fde8f',
'yellow': '#f3f167',
'blue': '#276bd8',
'magenta': '#bb00bb',
'cyan': '#00dadf',
'white': '#bbbbbb',
'brightBlack': '#555555',
'brightRed': '#ff5555',
'brightGreen': '#55ff55',
'brightYellow': '#ffff55',
'brightBlue': '#5555ff',
'brightMagenta': '#ff55ff',
'brightCyan': '#55ffff',
'brightWhite': '#ffffff'
},
'notepad++': {
'black': '#ffffff',
'red': '#CC342B',
'green': '#198844',
'yellow': '#FBA922',
'blue': '#3971ED',
'magenta': '#A36AC7',
'cyan': '#3971ED',
'white': '#C5C8C6',
'brightBlack': '#969896',
'brightRed': '#CC342B',
'brightGreen': '#198844',
'brightYellow': '#FBA922',
'brightBlue': '#3971ED',
'brightMagenta': '#A36AC7',
'brightCyan': '#3971ED',
'brightWhite': '#FFFFFF'
},
'oblivion': {
'black': '#1D1F21',
'red': '#CC6666',
'green': '#B5BD68',
'yellow': '#F0C674',
'blue': '#81A2BE',
'magenta': '#B294BB',
'cyan': '#8ABEB7',
'white': '#C5C8C6',
'brightBlack': '#969896',
'brightRed': '#CC6666',
'brightGreen': '#B5BD68',
'brightYellow': '#F0C674',
'brightBlue': '#81A2BE',
'brightMagenta': '#B294BB',
'brightCyan': '#8ABEB7',
'brightWhite': '#FFFFFF'
},
'obsidian': {
'black': '#232C31',
'red': '#2A5491',
'green': '#237986',
'yellow': '#A03B1E',
'blue': '#484D79',
'magenta': '#C59820',
'cyan': '#B02F30',
'white': '#9EA7A6',
'brightBlack': '#3F4944',
'brightRed': '#2A5491',
'brightGreen': '#237986',
'brightYellow': '#A03B1E',
'brightBlue': '#484D79',
'brightMagenta': '#C59820',
'brightCyan': '#B02F30',
'brightWhite': '#B5D8F6'
},
'pastel': {
'black': '#000000',
'red': '#c37372',
'green': '#72c373',
'yellow': '#c2c372',
'blue': '#7372c3',
'magenta': '#c372c2',
'cyan': '#72c2c3',
'white': '#d9d9d9',
'brightBlack': '#323232',
'brightRed': '#dbaaaa',
'brightGreen': '#aadbaa',
'brightYellow': '#dadbaa',
'brightBlue': '#aaaadb',
'brightMagenta': '#dbaada',
'brightCyan': '#aadadb',
'brightWhite': '#ffffff'
},
'retta': {
'black': '#000000',
'red': '#A54242',
'green': '#8C9440',
'yellow': '#de935f',
'blue': '#5F819D',
'magenta': '#85678F',
'cyan': '#5E8D87',
'white': '#969896',
'brightBlack': '#373b41',
'brightRed': '#cc6666',
'brightGreen': '#b5bd68',
'brightYellow': '#f0c674',
'brightBlue': '#81a2be',
'brightMagenta': '#b294bb',
'brightCyan': '#8abeb7',
'brightWhite': '#c5c8c6'
},
'roboticket': {
'black': '#f5f5f5',
'red': '#E64569',
'green': '#89D287',
'yellow': '#DAB752',
'blue': '#439ECF',
'magenta': '#D961DC',
'cyan': '#64AAAF',
'white': '#B3B3B3',
'brightBlack': '#535353',
'brightRed': '#E4859A',
'brightGreen': '#A2CCA1',
'brightYellow': '#E1E387',
'brightBlue': '#6FBBE2',
'brightMagenta': '#E586E7',
'brightCyan': '#96DCDA',
'brightWhite': '#DEDEDE'
},
'sublime-monokai/extended': {
'black': '#222222',
'red': '#dc2566',
'green': '#8fc029',
'yellow': '#d4c96e',
'blue': '#55bcce',
'magenta': '#9358fe',
'cyan': '#56b7a5',
'white': '#f8f8f2',
'brightBlack': '#76715e',
'brightRed': '#fa2772',
'brightGreen': '#a7e22e',
'brightYellow': '#e7db75',
'brightBlue': '#66d9ee',
'brightMagenta': '#ae82ff',
'brightCyan': '#66efd5',
'brightWhite': '#f9f8f5'
},
'vibrant-ink': {
'black': '#191919',
'red': '#d00e18',
'green': '#138034',
'yellow': '#ffcb3e',
'blue': '#006bb3',
'magenta': '#6b2775',
'cyan': '#384564',
'white': '#ededed',
'brightBlack': '#5d504a',
'brightRed': '#f07e18',
'brightGreen': '#b1d130',
'brightYellow': '#fff120',
'brightBlue': '#4fc2fd',
'brightMagenta': '#de0071',
'brightCyan': '#5d504a',
'brightWhite': '#ffffff'
}
}
|
ansi_colors = {'emacs': {'black': '#000000', 'red': '#800000', 'green': '#005100', 'yellow': '#abab67', 'blue': '#151d51', 'magenta': '#510051', 'cyan': '#105151', 'white': '#ffffff', 'brightBlack': '#555555', 'brightRed': '#c80000', 'brightGreen': '#00aa00', 'brightYellow': '#cbcb7b', 'brightBlue': '#3c51e8', 'brightMagenta': '#900090', 'brightCyan': '#20a7a7', 'brightWhite': '#ffffff'}, 'idle': {'black': '#ffffff', 'red': '#8a0000', 'green': '#008a00', 'yellow': '#8a4000', 'blue': '#00008a', 'magenta': '#5a005a', 'cyan': '#105151', 'white': '#ffffff', 'brightBlack': '#555555', 'brightRed': '#dd0000', 'brightGreen': '#00aa00', 'brightYellow': '#ff7700', 'brightBlue': '#0000ff', 'brightMagenta': '#900090', 'brightCyan': '#20a7a7', 'brightWhite': '#ffffff'}, 'monokai': {'black': '#48483e', 'red': '#dc2566', 'green': '#8fc029', 'yellow': '#d4c96e', 'blue': '#55bcce', 'magenta': '#9358fe', 'cyan': '#56b7a5', 'white': '#f8f8f2', 'brightBlack': '#76715e', 'brightRed': '#fa2772', 'brightGreen': '#a7e22e', 'brightYellow': '#e7db75', 'brightBlue': '#66d9ee', 'brightMagenta': '#ae82ff', 'brightCyan': '#66efd5', 'brightWhite': '#f9f8f5'}, 'pydev': {'black': '#ffffff', 'red': '#800000', 'green': '#00aa00', 'yellow': '#ffff99', 'blue': '#0000ff', 'magenta': '#900090', 'cyan': '#007f7f', 'white': '#efefef', 'brightBlack': '#c0c0c0', 'brightRed': '#c10000', 'brightGreen': '#00cc00', 'brightYellow': '#fff569', 'brightBlue': '#015aff', 'brightMagenta': '#bf00bf', 'brightCyan': '#00a5a5', 'brightWhite': '#ffffff'}, 'scintilla': {'black': '#ffffff', 'red': '#800000', 'green': '#007f00', 'yellow': '#ffff99', 'blue': '#00007f', 'magenta': '#7f007f', 'cyan': '#007f7f', 'white': '#efefef', 'brightBlack': '#adadad', 'brightRed': '#c10000', 'brightGreen': '#00ab00', 'brightYellow': '#fff569', 'brightBlue': '#0000ff', 'brightMagenta': '#be00be', 'brightCyan': '#00a5a5', 'brightWhite': '#ffffff'}, 'spyder': {'black': '#ffffff', 'red': '#800000', 'green': '#00aa00', 'yellow': '#ffff99', 'blue': '#0000ff', 'magenta': '#900090', 'cyan': '#27b5ac', 'white': '#efefef', 'brightBlack': '#adadad', 'brightRed': '#c10000', 'brightGreen': '#00c800', 'brightYellow': '#fff569', 'brightBlue': '#0a37ff', 'brightMagenta': '#d500d5', 'brightCyan': '#2dd0c5', 'brightWhite': '#ffffff'}, 'spyder/dark': {'black': '#19232D', 'red': '#c80000', 'green': '#11a642', 'yellow': '#c5bb29', 'blue': '#558eff', 'magenta': '#aa00aa', 'cyan': '#20b3a7', 'white': '#ffffff', 'brightBlack': '#4b4b4b', 'brightRed': '#ef0000', 'brightGreen': '#13c24b', 'brightYellow': '#e6e13f', 'brightBlue': '#4395ff', 'brightMagenta': '#da00da', 'brightCyan': '#23cbbd', 'brightWhite': '#ffffff'}, 'zenburn': {'black': '#3F3F3F', 'red': '#705050', 'green': '#60B48A', 'yellow': '#DFAF8F', 'blue': '#506070', 'magenta': '#DC8CC3', 'cyan': '#8CD0D3', 'white': '#DCDCCC', 'brightBlack': '#709080', 'brightRed': '#DCA3A3', 'brightGreen': '#C3BF9F', 'brightYellow': '#F0DFAF', 'brightBlue': '#94BFF3', 'brightMagenta': '#EC93D3', 'brightCyan': '#93E0E3', 'brightWhite': '#DCDCCC'}, 'solarized/light': {'black': '#fdf6e3', 'red': '#dc322f', 'green': '#859900', 'yellow': '#b58900', 'blue': '#268bd2', 'magenta': '#6c71c4', 'cyan': '#2aa198', 'white': '#93a1a1', 'brightBlack': '#657b83', 'brightRed': '#dc322f', 'brightGreen': '#859900', 'brightYellow': '#b58900', 'brightBlue': '#268bd2', 'brightMagenta': '#6c71c4', 'brightCyan': '#2aa198', 'brightWhite': '#fdf6e3'}, 'solarized/dark': {'black': '#002b36', 'red': '#dc322f', 'green': '#859900', 'yellow': '#b58900', 'blue': '#268bd2', 'magenta': '#6c71c4', 'cyan': '#2aa198', 'white': '#93a1a1', 'brightBlack': '#657b83', 'brightRed': '#dc322f', 'brightGreen': '#859900', 'brightYellow': '#b58900', 'brightBlue': '#268bd2', 'brightMagenta': '#6c71c4', 'brightCyan': '#2aa198', 'brightWhite': '#fdf6e3'}, 'inkpot': {'black': '#1f1f27', 'red': '#CD5200', 'green': '#9DCD00', 'yellow': '#cd8b00', 'blue': '#87cefa', 'magenta': '#8b8bff', 'cyan': '#87FAE5', 'white': '#93a1a1', 'brightBlack': '#313131', 'brightRed': '#CD2300', 'brightGreen': '#C0CD00', 'brightYellow': '#ffcd8b', 'brightBlue': '#B9E1FA', 'brightMagenta': '#A3A3FF', 'brightCyan': '#B8FAEE', 'brightWhite': '#cfbfad'}, 'minimal': {'black': '#ffffff', 'red': '#D22D72', 'green': '#568C3B', 'yellow': '#8A8A0F', 'blue': '#257FAD', 'magenta': '#5D5DB1', 'cyan': '#2D8F6F', 'white': '#7EA2B4', 'brightBlack': '#5A7B8C', 'brightRed': '#D22D72', 'brightGreen': '#568C3B', 'brightYellow': '#8A8A0F', 'brightBlue': '#257FAD', 'brightMagenta': '#5D5DB1', 'brightCyan': '#2D8F6F', 'brightWhite': '#EBF8FF'}, 'nightlion': {'black': '#4c4c4c', 'red': '#bb0000', 'green': '#5fde8f', 'yellow': '#f3f167', 'blue': '#276bd8', 'magenta': '#bb00bb', 'cyan': '#00dadf', 'white': '#bbbbbb', 'brightBlack': '#555555', 'brightRed': '#ff5555', 'brightGreen': '#55ff55', 'brightYellow': '#ffff55', 'brightBlue': '#5555ff', 'brightMagenta': '#ff55ff', 'brightCyan': '#55ffff', 'brightWhite': '#ffffff'}, 'notepad++': {'black': '#ffffff', 'red': '#CC342B', 'green': '#198844', 'yellow': '#FBA922', 'blue': '#3971ED', 'magenta': '#A36AC7', 'cyan': '#3971ED', 'white': '#C5C8C6', 'brightBlack': '#969896', 'brightRed': '#CC342B', 'brightGreen': '#198844', 'brightYellow': '#FBA922', 'brightBlue': '#3971ED', 'brightMagenta': '#A36AC7', 'brightCyan': '#3971ED', 'brightWhite': '#FFFFFF'}, 'oblivion': {'black': '#1D1F21', 'red': '#CC6666', 'green': '#B5BD68', 'yellow': '#F0C674', 'blue': '#81A2BE', 'magenta': '#B294BB', 'cyan': '#8ABEB7', 'white': '#C5C8C6', 'brightBlack': '#969896', 'brightRed': '#CC6666', 'brightGreen': '#B5BD68', 'brightYellow': '#F0C674', 'brightBlue': '#81A2BE', 'brightMagenta': '#B294BB', 'brightCyan': '#8ABEB7', 'brightWhite': '#FFFFFF'}, 'obsidian': {'black': '#232C31', 'red': '#2A5491', 'green': '#237986', 'yellow': '#A03B1E', 'blue': '#484D79', 'magenta': '#C59820', 'cyan': '#B02F30', 'white': '#9EA7A6', 'brightBlack': '#3F4944', 'brightRed': '#2A5491', 'brightGreen': '#237986', 'brightYellow': '#A03B1E', 'brightBlue': '#484D79', 'brightMagenta': '#C59820', 'brightCyan': '#B02F30', 'brightWhite': '#B5D8F6'}, 'pastel': {'black': '#000000', 'red': '#c37372', 'green': '#72c373', 'yellow': '#c2c372', 'blue': '#7372c3', 'magenta': '#c372c2', 'cyan': '#72c2c3', 'white': '#d9d9d9', 'brightBlack': '#323232', 'brightRed': '#dbaaaa', 'brightGreen': '#aadbaa', 'brightYellow': '#dadbaa', 'brightBlue': '#aaaadb', 'brightMagenta': '#dbaada', 'brightCyan': '#aadadb', 'brightWhite': '#ffffff'}, 'retta': {'black': '#000000', 'red': '#A54242', 'green': '#8C9440', 'yellow': '#de935f', 'blue': '#5F819D', 'magenta': '#85678F', 'cyan': '#5E8D87', 'white': '#969896', 'brightBlack': '#373b41', 'brightRed': '#cc6666', 'brightGreen': '#b5bd68', 'brightYellow': '#f0c674', 'brightBlue': '#81a2be', 'brightMagenta': '#b294bb', 'brightCyan': '#8abeb7', 'brightWhite': '#c5c8c6'}, 'roboticket': {'black': '#f5f5f5', 'red': '#E64569', 'green': '#89D287', 'yellow': '#DAB752', 'blue': '#439ECF', 'magenta': '#D961DC', 'cyan': '#64AAAF', 'white': '#B3B3B3', 'brightBlack': '#535353', 'brightRed': '#E4859A', 'brightGreen': '#A2CCA1', 'brightYellow': '#E1E387', 'brightBlue': '#6FBBE2', 'brightMagenta': '#E586E7', 'brightCyan': '#96DCDA', 'brightWhite': '#DEDEDE'}, 'sublime-monokai/extended': {'black': '#222222', 'red': '#dc2566', 'green': '#8fc029', 'yellow': '#d4c96e', 'blue': '#55bcce', 'magenta': '#9358fe', 'cyan': '#56b7a5', 'white': '#f8f8f2', 'brightBlack': '#76715e', 'brightRed': '#fa2772', 'brightGreen': '#a7e22e', 'brightYellow': '#e7db75', 'brightBlue': '#66d9ee', 'brightMagenta': '#ae82ff', 'brightCyan': '#66efd5', 'brightWhite': '#f9f8f5'}, 'vibrant-ink': {'black': '#191919', 'red': '#d00e18', 'green': '#138034', 'yellow': '#ffcb3e', 'blue': '#006bb3', 'magenta': '#6b2775', 'cyan': '#384564', 'white': '#ededed', 'brightBlack': '#5d504a', 'brightRed': '#f07e18', 'brightGreen': '#b1d130', 'brightYellow': '#fff120', 'brightBlue': '#4fc2fd', 'brightMagenta': '#de0071', 'brightCyan': '#5d504a', 'brightWhite': '#ffffff'}}
|
def printVal(state, name):
val = state[name]
print("%s:" % state.fuzzy_names[name], val)
def print_all(state):
printVal(state, "var_default")
printVal(state, "var_default_override")
printVal(state, "var_default_override_twice")
printVal(state, "var_default_override_twice_and_cli")
def register(mf):
mf.register_defaults({
"var_default": 1,
"var_default_override": 2,
"var_default_override_twice": 3,
"var_default_override_twice_and_cli": 4
})
mf.register_event('print_all', print_all, unique=False)
|
def print_val(state, name):
val = state[name]
print('%s:' % state.fuzzy_names[name], val)
def print_all(state):
print_val(state, 'var_default')
print_val(state, 'var_default_override')
print_val(state, 'var_default_override_twice')
print_val(state, 'var_default_override_twice_and_cli')
def register(mf):
mf.register_defaults({'var_default': 1, 'var_default_override': 2, 'var_default_override_twice': 3, 'var_default_override_twice_and_cli': 4})
mf.register_event('print_all', print_all, unique=False)
|
class AbstractException(Exception):
"""Abstract exception for project"""
def __init__(self, code, message):
"""
Constructor
:param int code: error code
:param str message: error message
"""
self._code = code
self._message = message
@property
def code(self):
"""
Getter code
:rtype: int
"""
return self._code
@property
def message(self): # pragma no cover
"""
Getter message
:rtype: str
"""
return self._message
|
class Abstractexception(Exception):
"""Abstract exception for project"""
def __init__(self, code, message):
"""
Constructor
:param int code: error code
:param str message: error message
"""
self._code = code
self._message = message
@property
def code(self):
"""
Getter code
:rtype: int
"""
return self._code
@property
def message(self):
"""
Getter message
:rtype: str
"""
return self._message
|
"""
https://leetcode.com/problems/rectangle-overlap/
A rectangle is represented as a list [x1, y1, x2, y2], where (x1, y1) are the coordinates of its bottom-left corner, and (x2, y2) are the coordinates of its top-right corner.
Two rectangles overlap if the area of their intersection is positive. To be clear, two rectangles that only touch at the corner or edges do not overlap.
Given two (axis-aligned) rectangles, return whether they overlap.
Example 1:
Input: rec1 = [0,0,2,2], rec2 = [1,1,3,3]
Output: true
Example 2:
Input: rec1 = [0,0,1,1], rec2 = [1,0,2,1]
Output: false
Notes:
Both rectangles rec1 and rec2 are lists of 4 integers.
All coordinates in rectangles will be between -10^9 and 10^9.
"""
# time complexity: O(1), space complexity: O(1)
# The two solutions are both interesting.
class Solution:
def isRectangleOverlap(self, rec1: List[int], rec2: List[int]) -> bool:
# solution 1
# return not (rec1[0] >= rec2[2] or rec1[2] <= rec2[0] or rec1[1] >= rec2[3] or rec1[3] <= rec2[1])
# solution 2
def intersect(p_left, p_right, q_left, q_right):
return min(p_right, q_right) > max(q_left, p_left)
return intersect(rec1[0], rec1[2], rec2[0], rec2[2]) and intersect(rec1[1], rec1[3], rec2[1], rec2[3])
|
"""
https://leetcode.com/problems/rectangle-overlap/
A rectangle is represented as a list [x1, y1, x2, y2], where (x1, y1) are the coordinates of its bottom-left corner, and (x2, y2) are the coordinates of its top-right corner.
Two rectangles overlap if the area of their intersection is positive. To be clear, two rectangles that only touch at the corner or edges do not overlap.
Given two (axis-aligned) rectangles, return whether they overlap.
Example 1:
Input: rec1 = [0,0,2,2], rec2 = [1,1,3,3]
Output: true
Example 2:
Input: rec1 = [0,0,1,1], rec2 = [1,0,2,1]
Output: false
Notes:
Both rectangles rec1 and rec2 are lists of 4 integers.
All coordinates in rectangles will be between -10^9 and 10^9.
"""
class Solution:
def is_rectangle_overlap(self, rec1: List[int], rec2: List[int]) -> bool:
def intersect(p_left, p_right, q_left, q_right):
return min(p_right, q_right) > max(q_left, p_left)
return intersect(rec1[0], rec1[2], rec2[0], rec2[2]) and intersect(rec1[1], rec1[3], rec2[1], rec2[3])
|
class Node():
def __init__(self,data):
self.data=data
self.ref=None
class LinkedList():
def __init__(self):
self.head=None
def Print_ll(self):
n=self.head
if n is None:
print("LinkedList is empty")
else:
while n is not None:
print(n.data)
n=n.ref
ll=LinkedList()
ll.Print_ll()
|
class Node:
def __init__(self, data):
self.data = data
self.ref = None
class Linkedlist:
def __init__(self):
self.head = None
def print_ll(self):
n = self.head
if n is None:
print('LinkedList is empty')
else:
while n is not None:
print(n.data)
n = n.ref
ll = linked_list()
ll.Print_ll()
|
#!/usr/bin/env python3
#encoding=utf-8
#------------------------------------------------
# Usage: python3 3-desc-state-inst.py
# Description: descriptor for attribute intercept
#------------------------------------------------
class InstState: # Using instance state, (object) in 2.X
def __get__(self, instance, owner):
print('InstState get') # Assume set by client class
return instance._X * 10
def __set__(self, instance, value):
print('InstState set')
instance._X = value
# Client class
class CalcAttrs:
X = InstState() # Descriptor class attr
Y = 3 # Class attr
def __init__(self):
self._X = 2 # Instance attr
self.Z = 4 # Instance attr
if __name__ == '__main__':
obj = CalcAttrs()
print(obj.X, obj.Y, obj.Z) # X is computed, others are not
obj.X = 5 # X assignment is intercepted
CalcAttrs.Y = 6 # Y reassigned in class
obj.Z = 7 # Z assigned in instance
print(obj.X, obj.Y, obj.Z)
obj2 = CalcAttrs() # But X differs now, like Z!
print(obj2.X, obj2.Y, obj2.Z)
|
class Inststate:
def __get__(self, instance, owner):
print('InstState get')
return instance._X * 10
def __set__(self, instance, value):
print('InstState set')
instance._X = value
class Calcattrs:
x = inst_state()
y = 3
def __init__(self):
self._X = 2
self.Z = 4
if __name__ == '__main__':
obj = calc_attrs()
print(obj.X, obj.Y, obj.Z)
obj.X = 5
CalcAttrs.Y = 6
obj.Z = 7
print(obj.X, obj.Y, obj.Z)
obj2 = calc_attrs()
print(obj2.X, obj2.Y, obj2.Z)
|
bind = "0.0.0.0:5000"
backlog = 2048
workers = 1
worker_class = "sync"
threads = 16
spew = False
reload = True
loglevel = "debug"
|
bind = '0.0.0.0:5000'
backlog = 2048
workers = 1
worker_class = 'sync'
threads = 16
spew = False
reload = True
loglevel = 'debug'
|
for t in range(int(input())):
n=int(input())
if n%2==0:
print(int(n/2-1))
else:
print(int(n//2))
|
for t in range(int(input())):
n = int(input())
if n % 2 == 0:
print(int(n / 2 - 1))
else:
print(int(n // 2))
|
value1 = int(input()); value2 = value1//100
if value1 % 2==0 and value2 % 2==0:
print("Even")
elif value1 % 2==0 and value2 % 2==1:
print("Even Odd")
elif value1 % 2==1 and value2 % 2==1:
print("Odd")
elif value1 % 2==1 and value2 % 2==0:
print("Odd Even")
|
value1 = int(input())
value2 = value1 // 100
if value1 % 2 == 0 and value2 % 2 == 0:
print('Even')
elif value1 % 2 == 0 and value2 % 2 == 1:
print('Even Odd')
elif value1 % 2 == 1 and value2 % 2 == 1:
print('Odd')
elif value1 % 2 == 1 and value2 % 2 == 0:
print('Odd Even')
|
class Solution:
def lemonadeChange(self, bills: List[int]) -> bool:
money = [0, 0, 0]
for x in bills:
if x == 5:
money[0] += 1
if x == 10:
if money[0] >= 1:
money[1] += 1
money[0] -= 1
else:
return False
if x == 20:
if money[1] >= 1 and money[0] >= 1:
money[2] += 1
money[1] -= 1
money[0] -= 1
elif money[0] >= 3:
money[2] += 1
money[0] -= 3
else:
return False
return True
|
class Solution:
def lemonade_change(self, bills: List[int]) -> bool:
money = [0, 0, 0]
for x in bills:
if x == 5:
money[0] += 1
if x == 10:
if money[0] >= 1:
money[1] += 1
money[0] -= 1
else:
return False
if x == 20:
if money[1] >= 1 and money[0] >= 1:
money[2] += 1
money[1] -= 1
money[0] -= 1
elif money[0] >= 3:
money[2] += 1
money[0] -= 3
else:
return False
return True
|
config = {}
with open("config.txt", "r") as f:
lines = f.readlines()
for line in lines:
key, value = line.split("=")
value = value.replace("\n", "")
config[key] = value
print(f"Added key {key} with value {value}")
user_key = input("Which key would you like to see? ")
if user_key not in config:
print(f"I don't know the key {user_key}")
else:
val = config[user_key]
print(f"Current value for {user_key}:{val}")
next_step = input("Would you like to change?[y/n]")
if next_step == "y":
new_val = input("What is the new value? ")
config[user_key] = new_val
with open("config.txt", "w") as f:
for key, value in config.items():
l = f"{key}={value}\n"
f.write(l)
|
config = {}
with open('config.txt', 'r') as f:
lines = f.readlines()
for line in lines:
(key, value) = line.split('=')
value = value.replace('\n', '')
config[key] = value
print(f'Added key {key} with value {value}')
user_key = input('Which key would you like to see? ')
if user_key not in config:
print(f"I don't know the key {user_key}")
else:
val = config[user_key]
print(f'Current value for {user_key}:{val}')
next_step = input('Would you like to change?[y/n]')
if next_step == 'y':
new_val = input('What is the new value? ')
config[user_key] = new_val
with open('config.txt', 'w') as f:
for (key, value) in config.items():
l = f'{key}={value}\n'
f.write(l)
|
# A little bit of molecular biology
# Codons are non-overlapping triplets of nucleotides.
# ATG CCC CTG GTA ... - this corresponds to four codons; spaces added for emphasis
# The start codon is 'ATG'
# Stop codons can be 'TGA' , 'TAA', or 'TAG', but they must be 'in frame' with the start codon. The first stop codon usually determines the end of the gene.
# In other words:
# 'ATGCCTGA...' - here TGA is not a stop codon, because the T is part of CCT
# 'ATGCCTTGA...' - here TGA is a stop codon because it is in frame (i.e. a multiple of 3 nucleic acids from ATG)
# The gene is start codon to stop codon, inclusive
# Example"
# dna - GGCATGAAAGTCAGGGCAGAGCCATCTATTTGAGCTTAC
# gene - ATGAAAGTCAGGGCAGAGCCATCTATTTGA
#dna ='GGCATGAAAGTCAGGGCAGAGCCATCTATTGCTTACATTTGCTTCTGACACAACTGTGTTCACTAGCAACCTCAAACAGACACCATGGTGCACCTGACTCCTGAGGAGAAGTCTGCCGTTACTGCCCTGTGGGGCAAGGTGAACGTGGATGAAGTTGGTGGTGAGGCCCTGGGCAGGTTGGTATCAAGGTTACAAGACAGGTTTAAGGAGACCAATAGAAACTGGGCATGTGGAGACAGAGAAGACTCTTGGGTTTCTGATAGGCACTGACTCTCTCTGCCTATTGGTCTATTTTCCCACCCTTAGGCTGCTGGTGGTCTACCCTTGGACCCAGAGGTTCTTTGAGTCCTTTGGGGATCTGTCCACTCCTGATGCTGTTATGGGCAACCCTAAGGTGAAGGCTCATGGCAAGAAAGTGCTCGGTGCCTTTAGTGATGGCCTGGCTCACCTGGACAACCTCAAGGGCACCTTTGCCACACTGAGTGAGCTGCACTGTGACAAGCTGCACGTGGATCCTGAGAACTTCAGGGTGAGTCTATGGGACCCTTGATGTTTTCTTTCCCCTTCTTTTCTATGGTTAAGTTCATGTCATAGGAAGGGGAGAAGTAACAGGGTACAGTTTAGAATGGGAAACAGACGAATGATT'
dna = 'GGGATGTTTGGGCCCTACGGGCCCTGATCGGCT'
def startCodonIndex(seq):
# input: list of CAPs characters corresponding to DNA sequence
# output: index of first letter of start codon; return -1 if none are found
start_idx = seq.find('ATG')
return start_idx
def stopCodonIndex(seq, start_codon):
# input: list of CAPs characters corresponding to DNA sequence and index of start codon
# output: index of first stop codon; return -1 if none are found
stop_idx = -1
codon_length = 3
search_start = start_codon + codon_length
search_stop = len(seq)
for i in range(search_start, search_stop, codon_length):
codon = seq[i: i+codon_length]
if codon == "TAA" or codon == "TGA" or codon == "TAG":
stop_idx = i
break
return stop_idx
def codingDNA(seq):
# input: list of CAPs characters corresponding to DNA
# output: coding sequence only, including start and stop codons
start_idx = startCodonIndex(seq)
stop_idx = stopCodonIndex(seq, start_idx)
codon_length = 3
new_seq = dna[start_idx: stop_idx + codon_length]
return new_seq
def numCodons(seq):
# calculate the number of codons in the gene
# input: coding DNA sequence
# output: number of codons
codon_length = 3
num_codons = len(seq) / codon_length
# You don't need to run this line in python 2 because
# of integer division.
num_codons = int(num_codons)
return num_codons
def transcription(seq):
# Transcription: (A->U), (T->A), (C->G), (G->C)
# input: DNA coding squence
# ouput: RNA sequence
rna_seq=''
for base in seq:
if base == "A":
rna_seq += "U"
if base == "T":
rna_seq += "A"
if base == "C":
rna_seq += "G"
if base == "G":
rna_seq += "C"
return rna_seq
# calling the functions
# It would be more accurate to calculate the number of codons from coding_dna
codons = numCodons(dna)
start = startCodonIndex(dna)
stop = stopCodonIndex(dna, start)
coding_dna = codingDNA(dna)
coding_rna = transcription(coding_dna)
print(("DNA: {}".format(dna)))
print(("CODONS: {}".format(codons)))
print(("START: {}".format(start)))
print(("STOP: {}".format(stop)))
print(("CODING DNA: {}".format(coding_dna)))
print(("TRANSCRIBED RNA: {}".format(coding_rna)))
|
dna = 'GGGATGTTTGGGCCCTACGGGCCCTGATCGGCT'
def start_codon_index(seq):
start_idx = seq.find('ATG')
return start_idx
def stop_codon_index(seq, start_codon):
stop_idx = -1
codon_length = 3
search_start = start_codon + codon_length
search_stop = len(seq)
for i in range(search_start, search_stop, codon_length):
codon = seq[i:i + codon_length]
if codon == 'TAA' or codon == 'TGA' or codon == 'TAG':
stop_idx = i
break
return stop_idx
def coding_dna(seq):
start_idx = start_codon_index(seq)
stop_idx = stop_codon_index(seq, start_idx)
codon_length = 3
new_seq = dna[start_idx:stop_idx + codon_length]
return new_seq
def num_codons(seq):
codon_length = 3
num_codons = len(seq) / codon_length
num_codons = int(num_codons)
return num_codons
def transcription(seq):
rna_seq = ''
for base in seq:
if base == 'A':
rna_seq += 'U'
if base == 'T':
rna_seq += 'A'
if base == 'C':
rna_seq += 'G'
if base == 'G':
rna_seq += 'C'
return rna_seq
codons = num_codons(dna)
start = start_codon_index(dna)
stop = stop_codon_index(dna, start)
coding_dna = coding_dna(dna)
coding_rna = transcription(coding_dna)
print('DNA: {}'.format(dna))
print('CODONS: {}'.format(codons))
print('START: {}'.format(start))
print('STOP: {}'.format(stop))
print('CODING DNA: {}'.format(coding_dna))
print('TRANSCRIBED RNA: {}'.format(coding_rna))
|
# REMISS
for i in range(int(input())):
A,B = map(int,input().split())
if A>B: print(str(A) + " " + str(A+B))
else: print(str(B) + " " + str(A+B))
|
for i in range(int(input())):
(a, b) = map(int, input().split())
if A > B:
print(str(A) + ' ' + str(A + B))
else:
print(str(B) + ' ' + str(A + B))
|
#!/usr/bin/env python3
def hello(**kwargs):
print(f'Hello')
if __name__ == '__main__':
hello(hello())
|
def hello(**kwargs):
print(f'Hello')
if __name__ == '__main__':
hello(hello())
|
#!/usr/bin/env python3
with open("dnsservers.txt", "r") as dnsfile:
for svr in dnsfile:
svr = svr.rstrip('\n')
if svr.endswith('org'):
with open("org-domain.txt", "a") as srvfile:
srvfile.write(svr + "\n")
elif svr.endswith('com'):
with open("com-domain.txt", "a") as srvfile:
srvfile.write(svr + "\n")
|
with open('dnsservers.txt', 'r') as dnsfile:
for svr in dnsfile:
svr = svr.rstrip('\n')
if svr.endswith('org'):
with open('org-domain.txt', 'a') as srvfile:
srvfile.write(svr + '\n')
elif svr.endswith('com'):
with open('com-domain.txt', 'a') as srvfile:
srvfile.write(svr + '\n')
|
class Solution:
def sumOfLeftLeaves(self, root: TreeNode) -> int:
if not root:
return 0
res = 0
q = deque([root])
while q:
node = q.popleft()
if node.left:
if not node.left.left and not node.left.right:
res += node.left.val
q.append(node.left)
if node.right:
q.append(node.right)
return res
|
class Solution:
def sum_of_left_leaves(self, root: TreeNode) -> int:
if not root:
return 0
res = 0
q = deque([root])
while q:
node = q.popleft()
if node.left:
if not node.left.left and (not node.left.right):
res += node.left.val
q.append(node.left)
if node.right:
q.append(node.right)
return res
|
"""
Sponge Knowledge Base
Remote API security
"""
def configureAccessService():
# Configure the RoleBasedAccessService.
# Simple access configuration: role -> knowledge base names regexps.
remoteApiServer.accessService.addRolesToKb({ "ROLE_ADMIN":[".*"], "ROLE_ANONYMOUS":["boot", "python"]})
# Simple access configuration: role -> event names regexps.
remoteApiServer.accessService.addRolesToSendEvent({ "ROLE_ADMIN":[".*"], "ROLE_ANONYMOUS":[]})
remoteApiServer.accessService.addRolesToSubscribeEvent({ "ROLE_ADMIN":[".*"], "ROLE_ANONYMOUS":[".*"]})
def onStartup():
# Configure the access service on startup.
configureAccessService()
def onAfterReload():
# Reconfigure the access service after each reload.
configureAccessService()
|
"""
Sponge Knowledge Base
Remote API security
"""
def configure_access_service():
remoteApiServer.accessService.addRolesToKb({'ROLE_ADMIN': ['.*'], 'ROLE_ANONYMOUS': ['boot', 'python']})
remoteApiServer.accessService.addRolesToSendEvent({'ROLE_ADMIN': ['.*'], 'ROLE_ANONYMOUS': []})
remoteApiServer.accessService.addRolesToSubscribeEvent({'ROLE_ADMIN': ['.*'], 'ROLE_ANONYMOUS': ['.*']})
def on_startup():
configure_access_service()
def on_after_reload():
configure_access_service()
|
'''
Given a string s, the power of the string is the maximum length of a non-empty substring that contains only one unique character.
Return the power of the string.
Example 1:
Input: s = "leetcode"
Output: 2
Explanation: The substring "ee" is of length 2 with the character 'e' only.
Example 2:
Input: s = "abbcccddddeeeeedcba"
Output: 5
Explanation: The substring "eeeee" is of length 5 with the character 'e' only.
'''
class Solution:
def maxPower(self, s: str) -> int:
current = 1
max_freq = 0
for i in range(1, len(s)):
if s[i] == s[i - 1]:
current += 1
else:
max_freq = max(current, max_freq)
current = 1
return max(max_freq, current)
|
"""
Given a string s, the power of the string is the maximum length of a non-empty substring that contains only one unique character.
Return the power of the string.
Example 1:
Input: s = "leetcode"
Output: 2
Explanation: The substring "ee" is of length 2 with the character 'e' only.
Example 2:
Input: s = "abbcccddddeeeeedcba"
Output: 5
Explanation: The substring "eeeee" is of length 5 with the character 'e' only.
"""
class Solution:
def max_power(self, s: str) -> int:
current = 1
max_freq = 0
for i in range(1, len(s)):
if s[i] == s[i - 1]:
current += 1
else:
max_freq = max(current, max_freq)
current = 1
return max(max_freq, current)
|
MAP_HEIGHT_MIN = 20
MAP_HEIGHT_MAX = 50
MAP_WIDTH_MIN = 20
MAP_WIDTH_MAX = 50
MAP_KARBONITE_MIN = 0
MAP_KARBONITE_MAX = 50
ASTEROID_ROUND_MIN = 10
ASTEROID_ROUND_MAX = 20
ASTEROID_KARB_MIN = 20
ASTEROID_KARB_MAX = 100
ORBIT_FLIGHT_MIN = 50
ORBIT_FLIGHT_MAX = 200
ROUND_LIMIT = 1000
def validate_map_dims(h, w):
return (MAP_HEIGHT_MAX >= h >= MAP_HEIGHT_MIN) and (MAP_WIDTH_MAX >= w >= MAP_WIDTH_MIN)
def validate_num_bots(bot_list):
return 0 < len(bot_list) <= 6 and (len(bot_list) % 2 == 0)
def validate_asteroid_pattern(asteroid_list):
rounds = [i[0] for i in asteroid_list]
karb = [i[1] for i in asteroid_list]
for i in range(len(rounds)):
if rounds[i] < 1 or rounds[i] > ROUND_LIMIT:
print("fail round limit check")
return False
if karb[i] < ASTEROID_KARB_MIN or karb[i] > ASTEROID_KARB_MAX:
print("fail karb limit check")
return False
rounds.sort()
if rounds[0] > ASTEROID_ROUND_MAX:
print("fail minimum round")
return False
if ROUND_LIMIT - rounds[-1] > ASTEROID_ROUND_MAX:
print("fail maximum round")
return False
for i in range(len(rounds) - 1):
diff = rounds[i+1] - rounds[i]
if diff < ASTEROID_ROUND_MIN or diff > ASTEROID_ROUND_MAX:
print("fail diff {}".format(diff))
return False
return True
def validate_orbital_pattern(amplitude, period, center):
if center - amplitude < ORBIT_FLIGHT_MIN:
return False
if center + amplitude > ORBIT_FLIGHT_MAX:
return False
return True
|
map_height_min = 20
map_height_max = 50
map_width_min = 20
map_width_max = 50
map_karbonite_min = 0
map_karbonite_max = 50
asteroid_round_min = 10
asteroid_round_max = 20
asteroid_karb_min = 20
asteroid_karb_max = 100
orbit_flight_min = 50
orbit_flight_max = 200
round_limit = 1000
def validate_map_dims(h, w):
return MAP_HEIGHT_MAX >= h >= MAP_HEIGHT_MIN and MAP_WIDTH_MAX >= w >= MAP_WIDTH_MIN
def validate_num_bots(bot_list):
return 0 < len(bot_list) <= 6 and len(bot_list) % 2 == 0
def validate_asteroid_pattern(asteroid_list):
rounds = [i[0] for i in asteroid_list]
karb = [i[1] for i in asteroid_list]
for i in range(len(rounds)):
if rounds[i] < 1 or rounds[i] > ROUND_LIMIT:
print('fail round limit check')
return False
if karb[i] < ASTEROID_KARB_MIN or karb[i] > ASTEROID_KARB_MAX:
print('fail karb limit check')
return False
rounds.sort()
if rounds[0] > ASTEROID_ROUND_MAX:
print('fail minimum round')
return False
if ROUND_LIMIT - rounds[-1] > ASTEROID_ROUND_MAX:
print('fail maximum round')
return False
for i in range(len(rounds) - 1):
diff = rounds[i + 1] - rounds[i]
if diff < ASTEROID_ROUND_MIN or diff > ASTEROID_ROUND_MAX:
print('fail diff {}'.format(diff))
return False
return True
def validate_orbital_pattern(amplitude, period, center):
if center - amplitude < ORBIT_FLIGHT_MIN:
return False
if center + amplitude > ORBIT_FLIGHT_MAX:
return False
return True
|
string = input().split(", ")
beggars = int(input())
beggars_list = []
for x in range(0, beggars):
temp = string[x::beggars]
for j in range(0, len(temp)):
temp[j] = int(temp[j])
beggars_list.append(sum(temp))
print(beggars_list)
|
string = input().split(', ')
beggars = int(input())
beggars_list = []
for x in range(0, beggars):
temp = string[x::beggars]
for j in range(0, len(temp)):
temp[j] = int(temp[j])
beggars_list.append(sum(temp))
print(beggars_list)
|
# python to locate 1 in a 2D array
#below save it into a dictionary
# python to locate 1 in a 2D array
def check_zero(array1):
d = {}
print("array index zeros at:")
for i in range(len(array1)):
index = [k for k, v in enumerate(array1[i]) if v == 0]
d[i] = index
#print(i, index)
#print(d)
return(d)
array1 = [
[1, 1, 0, 0],
[0, 0, 1, 1],
[0, 1, 0, 1]
]
array2 = [
[1, 1, 0, 0, 0],
[0, 0, 1, 1, 0],
[0, 0, 1, 0, 1]
]
print(check_zero(array1))
print(check_zero(array2))
'''
array index zeros at:
{0: [2, 3], 1: [0, 1], 2: [0, 2]}
array index zeros at:
{0: [2, 3, 4], 1: [0, 1, 4], 2: [0, 1, 3]}
'''
# below is a function
def check_zero(array1):
print("array index zeros at:")
for i in range(len(array1)):
index = [k for k, v in enumerate(array1[i]) if v == 0]
print(i, index)
return(i,index)
array1 = [
[1, 1, 0, 0],
[0, 0, 1, 1],
[0, 1, 0, 1]
]
array2 = [
[1, 1, 0, 0, 0],
[0, 0, 1, 1, 0],
[0, 0, 1, 0, 1]
]
check_zero(array1)
check_zero(array2)
'''
array index zeros at:
0 [2, 3]
1 [0, 1]
2 [0, 2]
array index zeros at:
0 [2, 3, 4]
1 [0, 1, 4]
2 [0, 1, 3]
'''
array1 = [
[1, 1, 0, 0],
[0, 0, 1, 1],
[0, 1, 0, 1]
]
for i in range(len(array1)):
index = [ k for k,v in enumerate(array1[i]) if v ==0 ]
print(i, index)
'''
outputs
0 [2, 3]
1 [0, 1]
2 [0, 2]
'''
''' very primitive below,
for i in range(0,3):
for j in range(0,4):
if (array1[i][j] == 1):
print(i,j)
'''
'''
# https://docs.scipy.org/doc/numpy-1.15.0/reference/generated/numpy.nonzero.html
# not done yet
# import numpy
array2 = numpy.array([
[1, 1, 0, 0],
[0, 0, 1, 1],
[0, 0, 0, 0]])
print(numpy.nonzero(array2))
'''
# https://stackoverflow.com/questions/27175400/how-to-find-the-index-of-a-value-in-2d-array-in-python
'''
outputs from for i,j loop
D:\Go-workspace\walter\coding\python>python locate_zero.py
0 0
0 1
1 2
1 3
2 1
2 3
'''
|
def check_zero(array1):
d = {}
print('array index zeros at:')
for i in range(len(array1)):
index = [k for (k, v) in enumerate(array1[i]) if v == 0]
d[i] = index
return d
array1 = [[1, 1, 0, 0], [0, 0, 1, 1], [0, 1, 0, 1]]
array2 = [[1, 1, 0, 0, 0], [0, 0, 1, 1, 0], [0, 0, 1, 0, 1]]
print(check_zero(array1))
print(check_zero(array2))
'\narray index zeros at:\n{0: [2, 3], 1: [0, 1], 2: [0, 2]}\narray index zeros at:\n{0: [2, 3, 4], 1: [0, 1, 4], 2: [0, 1, 3]}\n'
def check_zero(array1):
print('array index zeros at:')
for i in range(len(array1)):
index = [k for (k, v) in enumerate(array1[i]) if v == 0]
print(i, index)
return (i, index)
array1 = [[1, 1, 0, 0], [0, 0, 1, 1], [0, 1, 0, 1]]
array2 = [[1, 1, 0, 0, 0], [0, 0, 1, 1, 0], [0, 0, 1, 0, 1]]
check_zero(array1)
check_zero(array2)
'\narray index zeros at:\n0 [2, 3]\n1 [0, 1]\n2 [0, 2]\narray index zeros at:\n0 [2, 3, 4]\n1 [0, 1, 4]\n2 [0, 1, 3]\n'
array1 = [[1, 1, 0, 0], [0, 0, 1, 1], [0, 1, 0, 1]]
for i in range(len(array1)):
index = [k for (k, v) in enumerate(array1[i]) if v == 0]
print(i, index)
'\noutputs \n0 [2, 3]\n1 [0, 1]\n2 [0, 2]\n\n'
' very primitive below, \nfor i in range(0,3):\n for j in range(0,4):\n if (array1[i][j] == 1):\n print(i,j)\n'
'\n# https://docs.scipy.org/doc/numpy-1.15.0/reference/generated/numpy.nonzero.html\n# not done yet \n# import numpy\n\narray2 = numpy.array([ \n [1, 1, 0, 0],\n [0, 0, 1, 1],\n [0, 0, 0, 0]])\nprint(numpy.nonzero(array2))\n'
'\noutputs from for i,j loop\n\nD:\\Go-workspace\\walter\\coding\\python>python locate_zero.py\n0 0\n0 1\n1 2\n1 3\n2 1\n2 3\n'
|
name = "Sharalanda"
age = 10
hobbies = ["draw", "swim", "dance"]
address = {"city": "Sebastopol", "Post Code": 1234, "country": "Enchantia"}
print("My name is", name)
print("I am", age, "years old")
print("My favourite hobbie is", hobbies[0])
print("I live in", address["city"])
|
name = 'Sharalanda'
age = 10
hobbies = ['draw', 'swim', 'dance']
address = {'city': 'Sebastopol', 'Post Code': 1234, 'country': 'Enchantia'}
print('My name is', name)
print('I am', age, 'years old')
print('My favourite hobbie is', hobbies[0])
print('I live in', address['city'])
|
class Solution(object):
def threeConsecutiveOdds(self, arr):
"""
:type arr: List[int]
:rtype: bool
"""
odds = 0
for a in arr:
if a % 2 == 1:
odds += 1
if odds >= 3:
return True
else:
odds = 0
return False
def test_three_consecutive_odds():
s = Solution()
assert s.threeConsecutiveOdds([2, 6, 4, 1]) is False
assert s.threeConsecutiveOdds([1, 2, 34, 3, 4, 5, 7, 23, 12])
|
class Solution(object):
def three_consecutive_odds(self, arr):
"""
:type arr: List[int]
:rtype: bool
"""
odds = 0
for a in arr:
if a % 2 == 1:
odds += 1
if odds >= 3:
return True
else:
odds = 0
return False
def test_three_consecutive_odds():
s = solution()
assert s.threeConsecutiveOdds([2, 6, 4, 1]) is False
assert s.threeConsecutiveOdds([1, 2, 34, 3, 4, 5, 7, 23, 12])
|
# Copyright (c) 2018 Javier M. Mellid <jmunhoz@igalia.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
class S3Owner:
def __init__(self, xid, display_name, id):
self.xid = xid
self.display_name = display_name
self.id = id
def __str__(self):
return "{} - {} - {}".format(self.xid,
self.display_name,
self.id)
class S3Object:
pass
class S3Version(S3Object):
xid = 0
last_modified = ''
version_id = ''
etag = ''
storage_class = ''
key = ''
owner = None
is_latest = True
size = 0
def __init__(self, xid, last_modified, version_id, etag, storage_class, key, owner, is_latest, size):
self.xid = xid
self.last_modified = last_modified
self.version_id = version_id
self.etag = etag
self.storage_class = storage_class
self.key = key
self.owner = owner
self.is_latest = is_latest
self.size = size
'''
"Versions": [
{
"LastModified": "2018-06-22T10:55:36.186Z",
"VersionId": "zWwD51VVELeSCN-mgn61yevKf4ETZB.",
"ETag": "\"b9c85244be9733bc79eca588db7bf306\"",
"StorageClass": "STANDARD",
"Key": "test-key-1",
"Owner": {
"DisplayName": "Test User",
"ID": "testuser1"
},
"IsLatest": true,
"Size": 151024
},
'''
def __str__(self):
return "{}:{}:{}:{}:{}:{}:{}:{}:{}:{}:{}".format(self.xid,
self.last_modified,
self.version_id,
self.etag,
self.storage_class,
self.key,
self.owner.xid,
self.owner.display_name,
self.owner.id,
self.is_latest,
self.size)
def pretty_str(self):
return "{}:{}:{}:{}:{}:{}:{}:{}:{}:{}".format('V',
'+' if self.is_latest is 1 else '-',
self.last_modified,
self.version_id,
self.key,
self.owner.display_name,
self.owner.id,
self.size,
self.etag,
self.storage_class)
class S3DeleteMarker(S3Version):
def __init__(self, xid, last_modified, version_id, key, owner, is_latest):
self.xid = xid
self.last_modified = last_modified
self.version_id = version_id
self.key = key
self.owner = owner
self.is_latest = is_latest
'''
"DeleteMarkers": [
{
"Owner": {
"DisplayName": "Test User",
"ID": "testuser1"
},
"IsLatest": true,
"VersionId": "0eU0xYMb3G2UiZVji4l8jhX-nL1tXqm",
"Key": "test-key-1",
"LastModified": "2018-06-22T11:22:31.955Z"
},
'''
def __str__(self):
return "{}:{}:{}:{}:{}:{}:{}:{}".format(self.xid,
self.last_modified,
self.version_id,
self.key,
self.owner.xid,
self.owner.display_name,
self.owner.id,
self.is_latest)
def pretty_str(self):
return "{}:{}:{}:{}:{}:{}:{}".format('D',
'+' if self.is_latest else '-',
self.last_modified,
self.version_id,
self.key,
self.owner.display_name,
self.owner.id)
|
class S3Owner:
def __init__(self, xid, display_name, id):
self.xid = xid
self.display_name = display_name
self.id = id
def __str__(self):
return '{} - {} - {}'.format(self.xid, self.display_name, self.id)
class S3Object:
pass
class S3Version(S3Object):
xid = 0
last_modified = ''
version_id = ''
etag = ''
storage_class = ''
key = ''
owner = None
is_latest = True
size = 0
def __init__(self, xid, last_modified, version_id, etag, storage_class, key, owner, is_latest, size):
self.xid = xid
self.last_modified = last_modified
self.version_id = version_id
self.etag = etag
self.storage_class = storage_class
self.key = key
self.owner = owner
self.is_latest = is_latest
self.size = size
'\n "Versions": [\n {\n "LastModified": "2018-06-22T10:55:36.186Z",\n "VersionId": "zWwD51VVELeSCN-mgn61yevKf4ETZB.",\n "ETag": ""b9c85244be9733bc79eca588db7bf306"",\n "StorageClass": "STANDARD",\n "Key": "test-key-1",\n "Owner": {\n "DisplayName": "Test User",\n "ID": "testuser1"\n },\n "IsLatest": true,\n "Size": 151024\n },\n '
def __str__(self):
return '{}:{}:{}:{}:{}:{}:{}:{}:{}:{}:{}'.format(self.xid, self.last_modified, self.version_id, self.etag, self.storage_class, self.key, self.owner.xid, self.owner.display_name, self.owner.id, self.is_latest, self.size)
def pretty_str(self):
return '{}:{}:{}:{}:{}:{}:{}:{}:{}:{}'.format('V', '+' if self.is_latest is 1 else '-', self.last_modified, self.version_id, self.key, self.owner.display_name, self.owner.id, self.size, self.etag, self.storage_class)
class S3Deletemarker(S3Version):
def __init__(self, xid, last_modified, version_id, key, owner, is_latest):
self.xid = xid
self.last_modified = last_modified
self.version_id = version_id
self.key = key
self.owner = owner
self.is_latest = is_latest
'\n "DeleteMarkers": [\n {\n "Owner": {\n "DisplayName": "Test User",\n "ID": "testuser1"\n },\n "IsLatest": true,\n "VersionId": "0eU0xYMb3G2UiZVji4l8jhX-nL1tXqm",\n "Key": "test-key-1",\n "LastModified": "2018-06-22T11:22:31.955Z"\n },\n '
def __str__(self):
return '{}:{}:{}:{}:{}:{}:{}:{}'.format(self.xid, self.last_modified, self.version_id, self.key, self.owner.xid, self.owner.display_name, self.owner.id, self.is_latest)
def pretty_str(self):
return '{}:{}:{}:{}:{}:{}:{}'.format('D', '+' if self.is_latest else '-', self.last_modified, self.version_id, self.key, self.owner.display_name, self.owner.id)
|
#Create a list using []
a = [1,2,3,7,66]
#print the list using print() function
print(a)
#Access using index using a[0], a[1], ....
print(a[2])
#Changing the value of the list
a[0] = 777
print(a)
#We can create a list with items of different type
b = [77,"Root",False,6.9]
print(b)
#List Slicing
friends = ["Root","Groot","Sam","Alex",99]
print(friends[0:3])
print(friends[-4:])
|
a = [1, 2, 3, 7, 66]
print(a)
print(a[2])
a[0] = 777
print(a)
b = [77, 'Root', False, 6.9]
print(b)
friends = ['Root', 'Groot', 'Sam', 'Alex', 99]
print(friends[0:3])
print(friends[-4:])
|
singular = [
'this','as','is','thesis','hypothesis','less','obvious','us','yes','cos',
'always','perhaps','alias','plus','apropos',
'was','its','bus','his','is','us',
'this','thus','axis','bias','minus','basis',
'praxis','status','modulus','analysis',
'aparatus'
]
invariable = [ #frozen_list - cannot be given a synonym
'a','an','all','and','any','are','as','assume','be','by',
'case','classifier',
'coercion','conjecture','contradiction','contrary','corollary','declare',
'def',
'define','defined','definition','denote','division','do','document',
'does','dump','each','else','end','enddivision','endsection',
'endsubdivision','endsubsection','endsubsubsection','equal',
'equation','error','enter','every','exhaustive','exist','exit',
'false','fix','fixed','for','forall','formula','fun','function','has','have',
'having','hence','holding','hypothesis','if','iff','in','inferring',
'indeed','induction','inductive','introduce','is','it','left','lemma',
'let','library','make','map','match','moreover','mutual','namespace',
'no','not','notational','notation',
'notationless','obvious','of','off','on','only','ontored','or','over',
'pairwise','parameter','precedence','predicate','printgoal',
'proof','prop','property','prove','proposition',
'propped','qed','quotient','read','record','register','recursion','right',
'said','say','section','show','some','stand','structure','subdivision',
'subsection','subsubsection','such','suppose','synonym','take','that',
'the','then','theorem','there','therefore','thesis','this','timelimit',
'to','total','trivial','true','type','unique','us',
'warning','we','well','welldefined','well_defined','well_propped',
'where','with','write','wrong','yes',
#(* plural handled by sing 'classifiers', 'exists','implement',
# 'parameters','properties','propositions','synonyms','types',
]
transition = [ #phrase_list_transition_words
'a basic fact is','accordingly','additionally','again','also','and yet','as a result',
'as usual','as we have seen','as we see','at the same time','besides','but',
'by definition','certainly','clearly','computations show','consequently',
'conversely','equally important','explicitly','finally','first','for example',
'for instance','for simplicity','for that reason','for this purpose','further',
'furthermore','generally','hence','here','however','importantly','in addition',
'in any event','in brief','in consequence','in contrast','in contrast to this',
'in each case','in fact','in general','in other words','in particular','in short',
'in sum','in summary','in the present case','in the same way','in this computation',
'in this sense','indeed','it follows','it is clear','it is enough to show',
'it is known','it is routine','it is trivial to see','it is understood',
'it turns out','last','likewise','more precisely','moreover','most importantly',
'neverthess','next','nonetheless','note',
'notice','now','observe','obviously','of course','on the contrary','on the other hand',
'on the whole','otherwise','second','similarly','so','specifically','still',
'that is','the point is','then','therefore','third','this gives','this implies',
'this means','this yields','thus','thus far','to begin with','to this end',
'trivially','we claim','we emphasize','we first show','we get','we have seen',
'we have','we know','we check','we may check','we obtain','we remark','we say','we see',
'we show','we understand','we write','recall','we recall',
'without loss of generality','yet'
]
preposition_list = [
'aboard','about','above','according to', 'across', 'against', 'ahead of',
'along','alongside','amid','amidst','among','around','at','atop','away from',
'before',
'behind','below','beneath','beside','between','beyond','by','concerning','despite',
'except','except at','excluding','following',
'from','in','in addition to','in place of','in regard to',
'inside','instead of','into','near','next to','of',
'off','on','on behalf of','on top of','onto','opposite','out','out of',
'outside','outside of',
'over','owing to','per','prior to','regarding','save','through',
'throughout','till','to','towards','under','until',
'up','up to','upon','with','with respect to','wrt','within','without'
# 'for', 'as', 'like', 'after', 'round', 'plus', 'since', 'than', 'past',
# 'during',
# synonyms with\~respect\~to/wrt
]
prim_list = [
'prim_classifier',
'prim_term_op_controlseq',
'prim_binary_relation_controlseq',
'prim_propositional_op_controlseq',
'prim_type_op_controlseq',
'prim_term_controlseq',
'prim_type_controlseq',
'prim_lambda_binder',
'prim_pi_binder',
'prim_binder_prop',
'prim_typed_name',
'prim_adjective',
'prim_adjective_multisubject',
'prim_simple_adjective',
'prim_simple_adjective_multisubject',
'prim_field_term_accessor',
'prim_field_type_accessor',
'prim_field_prop_accessor',
'prim_definite_noun',
'prim_identifier_term',
'prim_identifier_type',
'prim_possessed_noun',
'prim_verb',
'prim_verb_multisubject',
'prim_structure',
'prim_type_op',
'prim_type_word',
'prim_term_op',
'prim_binary_relation_op',
'prim_propositional_op',
'prim_relation'
]
|
singular = ['this', 'as', 'is', 'thesis', 'hypothesis', 'less', 'obvious', 'us', 'yes', 'cos', 'always', 'perhaps', 'alias', 'plus', 'apropos', 'was', 'its', 'bus', 'his', 'is', 'us', 'this', 'thus', 'axis', 'bias', 'minus', 'basis', 'praxis', 'status', 'modulus', 'analysis', 'aparatus']
invariable = ['a', 'an', 'all', 'and', 'any', 'are', 'as', 'assume', 'be', 'by', 'case', 'classifier', 'coercion', 'conjecture', 'contradiction', 'contrary', 'corollary', 'declare', 'def', 'define', 'defined', 'definition', 'denote', 'division', 'do', 'document', 'does', 'dump', 'each', 'else', 'end', 'enddivision', 'endsection', 'endsubdivision', 'endsubsection', 'endsubsubsection', 'equal', 'equation', 'error', 'enter', 'every', 'exhaustive', 'exist', 'exit', 'false', 'fix', 'fixed', 'for', 'forall', 'formula', 'fun', 'function', 'has', 'have', 'having', 'hence', 'holding', 'hypothesis', 'if', 'iff', 'in', 'inferring', 'indeed', 'induction', 'inductive', 'introduce', 'is', 'it', 'left', 'lemma', 'let', 'library', 'make', 'map', 'match', 'moreover', 'mutual', 'namespace', 'no', 'not', 'notational', 'notation', 'notationless', 'obvious', 'of', 'off', 'on', 'only', 'ontored', 'or', 'over', 'pairwise', 'parameter', 'precedence', 'predicate', 'printgoal', 'proof', 'prop', 'property', 'prove', 'proposition', 'propped', 'qed', 'quotient', 'read', 'record', 'register', 'recursion', 'right', 'said', 'say', 'section', 'show', 'some', 'stand', 'structure', 'subdivision', 'subsection', 'subsubsection', 'such', 'suppose', 'synonym', 'take', 'that', 'the', 'then', 'theorem', 'there', 'therefore', 'thesis', 'this', 'timelimit', 'to', 'total', 'trivial', 'true', 'type', 'unique', 'us', 'warning', 'we', 'well', 'welldefined', 'well_defined', 'well_propped', 'where', 'with', 'write', 'wrong', 'yes']
transition = ['a basic fact is', 'accordingly', 'additionally', 'again', 'also', 'and yet', 'as a result', 'as usual', 'as we have seen', 'as we see', 'at the same time', 'besides', 'but', 'by definition', 'certainly', 'clearly', 'computations show', 'consequently', 'conversely', 'equally important', 'explicitly', 'finally', 'first', 'for example', 'for instance', 'for simplicity', 'for that reason', 'for this purpose', 'further', 'furthermore', 'generally', 'hence', 'here', 'however', 'importantly', 'in addition', 'in any event', 'in brief', 'in consequence', 'in contrast', 'in contrast to this', 'in each case', 'in fact', 'in general', 'in other words', 'in particular', 'in short', 'in sum', 'in summary', 'in the present case', 'in the same way', 'in this computation', 'in this sense', 'indeed', 'it follows', 'it is clear', 'it is enough to show', 'it is known', 'it is routine', 'it is trivial to see', 'it is understood', 'it turns out', 'last', 'likewise', 'more precisely', 'moreover', 'most importantly', 'neverthess', 'next', 'nonetheless', 'note', 'notice', 'now', 'observe', 'obviously', 'of course', 'on the contrary', 'on the other hand', 'on the whole', 'otherwise', 'second', 'similarly', 'so', 'specifically', 'still', 'that is', 'the point is', 'then', 'therefore', 'third', 'this gives', 'this implies', 'this means', 'this yields', 'thus', 'thus far', 'to begin with', 'to this end', 'trivially', 'we claim', 'we emphasize', 'we first show', 'we get', 'we have seen', 'we have', 'we know', 'we check', 'we may check', 'we obtain', 'we remark', 'we say', 'we see', 'we show', 'we understand', 'we write', 'recall', 'we recall', 'without loss of generality', 'yet']
preposition_list = ['aboard', 'about', 'above', 'according to', 'across', 'against', 'ahead of', 'along', 'alongside', 'amid', 'amidst', 'among', 'around', 'at', 'atop', 'away from', 'before', 'behind', 'below', 'beneath', 'beside', 'between', 'beyond', 'by', 'concerning', 'despite', 'except', 'except at', 'excluding', 'following', 'from', 'in', 'in addition to', 'in place of', 'in regard to', 'inside', 'instead of', 'into', 'near', 'next to', 'of', 'off', 'on', 'on behalf of', 'on top of', 'onto', 'opposite', 'out', 'out of', 'outside', 'outside of', 'over', 'owing to', 'per', 'prior to', 'regarding', 'save', 'through', 'throughout', 'till', 'to', 'towards', 'under', 'until', 'up', 'up to', 'upon', 'with', 'with respect to', 'wrt', 'within', 'without']
prim_list = ['prim_classifier', 'prim_term_op_controlseq', 'prim_binary_relation_controlseq', 'prim_propositional_op_controlseq', 'prim_type_op_controlseq', 'prim_term_controlseq', 'prim_type_controlseq', 'prim_lambda_binder', 'prim_pi_binder', 'prim_binder_prop', 'prim_typed_name', 'prim_adjective', 'prim_adjective_multisubject', 'prim_simple_adjective', 'prim_simple_adjective_multisubject', 'prim_field_term_accessor', 'prim_field_type_accessor', 'prim_field_prop_accessor', 'prim_definite_noun', 'prim_identifier_term', 'prim_identifier_type', 'prim_possessed_noun', 'prim_verb', 'prim_verb_multisubject', 'prim_structure', 'prim_type_op', 'prim_type_word', 'prim_term_op', 'prim_binary_relation_op', 'prim_propositional_op', 'prim_relation']
|
class Solution(object):
def summaryRanges(self, nums):
"""
:type nums: List[int]
:rtype: List[str]
"""
range_list = []
for i in range(len(nums)):
if i > 0 and nums[i - 1] + 1 == nums[i]:
range_list[-1][1] = nums[i]
else:
range_list.append([nums[i], nums[i]])
str_list = [str(range_list[i][0]) + ("->" + str(range_list[i][1]) if range_list[i][0] != range_list[i][1] else "") for i in range(len(range_list))]
return str_list
|
class Solution(object):
def summary_ranges(self, nums):
"""
:type nums: List[int]
:rtype: List[str]
"""
range_list = []
for i in range(len(nums)):
if i > 0 and nums[i - 1] + 1 == nums[i]:
range_list[-1][1] = nums[i]
else:
range_list.append([nums[i], nums[i]])
str_list = [str(range_list[i][0]) + ('->' + str(range_list[i][1]) if range_list[i][0] != range_list[i][1] else '') for i in range(len(range_list))]
return str_list
|
class Config:
"""
General configuration parent class
"""
pass
api_key = 'a493e30f11b147d0ba67b15ca60c5e4c'
SECRET_KEY = '1234567890'
class ProdConfig(Config):
"""
Production
"""
pass
class DevConfig(Config):
"""
development
"""
DEBUG = True
|
class Config:
"""
General configuration parent class
"""
pass
api_key = 'a493e30f11b147d0ba67b15ca60c5e4c'
secret_key = '1234567890'
class Prodconfig(Config):
"""
Production
"""
pass
class Devconfig(Config):
"""
development
"""
debug = True
|
""" Technically, a every problem is a program; but not every program is a
problem.
This distinction only really matters if we introduce nodes for For loops
and whatnot.
Then the problem has 'program-like' constructs.
"""
|
""" Technically, a every problem is a program; but not every program is a
problem.
This distinction only really matters if we introduce nodes for For loops
and whatnot.
Then the problem has 'program-like' constructs.
"""
|
"""
taskmaster.example
~~~~~~~~~~~~~~~~~~
:copyright: (c) 2010 DISQUS.
:license: Apache License 2.0, see LICENSE for more details.
"""
def get_jobs(last=0):
# last_job would be sent if state was resumed
# from a previous run
for i in xrange(last, 20000):
yield i
def handle_job(i):
pass
# print "Got %r!" % i
|
"""
taskmaster.example
~~~~~~~~~~~~~~~~~~
:copyright: (c) 2010 DISQUS.
:license: Apache License 2.0, see LICENSE for more details.
"""
def get_jobs(last=0):
for i in xrange(last, 20000):
yield i
def handle_job(i):
pass
|
#
# PySNMP MIB module JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB
# Produced by pysmi-0.3.4 at Wed May 1 14:00:25 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)
#
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsIntersection, ValueSizeConstraint, SingleValueConstraint, ValueRangeConstraint, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ValueSizeConstraint", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsUnion")
InetAddressPrefixLength, InetPortNumber, InetAddress, InetAddressType = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddressPrefixLength", "InetPortNumber", "InetAddress", "InetAddressType")
Ipv6AddressIfIdentifier, Ipv6AddressPrefix, Ipv6Address = mibBuilder.importSymbols("IPV6-TC", "Ipv6AddressIfIdentifier", "Ipv6AddressPrefix", "Ipv6Address")
jnxMobileGatewaySgw, = mibBuilder.importSymbols("JUNIPER-MBG-SMI", "jnxMobileGatewaySgw")
EnabledStatus, = mibBuilder.importSymbols("JUNIPER-MIMSTP-MIB", "EnabledStatus")
jnxMbgGwName, jnxMbgGwIndex = mibBuilder.importSymbols("JUNIPER-MOBILE-GATEWAYS", "jnxMbgGwName", "jnxMbgGwIndex")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
ModuleIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, Counter32, Counter64, Bits, TimeTicks, Integer32, iso, ObjectIdentity, MibIdentifier, Unsigned32, Gauge32, IpAddress, NotificationType = mibBuilder.importSymbols("SNMPv2-SMI", "ModuleIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Counter32", "Counter64", "Bits", "TimeTicks", "Integer32", "iso", "ObjectIdentity", "MibIdentifier", "Unsigned32", "Gauge32", "IpAddress", "NotificationType")
TextualConvention, RowStatus, TruthValue, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "RowStatus", "TruthValue", "DisplayString")
jnxMbgSgwGtpMib = ModuleIdentity((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2))
jnxMbgSgwGtpMib.setRevisions(('2011-09-21 12:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: jnxMbgSgwGtpMib.setRevisionsDescriptions(('Initial version',))
if mibBuilder.loadTexts: jnxMbgSgwGtpMib.setLastUpdated('201109211200Z')
if mibBuilder.loadTexts: jnxMbgSgwGtpMib.setOrganization('Juniper Networks, Inc.')
if mibBuilder.loadTexts: jnxMbgSgwGtpMib.setContactInfo('Juniper Technical Assistance Center Juniper Networks, Inc. 1194 N. Mathilda Avenue Sunnyvale, CA 94089 E-mail: support@juniper.net')
if mibBuilder.loadTexts: jnxMbgSgwGtpMib.setDescription('This module defines some sample objects pertaining to GTP protocol.')
jnxMbgSgwGtpNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 0))
jnxMbgSgwGtpObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1))
jnxMbgSgwGtpCGlbStatsTable = MibTable((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2), )
if mibBuilder.loadTexts: jnxMbgSgwGtpCGlbStatsTable.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpCGlbStatsTable.setDescription('Each entry corresponds to a gateway level GTP Control statistic.')
jnxMbgSgwGtpGlbStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1), ).setIndexNames((0, "JUNIPER-MOBILE-GATEWAYS", "jnxMbgGwIndex"))
if mibBuilder.loadTexts: jnxMbgSgwGtpGlbStatsEntry.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpGlbStatsEntry.setDescription('A specification of the GTP gateway level control Statistics.')
jnxMbgSgwRxPacketsDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 1), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwRxPacketsDropped.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwRxPacketsDropped.setDescription('Number of Received Packets Dropped.')
jnxMbgSgwPacketAllocFail = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 2), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPacketAllocFail.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPacketAllocFail.setDescription('Number of Packet allocation failures.')
jnxMbgSgwPacketSendFail = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPacketSendFail.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPacketSendFail.setDescription('Number of Packet Send failures.')
jnxMbgSgwIPVerErrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 4), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIPVerErrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIPVerErrRx.setDescription('Number of IP Version Error Packets Received.')
jnxMbgSgwIPProtoErrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 5), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIPProtoErrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIPProtoErrRx.setDescription('Number of IP protocol Error packets Received.')
jnxMbgSgwGTPPortErrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 6), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGTPPortErrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGTPPortErrRx.setDescription('Number of Port Error Packets Received.')
jnxMbgSgwGTPUnknVerRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 7), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGTPUnknVerRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGTPUnknVerRx.setDescription('Number of Unknown Version Packets Received.')
jnxMbgSgwPcktLenErrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 8), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPcktLenErrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPcktLenErrRx.setDescription('Number of Packet Length Error Packets Received.')
jnxMbgSgwUnknMsgRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 9), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwUnknMsgRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwUnknMsgRx.setDescription('Number of Unknown Messages Received.')
jnxMbgSgwProtocolErrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 10), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwProtocolErrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwProtocolErrRx.setDescription('Number of GTPv2 Protocol Errors Received.')
jnxMbgSgwUnSupportedMsgRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 11), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwUnSupportedMsgRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwUnSupportedMsgRx.setDescription('Number of GTPv2 Unsupported Messages received.')
jnxMbgSgwT3RespTmrExpRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 12), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwT3RespTmrExpRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwT3RespTmrExpRx.setDescription('Number of GTP V2 T3 timer expiries Received.')
jnxMbgSgwV2NumMsgRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 13), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwV2NumMsgRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwV2NumMsgRx.setDescription('Number of GTPv2 messages received.')
jnxMbgSgwV2NumMsgTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 14), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwV2NumMsgTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwV2NumMsgTx.setDescription('Number of V2 messages sent.')
jnxMbgSgwV2NumBytesRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 15), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwV2NumBytesRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwV2NumBytesRx.setDescription('Number of GTPv2 bytes received.')
jnxMbgSgwV2NumBytesTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 16), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwV2NumBytesTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwV2NumBytesTx.setDescription('Number of V2 bytes sent.')
jnxMbgSgwV2EchoReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 19), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwV2EchoReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwV2EchoReqRx.setDescription('Number of GTP V2 Echo Request received.')
jnxMbgSgwV2EchoReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 20), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwV2EchoReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwV2EchoReqTx.setDescription('Number of GTP V2 Echo Request Sent.')
jnxMbgSgwV2EchoRespRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 21), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwV2EchoRespRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwV2EchoRespRx.setDescription('Number of GTP V2 Echo Response received.')
jnxMbgSgwV2EchoRespTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 22), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwV2EchoRespTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwV2EchoRespTx.setDescription('Number of GTP V2 Echo Response Sent.')
jnxMbgSgwV2VerNotSupRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 23), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwV2VerNotSupRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwV2VerNotSupRx.setDescription('Number of GTP V2 Version Not supported messages received')
jnxMbgSgwV2VerNotSupTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 24), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwV2VerNotSupTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwV2VerNotSupTx.setDescription('Number of GTP V2 version not supported messages sent.')
jnxMbgSgwCreateSessReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 25), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwCreateSessReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwCreateSessReqRx.setDescription('Number of GTP V2 Create Session Requests received.')
jnxMbgSgwCreateSessReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 26), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwCreateSessReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwCreateSessReqTx.setDescription('Number of GTP V2 Create Session Requests Sent.')
jnxMbgSgwCreateSessRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 27), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwCreateSessRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwCreateSessRspRx.setDescription('Number of GTP V2 Create Session Responses received.')
jnxMbgSgwCreateSessRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 28), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwCreateSessRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwCreateSessRspTx.setDescription('Number of GTP V2 Create Session Responses Sent.')
jnxMbgSgwModBrReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 29), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwModBrReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwModBrReqRx.setDescription('Number of GTP V2 Modify Bearer Requests received.')
jnxMbgSgwModBrReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 30), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwModBrReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwModBrReqTx.setDescription('Number of GTP V2 Modify Bearer Requests Sent.')
jnxMbgSgwModBrRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 31), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwModBrRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwModBrRspRx.setDescription('Number of GTP V2 Modify Bearer Responses received.')
jnxMbgSgwModBrRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 32), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwModBrRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwModBrRspTx.setDescription('Number of GTP V2 Modify Bearer Responses Sent.')
jnxMbgSgwDelSessReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 33), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDelSessReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDelSessReqRx.setDescription('Number of GTP V2 Delete Session Requests received.')
jnxMbgSgwDelSessReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 34), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDelSessReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDelSessReqTx.setDescription('Number of GTP V2 Delete Session Requests Sent.')
jnxMbgSgwDelSessRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 35), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDelSessRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDelSessRspRx.setDescription('Number of GTP V2 Delete Session Responses received.')
jnxMbgSgwDelSessRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 36), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDelSessRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDelSessRspTx.setDescription('Number of GTP V2 Delete Session Responses Sent.')
jnxMbgSgwCrtBrReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 37), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwCrtBrReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwCrtBrReqRx.setDescription('Number of GTP V2 Create Bearer Requests received.')
jnxMbgSgwCrtBrReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 38), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwCrtBrReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwCrtBrReqTx.setDescription('Number of GTP V2 Create Bearer Requests Sent.')
jnxMbgSgwCrtBrRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 39), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwCrtBrRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwCrtBrRspRx.setDescription('Number of GTP V2 Create Bearer Response received.')
jnxMbgSgwCrtBrRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 40), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwCrtBrRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwCrtBrRspTx.setDescription('Number of GTP V2 Create Bearer Response Sent.')
jnxMbgSgwUpdBrReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 41), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwUpdBrReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwUpdBrReqRx.setDescription('Number of GTP V2 Update Bearer Request received.')
jnxMbgSgwUpdBrReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 42), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwUpdBrReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwUpdBrReqTx.setDescription('Number of GTP V2 Update Bearer Request Sent.')
jnxMbgSgwUpdBrRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 43), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwUpdBrRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwUpdBrRspRx.setDescription('Number of GTP V2 Update Bearer Response received.')
jnxMbgSgwUpdBrRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 44), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwUpdBrRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwUpdBrRspTx.setDescription('Number of GTP V2 Update Bearer Response Sent.')
jnxMbgSgwDelBrReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 45), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDelBrReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDelBrReqRx.setDescription('Number of GTP V2 Delete Bearer Request received.')
jnxMbgSgwDelBrReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 46), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDelBrReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDelBrReqTx.setDescription('Number of GTP V2 Delete Bearer Request Sent.')
jnxMbgSgwDelBrRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 47), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDelBrRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDelBrRspRx.setDescription('Number of GTP V2 Delete Bearer Response received.')
jnxMbgSgwDelBrRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 48), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDelBrRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDelBrRspTx.setDescription('Number of GTP V2 Delete Bearer Response Sent.')
jnxMbgSgwDelConnSetReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 49), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDelConnSetReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDelConnSetReqRx.setDescription('Number of GTP V2 Delete PDN connection set Request received.')
jnxMbgSgwDelConnSetReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 50), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDelConnSetReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDelConnSetReqTx.setDescription('Number of GTP V2 Delete PDN connection set Request Sent.')
jnxMbgSgwDelConnSetRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 51), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDelConnSetRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDelConnSetRspRx.setDescription('Number of GTP V2 Delete PDN connection set Response received.')
jnxMbgSgwDelConnSetRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 52), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDelConnSetRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDelConnSetRspTx.setDescription('Number of GTP V2 Delete PDN connection set Response Sent.')
jnxMbgSgwUpdConnSetReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 53), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwUpdConnSetReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwUpdConnSetReqRx.setDescription('Number of GTP V2 Update Connection set Request received.')
jnxMbgSgwUpdConnSetReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 54), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwUpdConnSetReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwUpdConnSetReqTx.setDescription('Number of GTP V2 Update Connection set Request Sent.')
jnxMbgSgwUpdConnSetRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 55), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwUpdConnSetRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwUpdConnSetRspRx.setDescription('Number of GTP V2 Update Connection set Response received.')
jnxMbgSgwUpdConnSetRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 56), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwUpdConnSetRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwUpdConnSetRspTx.setDescription('Number of GTP V2 Update Connection set Response Sent.')
jnxMbgSgwModBrCmdRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 57), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwModBrCmdRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwModBrCmdRx.setDescription('Number of GTP V2 Modify Bearer Command received.')
jnxMbgSgwModBrCmdTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 58), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwModBrCmdTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwModBrCmdTx.setDescription('Number of GTP V2 Modify Bearer Command Sent.')
jnxMbgSgwModBrFlrIndRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 59), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwModBrFlrIndRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwModBrFlrIndRx.setDescription('Number of GTP V2 Modify Bearer Failure received.')
jnxMbgSgwModBrFlrIndTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 60), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwModBrFlrIndTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwModBrFlrIndTx.setDescription('Number of GTP V2 Modify Bearer Failure Sent.')
jnxMbgSgwDelBrCmdRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 61), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDelBrCmdRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDelBrCmdRx.setDescription('Number of GTP V2 Delete Bearer Command received.')
jnxMbgSgwDelBrCmdTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 62), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDelBrCmdTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDelBrCmdTx.setDescription('Number of GTP V2 Delete Bearer Command Sent.')
jnxMbgSgwDelBrFlrIndRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 63), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDelBrFlrIndRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDelBrFlrIndRx.setDescription('Number of GTP V2 Delete Bearer Failure received.')
jnxMbgSgwDelBrFlrIndTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 64), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDelBrFlrIndTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDelBrFlrIndTx.setDescription('Number of GTP V2 Delete Bearer Failure Sent.')
jnxMbgSgwBrResCmdRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 65), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwBrResCmdRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwBrResCmdRx.setDescription('Number of GTP V2 Bearer Response Command received.')
jnxMbgSgwBrResCmdTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 66), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwBrResCmdTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwBrResCmdTx.setDescription('Number of GTP V2 Bearer Response Command Sent.')
jnxMbgSgwBrResFlrIndRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 67), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwBrResFlrIndRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwBrResFlrIndRx.setDescription('Number of GTP V2 Bearer Resource Failure received.')
jnxMbgSgwBrResFlrIndTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 68), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwBrResFlrIndTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwBrResFlrIndTx.setDescription('Number of GTP V2 Bearer Resource Failure Sent.')
jnxMbgSgwRelAcsBrReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 69), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwRelAcsBrReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwRelAcsBrReqRx.setDescription('Number of GTP V2 Release Access Bearer Requests received.')
jnxMbgSgwRelAcsBrReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 70), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwRelAcsBrReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwRelAcsBrReqTx.setDescription('Number of GTP V2 Release Access Bearer Requests sent.')
jnxMbgSgwRelAcsBrRespRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 71), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwRelAcsBrRespRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwRelAcsBrRespRx.setDescription('Number of GTP V2 Release Access Bearer Response received.')
jnxMbgSgwRelAcsBrRespTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 72), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwRelAcsBrRespTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwRelAcsBrRespTx.setDescription('Number of GTP V2 Release Access Bearer Response sent.')
jnxMbgSgwCrIndTunReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 73), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwCrIndTunReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwCrIndTunReqRx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Request Received')
jnxMbgSgwCrIndTunReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 74), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwCrIndTunReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwCrIndTunReqTx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Request sent')
jnxMbgSgwCrIndTunRespRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 75), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwCrIndTunRespRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwCrIndTunRespRx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Response Received')
jnxMbgSgwCrIndTunRespTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 76), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwCrIndTunRespTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwCrIndTunRespTx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Response sent')
jnxMbgSgwDelIndTunReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 77), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDelIndTunReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDelIndTunReqRx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Request Received')
jnxMbgSgwDelIndTunReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 78), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDelIndTunReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDelIndTunReqTx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Request sent.')
jnxMbgSgwDelIndTunRespRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 79), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDelIndTunRespRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDelIndTunRespRx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Response Received')
jnxMbgSgwDelIndTunRespTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 80), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDelIndTunRespTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDelIndTunRespTx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Response sent.')
jnxMbgSgwDlDataNotifRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 81), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDlDataNotifRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDlDataNotifRx.setDescription('Number of GTP V2 Downlink Data Notify received.')
jnxMbgSgwDlDataNotifTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 82), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDlDataNotifTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDlDataNotifTx.setDescription('Number of GTP V2 Downlink Data Notify Sent.')
jnxMbgSgwDlDataAckRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 83), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDlDataAckRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDlDataAckRx.setDescription('Number of GTP V2 Downlink Data Notify Acknowledgement received.')
jnxMbgSgwDlDataAckTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 84), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDlDataAckTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDlDataAckTx.setDescription('Number of GTP V2 Downlink Data Notify Acknowledgement Sent.')
jnxMbgSgwDlDataNotiFlrIndRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 85), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDlDataNotiFlrIndRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDlDataNotiFlrIndRx.setDescription('Number of GTP V2 Downlink Data Notification fail received.')
jnxMbgSgwDlDataNotiFlrIndTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 86), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwDlDataNotiFlrIndTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwDlDataNotiFlrIndTx.setDescription('Number of GTP V2 Downlink Data Notification fail Sent.')
jnxMbgSgwStopPagingIndRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 87), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwStopPagingIndRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwStopPagingIndRx.setDescription('Number of GTP V2 Number of Stop Paging Indication Messages Received.')
jnxMbgSgwStopPagingIndTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 88), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwStopPagingIndTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwStopPagingIndTx.setDescription('Number of GTP V2 Number of Stop Paging Indicaton messages sent')
jnxMbgSgwGtpV2ICsPageRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 89), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsPageRx.setStatus('obsolete')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsPageRx.setDescription('Number of GTPV2 packets received with cause Page.')
jnxMbgSgwGtpV2ICsPageTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 90), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsPageTx.setStatus('obsolete')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsPageTx.setDescription('Number of GTP packets sent with cause Page.')
jnxMbgSgwGtpV2ICsReqAcceptRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 91), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsReqAcceptRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsReqAcceptRx.setDescription('Number of GTPV2 packets received with cause Request Accept.')
jnxMbgSgwGtpV2ICsReqAcceptTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 92), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsReqAcceptTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsReqAcceptTx.setDescription('Number of GTP packets sent with cause Request Accept.')
jnxMbgSgwGtpV2ICsAcceptPartRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 93), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsAcceptPartRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsAcceptPartRx.setDescription('Number of GTPV2 packets received with cause Accept Partial.')
jnxMbgSgwGtpV2ICsAcceptPartTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 94), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsAcceptPartTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsAcceptPartTx.setDescription('Number of GTP packets sent with cause Accept Partial.')
jnxMbgSgwGtpV2ICsNewPTNPrefRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 95), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsNewPTNPrefRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsNewPTNPrefRx.setDescription('Number of GTPV2 packets received with cause New PDN type due to Network Preference.')
jnxMbgSgwGtpV2ICsNewPTNPrefTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 96), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsNewPTNPrefTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsNewPTNPrefTx.setDescription('Number of GTP packets sent with cause New PDN type due to Network Preference')
jnxMbgSgwGtpV2ICsNewPTSIAdbrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 97), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsNewPTSIAdbrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsNewPTSIAdbrRx.setDescription('Number of GTPV2 packets received with cause New PDN type due to Single Address Bearer.')
jnxMbgSgwGtpV2ICsNewPTSIAdbrTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 98), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsNewPTSIAdbrTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsNewPTSIAdbrTx.setDescription('Number of GTP packets sent with cause New PDN type due to Single Address Bearer.')
jnxMbgSgwGtpV2ICsCtxNotFndRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 99), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsCtxNotFndRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsCtxNotFndRx.setDescription('Number of GTPV2 packets received with cause Context not found.')
jnxMbgSgwGtpV2ICsCtxNotFndTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 100), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsCtxNotFndTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsCtxNotFndTx.setDescription('Number of GTP packets sent with cause Context not found.')
jnxMbgSgwGtpV2ICsInvMsgFmtRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 101), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsInvMsgFmtRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsInvMsgFmtRx.setDescription('Number of GTPV2 packets received with cause Invalid Message Format.')
jnxMbgSgwGtpV2ICsInvMsgFmtTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 102), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsInvMsgFmtTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsInvMsgFmtTx.setDescription('Number of GTP packets sent with cause Invalid Message Format.')
jnxMbgSgwGtpV2ICsVerNotSuppRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 103), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsVerNotSuppRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsVerNotSuppRx.setDescription('Number of GTPV2 packets received with cause Version not Supported.')
jnxMbgSgwGtpV2ICsVerNotSuppTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 104), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsVerNotSuppTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsVerNotSuppTx.setDescription('Number of GTP packets sent with cause Version not Supported.')
jnxMbgSgwGtpV2ICsInvLenRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 105), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsInvLenRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsInvLenRx.setDescription('Number of GTPV2 packets received with cause Invalid Length.')
jnxMbgSgwGtpV2ICsInvLenTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 106), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsInvLenTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsInvLenTx.setDescription('Number of GTP packets sent with cause Invalid Length.')
jnxMbgSgwGtpV2ICsServNotSuppRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 107), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsServNotSuppRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsServNotSuppRx.setDescription('Number of GTPV2 packets received with cause Service Not supported.')
jnxMbgSgwGtpV2ICsServNotSuppTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 108), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsServNotSuppTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsServNotSuppTx.setDescription('Number of GTP packets sent with cause Service Not supported.')
jnxMbgSgwGtpV2ICsManIEIncorrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 109), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsManIEIncorrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsManIEIncorrRx.setDescription('Number of GTPV2 packets received with cause Mandatory IE incorrect.')
jnxMbgSgwGtpV2ICsManIEIncorrTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 110), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsManIEIncorrTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsManIEIncorrTx.setDescription('Number of GTP packets sent with cause Mandatory IE incorrect.')
jnxMbgSgwGtpV2ICsManIEMissRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 111), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsManIEMissRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsManIEMissRx.setDescription('Number of GTPV2 packets received with cause Mandatory IE Missing.')
jnxMbgSgwGtpV2ICsManIEMissTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 112), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsManIEMissTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsManIEMissTx.setDescription('Number of GTP packets sent with cause Mandatory IE Missing.')
jnxMbgSgwGtpV2ICsOptIEIncorrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 113), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsOptIEIncorrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsOptIEIncorrRx.setDescription('Number of GTPV2 packets received with cause Optional IE Incorrect.')
jnxMbgSgwGtpV2ICsOptIEIncorrTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 114), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsOptIEIncorrTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsOptIEIncorrTx.setDescription('Number of GTP packets sent with cause Optional IE Incorrect.')
jnxMbgSgwGtpV2ICsSysFailRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 115), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsSysFailRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsSysFailRx.setDescription('Number of GTPV2 packets received with cause System Failure.')
jnxMbgSgwGtpV2ICsSysFailTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 116), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsSysFailTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsSysFailTx.setDescription('Number of GTP packets sent with cause System Failure.')
jnxMbgSgwGtpV2ICsNoResRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 117), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsNoResRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsNoResRx.setDescription('Number of GTPV2 packets received with cause No Resource.')
jnxMbgSgwGtpV2ICsNoResTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 118), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsNoResTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsNoResTx.setDescription('Number of GTP packets sent with cause No Resource.')
jnxMbgSgwGtpV2ICsTFTSMANTErRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 119), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsTFTSMANTErRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsTFTSMANTErRx.setDescription('Number of GTPV2 packets received with cause TFT Symantic Error.')
jnxMbgSgwGtpV2ICsTFTSMANTErTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 120), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsTFTSMANTErTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsTFTSMANTErTx.setDescription('Number of GTP packets sent with cause TFT Symantic Error.')
jnxMbgSgwGtpV2ICsTFTSysErrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 121), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsTFTSysErrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsTFTSysErrRx.setDescription('Number of GTPV2 packets received with cause TFT System Error.')
jnxMbgSgwGtpV2ICsTFTSysErrTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 122), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsTFTSysErrTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsTFTSysErrTx.setDescription('Number of GTP packets sent with cause TFT System Error.')
jnxMbgSgwGtpV2ICsPkFltManErrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 123), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsPkFltManErrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsPkFltManErrRx.setDescription('Number of GTPV2 packets received with cause Packet Filter Symantic Error.')
jnxMbgSgwGtpV2ICsPkFltManErrTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 124), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsPkFltManErrTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsPkFltManErrTx.setDescription('Number of GTP packets sent with cause Packet Filter Symantic Error.')
jnxMbgSgwGtpV2ICsPkFltSynErrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 125), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsPkFltSynErrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsPkFltSynErrRx.setDescription('Number of GTPV2 packets received with cause Packet Filter Syntax Error.')
jnxMbgSgwGtpV2ICsPkFltSynErrTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 126), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsPkFltSynErrTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsPkFltSynErrTx.setDescription('Number of GTP packets sent with cause Packet Filter Syntax Error.')
jnxMbgSgwGtpV2ICsMisUnknAPNRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 127), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsMisUnknAPNRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsMisUnknAPNRx.setDescription('Number of GTPV2 packets received with cause Unknown APN.')
jnxMbgSgwGtpV2ICsMisUnknAPNTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 128), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsMisUnknAPNTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsMisUnknAPNTx.setDescription('Number of GTP packets sent with cause Unknown APN.')
jnxMbgSgwGtpV2ICsUnexpRptIERx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 129), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUnexpRptIERx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUnexpRptIERx.setDescription('Number of GTPV2 packets received with cause Unexpected Repeated IE.')
jnxMbgSgwGtpV2ICsUnexpRptIETx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 130), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUnexpRptIETx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUnexpRptIETx.setDescription('Number of GTP packets sent with cause Unexpected Repeated IE.')
jnxMbgSgwGtpV2ICsGREKeyNtFdRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 131), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsGREKeyNtFdRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsGREKeyNtFdRx.setDescription('Number of GTPV2 packets received with cause GRE Key Not Found.')
jnxMbgSgwGtpV2ICsGREKeyNtFdTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 132), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsGREKeyNtFdTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsGREKeyNtFdTx.setDescription('Number of GTP packets sent with cause GRE Key Not Found.')
jnxMbgSgwGtpV2ICsRelocFailRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 133), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsRelocFailRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsRelocFailRx.setDescription('Number of GTPV2 packets received with cause Relocation Failed.')
jnxMbgSgwGtpV2ICsRelocFailTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 134), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsRelocFailTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsRelocFailTx.setDescription('Number of GTP packets sent with cause Relocation Failed.')
jnxMbgSgwGtpV2ICsDeniedINRatRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 135), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsDeniedINRatRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsDeniedINRatRx.setDescription('Number of GTPV2 packets received with cause Denied in RAT.')
jnxMbgSgwGtpV2ICsDeniedINRatTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 136), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsDeniedINRatTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsDeniedINRatTx.setDescription('Number of GTP packets sent with cause Denied in RAT.')
jnxMbgSgwGtpV2ICsPTNotSuppRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 137), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsPTNotSuppRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsPTNotSuppRx.setDescription('Number of GTPV2 packets received with cause PDN Type Not Supported.')
jnxMbgSgwGtpV2ICsPTNotSuppTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 138), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsPTNotSuppTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsPTNotSuppTx.setDescription('Number of GTP packets sent with cause PDN Type Not Supported.')
jnxMbgSgwGtpV2ICsAllDynAdOccRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 139), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsAllDynAdOccRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsAllDynAdOccRx.setDescription('Number of GTPV2 packets received with cause Allocated Dynamic Address Occupied.')
jnxMbgSgwGtpV2ICsAllDynAdOccTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 140), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsAllDynAdOccTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsAllDynAdOccTx.setDescription('Number of GTP packets sent with cause Allocated Dynamic Address Occupied.')
jnxMbgSgwGtpV2ICsNOTFTUECTXRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 141), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsNOTFTUECTXRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsNOTFTUECTXRx.setDescription('Number of GTPV2 packets received with cause UE Context Without TFT Exists.')
jnxMbgSgwGtpV2ICsNOTFTUECTXTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 142), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsNOTFTUECTXTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsNOTFTUECTXTx.setDescription('Number of GTP packets sent with cause UE Context Without TFT Exists.')
jnxMbgSgwGtpV2ICsProtoNtSupRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 143), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsProtoNtSupRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsProtoNtSupRx.setDescription('Number of GTPV2 packets received with cause Protocol Not Supported.')
jnxMbgSgwGtpV2ICsProtoNtSupTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 144), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsProtoNtSupTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsProtoNtSupTx.setDescription('Number of GTP packets sent with cause Protocol Not Supported.')
jnxMbgSgwGtpV2ICsUENotRespRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 145), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUENotRespRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUENotRespRx.setDescription('Number of GTPV2 packets received with cause UE Not Responding.')
jnxMbgSgwGtpV2ICsUENotRespTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 146), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUENotRespTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUENotRespTx.setDescription('Number of GTP packets sent with cause UE Not Responding.')
jnxMbgSgwGtpV2ICsUERefusesRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 147), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUERefusesRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUERefusesRx.setDescription('Number of GTPV2 packets received with cause UE Refuses.')
jnxMbgSgwGtpV2ICsUERefusesTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 148), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUERefusesTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUERefusesTx.setDescription('Number of GTP packets sent with cause UE Refuses.')
jnxMbgSgwGtpV2ICsServDeniedRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 149), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsServDeniedRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsServDeniedRx.setDescription('Number of GTPV2 packets received with cause Service Denied.')
jnxMbgSgwGtpV2ICsServDeniedTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 150), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsServDeniedTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsServDeniedTx.setDescription('Number of GTP packets sent with cause Service Denied.')
jnxMbgSgwGtpV2ICsUnabPageUERx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 151), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUnabPageUERx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUnabPageUERx.setDescription('Number of GTPV2 packets received with cause Unable to Page UE.')
jnxMbgSgwGtpV2ICsUnabPageUETx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 152), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUnabPageUETx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUnabPageUETx.setDescription('Number of GTP packets sent with cause Unable to Page UE.')
jnxMbgSgwGtpV2ICsNoMemRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 153), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsNoMemRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsNoMemRx.setDescription('Number of GTPV2 packets received with cause No Memory.')
jnxMbgSgwGtpV2ICsNoMemTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 154), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsNoMemTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsNoMemTx.setDescription('Number of GTP packets sent with cause No Memory.')
jnxMbgSgwGtpV2ICsUserAUTHFlRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 155), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUserAUTHFlRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUserAUTHFlRx.setDescription('Number of GTPV2 packets received with cause User AUTH Failed.')
jnxMbgSgwGtpV2ICsUserAUTHFlTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 156), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUserAUTHFlTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUserAUTHFlTx.setDescription('Number of GTP packets sent with cause User AUTH Failed.')
jnxMbgSgwGtpV2ICsAPNAcsDenRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 157), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsAPNAcsDenRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsAPNAcsDenRx.setDescription('Number of GTPV2 packets received with cause APN Access Denied.')
jnxMbgSgwGtpV2ICsAPNAcsDenTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 158), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsAPNAcsDenTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsAPNAcsDenTx.setDescription('Number of GTP packets sent with cause APN Access Denied.')
jnxMbgSgwGtpV2ICsReqRejRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 159), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsReqRejRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsReqRejRx.setDescription('Number of GTPV2 packets received with cause Request Rejected.')
jnxMbgSgwGtpV2ICsReqRejTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 160), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsReqRejTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsReqRejTx.setDescription('Number of GTP packets sent with cause Request Rejected.')
jnxMbgSgwGtpV2ICsPTMSISigMMRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 161), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsPTMSISigMMRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsPTMSISigMMRx.setDescription('Number of GTPV2 packets received with cause P-TMSI Signature Mismatch.')
jnxMbgSgwGtpV2ICsPTMSISigMMTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 162), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsPTMSISigMMTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsPTMSISigMMTx.setDescription('Number of GTP packets sent with cause P-TMSI Signature Mismatch')
jnxMbgSgwGtpV2ICsIMSINotKnRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 163), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsIMSINotKnRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsIMSINotKnRx.setDescription('Number of GTPV2 packets received with cause IMSI Not Known.')
jnxMbgSgwGtpV2ICsIMSINotKnTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 164), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsIMSINotKnTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsIMSINotKnTx.setDescription('Number of GTP packets sent with cause IMSI Not Known.')
jnxMbgSgwGtpV2ICsCondIEMsRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 165), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsCondIEMsRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsCondIEMsRx.setDescription('Number of GTPV2 packets received with cause Conditional IE Missing.')
jnxMbgSgwGtpV2ICsCondIEMsTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 166), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsCondIEMsTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsCondIEMsTx.setDescription('Number of GTP packets sent with cause Conditional IE Missing.')
jnxMbgSgwGtpV2ICsAPNResTIncRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 167), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsAPNResTIncRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsAPNResTIncRx.setDescription('Number of GTPV2 packets received with cause APN Restriction Type Incompatible.')
jnxMbgSgwGtpV2ICsAPNResTIncTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 168), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsAPNResTIncTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsAPNResTIncTx.setDescription('Number of GTP packets sent with cause APN Restriction Type Incompatible.')
jnxMbgSgwGtpV2ICsUnknownRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 169), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUnknownRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUnknownRx.setDescription('Number of GTPV2 packets received with cause Unknown.')
jnxMbgSgwGtpV2ICsUnknownTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 170), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUnknownTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUnknownTx.setDescription('Number of GTP packets sent with cause Unknown.')
jnxMbgSgwGtpV2ICsLclDetRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 171), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsLclDetRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsLclDetRx.setDescription('Number of GTP packets received with cause Local Detach.')
jnxMbgSgwGtpV2ICsLclDetTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 172), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsLclDetTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsLclDetTx.setDescription('Number of GTP packets sent with cause Local Detach.')
jnxMbgSgwGtpV2ICsCmpDetRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 173), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsCmpDetRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsCmpDetRx.setDescription('Number of GTP packets received with cause Complete Detach.')
jnxMbgSgwGtpV2ICsCmpDetTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 174), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsCmpDetTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsCmpDetTx.setDescription('Number of GTP packets sent with cause Complete Detach.')
jnxMbgSgwGtpV2ICsRATChgRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 175), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsRATChgRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsRATChgRx.setDescription('Number of GTP packets received with cause RAT changed from 3GPP to non 3GPP.')
jnxMbgSgwGtpV2ICsRATChgTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 176), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsRATChgTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsRATChgTx.setDescription('Number of GTP packets sent with cause RAT changed from 3GPP to non 3GPP.')
jnxMbgSgwGtpV2ICsISRDeactRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 177), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsISRDeactRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsISRDeactRx.setDescription('Number of GTP packets received with cause ISR Deactivated.')
jnxMbgSgwGtpV2ICsISRDeactTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 178), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsISRDeactTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsISRDeactTx.setDescription('Number of GTP packets sent with cause ISR Deactivated.')
jnxMbgSgwGtpV2ICsEIFRNCEnRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 179), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsEIFRNCEnRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsEIFRNCEnRx.setDescription('Number of GTP packets received with cause Error Indication from RNC eNodeB.')
jnxMbgSgwGtpV2ICsEIFRNCEnTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 180), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsEIFRNCEnTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsEIFRNCEnTx.setDescription('Number of GTP packets sent with cause Error Indication from RNC eNodeB.')
jnxMbgSgwGtpV2ICsSemErTADRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 181), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsSemErTADRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsSemErTADRx.setDescription('Number of GTP packets received with cause Semantic Error in TAD Operation.')
jnxMbgSgwGtpV2ICsSemErTADTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 182), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsSemErTADTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsSemErTADTx.setDescription('Number of GTP packets sent with cause Semantic Error in TAD Operation.')
jnxMbgSgwGtpV2ICsSynErTADRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 183), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsSynErTADRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsSynErTADRx.setDescription('Number of GTP packets received with cause Syntactic Error in TAD Operation.')
jnxMbgSgwGtpV2ICsSynErTADTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 184), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsSynErTADTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsSynErTADTx.setDescription('Number of GTP packets sent with cause Syntactic Error in TAD Operation.')
jnxMbgSgwGtpV2ICsRMValRcvRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 185), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsRMValRcvRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsRMValRcvRx.setDescription('Number of GTP packets received with cause Reserved Message Value Received.')
jnxMbgSgwGtpV2ICsRMValRcvTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 186), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsRMValRcvTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsRMValRcvTx.setDescription('Number of GTP packets sent with cause Reserved Message Value Received.')
jnxMbgSgwGtpV2ICsRPrNtRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 187), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsRPrNtRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsRPrNtRspRx.setDescription('Number of GTP packets received with cause Remote peer not responding.')
jnxMbgSgwGtpV2ICsRPrNtRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 188), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsRPrNtRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsRPrNtRspTx.setDescription('Number of GTP packets sent with cause Remote peer not responding.')
jnxMbgSgwGtpV2ICsColNWReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 189), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsColNWReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsColNWReqRx.setDescription('Number of GTP packets received with cause Collision with network initiated request.')
jnxMbgSgwGtpV2ICsColNWReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 190), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsColNWReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsColNWReqTx.setDescription('Number of GTP packets sent with cause Collision with network initiated request.')
jnxMbgSgwGtpV2ICsUnPgUESusRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 191), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUnPgUESusRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUnPgUESusRx.setDescription('Number of GTP packets received with cause Unable to page UE due to suspension.')
jnxMbgSgwGtpV2ICsUnPgUESusTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 192), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUnPgUESusTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsUnPgUESusTx.setDescription('Number of GTP packets sent with cause Unable to page UE due to suspension.')
jnxMbgSgwGtpV2ICsInvTotLenRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 193), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsInvTotLenRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsInvTotLenRx.setDescription('Number of GTP packets received with cause Invalid total len.')
jnxMbgSgwGtpV2ICsInvTotLenTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 194), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsInvTotLenTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsInvTotLenTx.setDescription('Number of GTP packets sent with cause Invalid total len.')
jnxMbgSgwGtpV2ICsDtForNtSupRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 195), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsDtForNtSupRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsDtForNtSupRx.setDescription('Number of GTP packets received with cause Data forwarding not supported.')
jnxMbgSgwGtpV2ICsDtForNtSupTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 196), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsDtForNtSupTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsDtForNtSupTx.setDescription('Number of GTP packets sent with cause Data forwarding not supported.')
jnxMbgSgwGtpV2ICsInReFRePrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 197), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsInReFRePrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsInReFRePrRx.setDescription('Number of GTP packets received with cause Invalid Reply from Remote peer.')
jnxMbgSgwGtpV2ICsInReFRePrTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 198), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsInReFRePrTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsInReFRePrTx.setDescription('Number of GTP packets sent with cause Invalid Reply from Remote peer.')
jnxMbgSgwGtpV2ICsInvPrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 199), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsInvPrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsInvPrRx.setDescription('Number of GTP packets received with cause Invalid peer.')
jnxMbgSgwGtpV2ICsInvPrTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 200), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsInvPrTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV2ICsInvPrTx.setDescription('Number of GTP packets sent with cause Invalid peer.')
jnxMbgSgwGtpV1ProtocolErrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 201), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV1ProtocolErrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV1ProtocolErrRx.setDescription('Number of GTPv1 Protocol Errors Received.')
jnxMbgSgwGtpV1UnSupMsgRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 202), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV1UnSupMsgRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV1UnSupMsgRx.setDescription('Number of GTPv1 Unsupported Messages received.')
jnxMbgSgwGtpV1T3RespTmrExpRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 203), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV1T3RespTmrExpRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV1T3RespTmrExpRx.setDescription('Number of GTP V1 T3 timer expiries Received.')
jnxMbgSgwGtpV1EndMarkerRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 204), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV1EndMarkerRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV1EndMarkerRx.setDescription('Number of GTP V1 end marker packets received.')
jnxMbgSgwGtpV1EndMarkerTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 205), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV1EndMarkerTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV1EndMarkerTx.setDescription('Number of GTP V1 end marker packets sent.')
jnxMbgSgwGtpV1EchoReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 206), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV1EchoReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV1EchoReqRx.setDescription('Number of GTP V1 echo request packets received.')
jnxMbgSgwGtpV1EchoReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 207), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV1EchoReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV1EchoReqTx.setDescription('Number of GTP V1 echo request packets sent.')
jnxMbgSgwGtpV1EchoRespRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 208), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV1EchoRespRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV1EchoRespRx.setDescription('Number of GTP V1 echo response packets received.')
jnxMbgSgwGtpV1EchoRespTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 209), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV1EchoRespTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV1EchoRespTx.setDescription('Number of GTP V1 echo response packets sent.')
jnxMbgSgwGtpV1ErrIndRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 210), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV1ErrIndRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV1ErrIndRx.setDescription('Number of GTP V1 Error Indication packets received.')
jnxMbgSgwGtpV1ErrIndTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 211), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwGtpV1ErrIndTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpV1ErrIndTx.setDescription('Number of GTP V1 Error Indication packets sent.')
jnxMbgSgwSuspNotifRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 212), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwSuspNotifRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwSuspNotifRx.setDescription('Number of GTPv2 Suspend Notification messages received.')
jnxMbgSgwSuspNotifTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 213), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwSuspNotifTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwSuspNotifTx.setDescription('Number of GTPv2 Suspend Notification messages sent.')
jnxMbgSgwSuspAckRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 214), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwSuspAckRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwSuspAckRx.setDescription('Number of GTPv2 Suspend Acknowledgement messages received.')
jnxMbgSgwSuspAckTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 215), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwSuspAckTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwSuspAckTx.setDescription('Number of GTPv2 Suspend Acknowledgement messages sent.')
jnxMbgSgwResumeNotifRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 216), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwResumeNotifRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwResumeNotifRx.setDescription('Number of GTPv2 Resume Notification messages received.')
jnxMbgSgwResumeNotifTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 217), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwResumeNotifTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwResumeNotifTx.setDescription('Number of GTPv2 Resume Notification messages sent.')
jnxMbgSgwResumeAckRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 218), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwResumeAckRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwResumeAckRx.setDescription('Number of GTPv2 Resume Acknowledgement messages received.')
jnxMbgSgwResumeAckTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 219), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwResumeAckTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwResumeAckTx.setDescription('Number of GTPv2 Resume Acknowledgement messages sent.')
jnxMbgSgwS11PiggybackMsgRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 220), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwS11PiggybackMsgRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwS11PiggybackMsgRx.setDescription('Number of GTPv2 S11 Piggyback messages received.')
jnxMbgSgwS11PiggybackMsgTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 221), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwS11PiggybackMsgTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwS11PiggybackMsgTx.setDescription('Number of GTPv2 S11 Piggyback messages sent.')
jnxMbgSgwS4PiggybackMsgRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 222), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwS4PiggybackMsgRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwS4PiggybackMsgRx.setDescription('Number of GTPv2 S4 Piggyback messages received.')
jnxMbgSgwS4PiggybackMsgTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 223), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwS4PiggybackMsgTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwS4PiggybackMsgTx.setDescription('Number of GTPv2 S4 Piggyback messages sent.')
jnxMbgSgwS5PiggybackMsgRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 224), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwS5PiggybackMsgRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwS5PiggybackMsgRx.setDescription('Number of GTPv2 S5 Piggyback messages received.')
jnxMbgSgwS5PiggybackMsgTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 225), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwS5PiggybackMsgTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwS5PiggybackMsgTx.setDescription('Number of GTPv2 S5 Piggyback messages sent.')
jnxMbgSgwGtpCPerPeerStatsTable = MibTable((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1), )
if mibBuilder.loadTexts: jnxMbgSgwGtpCPerPeerStatsTable.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpCPerPeerStatsTable.setDescription('Each entry corresponds to a GTP per peer level control statistic.')
jnxMbgSgwGtpPerPeerStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1), ).setIndexNames((0, "JUNIPER-MOBILE-GATEWAYS", "jnxMbgGwIndex"), (0, "JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", "jnxMbgSgwPPGtpRmtAddr"), (0, "JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", "jnxMbgSgwPPGtpLclAddr"), (0, "JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", "jnxMbgSgwPPGtpRtgInst"))
if mibBuilder.loadTexts: jnxMbgSgwGtpPerPeerStatsEntry.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpPerPeerStatsEntry.setDescription('A specification of the GTPC peer level Statistics.')
jnxMbgSgwPPGtpRmtAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 1), IpAddress())
if mibBuilder.loadTexts: jnxMbgSgwPPGtpRmtAddr.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpRmtAddr.setDescription('The Remote IP address of this GTP peer entry.')
jnxMbgSgwPPGtpLclAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 2), IpAddress())
if mibBuilder.loadTexts: jnxMbgSgwPPGtpLclAddr.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpLclAddr.setDescription('The Local IP address of this GTP peer entry.')
jnxMbgSgwPPGtpRtgInst = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 3), Unsigned32())
if mibBuilder.loadTexts: jnxMbgSgwPPGtpRtgInst.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpRtgInst.setDescription('The Routing Instance for this Peer.')
jnxMbgSgwPPRxPacketsDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 4), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPRxPacketsDropped.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPRxPacketsDropped.setDescription('Number of Received Packets Dropped.')
jnxMbgSgwPPPacketAllocFail = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 5), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPPacketAllocFail.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPPacketAllocFail.setDescription('Number of Packet allocation failures.')
jnxMbgSgwPPPacketSendFail = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 6), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPPacketSendFail.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPPacketSendFail.setDescription('Number of Packet Send failures.')
jnxMbgSgwPPIPVerErrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 7), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPIPVerErrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPIPVerErrRx.setDescription('Number of IP Version Error Packets Received.')
jnxMbgSgwPPIPProtoErrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 8), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPIPProtoErrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPIPProtoErrRx.setDescription('Number of IP Protocol Error packets Received.')
jnxMbgSgwPPGTPPortErrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 9), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGTPPortErrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGTPPortErrRx.setDescription('Number of Port Error Packets Received.')
jnxMbgSgwPPGTPUnknVerRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 10), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGTPUnknVerRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGTPUnknVerRx.setDescription('Number of Unknown Version Packets Received.')
jnxMbgSgwPPPcktLenErrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 11), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPPcktLenErrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPPcktLenErrRx.setDescription('Number of Packet Length Error Packets Received.')
jnxMbgSgwPPUnknMsgRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 12), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPUnknMsgRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPUnknMsgRx.setDescription('Number of Unknown Messages Received.')
jnxMbgSgwPPProtocolErrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 13), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPProtocolErrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPProtocolErrRx.setDescription('Number of GTPv2 Protocol Errors Received.')
jnxMbgSgwPPUnSupportedMsgRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 14), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPUnSupportedMsgRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPUnSupportedMsgRx.setDescription('Number of GTPv2 Unsupported Messages received.')
jnxMbgSgwPPT3RespTmrExpRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 15), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPT3RespTmrExpRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPT3RespTmrExpRx.setDescription('Number of GTP V2 T3 timer expiries Received.')
jnxMbgSgwPPV2NumMsgRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 16), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPV2NumMsgRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPV2NumMsgRx.setDescription('Number of GTPv2 messages received.')
jnxMbgSgwPPV2NumMsgTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 17), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPV2NumMsgTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPV2NumMsgTx.setDescription('Number of GTPV2 messages sent.')
jnxMbgSgwPPV2NumBytesRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 18), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPV2NumBytesRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPV2NumBytesRx.setDescription('Number of GTPv2 bytes received.')
jnxMbgSgwPPV2NumBytesTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 19), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPV2NumBytesTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPV2NumBytesTx.setDescription('Number of GTPV2 bytes sent.')
jnxMbgSgwPPV2EchoReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 20), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPV2EchoReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPV2EchoReqRx.setDescription('Number of GTP V2 Echo Request received.')
jnxMbgSgwPPV2EchoReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 21), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPV2EchoReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPV2EchoReqTx.setDescription('Number of GTP V2 Echo Request Sent.')
jnxMbgSgwPPV2EchoRespRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 22), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPV2EchoRespRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPV2EchoRespRx.setDescription('Number of GTP V2 Echo Response received.')
jnxMbgSgwPPV2EchoRespTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 23), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPV2EchoRespTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPV2EchoRespTx.setDescription('Number of GTP V2 Echo Response Sent.')
jnxMbgSgwPPV2VerNotSupRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 24), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPV2VerNotSupRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPV2VerNotSupRx.setDescription('Number of GTP V2 Version Not supported messages received')
jnxMbgSgwPPV2VerNotSupTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 25), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPV2VerNotSupTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPV2VerNotSupTx.setDescription('Number of GTP V2 Number of version not supported messages sent.')
jnxMbgSgwPPCreateSessReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 26), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPCreateSessReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPCreateSessReqRx.setDescription('Number of GTP V2 Create Session Requests received.')
jnxMbgSgwPPCreateSessReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 27), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPCreateSessReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPCreateSessReqTx.setDescription('Number of GTP V2 Create Session Requests Sent.')
jnxMbgSgwPPCreateSessRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 28), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPCreateSessRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPCreateSessRspRx.setDescription('Number of GTP V2 Create Session Responses received.')
jnxMbgSgwPPCreateSessRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 29), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPCreateSessRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPCreateSessRspTx.setDescription('Number of GTP V2 Create Session Responses Sent.')
jnxMbgSgwPPModBrReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 30), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPModBrReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPModBrReqRx.setDescription('Number of GTP V2 Modify Bearer Requests received.')
jnxMbgSgwPPModBrReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 31), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPModBrReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPModBrReqTx.setDescription('Number of GTP V2 Modify Bearer Requests Sent.')
jnxMbgSgwPPModBrRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 32), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPModBrRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPModBrRspRx.setDescription('Number of GTP V2 Modify Bearer Responses received.')
jnxMbgSgwPPModBrRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 33), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPModBrRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPModBrRspTx.setDescription('Number of GTP V2 Modify Bearer Responses Sent.')
jnxMbgSgwPPDelSessReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 34), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDelSessReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDelSessReqRx.setDescription('Number of GTP V2 Delete Session Requests received.')
jnxMbgSgwPPDelSessReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 35), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDelSessReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDelSessReqTx.setDescription('Number of GTP V2 Delete Session Requests Sent.')
jnxMbgSgwPPDelSessRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 36), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDelSessRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDelSessRspRx.setDescription('Number of GTP V2 Delete Session Responses received.')
jnxMbgSgwPPDelSessRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 37), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDelSessRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDelSessRspTx.setDescription('Number of GTP V2 Delete Session Responses Sent.')
jnxMbgSgwPPCrtBrReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 38), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPCrtBrReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPCrtBrReqRx.setDescription('Number of GTP V2 Create Bearer Requests received.')
jnxMbgSgwPPCrtBrReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 39), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPCrtBrReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPCrtBrReqTx.setDescription('Number of GTP V2 Create Bearer Requests Sent.')
jnxMbgSgwPPCrtBrRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 40), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPCrtBrRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPCrtBrRspRx.setDescription('Number of GTP V2 Create Bearer Response received.')
jnxMbgSgwPPCrtBrRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 41), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPCrtBrRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPCrtBrRspTx.setDescription('Number of GTP V2 Create Bearer Response Sent.')
jnxMbgSgwPPUpdBrReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 42), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPUpdBrReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPUpdBrReqRx.setDescription('Number of GTP V2 Update Bearer Request received.')
jnxMbgSgwPPUpdBrReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 43), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPUpdBrReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPUpdBrReqTx.setDescription('Number of GTP V2 Update Bearer Request Sent.')
jnxMbgSgwPPUpdBrRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 44), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPUpdBrRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPUpdBrRspRx.setDescription('Number of GTP V2 Update Bearer Response received.')
jnxMbgSgwPPUpdBrRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 45), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPUpdBrRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPUpdBrRspTx.setDescription('Number of GTP V2 Update Bearer Response Sent.')
jnxMbgSgwPPDelBrReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 46), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDelBrReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDelBrReqRx.setDescription('Number of GTP V2 Delete Bearer Request received.')
jnxMbgSgwPPDelBrReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 47), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDelBrReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDelBrReqTx.setDescription('Number of GTP V2 Delete Bearer Request Sent.')
jnxMbgSgwPPDelBrRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 48), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDelBrRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDelBrRspRx.setDescription('Number of GTP V2 Delete Bearer Response received.')
jnxMbgSgwPPDelBrRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 49), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDelBrRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDelBrRspTx.setDescription('Number of GTP V2 Delete Bearer Response Sent.')
jnxMbgSgwPPDelConnSetReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 50), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDelConnSetReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDelConnSetReqRx.setDescription('Number of GTP V2 Delete PDN connection set Request received.')
jnxMbgSgwPPDelConnSetReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 51), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDelConnSetReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDelConnSetReqTx.setDescription('Number of GTP V2 Delete PDN connection set Request Sent.')
jnxMbgSgwPPDelConnSetRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 52), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDelConnSetRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDelConnSetRspRx.setDescription('Number of GTP V2 Delete PDN connection set Response received.')
jnxMbgSgwPPDelConnSetRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 53), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDelConnSetRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDelConnSetRspTx.setDescription('Number of GTP V2 Delete PDN connection set Response Sent.')
jnxMbgSgwPPUpdConnSetReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 54), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPUpdConnSetReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPUpdConnSetReqRx.setDescription('Number of GTP V2 Update Connection set Request received.')
jnxMbgSgwPPUpdConnSetReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 55), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPUpdConnSetReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPUpdConnSetReqTx.setDescription('Number of GTP V2 Update Connection set Request Sent.')
jnxMbgSgwPPUpdConnSetRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 56), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPUpdConnSetRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPUpdConnSetRspRx.setDescription('Number of GTP V2 Update Connection set Response received.')
jnxMbgSgwPPUpdConnSetRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 57), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPUpdConnSetRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPUpdConnSetRspTx.setDescription('Number of GTP V2 Update Connection set Response Sent.')
jnxMbgSgwPPModBrCmdRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 58), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPModBrCmdRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPModBrCmdRx.setDescription('Number of GTP V2 Modify Bearer Command received.')
jnxMbgSgwPPModBrCmdTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 59), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPModBrCmdTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPModBrCmdTx.setDescription('Number of GTP V2 Modify Bearer Command Sent.')
jnxMbgSgwPPModBrFlrIndRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 60), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPModBrFlrIndRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPModBrFlrIndRx.setDescription('Number of GTP V2 Modify Bearer Failure received.')
jnxMbgSgwPPModBrFlrIndTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 61), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPModBrFlrIndTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPModBrFlrIndTx.setDescription('Number of GTP V2 Modify Bearer Failure Sent.')
jnxMbgSgwPPDelBrCmdRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 62), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDelBrCmdRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDelBrCmdRx.setDescription('Number of GTP V2 Delete Bearer Command received.')
jnxMbgSgwPPDelBrCmdTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 63), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDelBrCmdTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDelBrCmdTx.setDescription('Number of GTP V2 Delete Bearer Command Sent.')
jnxMbgSgwPPDelBrFlrIndRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 64), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDelBrFlrIndRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDelBrFlrIndRx.setDescription('Number of GTP V2 Delete Bearer Failure received.')
jnxMbgSgwPPDelBrFlrIndTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 65), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDelBrFlrIndTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDelBrFlrIndTx.setDescription('Number of GTP V2 Delete Bearer Failure Sent.')
jnxMbgSgwPPBrResCmdRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 66), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPBrResCmdRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPBrResCmdRx.setDescription('Number of GTP V2 Bearer Response Command received.')
jnxMbgSgwPPBrResCmdTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 67), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPBrResCmdTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPBrResCmdTx.setDescription('Number of GTP V2 Bearer Response Command Sent.')
jnxMbgSgwPPBrResFlrIndRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 68), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPBrResFlrIndRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPBrResFlrIndRx.setDescription('Number of GTP V2 Bearer Resource Failure received.')
jnxMbgSgwPPBrResFlrIndTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 69), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPBrResFlrIndTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPBrResFlrIndTx.setDescription('Number of GTP V2 Bearer Resource Failure Sent.')
jnxMbgSgwPPRelAcsBrReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 70), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPRelAcsBrReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPRelAcsBrReqRx.setDescription('Number of GTP V2 Release Access Bearer Requests received.')
jnxMbgSgwPPRelAcsBrReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 71), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPRelAcsBrReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPRelAcsBrReqTx.setDescription('Number of GTP V2 Release Access Bearer Requests sent.')
jnxMbgSgwPPRelAcsBrRespRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 72), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPRelAcsBrRespRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPRelAcsBrRespRx.setDescription('Number of GTP V2 Release Access Bearer Response received.')
jnxMbgSgwPPRelAcsBrRespTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 73), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPRelAcsBrRespTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPRelAcsBrRespTx.setDescription('Number of GTP V2 Release Access Bearer Response sent.')
jnxMbgSgwPPCrIndTunReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 74), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPCrIndTunReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPCrIndTunReqRx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Request Received')
jnxMbgSgwPPCrIndTunReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 75), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPCrIndTunReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPCrIndTunReqTx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Request sent')
jnxMbgSgwPPCrIndTunRespRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 76), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPCrIndTunRespRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPCrIndTunRespRx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Response Received')
jnxMbgSgwPPCrIndTunRespTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 77), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPCrIndTunRespTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPCrIndTunRespTx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Response sent')
jnxMbgSgwPPDelIndTunReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 78), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDelIndTunReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDelIndTunReqRx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Request Received')
jnxMbgSgwPPDelIndTunReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 79), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDelIndTunReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDelIndTunReqTx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Request sent.')
jnxMbgSgwPPDelIndTunRespRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 80), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDelIndTunRespRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDelIndTunRespRx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Response Received')
jnxMbgSgwPPDelIndTunRespTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 81), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDelIndTunRespTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDelIndTunRespTx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Response sent.')
jnxMbgSgwPPDlDataNotifRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 82), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDlDataNotifRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDlDataNotifRx.setDescription('Number of GTP V2 Downlink Data Notify received.')
jnxMbgSgwPPDlDataNotifTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 83), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDlDataNotifTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDlDataNotifTx.setDescription('Number of GTP V2 Downlink Data Notify Sent.')
jnxMbgSgwPPDlDataAckRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 84), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDlDataAckRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDlDataAckRx.setDescription('Number of GTP V2 Downlink Data Notify Acknowledgement received.')
jnxMbgSgwPPDlDataAckTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 85), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDlDataAckTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDlDataAckTx.setDescription('Number of GTP V2 Downlink Data Notify Acknowledgement Sent.')
jnxMbgSgwPPDlDataNotiFlrIndRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 86), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDlDataNotiFlrIndRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDlDataNotiFlrIndRx.setDescription('Number of GTP V2 Downlink Data Notification fail received.')
jnxMbgSgwPPDlDataNotiFlrIndTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 87), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPDlDataNotiFlrIndTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPDlDataNotiFlrIndTx.setDescription('Number of GTP V2 Downlink Data Notification fail Sent.')
jnxMbgSgwPPStopPagingIndRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 88), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPStopPagingIndRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPStopPagingIndRx.setDescription('Number of GTP V2 Number of Stop Paging Indication Messages Received.')
jnxMbgSgwPPStopPagingIndTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 89), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPStopPagingIndTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPStopPagingIndTx.setDescription('Number of GTP V2 Number of Stop Paging Indicaton messages sent')
jnxMbgSgwPPGtpV2ICsPageRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 90), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsPageRx.setStatus('obsolete')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsPageRx.setDescription('Number of GTPV2 packets received with cause Page.')
jnxMbgSgwPPGtpV2ICsPageTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 91), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsPageTx.setStatus('obsolete')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsPageTx.setDescription('Number of GTP packets sent with cause Page.')
jnxMbgSgwPPGtpV2ICsReqAcceptRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 92), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsReqAcceptRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsReqAcceptRx.setDescription('Number of GTPV2 packets received with cause Request Accept.')
jnxMbgSgwPPGtpV2ICsReqAcceptTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 93), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsReqAcceptTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsReqAcceptTx.setDescription('Number of GTP packets sent with cause Request Accept.')
jnxMbgSgwPPGtpV2ICsAcceptPartRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 94), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsAcceptPartRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsAcceptPartRx.setDescription('Number of GTPV2 packets received with cause Accept Partial.')
jnxMbgSgwPPGtpV2ICsAcceptPartTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 95), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsAcceptPartTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsAcceptPartTx.setDescription('Number of GTP packets sent with cause Accept Partial.')
jnxMbgSgwPPGtpV2ICsNewPTNPrefRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 96), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsNewPTNPrefRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsNewPTNPrefRx.setDescription('Number of GTPV2 packets received with cause New PDN type due to Network Preference.')
jnxMbgSgwPPGtpV2ICsNewPTNPrefTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 97), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsNewPTNPrefTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsNewPTNPrefTx.setDescription('Number of GTP packets sent with cause New PDN type due to Network Preference.')
jnxMbgSgwPPGtpV2ICsNPTSIAdbrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 98), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsNPTSIAdbrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsNPTSIAdbrRx.setDescription('Number of GTPV2 packets received with cause New PDN type due to Single Address Bearer.')
jnxMbgSgwPPGtpV2ICsNPTSIAdbrTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 99), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsNPTSIAdbrTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsNPTSIAdbrTx.setDescription('Number of GTP packets sent with cause New PDN type due to Single Address Bearer.')
jnxMbgSgwPPGtpV2ICsCtxNotFndRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 100), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsCtxNotFndRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsCtxNotFndRx.setDescription('Number of GTPV2 packets received with cause Context not found.')
jnxMbgSgwPPGtpV2ICsCtxNotFndTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 101), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsCtxNotFndTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsCtxNotFndTx.setDescription('Number of GTP packets sent with cause Context not found.')
jnxMbgSgwPPGtpV2ICsInvMsgFmtRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 102), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsInvMsgFmtRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsInvMsgFmtRx.setDescription('Number of GTPV2 packets received with cause Invalid Message Format.')
jnxMbgSgwPPGtpV2ICsInvMsgFmtTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 103), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsInvMsgFmtTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsInvMsgFmtTx.setDescription('Number of GTP packets sent with cause Invalid Message Format.')
jnxMbgSgwPPGtpV2ICsVerNotSuppRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 104), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsVerNotSuppRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsVerNotSuppRx.setDescription('Number of GTPV2 packets received with cause Version not Supported.')
jnxMbgSgwPPGtpV2ICsVerNotSuppTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 105), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsVerNotSuppTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsVerNotSuppTx.setDescription('Number of GTP packets sent with cause Version not Supported.')
jnxMbgSgwPPGtpV2ICsInvLenRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 106), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsInvLenRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsInvLenRx.setDescription('Number of GTPV2 packets received with cause Invalid Length.')
jnxMbgSgwPPGtpV2ICsInvLenTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 107), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsInvLenTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsInvLenTx.setDescription('Number of GTP packets sent with cause Invalid Length.')
jnxMbgSgwPPGtpV2ICsServNotSupRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 108), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsServNotSupRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsServNotSupRx.setDescription('Number of GTPV2 packets received with cause Service Not supported.')
jnxMbgSgwPPGtpV2ICsServNotSupTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 109), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsServNotSupTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsServNotSupTx.setDescription('Number of GTP packets sent with cause Service Not supported.')
jnxMbgSgwPPGtpV2ICsManIEIncorRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 110), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsManIEIncorRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsManIEIncorRx.setDescription('Number of GTPV2 packets received with cause Mandatory IE incorrect.')
jnxMbgSgwPPGtpV2ICsManIEIncorTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 111), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsManIEIncorTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsManIEIncorTx.setDescription('Number of GTP packets sent with cause Mandatory IE incorrect.')
jnxMbgSgwPPGtpV2ICsManIEMissRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 112), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsManIEMissRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsManIEMissRx.setDescription('Number of GTPV2 packets received with cause Mandatory IE Missing.')
jnxMbgSgwPPGtpV2ICsManIEMissTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 113), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsManIEMissTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsManIEMissTx.setDescription('Number of GTP packets sent with cause Mandatory IE Missing.')
jnxMbgSgwPPGtpV2ICsOptIEIncorRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 114), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsOptIEIncorRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsOptIEIncorRx.setDescription('Number of GTPV2 packets received with cause Optional IE Incorrect.')
jnxMbgSgwPPGtpV2ICsOptIEIncorTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 115), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsOptIEIncorTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsOptIEIncorTx.setDescription('Number of GTP packets sent with cause Optional IE Incorrect.')
jnxMbgSgwPPGtpV2ICsSysFailRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 116), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsSysFailRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsSysFailRx.setDescription('Number of GTPV2 packets received with cause System Failure.')
jnxMbgSgwPPGtpV2ICsSysFailTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 117), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsSysFailTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsSysFailTx.setDescription('Number of GTP packets sent with cause System Failure.')
jnxMbgSgwPPGtpV2ICsNoResRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 118), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsNoResRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsNoResRx.setDescription('Number of GTPV2 packets received with cause No Resource.')
jnxMbgSgwPPGtpV2ICsNoResTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 119), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsNoResTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsNoResTx.setDescription('Number of GTP packets sent with cause No Resource.')
jnxMbgSgwPPGtpV2ICsTFTSMANTErRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 120), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsTFTSMANTErRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsTFTSMANTErRx.setDescription('Number of GTPV2 packets received with cause TFT Symantic Error.')
jnxMbgSgwPPGtpV2ICsTFTSMANTErTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 121), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsTFTSMANTErTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsTFTSMANTErTx.setDescription('Number of GTP packets sent with cause TFT Symantic Error.')
jnxMbgSgwPPGtpV2ICsTFTSysErrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 122), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsTFTSysErrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsTFTSysErrRx.setDescription('Number of GTPV2 packets received with cause TFT System Error.')
jnxMbgSgwPPGtpV2ICsTFTSysErrTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 123), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsTFTSysErrTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsTFTSysErrTx.setDescription('Number of GTP packets sent with cause TFT System Error.')
jnxMbgSgwPPGtpV2ICsPkFltManErRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 124), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsPkFltManErRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsPkFltManErRx.setDescription('Number of GTPV2 packets received with cause Packet Filter Symantic Error.')
jnxMbgSgwPPGtpV2ICsPkFltManErTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 125), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsPkFltManErTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsPkFltManErTx.setDescription('Number of GTP packets sent with cause Packet Filter Symantic Error.')
jnxMbgSgwPPGtpV2ICsPkFltSynErRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 126), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsPkFltSynErRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsPkFltSynErRx.setDescription('Number of GTPV2 packets received with cause Packet Filter Syntax Error.')
jnxMbgSgwPPGtpV2ICsPkFltSynErTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 127), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsPkFltSynErTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsPkFltSynErTx.setDescription('Number of GTP packets sent with cause Packet Filter Syntax Error.')
jnxMbgSgwPPGtpV2ICsMisUnknAPNRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 128), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsMisUnknAPNRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsMisUnknAPNRx.setDescription('Number of GTPV2 packets received with cause Unknown APN.')
jnxMbgSgwPPGtpV2ICsMisUnknAPNTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 129), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsMisUnknAPNTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsMisUnknAPNTx.setDescription('Number of GTP packets sent with cause Unknown APN.')
jnxMbgSgwPPGtpV2ICsUnexpRptIERx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 130), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUnexpRptIERx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUnexpRptIERx.setDescription('Number of GTPV2 packets received with cause Unexpected Repeated IE.')
jnxMbgSgwPPGtpV2ICsUnexpRptIETx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 131), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUnexpRptIETx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUnexpRptIETx.setDescription('Number of GTP packets sent with cause Unexpected Repeated IE.')
jnxMbgSgwPPGtpV2ICsGREKeyNtFdRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 132), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsGREKeyNtFdRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsGREKeyNtFdRx.setDescription('Number of GTPV2 packets received with cause GRE Key Not Found.')
jnxMbgSgwPPGtpV2ICsGREKeyNtFdTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 133), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsGREKeyNtFdTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsGREKeyNtFdTx.setDescription('Number of GTP packets sent with cause GRE Key Not Found.')
jnxMbgSgwPPGtpV2ICsRelocFailRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 134), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsRelocFailRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsRelocFailRx.setDescription('Number of GTPV2 packets received with cause Relocation Failed.')
jnxMbgSgwPPGtpV2ICsRelocFailTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 135), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsRelocFailTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsRelocFailTx.setDescription('Number of GTP packets sent with cause Relocation Failed.')
jnxMbgSgwPPGtpV2ICsDenINRatRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 136), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsDenINRatRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsDenINRatRx.setDescription('Number of GTPV2 packets received with cause Denied in RAT.')
jnxMbgSgwPPGtpV2ICsDenINRatTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 137), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsDenINRatTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsDenINRatTx.setDescription('Number of GTP packets sent with cause Denied in RAT.')
jnxMbgSgwPPGtpV2ICsPTNotSuppRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 138), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsPTNotSuppRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsPTNotSuppRx.setDescription('Number of GTPV2 packets received with cause PDN Type Not Supported.')
jnxMbgSgwPPGtpV2ICsPTNotSuppTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 139), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsPTNotSuppTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsPTNotSuppTx.setDescription('Number of GTP packets sent with cause PDN Type Not Supported.')
jnxMbgSgwPPGtpV2ICsAllDynAdOcRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 140), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsAllDynAdOcRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsAllDynAdOcRx.setDescription('Number of GTPV2 packets received with cause Allocated Dynamic Address Occupied.')
jnxMbgSgwPPGtpV2ICsAllDynAdOcTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 141), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsAllDynAdOcTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsAllDynAdOcTx.setDescription('Number of GTP packets sent with cause Allocated Dynamic Address Occupied.')
jnxMbgSgwPPGtpV2ICsNOTFTUECTXRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 142), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsNOTFTUECTXRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsNOTFTUECTXRx.setDescription('Number of GTPV2 packets received with cause UE Context Without TFT Exists.')
jnxMbgSgwPPGtpV2ICsNOTFTUECTXTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 143), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsNOTFTUECTXTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsNOTFTUECTXTx.setDescription('Number of GTP packets sent with cause UE Context Without TFT Exists.')
jnxMbgSgwPPGtpV2ICsProtoNtSupRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 144), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsProtoNtSupRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsProtoNtSupRx.setDescription('Number of GTPV2 packets received with cause Protocol Not Supported.')
jnxMbgSgwPPGtpV2ICsProtoNtSupTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 145), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsProtoNtSupTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsProtoNtSupTx.setDescription('Number of GTP packets sent with cause Protocol Not Supported.')
jnxMbgSgwPPGtpV2ICsUENotRespRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 146), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUENotRespRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUENotRespRx.setDescription('Number of GTPV2 packets received with cause UE Not Responding.')
jnxMbgSgwPPGtpV2ICsUENotRespTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 147), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUENotRespTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUENotRespTx.setDescription('Number of GTP packets sent with cause UE Not Responding.')
jnxMbgSgwPPGtpV2ICsUERefusesRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 148), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUERefusesRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUERefusesRx.setDescription('Number of GTPV2 packets received with cause UE Refuses.')
jnxMbgSgwPPGtpV2ICsUERefusesTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 149), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUERefusesTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUERefusesTx.setDescription('Number of GTP packets sent with cause UE Refuses.')
jnxMbgSgwPPGtpV2ICsServDeniedRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 150), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsServDeniedRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsServDeniedRx.setDescription('Number of GTPV2 packets received with cause Service Denied.')
jnxMbgSgwPPGtpV2ICsServDeniedTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 151), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsServDeniedTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsServDeniedTx.setDescription('Number of GTP packets sent with cause Service Denied.')
jnxMbgSgwPPGtpV2ICsUnabPageUERx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 152), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUnabPageUERx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUnabPageUERx.setDescription('Number of GTPV2 packets received with cause Unable to Page UE.')
jnxMbgSgwPPGtpV2ICsUnabPageUETx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 153), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUnabPageUETx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUnabPageUETx.setDescription('Number of GTP packets sent with cause Unable to Page UE.')
jnxMbgSgwPPGtpV2ICsNoMemRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 154), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsNoMemRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsNoMemRx.setDescription('Number of GTPV2 packets received with cause No Memory.')
jnxMbgSgwPPGtpV2ICsNoMemTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 155), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsNoMemTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsNoMemTx.setDescription('Number of GTP packets sent with cause No Memory.')
jnxMbgSgwPPGtpV2ICsUserAUTHFlRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 156), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUserAUTHFlRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUserAUTHFlRx.setDescription('Number of GTPV2 packets received with cause User AUTH Failed.')
jnxMbgSgwPPGtpV2ICsUserAUTHFlTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 157), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUserAUTHFlTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUserAUTHFlTx.setDescription('Number of GTP packets sent with cause User AUTH Failed.')
jnxMbgSgwPPGtpV2ICsAPNAcsDenRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 158), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsAPNAcsDenRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsAPNAcsDenRx.setDescription('Number of GTPV2 packets received with cause APN Access Denied.')
jnxMbgSgwPPGtpV2ICsAPNAcsDenTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 159), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsAPNAcsDenTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsAPNAcsDenTx.setDescription('Number of GTP packets sent with cause APN Access Denied.')
jnxMbgSgwPPGtpV2ICsReqRejRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 160), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsReqRejRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsReqRejRx.setDescription('Number of GTPV2 packets received with cause Request Rejected.')
jnxMbgSgwPPGtpV2ICsReqRejTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 161), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsReqRejTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsReqRejTx.setDescription('Number of GTP packets sent with cause Request Rejected.')
jnxMbgSgwPPGtpV2ICsPTMSISigMMRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 162), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsPTMSISigMMRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsPTMSISigMMRx.setDescription('Number of GTPV2 packets received with cause P-TMSI Signature Mismatch.')
jnxMbgSgwPPGtpV2ICsPTMSISigMMTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 163), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsPTMSISigMMTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsPTMSISigMMTx.setDescription('Number of GTP packets sent with cause P-TMSI Signature Mismatch.')
jnxMbgSgwPPGtpV2ICsIMSINotKnRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 164), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsIMSINotKnRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsIMSINotKnRx.setDescription('Number of GTPV2 packets received with cause IMSI Not Known.')
jnxMbgSgwPPGtpV2ICsIMSINotKnTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 165), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsIMSINotKnTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsIMSINotKnTx.setDescription('Number of GTP packets sent with cause IMSI Not Known.')
jnxMbgSgwPPGtpV2ICsCondIEMsRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 166), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsCondIEMsRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsCondIEMsRx.setDescription('Number of GTPV2 packets received with cause Conditional IE Missing.')
jnxMbgSgwPPGtpV2ICsCondIEMsTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 167), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsCondIEMsTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsCondIEMsTx.setDescription('Number of GTP packets sent with cause Conditional IE Missing.')
jnxMbgSgwPPGtpV2ICsAPNResTIncRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 168), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsAPNResTIncRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsAPNResTIncRx.setDescription('Number of GTPV2 packets received with cause APN Restriction Type Incompatible.')
jnxMbgSgwPPGtpV2ICsAPNResTIncTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 169), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsAPNResTIncTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsAPNResTIncTx.setDescription('Number of GTP packets sent with cause APN Restriction Type Incompatible.')
jnxMbgSgwPPGtpV2ICsUnknownRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 170), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUnknownRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUnknownRx.setDescription('Number of GTPV2 packets received with cause Unknown.')
jnxMbgSgwPPGtpV2ICsUnknownTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 171), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUnknownTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUnknownTx.setDescription('Number of GTP packets sent with cause Unknown.')
jnxMbgSgwPPGtpV2ICsLclDetRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 172), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsLclDetRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsLclDetRx.setDescription('Number of GTP packets received with cause Local Detach.')
jnxMbgSgwPPGtpV2ICsLclDetTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 173), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsLclDetTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsLclDetTx.setDescription('Number of GTP packets sent with cause Local Detach.')
jnxMbgSgwPPGtpV2ICsCmpDetRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 174), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsCmpDetRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsCmpDetRx.setDescription('Number of GTP packets received with cause Complete Detach.')
jnxMbgSgwPPGtpV2ICsCmpDetTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 175), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsCmpDetTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsCmpDetTx.setDescription('Number of GTP packets sent with cause Complete Detach.')
jnxMbgSgwPPGtpV2ICsRATChgRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 176), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsRATChgRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsRATChgRx.setDescription('Number of GTP packets received with cause RAT changed from 3GPP to non 3GPP.')
jnxMbgSgwPPGtpV2ICsRATChgTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 177), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsRATChgTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsRATChgTx.setDescription('Number of GTP packets sent with cause RAT changed from 3GPP to non 3GPP.')
jnxMbgSgwPPGtpV2ICsISRDeactRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 178), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsISRDeactRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsISRDeactRx.setDescription('Number of GTP packets received with cause ISR Deactivated.')
jnxMbgSgwPPGtpV2ICsISRDeactTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 179), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsISRDeactTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsISRDeactTx.setDescription('Number of GTP packets sent with cause ISR Deactivated.')
jnxMbgSgwPPGtpV2ICsEIFRNCEnRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 180), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsEIFRNCEnRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsEIFRNCEnRx.setDescription('Number of GTP packets received with cause Error Indication from RNC eNodeB.')
jnxMbgSgwPPGtpV2ICsEIFRNCEnTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 181), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsEIFRNCEnTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsEIFRNCEnTx.setDescription('Number of GTP packets sent with cause Error Indication from RNC eNodeB.')
jnxMbgSgwPPGtpV2ICsSemErTADRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 182), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsSemErTADRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsSemErTADRx.setDescription('Number of GTP packets received with cause Semantic Error in TAD Operation.')
jnxMbgSgwPPGtpV2ICsSemErTADTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 183), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsSemErTADTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsSemErTADTx.setDescription('Number of GTP packets sent with cause Semantic Error in TAD Operation.')
jnxMbgSgwPPGtpV2ICsSynErTADRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 184), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsSynErTADRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsSynErTADRx.setDescription('Number of GTP packets received with cause Syntactic Error in TAD Operation.')
jnxMbgSgwPPGtpV2ICsSynErTADTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 185), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsSynErTADTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsSynErTADTx.setDescription('Number of GTP packets sent with cause Syntactic Error in TAD Operation.')
jnxMbgSgwPPGtpV2ICsRMValRcvRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 186), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsRMValRcvRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsRMValRcvRx.setDescription('Number of GTP packets received with cause Reserved Message Value Received.')
jnxMbgSgwPPGtpV2ICsRMValRcvTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 187), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsRMValRcvTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsRMValRcvTx.setDescription('Number of GTP packets sent with cause Reserved Message Value Received.')
jnxMbgSgwPPGtpV2ICsRPrNtRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 188), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsRPrNtRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsRPrNtRspRx.setDescription('Number of GTP packets received with cause Remote peer not responding.')
jnxMbgSgwPPGtpV2ICsRPrNtRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 189), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsRPrNtRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsRPrNtRspTx.setDescription('Number of GTP packets sent with cause Remote peer not responding.')
jnxMbgSgwPPGtpV2ICsColNWReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 190), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsColNWReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsColNWReqRx.setDescription('Number of GTP packets received with cause Collision with network initiated request.')
jnxMbgSgwPPGtpV2ICsColNWReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 191), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsColNWReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsColNWReqTx.setDescription('Number of GTP packets sent with cause Collision with network initiated request.')
jnxMbgSgwPPGtpV2ICsUnPgUESusRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 192), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUnPgUESusRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUnPgUESusRx.setDescription('Number of GTP packets received with cause Unable to page UE due to suspension.')
jnxMbgSgwPPGtpV2ICsUnPgUESusTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 193), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUnPgUESusTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsUnPgUESusTx.setDescription('Number of GTP packets sent with cause Unable to page UE due to suspension.')
jnxMbgSgwPPGtpV2ICsInvTotLenRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 194), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsInvTotLenRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsInvTotLenRx.setDescription('Number of GTP packets received with cause Invalid total len.')
jnxMbgSgwPPGtpV2ICsInvTotLenTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 195), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsInvTotLenTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsInvTotLenTx.setDescription('Number of GTP packets sent with cause Invalid total len.')
jnxMbgSgwPPGtpV2ICsDtForNtSupRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 196), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsDtForNtSupRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsDtForNtSupRx.setDescription('Number of GTP packets received with cause Data forwarding not supported.')
jnxMbgSgwPPGtpV2ICsDtForNtSupTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 197), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsDtForNtSupTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsDtForNtSupTx.setDescription('Number of GTP packets sent with cause Data forwarding not supported.')
jnxMbgSgwPPGtpV2ICsInReFRePrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 198), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsInReFRePrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsInReFRePrRx.setDescription('Number of GTP packets received with cause Invalid Reply from Remote peer.')
jnxMbgSgwPPGtpV2ICsInReFRePrTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 199), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsInReFRePrTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsInReFRePrTx.setDescription('Number of GTP packets sent with cause Invalid Reply from Remote peer.')
jnxMbgSgwPPGtpV2ICsInvPrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 200), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsInvPrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsInvPrRx.setDescription('Number of GTP packets received with cause Invalid peer.')
jnxMbgSgwPPGtpV2ICsInvPrTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 201), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsInvPrTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV2ICsInvPrTx.setDescription('Number of GTP packets sent with cause Invalid peer.')
jnxMbgSgwPPGtpV1ProtocolErrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 202), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV1ProtocolErrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV1ProtocolErrRx.setDescription('Number of GTPv1 Protocol Errors Received.')
jnxMbgSgwPPGtpV1UnSupMsgRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 203), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV1UnSupMsgRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV1UnSupMsgRx.setDescription('Number of GTPv1 Unsupported Messages received.')
jnxMbgSgwPPGtpV1T3RespTmrExpRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 204), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV1T3RespTmrExpRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV1T3RespTmrExpRx.setDescription('Number of GTP V1 T3 timer expiries Received.')
jnxMbgSgwPPGtpV1EndMarkerRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 205), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV1EndMarkerRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV1EndMarkerRx.setDescription('Number of GTP V1 end marker packets received.')
jnxMbgSgwPPGtpV1EndMarkerTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 206), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV1EndMarkerTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV1EndMarkerTx.setDescription('Number of GTP V1 end marker packets sent.')
jnxMbgSgwPPGtpV1EchoReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 207), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV1EchoReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV1EchoReqRx.setDescription('Number of GTP V1 echo request packets received.')
jnxMbgSgwPPGtpV1EchoReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 208), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV1EchoReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV1EchoReqTx.setDescription('Number of GTP iV1 echo request packets sent.')
jnxMbgSgwPPGtpV1EchoRespRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 209), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV1EchoRespRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV1EchoRespRx.setDescription('Number of GTP V1 echo response packets received.')
jnxMbgSgwPPGtpV1EchoRespTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 210), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV1EchoRespTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV1EchoRespTx.setDescription('Number of GTP V1 echo response packets sent.')
jnxMbgSgwPPGtpV1ErrIndRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 211), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV1ErrIndRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV1ErrIndRx.setDescription('Number of GTP V1 Error Indication packets received.')
jnxMbgSgwPPGtpV1ErrIndTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 212), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV1ErrIndTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPGtpV1ErrIndTx.setDescription('Number of GTP V1 Error Indication packets sent.')
jnxMbgSgwPPSuspNotifRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 213), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPSuspNotifRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPSuspNotifRx.setDescription('Number of GTPv2 Suspend Notification messages received.')
jnxMbgSgwPPSuspNotifTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 214), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPSuspNotifTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPSuspNotifTx.setDescription('Number of GTPv2 Suspend Notification messages sent.')
jnxMbgSgwPPSuspAckRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 215), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPSuspAckRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPSuspAckRx.setDescription('Number of GTPv2 Suspend Acknowledgement messages received.')
jnxMbgSgwPPSuspAckTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 216), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPSuspAckTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPSuspAckTx.setDescription('Number of GTPv2 Suspend Acknowledgement messages sent.')
jnxMbgSgwPPResumeNotifRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 217), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPResumeNotifRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPResumeNotifRx.setDescription('Number of GTPv2 Resume Notification messages received.')
jnxMbgSgwPPResumeNotifTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 218), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPResumeNotifTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPResumeNotifTx.setDescription('Number of GTPv2 Resume Notification messages sent.')
jnxMbgSgwPPResumeAckRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 219), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPResumeAckRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPResumeAckRx.setDescription('Number of GTPv2 Resume Acknowledgement messages received.')
jnxMbgSgwPPResumeAckTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 220), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPResumeAckTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPResumeAckTx.setDescription('Number of GTPv2 Resume Acknowledgement messages sent.')
jnxMbgSgwPPPiggybackMsgRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 221), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPPiggybackMsgRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPPiggybackMsgRx.setDescription('Number of GTPv2 Piggyback messages received.')
jnxMbgSgwPPPiggybackMsgTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 222), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwPPPiggybackMsgTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwPPPiggybackMsgTx.setDescription('Number of GTPv2 S11 Piggyback messages sent.')
jnxMbgSgwGtpIfStatsTable = MibTable((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4), )
if mibBuilder.loadTexts: jnxMbgSgwGtpIfStatsTable.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpIfStatsTable.setDescription('Each entry corresponds to an interface level GTP statistic.')
jnxMbgSgwGtpIfStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1), ).setIndexNames((0, "JUNIPER-MOBILE-GATEWAYS", "jnxMbgGwIndex"), (0, "JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", "jnxMbgSgwIfIndex"))
if mibBuilder.loadTexts: jnxMbgSgwGtpIfStatsEntry.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpIfStatsEntry.setDescription('A specification of the GTP interface level control Statistics.')
jnxMbgSgwIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 1), Unsigned32())
if mibBuilder.loadTexts: jnxMbgSgwIfIndex.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfIndex.setDescription('GTP Interface Index')
jnxMbgSgwIfType = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfType.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfType.setDescription('Interface Name.')
jnxMbgSgwIfRxPacketsDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfRxPacketsDropped.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfRxPacketsDropped.setDescription('Number of Received GTP Packets Dropped by the Gateway.')
jnxMbgSgwIfPacketAllocFail = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 4), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfPacketAllocFail.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfPacketAllocFail.setDescription('Number of Packet allocation failures in the Gateway.')
jnxMbgSgwIfPacketSendFail = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 5), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfPacketSendFail.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfPacketSendFail.setDescription('Number of GTP Packet Send failures in the Gateway.')
jnxMbgSgwIfIPVerErrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 6), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfIPVerErrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfIPVerErrRx.setDescription('Number of IP Version Error Packets Received.')
jnxMbgSgwIfIPProtoErrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 7), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfIPProtoErrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfIPProtoErrRx.setDescription('Number of IP Protocol Error packets Received.')
jnxMbgSgwIfGTPPortErrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 8), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGTPPortErrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGTPPortErrRx.setDescription('Number of Port Error Packets Received.')
jnxMbgSgwIfGTPUnknVerRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 9), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGTPUnknVerRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGTPUnknVerRx.setDescription('Number of Unknown Version Packets Received.')
jnxMbgSgwIfPcktLenErrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 10), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfPcktLenErrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfPcktLenErrRx.setDescription('Number of Packet Length Error Packets Received.')
jnxMbgSgwIfUnknMsgRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 11), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfUnknMsgRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfUnknMsgRx.setDescription('Number of Unknown Messages Received.')
jnxMbgSgwIfProtocolErrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 12), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfProtocolErrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfProtocolErrRx.setDescription('Number of GTPv2 Protocol Errors Received.')
jnxMbgSgwIfUnSupportedMsgRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 13), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfUnSupportedMsgRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfUnSupportedMsgRx.setDescription('Number of GTPv2 Unsupported Messages received.')
jnxMbgSgwIfT3RespTmrExpRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 14), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfT3RespTmrExpRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfT3RespTmrExpRx.setDescription('Number of GTP V2 T3 timer expiries Received.')
jnxMbgSgwIfV2NumMsgRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 15), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfV2NumMsgRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfV2NumMsgRx.setDescription('Number of GTPv2 messages received.')
jnxMbgSgwIfV2NumMsgTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 16), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfV2NumMsgTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfV2NumMsgTx.setDescription('Number of V2 messages sent.')
jnxMbgSgwIfV2NumBytesRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 17), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfV2NumBytesRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfV2NumBytesRx.setDescription('Number of GTPv2 bytes received.')
jnxMbgSgwIfV2NumBytesTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 18), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfV2NumBytesTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfV2NumBytesTx.setDescription('Number of V2 bytes sent.')
jnxMbgSgwIfV2EchoReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 19), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfV2EchoReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfV2EchoReqRx.setDescription('Number of GTP V2 Echo Request received.')
jnxMbgSgwIfV2EchoReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 20), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfV2EchoReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfV2EchoReqTx.setDescription('Number of GTP V2 Echo Request Sent.')
jnxMbgSgwIfV2EchoRespRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 21), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfV2EchoRespRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfV2EchoRespRx.setDescription('Number of GTP V2 Echo Response received.')
jnxMbgSgwIfV2EchoRespTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 22), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfV2EchoRespTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfV2EchoRespTx.setDescription('Number of GTP V2 Echo Response Sent.')
jnxMbgSgwIfV2VerNotSupRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 23), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfV2VerNotSupRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfV2VerNotSupRx.setDescription('Number of GTP V2 Version Not supported messages received')
jnxMbgSgwIfV2VerNotSupTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 24), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfV2VerNotSupTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfV2VerNotSupTx.setDescription('Number of GTP V2 version not supported messages sent.')
jnxMbgSgwIfCreateSessReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 25), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfCreateSessReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfCreateSessReqRx.setDescription('Number of GTP V2 Create Session Requests received.')
jnxMbgSgwIfCreateSessReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 26), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfCreateSessReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfCreateSessReqTx.setDescription('Number of GTP V2 Create Session Requests Sent.')
jnxMbgSgwIfCreateSessRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 27), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfCreateSessRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfCreateSessRspRx.setDescription('Number of GTP V2 Create Session Responses received.')
jnxMbgSgwIfCreateSessRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 28), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfCreateSessRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfCreateSessRspTx.setDescription('Number of GTP V2 Create Session Responses Sent.')
jnxMbgSgwIfModBrReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 29), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfModBrReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfModBrReqRx.setDescription('Number of GTP V2 Modify Bearer Requests received.')
jnxMbgSgwIfModBrReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 30), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfModBrReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfModBrReqTx.setDescription('Number of GTP V2 Modify Bearer Requests Sent.')
jnxMbgSgwIfModBrRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 31), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfModBrRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfModBrRspRx.setDescription('Number of GTP V2 Modify Bearer Responses received.')
jnxMbgSgwIfModBrRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 32), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfModBrRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfModBrRspTx.setDescription('Number of GTP V2 Modify Bearer Responses Sent.')
jnxMbgSgwIfDelSessReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 33), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDelSessReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDelSessReqRx.setDescription('Number of GTP V2 Delete Session Requests received.')
jnxMbgSgwIfDelSessReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 34), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDelSessReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDelSessReqTx.setDescription('Number of GTP V2 Delete Session Requests Sent.')
jnxMbgSgwIfDelSessRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 35), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDelSessRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDelSessRspRx.setDescription('Number of GTP V2 Delete Session Responses received.')
jnxMbgSgwIfDelSessRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 36), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDelSessRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDelSessRspTx.setDescription('Number of GTP V2 Delete Session Responses Sent.')
jnxMbgSgwIfCrtBrReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 37), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfCrtBrReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfCrtBrReqRx.setDescription('Number of GTP V2 Create Bearer Requests received.')
jnxMbgSgwIfCrtBrReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 38), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfCrtBrReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfCrtBrReqTx.setDescription('Number of GTP V2 Create Bearer Requests Sent.')
jnxMbgSgwIfCrtBrRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 39), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfCrtBrRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfCrtBrRspRx.setDescription('Number of GTP V2 Create Bearer Response received.')
jnxMbgSgwIfCrtBrRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 40), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfCrtBrRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfCrtBrRspTx.setDescription('Number of GTP V2 Create Bearer Response Sent.')
jnxMbgSgwIfUpdBrReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 41), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfUpdBrReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfUpdBrReqRx.setDescription('Number of GTP V2 Update Bearer Request received.')
jnxMbgSgwIfUpdBrReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 42), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfUpdBrReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfUpdBrReqTx.setDescription('Number of GTP V2 Update Bearer Request Sent.')
jnxMbgSgwIfUpdBrRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 43), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfUpdBrRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfUpdBrRspRx.setDescription('Number of GTP V2 Update Bearer Response received.')
jnxMbgSgwIfUpdBrRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 44), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfUpdBrRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfUpdBrRspTx.setDescription('Number of GTP V2 Update Bearer Response Sent.')
jnxMbgSgwIfDelBrReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 45), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDelBrReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDelBrReqRx.setDescription('Number of GTP V2 Delete Bearer Request received.')
jnxMbgSgwIfDelBrReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 46), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDelBrReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDelBrReqTx.setDescription('Number of GTP V2 Delete Bearer Request Sent.')
jnxMbgSgwIfDelBrRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 47), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDelBrRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDelBrRspRx.setDescription('Number of GTP V2 Delete Bearer Response received.')
jnxMbgSgwIfDelBrRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 48), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDelBrRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDelBrRspTx.setDescription('Number of GTP V2 Delete Bearer Response Sent.')
jnxMbgSgwIfDelConnSetReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 49), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDelConnSetReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDelConnSetReqRx.setDescription('Number of GTP V2 Delete PDN connection set Request received.')
jnxMbgSgwIfDelConnSetReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 50), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDelConnSetReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDelConnSetReqTx.setDescription('Number of GTP V2 Delete PDN connection set Request Sent.')
jnxMbgSgwIfDelConnSetRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 51), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDelConnSetRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDelConnSetRspRx.setDescription('Number of GTP V2 Delete PDN connection set Response received.')
jnxMbgSgwIfDelConnSetRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 52), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDelConnSetRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDelConnSetRspTx.setDescription('Number of GTP V2 Delete PDN connection set Response Sent.')
jnxMbgSgwIfUpdConnSetReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 53), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfUpdConnSetReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfUpdConnSetReqRx.setDescription('Number of GTP V2 Update Connection set Request received.')
jnxMbgSgwIfUpdConnSetReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 54), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfUpdConnSetReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfUpdConnSetReqTx.setDescription('Number of GTP V2 Update Connection set Request Sent.')
jnxMbgSgwIfUpdConnSetRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 55), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfUpdConnSetRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfUpdConnSetRspRx.setDescription('Number of GTP V2 Update Connection set Response received.')
jnxMbgSgwIfUpdConnSetRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 56), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfUpdConnSetRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfUpdConnSetRspTx.setDescription('Number of GTP V2 Update Connection set Response Sent.')
jnxMbgSgwIfModBrCmdRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 57), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfModBrCmdRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfModBrCmdRx.setDescription('Number of GTP V2 Modify Bearer Command received.')
jnxMbgSgwIfModBrCmdTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 58), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfModBrCmdTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfModBrCmdTx.setDescription('Number of GTP V2 Modify Bearer Command Sent.')
jnxMbgSgwIfModBrFlrIndRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 59), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfModBrFlrIndRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfModBrFlrIndRx.setDescription('Number of GTP V2 Modify Bearer Failure received.')
jnxMbgSgwIfModBrFlrIndTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 60), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfModBrFlrIndTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfModBrFlrIndTx.setDescription('Number of GTP V2 Modify Bearer Failure Sent.')
jnxMbgSgwIfDelBrCmdRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 61), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDelBrCmdRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDelBrCmdRx.setDescription('Number of GTP V2 Delete Bearer Command received.')
jnxMbgSgwIfDelBrCmdTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 62), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDelBrCmdTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDelBrCmdTx.setDescription('Number of GTP V2 Delete Bearer Command Sent.')
jnxMbgSgwIfDelBrFlrIndRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 63), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDelBrFlrIndRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDelBrFlrIndRx.setDescription('Number of GTP V2 Delete Bearer Failure received.')
jnxMbgSgwIfDelBrFlrIndTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 64), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDelBrFlrIndTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDelBrFlrIndTx.setDescription('Number of GTP V2 Delete Bearer Failure Sent.')
jnxMbgSgwIfBrResCmdRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 65), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfBrResCmdRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfBrResCmdRx.setDescription('Number of GTP V2 Bearer Response Command received.')
jnxMbgSgwIfBrResCmdTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 66), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfBrResCmdTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfBrResCmdTx.setDescription('Number of GTP V2 Bearer Response Command Sent.')
jnxMbgSgwIfBrResFlrIndRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 67), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfBrResFlrIndRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfBrResFlrIndRx.setDescription('Number of GTP V2 Bearer Resource Failure received.')
jnxMbgSgwIfBrResFlrIndTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 68), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfBrResFlrIndTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfBrResFlrIndTx.setDescription('Number of GTP V2 Bearer Resource Failure Sent.')
jnxMbgSgwIfRelAcsBrReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 69), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfRelAcsBrReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfRelAcsBrReqRx.setDescription('Number of GTP V2 Release Access Bearer Requests received.')
jnxMbgSgwIfRelAcsBrReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 70), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfRelAcsBrReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfRelAcsBrReqTx.setDescription('Number of GTP V2 Release Access Bearer Requests sent.')
jnxMbgSgwIfRelAcsBrRespRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 71), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfRelAcsBrRespRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfRelAcsBrRespRx.setDescription('Number of GTP V2 Release Access Bearer Response received.')
jnxMbgSgwIfRelAcsBrRespTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 72), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfRelAcsBrRespTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfRelAcsBrRespTx.setDescription('Number of GTP V2 Release Access Bearer Response sent.')
jnxMbgSgwIfCrIndTunReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 73), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfCrIndTunReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfCrIndTunReqRx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Request Received')
jnxMbgSgwIfCrIndTunReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 74), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfCrIndTunReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfCrIndTunReqTx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Request sent')
jnxMbgSgwIfCrIndTunRespRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 75), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfCrIndTunRespRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfCrIndTunRespRx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Response Received')
jnxMbgSgwIfCrIndTunRespTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 76), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfCrIndTunRespTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfCrIndTunRespTx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Response sent')
jnxMbgSgwIfDelIndTunReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 77), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDelIndTunReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDelIndTunReqRx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Request Received')
jnxMbgSgwIfDelIndTunReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 78), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDelIndTunReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDelIndTunReqTx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Request sent.')
jnxMbgSgwIfDelIndTunRespRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 79), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDelIndTunRespRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDelIndTunRespRx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Response Received')
jnxMbgSgwIfDelIndTunRespTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 80), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDelIndTunRespTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDelIndTunRespTx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Response sent.')
jnxMbgSgwIfDlDataNotifRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 81), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDlDataNotifRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDlDataNotifRx.setDescription('Number of GTP V2 Downlink Data Notify received.')
jnxMbgSgwIfDlDataNotifTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 82), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDlDataNotifTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDlDataNotifTx.setDescription('Number of GTP V2 Downlink Data Notify Sent.')
jnxMbgSgwIfDlDataAckRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 83), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDlDataAckRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDlDataAckRx.setDescription('Number of GTP V2 Downlink Data Notify Acknowledgement received.')
jnxMbgSgwIfDlDataAckTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 84), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDlDataAckTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDlDataAckTx.setDescription('Number of GTP V2 Downlink Data Notify Acknowledgement Sent.')
jnxMbgSgwIfDlDataNotiFlrIndRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 85), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDlDataNotiFlrIndRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDlDataNotiFlrIndRx.setDescription('Number of GTP V2 Downlink Data Notification fail received.')
jnxMbgSgwIfDlDataNotiFlrIndTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 86), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfDlDataNotiFlrIndTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfDlDataNotiFlrIndTx.setDescription('Number of GTP V2 Downlink Data Notification fail Sent.')
jnxMbgSgwIfStopPagingIndRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 87), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfStopPagingIndRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfStopPagingIndRx.setDescription('Number of GTP V2 Number of Stop Paging Indication Messages Received.')
jnxMbgSgwIfStopPagingIndTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 88), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfStopPagingIndTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfStopPagingIndTx.setDescription('Number of GTP V2 Number of Stop Paging Indicaton messages sent')
jnxMbgSgwIfGtpV2ICsReqAcceptRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 89), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsReqAcceptRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsReqAcceptRx.setDescription('Number of GTPV2 packets received with cause Request Accept.')
jnxMbgSgwIfGtpV2ICsReqAcceptTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 90), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsReqAcceptTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsReqAcceptTx.setDescription('Number of GTP packets sent with cause Request Accept.')
jnxMbgSgwIfGtpV2ICsAcceptPartRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 91), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsAcceptPartRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsAcceptPartRx.setDescription('Number of GTPV2 packets received with cause Accept Partial.')
jnxMbgSgwIfGtpV2ICsAcceptPartTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 92), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsAcceptPartTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsAcceptPartTx.setDescription('Number of GTP packets sent with cause Accept Partial.')
jnxMbgSgwIfGtpV2ICsNewPTNPrefRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 93), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsNewPTNPrefRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsNewPTNPrefRx.setDescription('Number of GTPV2 packets received with cause New PDN type due to Network Preference.')
jnxMbgSgwIfGtpV2ICsNewPTNPrefTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 94), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsNewPTNPrefTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsNewPTNPrefTx.setDescription('Number of GTP packets sent with cause New PDN type due to Network Preference')
jnxMbgSgwIfGtpV2ICsNPTSIAdbrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 95), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsNPTSIAdbrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsNPTSIAdbrRx.setDescription('Number of GTPV2 packets received with cause New PDN type due to Single Address Bearer.')
jnxMbgSgwIfGtpV2ICsNPTSIAdbrTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 96), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsNPTSIAdbrTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsNPTSIAdbrTx.setDescription('Number of GTP packets sent with cause New PDN type due to Single Address Bearer.')
jnxMbgSgwIfGtpV2ICsCtxNotFndRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 97), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsCtxNotFndRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsCtxNotFndRx.setDescription('Number of GTPV2 packets received with cause Context not found.')
jnxMbgSgwIfGtpV2ICsCtxNotFndTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 98), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsCtxNotFndTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsCtxNotFndTx.setDescription('Number of GTP packets sent with cause Context not found.')
jnxMbgSgwIfGtpV2ICsInvMsgFmtRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 99), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsInvMsgFmtRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsInvMsgFmtRx.setDescription('Number of GTPV2 packets received with cause Invalid Message Format.')
jnxMbgSgwIfGtpV2ICsInvMsgFmtTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 100), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsInvMsgFmtTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsInvMsgFmtTx.setDescription('Number of GTP packets sent with cause Invalid Message Format.')
jnxMbgSgwIfGtpV2ICsVerNotSuppRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 101), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsVerNotSuppRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsVerNotSuppRx.setDescription('Number of GTPV2 packets received with cause Version not Supported.')
jnxMbgSgwIfGtpV2ICsVerNotSuppTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 102), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsVerNotSuppTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsVerNotSuppTx.setDescription('Number of GTP packets sent with cause Version not Supported.')
jnxMbgSgwIfGtpV2ICsInvLenRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 103), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsInvLenRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsInvLenRx.setDescription('Number of GTPV2 packets received with cause Invalid Length.')
jnxMbgSgwIfGtpV2ICsInvLenTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 104), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsInvLenTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsInvLenTx.setDescription('Number of GTP packets sent with cause Invalid Length.')
jnxMbgSgwIfGtpV2ICsSrvNotSuppRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 105), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsSrvNotSuppRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsSrvNotSuppRx.setDescription('Number of GTPV2 packets received with cause Service Not supported.')
jnxMbgSgwIfGtpV2ICsSrvNotSuppTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 106), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsSrvNotSuppTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsSrvNotSuppTx.setDescription('Number of GTP packets sent with cause Service Not supported.')
jnxMbgSgwIfGtpV2ICsManIEIncorRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 107), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsManIEIncorRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsManIEIncorRx.setDescription('Number of GTPV2 packets received with cause Mandatory IE incorrect.')
jnxMbgSgwIfGtpV2ICsManIEIncorTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 108), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsManIEIncorTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsManIEIncorTx.setDescription('Number of GTP packets sent with cause Mandatory IE incorrect.')
jnxMbgSgwIfGtpV2ICsManIEMissRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 109), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsManIEMissRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsManIEMissRx.setDescription('Number of GTPV2 packets received with cause Mandatory IE Missing.')
jnxMbgSgwIfGtpV2ICsManIEMissTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 110), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsManIEMissTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsManIEMissTx.setDescription('Number of GTP packets sent with cause Mandatory IE Missing.')
jnxMbgSgwIfGtpV2ICsOptIEIncorRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 111), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsOptIEIncorRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsOptIEIncorRx.setDescription('Number of GTPV2 packets received with cause Optional IE Incorrect.')
jnxMbgSgwIfGtpV2ICsOptIEIncorTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 112), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsOptIEIncorTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsOptIEIncorTx.setDescription('Number of GTP packets sent with cause Optional IE Incorrect.')
jnxMbgSgwIfGtpV2ICsSysFailRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 113), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsSysFailRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsSysFailRx.setDescription('Number of GTPV2 packets received with cause System Failure.')
jnxMbgSgwIfGtpV2ICsSysFailTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 114), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsSysFailTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsSysFailTx.setDescription('Number of GTP packets sent with cause System Failure.')
jnxMbgSgwIfGtpV2ICsNoResRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 115), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsNoResRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsNoResRx.setDescription('Number of GTPV2 packets received with cause No Resource.')
jnxMbgSgwIfGtpV2ICsNoResTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 116), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsNoResTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsNoResTx.setDescription('Number of GTP packets sent with cause No Resource.')
jnxMbgSgwIfGtpV2ICsTFTSMANTErRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 117), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsTFTSMANTErRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsTFTSMANTErRx.setDescription('Number of GTPV2 packets received with cause TFT Symantic Error.')
jnxMbgSgwIfGtpV2ICsTFTSMANTErTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 118), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsTFTSMANTErTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsTFTSMANTErTx.setDescription('Number of GTP packets sent with cause TFT Symantic Error.')
jnxMbgSgwIfGtpV2ICsTFTSysErrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 119), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsTFTSysErrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsTFTSysErrRx.setDescription('Number of GTPV2 packets received with cause TFT System Error.')
jnxMbgSgwIfGtpV2ICsTFTSysErrTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 120), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsTFTSysErrTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsTFTSysErrTx.setDescription('Number of GTP packets sent with cause TFT System Error.')
jnxMbgSgwIfGtpV2ICsPkFltManErRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 121), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsPkFltManErRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsPkFltManErRx.setDescription('Number of GTPV2 packets received with cause Packet Filter Symantic Error.')
jnxMbgSgwIfGtpV2ICsPkFltManErTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 122), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsPkFltManErTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsPkFltManErTx.setDescription('Number of GTP packets sent with cause Packet Filter Symantic Error.')
jnxMbgSgwIfGtpV2ICsPkFltSynErRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 123), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsPkFltSynErRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsPkFltSynErRx.setDescription('Number of GTPV2 packets received with cause Packet Filter Syntax Error.')
jnxMbgSgwIfGtpV2ICsPkFltSynErTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 124), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsPkFltSynErTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsPkFltSynErTx.setDescription('Number of GTP packets sent with cause Packet Filter Syntax Error.')
jnxMbgSgwIfGtpV2ICsMisUnknAPNRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 125), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsMisUnknAPNRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsMisUnknAPNRx.setDescription('Number of GTPV2 packets received with cause Unknown APN.')
jnxMbgSgwIfGtpV2ICsMisUnknAPNTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 126), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsMisUnknAPNTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsMisUnknAPNTx.setDescription('Number of GTP packets sent with cause Unknown APN.')
jnxMbgSgwIfGtpV2ICsUnexpRptIERx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 127), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUnexpRptIERx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUnexpRptIERx.setDescription('Number of GTPV2 packets received with cause Unexpected Repeated IE.')
jnxMbgSgwIfGtpV2ICsUnexpRptIETx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 128), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUnexpRptIETx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUnexpRptIETx.setDescription('Number of GTP packets sent with cause Unexpected Repeated IE.')
jnxMbgSgwIfGtpV2ICsGREKeyNtFdRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 129), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsGREKeyNtFdRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsGREKeyNtFdRx.setDescription('Number of GTPV2 packets received with cause GRE Key Not Found.')
jnxMbgSgwIfGtpV2ICsGREKeyNtFdTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 130), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsGREKeyNtFdTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsGREKeyNtFdTx.setDescription('Number of GTP packets sent with cause GRE Key Not Found.')
jnxMbgSgwIfGtpV2ICsRelocFailRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 131), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsRelocFailRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsRelocFailRx.setDescription('Number of GTPV2 packets received with cause Relocation Failed.')
jnxMbgSgwIfGtpV2ICsRelocFailTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 132), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsRelocFailTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsRelocFailTx.setDescription('Number of GTP packets sent with cause Relocation Failed.')
jnxMbgSgwIfGtpV2ICsDenINRatRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 133), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsDenINRatRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsDenINRatRx.setDescription('Number of GTPV2 packets received with cause Denied in RAT.')
jnxMbgSgwIfGtpV2ICsDenINRatTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 134), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsDenINRatTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsDenINRatTx.setDescription('Number of GTP packets sent with cause Denied in RAT.')
jnxMbgSgwIfGtpV2ICsPTNotSuppRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 135), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsPTNotSuppRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsPTNotSuppRx.setDescription('Number of GTPV2 packets received with cause PDN Type Not Supported.')
jnxMbgSgwIfGtpV2ICsPTNotSuppTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 136), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsPTNotSuppTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsPTNotSuppTx.setDescription('Number of GTP packets sent with cause PDN Type Not Supported.')
jnxMbgSgwIfGtpV2ICsAlDynAdOccRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 137), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsAlDynAdOccRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsAlDynAdOccRx.setDescription('Number of GTPV2 packets received with cause Allocated Dynamic Address Occupied.')
jnxMbgSgwIfGtpV2ICsAlDynAdOccTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 138), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsAlDynAdOccTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsAlDynAdOccTx.setDescription('Number of GTP packets sent with cause Allocated Dynamic Address Occupied.')
jnxMbgSgwIfGtpV2ICsNOTFTUECTXRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 139), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsNOTFTUECTXRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsNOTFTUECTXRx.setDescription('Number of GTPV2 packets received with cause UE Context Without TFT Exists.')
jnxMbgSgwIfGtpV2ICsNOTFTUECTXTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 140), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsNOTFTUECTXTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsNOTFTUECTXTx.setDescription('Number of GTP packets sent with cause UE Context Without TFT Exists.')
jnxMbgSgwIfGtpV2ICsProtoNtSupRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 141), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsProtoNtSupRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsProtoNtSupRx.setDescription('Number of GTPV2 packets received with cause Protocol Not Supported.')
jnxMbgSgwIfGtpV2ICsProtoNtSupTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 142), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsProtoNtSupTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsProtoNtSupTx.setDescription('Number of GTP packets sent with cause Protocol Not Supported.')
jnxMbgSgwIfGtpV2ICsUENotRespRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 143), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUENotRespRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUENotRespRx.setDescription('Number of GTPV2 packets received with cause UE Not Responding.')
jnxMbgSgwIfGtpV2ICsUENotRespTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 144), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUENotRespTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUENotRespTx.setDescription('Number of GTP packets sent with cause UE Not Responding.')
jnxMbgSgwIfGtpV2ICsUERefusesRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 145), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUERefusesRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUERefusesRx.setDescription('Number of GTPV2 packets received with cause UE Refuses.')
jnxMbgSgwIfGtpV2ICsUERefusesTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 146), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUERefusesTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUERefusesTx.setDescription('Number of GTP packets sent with cause UE Refuses.')
jnxMbgSgwIfGtpV2ICsServDeniedRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 147), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsServDeniedRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsServDeniedRx.setDescription('Number of GTPV2 packets received with cause Service Denied.')
jnxMbgSgwIfGtpV2ICsServDeniedTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 148), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsServDeniedTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsServDeniedTx.setDescription('Number of GTP packets sent with cause Service Denied.')
jnxMbgSgwIfGtpV2ICsUnabPageUERx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 149), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUnabPageUERx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUnabPageUERx.setDescription('Number of GTPV2 packets received with cause Unable to Page UE.')
jnxMbgSgwIfGtpV2ICsUnabPageUETx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 150), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUnabPageUETx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUnabPageUETx.setDescription('Number of GTP packets sent with cause Unable to Page UE.')
jnxMbgSgwIfGtpV2ICsNoMemRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 151), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsNoMemRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsNoMemRx.setDescription('Number of GTPV2 packets received with cause No Memory.')
jnxMbgSgwIfGtpV2ICsNoMemTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 152), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsNoMemTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsNoMemTx.setDescription('Number of GTP packets sent with cause No Memory.')
jnxMbgSgwIfGtpV2ICsUserAUTHFlRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 153), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUserAUTHFlRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUserAUTHFlRx.setDescription('Number of GTPV2 packets received with cause User AUTH Failed.')
jnxMbgSgwIfGtpV2ICsUserAUTHFlTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 154), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUserAUTHFlTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUserAUTHFlTx.setDescription('Number of GTP packets sent with cause User AUTH Failed.')
jnxMbgSgwIfGtpV2ICsAPNAcsDenRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 155), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsAPNAcsDenRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsAPNAcsDenRx.setDescription('Number of GTPV2 packets received with cause APN Access Denied.')
jnxMbgSgwIfGtpV2ICsAPNAcsDenTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 156), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsAPNAcsDenTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsAPNAcsDenTx.setDescription('Number of GTP packets sent with cause APN Access Denied.')
jnxMbgSgwIfGtpV2ICsReqRejRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 157), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsReqRejRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsReqRejRx.setDescription('Number of GTPV2 packets received with cause Request Rejected.')
jnxMbgSgwIfGtpV2ICsReqRejTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 158), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsReqRejTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsReqRejTx.setDescription('Number of GTP packets sent with cause Request Rejected.')
jnxMbgSgwIfGtpV2ICsPTMSISigMMRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 159), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsPTMSISigMMRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsPTMSISigMMRx.setDescription('Number of GTPV2 packets received with cause P-TMSI Signature Mismatch.')
jnxMbgSgwIfGtpV2ICsPTMSISigMMTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 160), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsPTMSISigMMTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsPTMSISigMMTx.setDescription('Number of GTP packets sent with cause P-TMSI Signature Mismatch')
jnxMbgSgwIfGtpV2ICsIMSINotKnRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 161), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsIMSINotKnRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsIMSINotKnRx.setDescription('Number of GTPV2 packets received with cause IMSI Not Known.')
jnxMbgSgwIfGtpV2ICsIMSINotKnTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 162), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsIMSINotKnTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsIMSINotKnTx.setDescription('Number of GTP packets sent with cause IMSI Not Known.')
jnxMbgSgwIfGtpV2ICsCondIEMsRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 163), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsCondIEMsRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsCondIEMsRx.setDescription('Number of GTPV2 packets received with cause Conditional IE Missing.')
jnxMbgSgwIfGtpV2ICsCondIEMsTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 164), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsCondIEMsTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsCondIEMsTx.setDescription('Number of GTP packets sent with cause Conditional IE Missing.')
jnxMbgSgwIfGtpV2ICsAPNResTIncRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 165), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsAPNResTIncRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsAPNResTIncRx.setDescription('Number of GTPV2 packets received with cause APN Restriction Type Incompatible.')
jnxMbgSgwIfGtpV2ICsAPNResTIncTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 166), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsAPNResTIncTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsAPNResTIncTx.setDescription('Number of GTP packets sent with cause APN Restriction Type Incompatible.')
jnxMbgSgwIfGtpV2ICsUnknownRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 167), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUnknownRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUnknownRx.setDescription('Number of GTPV2 packets received with cause Unknown.')
jnxMbgSgwIfGtpV2ICsUnknownTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 168), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUnknownTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUnknownTx.setDescription('Number of GTP packets sent with cause Unknown.')
jnxMbgSgwIfGtpV2ICsLclDetRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 169), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsLclDetRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsLclDetRx.setDescription('Number of GTP packets received with cause Local Detach.')
jnxMbgSgwIfGtpV2ICsLclDetTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 170), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsLclDetTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsLclDetTx.setDescription('Number of GTP packets sent with cause Local Detach.')
jnxMbgSgwIfGtpV2ICsCmpDetRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 171), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsCmpDetRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsCmpDetRx.setDescription('Number of GTP packets received with cause Complete Detach.')
jnxMbgSgwIfGtpV2ICsCmpDetTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 172), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsCmpDetTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsCmpDetTx.setDescription('Number of GTP packets sent with cause Complete Detach.')
jnxMbgSgwIfGtpV2ICsRATChgRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 173), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsRATChgRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsRATChgRx.setDescription('Number of GTP packets received with cause RAT changed from 3GPP to non 3GPP.')
jnxMbgSgwIfGtpV2ICsRATChgTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 174), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsRATChgTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsRATChgTx.setDescription('Number of GTP packets sent with cause RAT changed from 3GPP to non 3GPP.')
jnxMbgSgwIfGtpV2ICsISRDeactRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 175), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsISRDeactRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsISRDeactRx.setDescription('Number of GTP packets received with cause ISR Deactivated.')
jnxMbgSgwIfGtpV2ICsISRDeactTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 176), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsISRDeactTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsISRDeactTx.setDescription('Number of GTP packets sent with cause ISR Deactivated.')
jnxMbgSgwIfGtpV2ICsEIFRNCEnRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 177), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsEIFRNCEnRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsEIFRNCEnRx.setDescription('Number of GTP packets received with cause Error Indication from RNC eNodeB.')
jnxMbgSgwIfGtpV2ICsEIFRNCEnTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 178), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsEIFRNCEnTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsEIFRNCEnTx.setDescription('Number of GTP packets sent with cause Error Indication from RNC eNodeB.')
jnxMbgSgwIfGtpV2ICsSemErTADRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 179), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsSemErTADRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsSemErTADRx.setDescription('Number of GTP packets received with cause Semantic Error in TAD Operation.')
jnxMbgSgwIfGtpV2ICsSemErTADTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 180), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsSemErTADTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsSemErTADTx.setDescription('Number of GTP packets sent with cause Semantic Error in TAD Operation.')
jnxMbgSgwIfGtpV2ICsSynErTADRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 181), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsSynErTADRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsSynErTADRx.setDescription('Number of GTP packets received with cause Syntactic Error in TAD Operation.')
jnxMbgSgwIfGtpV2ICsSynErTADTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 182), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsSynErTADTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsSynErTADTx.setDescription('Number of GTP packets sent with cause Syntactic Error in TAD Operation.')
jnxMbgSgwIfGtpV2ICsRMValRcvRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 183), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsRMValRcvRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsRMValRcvRx.setDescription('Number of GTP packets received with cause Reserved Message Value Received.')
jnxMbgSgwIfGtpV2ICsRMValRcvTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 184), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsRMValRcvTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsRMValRcvTx.setDescription('Number of GTP packets sent with cause Reserved Message Value Received.')
jnxMbgSgwIfGtpV2ICsRPrNtRspRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 185), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsRPrNtRspRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsRPrNtRspRx.setDescription('Number of GTP packets received with cause Remote peer not responding.')
jnxMbgSgwIfGtpV2ICsRPrNtRspTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 186), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsRPrNtRspTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsRPrNtRspTx.setDescription('Number of GTP packets sent with cause Remote peer not responding.')
jnxMbgSgwIfGtpV2ICsColNWReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 187), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsColNWReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsColNWReqRx.setDescription('Number of GTP packets received with cause Collision with network initiated request.')
jnxMbgSgwIfGtpV2ICsColNWReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 188), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsColNWReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsColNWReqTx.setDescription('Number of GTP packets sent with cause Collision with network initiated request.')
jnxMbgSgwIfGtpV2ICsUnPgUESusRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 189), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUnPgUESusRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUnPgUESusRx.setDescription('Number of GTP packets received with cause Unable to page UE due to suspension.')
jnxMbgSgwIfGtpV2ICsUnPgUESusTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 190), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUnPgUESusTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsUnPgUESusTx.setDescription('Number of GTP packets sent with cause Unable to page UE due to suspension.')
jnxMbgSgwIfGtpV2ICsInvTotLenRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 191), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsInvTotLenRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsInvTotLenRx.setDescription('Number of GTP packets received with cause Invalid total len.')
jnxMbgSgwIfGtpV2ICsInvTotLenTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 192), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsInvTotLenTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsInvTotLenTx.setDescription('Number of GTP packets sent with cause Invalid total len.')
jnxMbgSgwIfGtpV2ICsDtForNtSupRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 193), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsDtForNtSupRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsDtForNtSupRx.setDescription('Number of GTP packets received with cause Data forwarding not supported.')
jnxMbgSgwIfGtpV2ICsDtForNtSupTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 194), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsDtForNtSupTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsDtForNtSupTx.setDescription('Number of GTP packets sent with cause Data forwarding not supported.')
jnxMbgSgwIfGtpV2ICsInReFRePrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 195), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsInReFRePrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsInReFRePrRx.setDescription('Number of GTP packets received with cause Invalid Reply from Remote peer.')
jnxMbgSgwIfGtpV2ICsInReFRePrTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 196), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsInReFRePrTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsInReFRePrTx.setDescription('Number of GTP packets sent with cause Invalid Reply from Remote peer.')
jnxMbgSgwIfGtpV2ICsInvPrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 197), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsInvPrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsInvPrRx.setDescription('Number of GTP packets received with cause Invalid peer.')
jnxMbgSgwIfGtpV2ICsInvPrTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 198), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsInvPrTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV2ICsInvPrTx.setDescription('Number of GTP packets sent with cause Invalid peer.')
jnxMbgSgwIfGtpV1ProtocolErrRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 199), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV1ProtocolErrRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV1ProtocolErrRx.setDescription('Number of GTPv1 Protocol Errors Received.')
jnxMbgSgwIfGtpV1UnSupMsgRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 200), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV1UnSupMsgRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV1UnSupMsgRx.setDescription('Number of GTPv1 Unsupported Messages received.')
jnxMbgSgwIfGtpV1T3RespTmrExpRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 201), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV1T3RespTmrExpRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV1T3RespTmrExpRx.setDescription('Number of GTP V1 T3 timer expiries Received.')
jnxMbgSgwIfGtpV1EndMarkerRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 202), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV1EndMarkerRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV1EndMarkerRx.setDescription('Number of GTP V1 end marker packets received.')
jnxMbgSgwIfGtpV1EndMarkerTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 203), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV1EndMarkerTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV1EndMarkerTx.setDescription('Number of GTP V1 end marker packets sent.')
jnxMbgSgwIfGtpV1EchoReqRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 204), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV1EchoReqRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV1EchoReqRx.setDescription('Number of GTP V1 echo request packets received.')
jnxMbgSgwIfGtpV1EchoReqTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 205), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV1EchoReqTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV1EchoReqTx.setDescription('Number of GTP V1 echo request packets sent.')
jnxMbgSgwIfGtpV1EchoRespRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 206), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV1EchoRespRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV1EchoRespRx.setDescription('Number of GTP V1 echo response packets received.')
jnxMbgSgwIfGtpV1EchoRespTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 207), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV1EchoRespTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV1EchoRespTx.setDescription('Number of GTP V1 echo response packets sent.')
jnxMbgSgwIfGtpV1ErrIndRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 208), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV1ErrIndRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV1ErrIndRx.setDescription('Number of GTP packets V1 Error Indication packets received.')
jnxMbgSgwIfGtpV1ErrIndTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 209), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV1ErrIndTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfGtpV1ErrIndTx.setDescription('Number of GTP packets V1 Error Indication packets sent.')
jnxMbgSgwIfSuspNotifRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 210), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfSuspNotifRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfSuspNotifRx.setDescription('Number of GTPv2 Suspend Notification messages received.')
jnxMbgSgwIfSuspNotifTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 211), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfSuspNotifTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfSuspNotifTx.setDescription('Number of GTPv2 Suspend Notification messages sent.')
jnxMbgSgwIfSuspAckRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 212), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfSuspAckRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfSuspAckRx.setDescription('Number of GTPv2 Suspend Acknowledgement messages received.')
jnxMbgSgwIfSuspAckTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 213), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfSuspAckTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfSuspAckTx.setDescription('Number of GTPv2 Suspend Acknowledgement messages sent.')
jnxMbgSgwIfResumeNotifRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 214), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfResumeNotifRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfResumeNotifRx.setDescription('Number of GTPv2 Resume Notification messages received.')
jnxMbgSgwIfResumeNotifTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 215), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfResumeNotifTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfResumeNotifTx.setDescription('Number of GTPv2 Resume Notification messages sent.')
jnxMbgSgwIfResumeAckRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 216), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfResumeAckRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfResumeAckRx.setDescription('Number of GTPv2 Resume Acknowledgement messages received.')
jnxMbgSgwIfResumeAckTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 217), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfResumeAckTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfResumeAckTx.setDescription('Number of GTPv2 Resume Acknowledgement messages sent.')
jnxMbgSgwIfPiggybackMsgRx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 218), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfPiggybackMsgRx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfPiggybackMsgRx.setDescription('Number of GTPv2 Piggyback messages received.')
jnxMbgSgwIfPiggybackMsgTx = MibTableColumn((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 219), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: jnxMbgSgwIfPiggybackMsgTx.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwIfPiggybackMsgTx.setDescription('Number of GTPv2 S11 Piggyback messages sent.')
jnxMbgSgwGtpNotificationVars = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 3))
jnxMbgSgwGtpPeerName = MibScalar((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 3, 1), DisplayString()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: jnxMbgSgwGtpPeerName.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpPeerName.setDescription('GTP Peer Name/IP')
jnxMbgSgwGtpAlarmStatCounter = MibScalar((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 3, 2), Unsigned32()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: jnxMbgSgwGtpAlarmStatCounter.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpAlarmStatCounter.setDescription('Current Value of (Alarm) Statistics Counter eg: in jnxMbgSgwGtpPrDNTPerPrAlrmActv it spefies the number of times peer is down with in the monitoring interval')
jnxMbgSgwGtpInterfaceType = MibScalar((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 3, 3), DisplayString()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: jnxMbgSgwGtpInterfaceType.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpInterfaceType.setDescription('GTP Interface Type which can be one of S5/S8/S11/S1U/S12/S4')
jnxMbgSgwGtpGwName = MibScalar((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 3, 4), DisplayString()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: jnxMbgSgwGtpGwName.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpGwName.setDescription('A string that indicates the gateway name')
jnxMbgSgwGtpGwIndex = MibScalar((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 3, 5), Unsigned32()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: jnxMbgSgwGtpGwIndex.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpGwIndex.setDescription('Current Gateway ID value')
jnxMbgSgwGtpPeerGwUpNotif = NotificationType((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 0, 1)).setObjects(("JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", "jnxMbgSgwGtpGwIndex"), ("JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", "jnxMbgSgwGtpGwName"), ("JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", "jnxMbgSgwGtpInterfaceType"), ("JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", "jnxMbgSgwGtpPeerName"))
if mibBuilder.loadTexts: jnxMbgSgwGtpPeerGwUpNotif.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpPeerGwUpNotif.setDescription('GTPC Peer UP Notification. This trap is sent when a new peer is added or an existing peer goes down and comes back up.')
jnxMbgSgwGtpPeerGwDnNotif = NotificationType((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 0, 2)).setObjects(("JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", "jnxMbgSgwGtpGwIndex"), ("JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", "jnxMbgSgwGtpGwName"), ("JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", "jnxMbgSgwGtpInterfaceType"), ("JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", "jnxMbgSgwGtpPeerName"))
if mibBuilder.loadTexts: jnxMbgSgwGtpPeerGwDnNotif.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpPeerGwDnNotif.setDescription('GTPC Peer Down Notification. This trap is sent when a peer connection goes down.')
jnxMbgSgwGtpPrDnTPerPrAlrmActv = NotificationType((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 0, 3)).setObjects(("JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", "jnxMbgSgwGtpGwIndex"), ("JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", "jnxMbgSgwGtpGwName"), ("JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", "jnxMbgSgwGtpInterfaceType"), ("JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", "jnxMbgSgwGtpPeerName"), ("JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", "jnxMbgSgwGtpAlarmStatCounter"))
if mibBuilder.loadTexts: jnxMbgSgwGtpPrDnTPerPrAlrmActv.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpPrDnTPerPrAlrmActv.setDescription('Peer down Threshold trap Active. This is sent when a peer connection flaps for more than a higher threshold number of times with in a monitor interval.')
jnxMbgSgwGtpPrDnTPerPrAlrmClr = NotificationType((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 0, 4)).setObjects(("JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", "jnxMbgSgwGtpGwIndex"), ("JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", "jnxMbgSgwGtpGwName"), ("JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", "jnxMbgSgwGtpInterfaceType"), ("JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", "jnxMbgSgwGtpPeerName"), ("JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", "jnxMbgSgwGtpAlarmStatCounter"))
if mibBuilder.loadTexts: jnxMbgSgwGtpPrDnTPerPrAlrmClr.setStatus('current')
if mibBuilder.loadTexts: jnxMbgSgwGtpPrDnTPerPrAlrmClr.setDescription('Peer down Threshold trap Cleared. This is sent when the number of times a peer connection flaps in a monitor interval come down below the lower threshold.')
mibBuilder.exportSymbols("JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", jnxMbgSgwIfGtpV2ICsPkFltManErRx=jnxMbgSgwIfGtpV2ICsPkFltManErRx, jnxMbgSgwGtpV2ICsGREKeyNtFdTx=jnxMbgSgwGtpV2ICsGREKeyNtFdTx, jnxMbgSgwPPIPProtoErrRx=jnxMbgSgwPPIPProtoErrRx, jnxMbgSgwCrtBrReqRx=jnxMbgSgwCrtBrReqRx, jnxMbgSgwPPV2NumMsgRx=jnxMbgSgwPPV2NumMsgRx, jnxMbgSgwPPGtpV2ICsTFTSMANTErRx=jnxMbgSgwPPGtpV2ICsTFTSMANTErRx, jnxMbgSgwIPProtoErrRx=jnxMbgSgwIPProtoErrRx, jnxMbgSgwPPModBrCmdRx=jnxMbgSgwPPModBrCmdRx, jnxMbgSgwGtpPeerGwUpNotif=jnxMbgSgwGtpPeerGwUpNotif, jnxMbgSgwPPGtpV2ICsCtxNotFndTx=jnxMbgSgwPPGtpV2ICsCtxNotFndTx, jnxMbgSgwGtpMib=jnxMbgSgwGtpMib, jnxMbgSgwIfUnSupportedMsgRx=jnxMbgSgwIfUnSupportedMsgRx, jnxMbgSgwPPGtpV2ICsOptIEIncorTx=jnxMbgSgwPPGtpV2ICsOptIEIncorTx, jnxMbgSgwIfGtpV1ErrIndTx=jnxMbgSgwIfGtpV1ErrIndTx, jnxMbgSgwGtpV2ICsUERefusesRx=jnxMbgSgwGtpV2ICsUERefusesRx, jnxMbgSgwPPCreateSessReqRx=jnxMbgSgwPPCreateSessReqRx, jnxMbgSgwPcktLenErrRx=jnxMbgSgwPcktLenErrRx, jnxMbgSgwGtpV2ICsOptIEIncorrTx=jnxMbgSgwGtpV2ICsOptIEIncorrTx, jnxMbgSgwPPGtpV2ICsSysFailTx=jnxMbgSgwPPGtpV2ICsSysFailTx, jnxMbgSgwGtpV2ICsUENotRespTx=jnxMbgSgwGtpV2ICsUENotRespTx, jnxMbgSgwIfGtpV2ICsManIEMissTx=jnxMbgSgwIfGtpV2ICsManIEMissTx, jnxMbgSgwPPGtpV2ICsAPNAcsDenTx=jnxMbgSgwPPGtpV2ICsAPNAcsDenTx, jnxMbgSgwPPGtpV2ICsEIFRNCEnTx=jnxMbgSgwPPGtpV2ICsEIFRNCEnTx, jnxMbgSgwPPGtpV2ICsNoResRx=jnxMbgSgwPPGtpV2ICsNoResRx, jnxMbgSgwGtpV2ICsOptIEIncorrRx=jnxMbgSgwGtpV2ICsOptIEIncorrRx, jnxMbgSgwPPUpdConnSetReqTx=jnxMbgSgwPPUpdConnSetReqTx, jnxMbgSgwUnSupportedMsgRx=jnxMbgSgwUnSupportedMsgRx, jnxMbgSgwRelAcsBrReqTx=jnxMbgSgwRelAcsBrReqTx, jnxMbgSgwPPDelBrCmdRx=jnxMbgSgwPPDelBrCmdRx, jnxMbgSgwIfCrIndTunRespTx=jnxMbgSgwIfCrIndTunRespTx, jnxMbgSgwPPCrIndTunRespRx=jnxMbgSgwPPCrIndTunRespRx, jnxMbgSgwIfGtpV2ICsTFTSMANTErRx=jnxMbgSgwIfGtpV2ICsTFTSMANTErRx, jnxMbgSgwPPModBrCmdTx=jnxMbgSgwPPModBrCmdTx, jnxMbgSgwPPGtpV2ICsNOTFTUECTXRx=jnxMbgSgwPPGtpV2ICsNOTFTUECTXRx, jnxMbgSgwIfGtpV2ICsAcceptPartRx=jnxMbgSgwIfGtpV2ICsAcceptPartRx, jnxMbgSgwPPGtpV2ICsInvPrRx=jnxMbgSgwPPGtpV2ICsInvPrRx, PYSNMP_MODULE_ID=jnxMbgSgwGtpMib, jnxMbgSgwGtpV2ICsAPNAcsDenTx=jnxMbgSgwGtpV2ICsAPNAcsDenTx, jnxMbgSgwPPGTPUnknVerRx=jnxMbgSgwPPGTPUnknVerRx, jnxMbgSgwPPGtpV2ICsRATChgRx=jnxMbgSgwPPGtpV2ICsRATChgRx, jnxMbgSgwPPGtpV2ICsAcceptPartTx=jnxMbgSgwPPGtpV2ICsAcceptPartTx, jnxMbgSgwPPGtpV2ICsRATChgTx=jnxMbgSgwPPGtpV2ICsRATChgTx, jnxMbgSgwGtpV2ICsServDeniedTx=jnxMbgSgwGtpV2ICsServDeniedTx, jnxMbgSgwIfGtpV2ICsInvPrRx=jnxMbgSgwIfGtpV2ICsInvPrRx, jnxMbgSgwIfCrIndTunReqTx=jnxMbgSgwIfCrIndTunReqTx, jnxMbgSgwRelAcsBrRespRx=jnxMbgSgwRelAcsBrRespRx, jnxMbgSgwCreateSessRspTx=jnxMbgSgwCreateSessRspTx, jnxMbgSgwUpdBrRspTx=jnxMbgSgwUpdBrRspTx, jnxMbgSgwPPRxPacketsDropped=jnxMbgSgwPPRxPacketsDropped, jnxMbgSgwDelBrCmdRx=jnxMbgSgwDelBrCmdRx, jnxMbgSgwGtpV2ICsLclDetRx=jnxMbgSgwGtpV2ICsLclDetRx, jnxMbgSgwPPStopPagingIndTx=jnxMbgSgwPPStopPagingIndTx, jnxMbgSgwGtpPrDnTPerPrAlrmClr=jnxMbgSgwGtpPrDnTPerPrAlrmClr, jnxMbgSgwPPModBrRspRx=jnxMbgSgwPPModBrRspRx, jnxMbgSgwPPUpdBrReqRx=jnxMbgSgwPPUpdBrReqRx, jnxMbgSgwGtpV2ICsPTMSISigMMTx=jnxMbgSgwGtpV2ICsPTMSISigMMTx, jnxMbgSgwPPGtpV2ICsMisUnknAPNTx=jnxMbgSgwPPGtpV2ICsMisUnknAPNTx, jnxMbgSgwGtpV2ICsReqRejTx=jnxMbgSgwGtpV2ICsReqRejTx, jnxMbgSgwGtpV2ICsCtxNotFndRx=jnxMbgSgwGtpV2ICsCtxNotFndRx, jnxMbgSgwIfCrtBrReqTx=jnxMbgSgwIfCrtBrReqTx, jnxMbgSgwIfResumeAckTx=jnxMbgSgwIfResumeAckTx, jnxMbgSgwV2NumMsgTx=jnxMbgSgwV2NumMsgTx, jnxMbgSgwPPGtpV2ICsGREKeyNtFdTx=jnxMbgSgwPPGtpV2ICsGREKeyNtFdTx, jnxMbgSgwPPGtpV2ICsInvMsgFmtRx=jnxMbgSgwPPGtpV2ICsInvMsgFmtRx, jnxMbgSgwIfGtpV2ICsInvTotLenTx=jnxMbgSgwIfGtpV2ICsInvTotLenTx, jnxMbgSgwIfGtpV2ICsGREKeyNtFdTx=jnxMbgSgwIfGtpV2ICsGREKeyNtFdTx, jnxMbgSgwPPGtpV2ICsIMSINotKnTx=jnxMbgSgwPPGtpV2ICsIMSINotKnTx, jnxMbgSgwGtpV2ICsUnknownRx=jnxMbgSgwGtpV2ICsUnknownRx, jnxMbgSgwUpdConnSetRspTx=jnxMbgSgwUpdConnSetRspTx, jnxMbgSgwCreateSessReqRx=jnxMbgSgwCreateSessReqRx, jnxMbgSgwGtpV2ICsInvTotLenRx=jnxMbgSgwGtpV2ICsInvTotLenRx, jnxMbgSgwDelBrReqRx=jnxMbgSgwDelBrReqRx, jnxMbgSgwIfV2EchoRespTx=jnxMbgSgwIfV2EchoRespTx, jnxMbgSgwIfGtpV2ICsVerNotSuppTx=jnxMbgSgwIfGtpV2ICsVerNotSuppTx, jnxMbgSgwIfGtpV2ICsRPrNtRspRx=jnxMbgSgwIfGtpV2ICsRPrNtRspRx, jnxMbgSgwIfGtpV2ICsUnexpRptIETx=jnxMbgSgwIfGtpV2ICsUnexpRptIETx, jnxMbgSgwGtpV2ICsRelocFailTx=jnxMbgSgwGtpV2ICsRelocFailTx, jnxMbgSgwGtpV2ICsAllDynAdOccRx=jnxMbgSgwGtpV2ICsAllDynAdOccRx, jnxMbgSgwPPDelSessReqTx=jnxMbgSgwPPDelSessReqTx, jnxMbgSgwDelSessReqRx=jnxMbgSgwDelSessReqRx, jnxMbgSgwPPResumeAckTx=jnxMbgSgwPPResumeAckTx, jnxMbgSgwPPGtpV2ICsSynErTADTx=jnxMbgSgwPPGtpV2ICsSynErTADTx, jnxMbgSgwGtpV2ICsUserAUTHFlRx=jnxMbgSgwGtpV2ICsUserAUTHFlRx, jnxMbgSgwIfGtpV2ICsCmpDetTx=jnxMbgSgwIfGtpV2ICsCmpDetTx, jnxMbgSgwGtpV2ICsDtForNtSupRx=jnxMbgSgwGtpV2ICsDtForNtSupRx, jnxMbgSgwIfGtpV2ICsUnabPageUERx=jnxMbgSgwIfGtpV2ICsUnabPageUERx, jnxMbgSgwPPGtpV2ICsProtoNtSupRx=jnxMbgSgwPPGtpV2ICsProtoNtSupRx, jnxMbgSgwV2VerNotSupTx=jnxMbgSgwV2VerNotSupTx, jnxMbgSgwGtpV2ICsInReFRePrRx=jnxMbgSgwGtpV2ICsInReFRePrRx, jnxMbgSgwIfGtpV2ICsSysFailRx=jnxMbgSgwIfGtpV2ICsSysFailRx, jnxMbgSgwIfGtpV2ICsInReFRePrTx=jnxMbgSgwIfGtpV2ICsInReFRePrTx, jnxMbgSgwPPDlDataNotifTx=jnxMbgSgwPPDlDataNotifTx, jnxMbgSgwIfGtpV2ICsRelocFailRx=jnxMbgSgwIfGtpV2ICsRelocFailRx, jnxMbgSgwDelConnSetRspTx=jnxMbgSgwDelConnSetRspTx, jnxMbgSgwT3RespTmrExpRx=jnxMbgSgwT3RespTmrExpRx, jnxMbgSgwStopPagingIndRx=jnxMbgSgwStopPagingIndRx, jnxMbgSgwDelSessReqTx=jnxMbgSgwDelSessReqTx, jnxMbgSgwGtpV2ICsTFTSysErrRx=jnxMbgSgwGtpV2ICsTFTSysErrRx, jnxMbgSgwPPRelAcsBrRespRx=jnxMbgSgwPPRelAcsBrRespRx, jnxMbgSgwIfDelSessReqRx=jnxMbgSgwIfDelSessReqRx, jnxMbgSgwGtpV2ICsReqAcceptTx=jnxMbgSgwGtpV2ICsReqAcceptTx, jnxMbgSgwPPRelAcsBrRespTx=jnxMbgSgwPPRelAcsBrRespTx, jnxMbgSgwIfGtpV1EchoRespTx=jnxMbgSgwIfGtpV1EchoRespTx, jnxMbgSgwGtpV2ICsAcceptPartTx=jnxMbgSgwGtpV2ICsAcceptPartTx, jnxMbgSgwIfModBrReqRx=jnxMbgSgwIfModBrReqRx, jnxMbgSgwGtpCGlbStatsTable=jnxMbgSgwGtpCGlbStatsTable, jnxMbgSgwGtpV2ICsPkFltSynErrTx=jnxMbgSgwGtpV2ICsPkFltSynErrTx, jnxMbgSgwIfDelBrRspTx=jnxMbgSgwIfDelBrRspTx, jnxMbgSgwV2EchoReqRx=jnxMbgSgwV2EchoReqRx, jnxMbgSgwPPGtpV1EchoReqTx=jnxMbgSgwPPGtpV1EchoReqTx, jnxMbgSgwPPGtpV2ICsUERefusesRx=jnxMbgSgwPPGtpV2ICsUERefusesRx, jnxMbgSgwGtpV2ICsInReFRePrTx=jnxMbgSgwGtpV2ICsInReFRePrTx, jnxMbgSgwIfGtpV2ICsSrvNotSuppRx=jnxMbgSgwIfGtpV2ICsSrvNotSuppRx, jnxMbgSgwPPDelBrRspTx=jnxMbgSgwPPDelBrRspTx, jnxMbgSgwResumeAckRx=jnxMbgSgwResumeAckRx, jnxMbgSgwPPPacketAllocFail=jnxMbgSgwPPPacketAllocFail, jnxMbgSgwPPGtpV2ICsDenINRatTx=jnxMbgSgwPPGtpV2ICsDenINRatTx, jnxMbgSgwUnknMsgRx=jnxMbgSgwUnknMsgRx, jnxMbgSgwPPDelIndTunRespTx=jnxMbgSgwPPDelIndTunRespTx, jnxMbgSgwIfGtpV2ICsUnexpRptIERx=jnxMbgSgwIfGtpV2ICsUnexpRptIERx, jnxMbgSgwIfCrtBrRspTx=jnxMbgSgwIfCrtBrRspTx, jnxMbgSgwGtpV2ICsNewPTNPrefTx=jnxMbgSgwGtpV2ICsNewPTNPrefTx, jnxMbgSgwIfGtpV2ICsUnknownRx=jnxMbgSgwIfGtpV2ICsUnknownRx, jnxMbgSgwGtpPrDnTPerPrAlrmActv=jnxMbgSgwGtpPrDnTPerPrAlrmActv, jnxMbgSgwPPGtpV2ICsPkFltManErRx=jnxMbgSgwPPGtpV2ICsPkFltManErRx, jnxMbgSgwPPGtpV2ICsNPTSIAdbrTx=jnxMbgSgwPPGtpV2ICsNPTSIAdbrTx, jnxMbgSgwIfDelBrFlrIndTx=jnxMbgSgwIfDelBrFlrIndTx, jnxMbgSgwIfGtpV2ICsPkFltManErTx=jnxMbgSgwIfGtpV2ICsPkFltManErTx, jnxMbgSgwStopPagingIndTx=jnxMbgSgwStopPagingIndTx, jnxMbgSgwGtpV2ICsProtoNtSupTx=jnxMbgSgwGtpV2ICsProtoNtSupTx, jnxMbgSgwIfRelAcsBrReqRx=jnxMbgSgwIfRelAcsBrReqRx, jnxMbgSgwGtpV2ICsCmpDetRx=jnxMbgSgwGtpV2ICsCmpDetRx, jnxMbgSgwIfDelBrRspRx=jnxMbgSgwIfDelBrRspRx, jnxMbgSgwPPDelIndTunRespRx=jnxMbgSgwPPDelIndTunRespRx, jnxMbgSgwPPGtpV1UnSupMsgRx=jnxMbgSgwPPGtpV1UnSupMsgRx, jnxMbgSgwPPGtpV1EchoReqRx=jnxMbgSgwPPGtpV1EchoReqRx, jnxMbgSgwIfGtpV2ICsPkFltSynErTx=jnxMbgSgwIfGtpV2ICsPkFltSynErTx, jnxMbgSgwIfCrIndTunReqRx=jnxMbgSgwIfCrIndTunReqRx, jnxMbgSgwGtpV2ICsManIEIncorrTx=jnxMbgSgwGtpV2ICsManIEIncorrTx, jnxMbgSgwIfGtpV2ICsManIEMissRx=jnxMbgSgwIfGtpV2ICsManIEMissRx, jnxMbgSgwPPCreateSessReqTx=jnxMbgSgwPPCreateSessReqTx, jnxMbgSgwIfDelConnSetReqTx=jnxMbgSgwIfDelConnSetReqTx, jnxMbgSgwPPGtpV2ICsPTNotSuppTx=jnxMbgSgwPPGtpV2ICsPTNotSuppTx, jnxMbgSgwPPDlDataAckTx=jnxMbgSgwPPDlDataAckTx, jnxMbgSgwIfDelConnSetRspTx=jnxMbgSgwIfDelConnSetRspTx, jnxMbgSgwPPModBrReqRx=jnxMbgSgwPPModBrReqRx, jnxMbgSgwRxPacketsDropped=jnxMbgSgwRxPacketsDropped, jnxMbgSgwIfGtpV2ICsColNWReqTx=jnxMbgSgwIfGtpV2ICsColNWReqTx, jnxMbgSgwPPGtpV2ICsUnPgUESusRx=jnxMbgSgwPPGtpV2ICsUnPgUESusRx, jnxMbgSgwDelConnSetReqTx=jnxMbgSgwDelConnSetReqTx, jnxMbgSgwGtpV1EchoReqTx=jnxMbgSgwGtpV1EchoReqTx, jnxMbgSgwPPCrtBrRspRx=jnxMbgSgwPPCrtBrRspRx, jnxMbgSgwIfStopPagingIndRx=jnxMbgSgwIfStopPagingIndRx, jnxMbgSgwIfGtpV2ICsLclDetRx=jnxMbgSgwIfGtpV2ICsLclDetRx, jnxMbgSgwIfModBrRspRx=jnxMbgSgwIfModBrRspRx, jnxMbgSgwS11PiggybackMsgTx=jnxMbgSgwS11PiggybackMsgTx, jnxMbgSgwGtpV2ICsSynErTADRx=jnxMbgSgwGtpV2ICsSynErTADRx, jnxMbgSgwPPGtpV2ICsISRDeactTx=jnxMbgSgwPPGtpV2ICsISRDeactTx, jnxMbgSgwIfGtpV2ICsUnPgUESusTx=jnxMbgSgwIfGtpV2ICsUnPgUESusTx, jnxMbgSgwGtpV2ICsUnexpRptIERx=jnxMbgSgwGtpV2ICsUnexpRptIERx, jnxMbgSgwGtpV2ICsUnabPageUETx=jnxMbgSgwGtpV2ICsUnabPageUETx, jnxMbgSgwGtpV2ICsRATChgRx=jnxMbgSgwGtpV2ICsRATChgRx, jnxMbgSgwGtpV2ICsColNWReqTx=jnxMbgSgwGtpV2ICsColNWReqTx, jnxMbgSgwPPGtpV2ICsDtForNtSupRx=jnxMbgSgwPPGtpV2ICsDtForNtSupRx, jnxMbgSgwPPDelConnSetRspRx=jnxMbgSgwPPDelConnSetRspRx, jnxMbgSgwPPResumeNotifRx=jnxMbgSgwPPResumeNotifRx, jnxMbgSgwIfCrtBrRspRx=jnxMbgSgwIfCrtBrRspRx, jnxMbgSgwIfGtpV2ICsInvLenRx=jnxMbgSgwIfGtpV2ICsInvLenRx, jnxMbgSgwPPGtpV2ICsPTNotSuppRx=jnxMbgSgwPPGtpV2ICsPTNotSuppRx, jnxMbgSgwPPGtpV2ICsRMValRcvTx=jnxMbgSgwPPGtpV2ICsRMValRcvTx, jnxMbgSgwPPGtpV2ICsMisUnknAPNRx=jnxMbgSgwPPGtpV2ICsMisUnknAPNRx, jnxMbgSgwGtpV2ICsDeniedINRatRx=jnxMbgSgwGtpV2ICsDeniedINRatRx, jnxMbgSgwGtpV2ICsManIEIncorrRx=jnxMbgSgwGtpV2ICsManIEIncorrRx, jnxMbgSgwGtpV2ICsReqRejRx=jnxMbgSgwGtpV2ICsReqRejRx, jnxMbgSgwPPPiggybackMsgTx=jnxMbgSgwPPPiggybackMsgTx, jnxMbgSgwPPGtpV2ICsInvLenRx=jnxMbgSgwPPGtpV2ICsInvLenRx, jnxMbgSgwIfGtpV2ICsEIFRNCEnRx=jnxMbgSgwIfGtpV2ICsEIFRNCEnRx, jnxMbgSgwPPBrResFlrIndTx=jnxMbgSgwPPBrResFlrIndTx, jnxMbgSgwIfModBrCmdRx=jnxMbgSgwIfModBrCmdRx, jnxMbgSgwIfDelIndTunRespRx=jnxMbgSgwIfDelIndTunRespRx, jnxMbgSgwGtpV1EchoReqRx=jnxMbgSgwGtpV1EchoReqRx, jnxMbgSgwIfDelBrReqTx=jnxMbgSgwIfDelBrReqTx, jnxMbgSgwIfGtpV2ICsUserAUTHFlTx=jnxMbgSgwIfGtpV2ICsUserAUTHFlTx, jnxMbgSgwIfGtpV2ICsCmpDetRx=jnxMbgSgwIfGtpV2ICsCmpDetRx, jnxMbgSgwIfSuspAckTx=jnxMbgSgwIfSuspAckTx, jnxMbgSgwGtpV2ICsCtxNotFndTx=jnxMbgSgwGtpV2ICsCtxNotFndTx, jnxMbgSgwPPGtpV1ErrIndTx=jnxMbgSgwPPGtpV1ErrIndTx, jnxMbgSgwGtpV2ICsUERefusesTx=jnxMbgSgwGtpV2ICsUERefusesTx, jnxMbgSgwPPCrIndTunRespTx=jnxMbgSgwPPCrIndTunRespTx, jnxMbgSgwPPIPVerErrRx=jnxMbgSgwPPIPVerErrRx, jnxMbgSgwIfUpdBrReqTx=jnxMbgSgwIfUpdBrReqTx, jnxMbgSgwIfGtpV2ICsCtxNotFndRx=jnxMbgSgwIfGtpV2ICsCtxNotFndRx, jnxMbgSgwIfGtpV2ICsTFTSysErrTx=jnxMbgSgwIfGtpV2ICsTFTSysErrTx, jnxMbgSgwGtpV2ICsLclDetTx=jnxMbgSgwGtpV2ICsLclDetTx, jnxMbgSgwPPGtpV2ICsPkFltManErTx=jnxMbgSgwPPGtpV2ICsPkFltManErTx, jnxMbgSgwPPGtpV2ICsUENotRespTx=jnxMbgSgwPPGtpV2ICsUENotRespTx, jnxMbgSgwGtpV1ErrIndRx=jnxMbgSgwGtpV1ErrIndRx, jnxMbgSgwIfModBrFlrIndTx=jnxMbgSgwIfModBrFlrIndTx, jnxMbgSgwPPGtpV2ICsPTMSISigMMTx=jnxMbgSgwPPGtpV2ICsPTMSISigMMTx, jnxMbgSgwIfGtpV2ICsSemErTADTx=jnxMbgSgwIfGtpV2ICsSemErTADTx, jnxMbgSgwPPUnSupportedMsgRx=jnxMbgSgwPPUnSupportedMsgRx, jnxMbgSgwIfDelSessRspTx=jnxMbgSgwIfDelSessRspTx, jnxMbgSgwIfGTPUnknVerRx=jnxMbgSgwIfGTPUnknVerRx, jnxMbgSgwPPGTPPortErrRx=jnxMbgSgwPPGTPPortErrRx, jnxMbgSgwIfGtpV2ICsUERefusesTx=jnxMbgSgwIfGtpV2ICsUERefusesTx, jnxMbgSgwDelBrFlrIndRx=jnxMbgSgwDelBrFlrIndRx, jnxMbgSgwS4PiggybackMsgTx=jnxMbgSgwS4PiggybackMsgTx, jnxMbgSgwIfGtpV1EndMarkerRx=jnxMbgSgwIfGtpV1EndMarkerRx, jnxMbgSgwGtpV2ICsGREKeyNtFdRx=jnxMbgSgwGtpV2ICsGREKeyNtFdRx, jnxMbgSgwGtpV2ICsTFTSMANTErTx=jnxMbgSgwGtpV2ICsTFTSMANTErTx, jnxMbgSgwIfBrResCmdTx=jnxMbgSgwIfBrResCmdTx, jnxMbgSgwPPResumeNotifTx=jnxMbgSgwPPResumeNotifTx, jnxMbgSgwIfGtpV2ICsPTNotSuppRx=jnxMbgSgwIfGtpV2ICsPTNotSuppRx, jnxMbgSgwIfGtpV2ICsSrvNotSuppTx=jnxMbgSgwIfGtpV2ICsSrvNotSuppTx, jnxMbgSgwPPGtpV2ICsInReFRePrTx=jnxMbgSgwPPGtpV2ICsInReFRePrTx, jnxMbgSgwPPDelBrFlrIndTx=jnxMbgSgwPPDelBrFlrIndTx, jnxMbgSgwIfGtpV2ICsTFTSysErrRx=jnxMbgSgwIfGtpV2ICsTFTSysErrRx, jnxMbgSgwIfGTPPortErrRx=jnxMbgSgwIfGTPPortErrRx, jnxMbgSgwPPGtpV2ICsSynErTADRx=jnxMbgSgwPPGtpV2ICsSynErTADRx, jnxMbgSgwPPGtpV2ICsPTMSISigMMRx=jnxMbgSgwPPGtpV2ICsPTMSISigMMRx, jnxMbgSgwGtpV2ICsInvMsgFmtTx=jnxMbgSgwGtpV2ICsInvMsgFmtTx, jnxMbgSgwPPGtpV2ICsInvPrTx=jnxMbgSgwPPGtpV2ICsInvPrTx, jnxMbgSgwIfV2NumBytesTx=jnxMbgSgwIfV2NumBytesTx, jnxMbgSgwIfGtpV2ICsUnPgUESusRx=jnxMbgSgwIfGtpV2ICsUnPgUESusRx, jnxMbgSgwPPGtpV1EchoRespRx=jnxMbgSgwPPGtpV1EchoRespRx, jnxMbgSgwGtpV2ICsPageTx=jnxMbgSgwGtpV2ICsPageTx, jnxMbgSgwGtpV2ICsNewPTSIAdbrRx=jnxMbgSgwGtpV2ICsNewPTSIAdbrRx, jnxMbgSgwIfGtpV2ICsAPNAcsDenRx=jnxMbgSgwIfGtpV2ICsAPNAcsDenRx, jnxMbgSgwIfModBrFlrIndRx=jnxMbgSgwIfModBrFlrIndRx, jnxMbgSgwS5PiggybackMsgRx=jnxMbgSgwS5PiggybackMsgRx, jnxMbgSgwIfGtpV2ICsInvMsgFmtRx=jnxMbgSgwIfGtpV2ICsInvMsgFmtRx, jnxMbgSgwGtpV2ICsPTMSISigMMRx=jnxMbgSgwGtpV2ICsPTMSISigMMRx, jnxMbgSgwIfGtpV2ICsRATChgTx=jnxMbgSgwIfGtpV2ICsRATChgTx, jnxMbgSgwPPGtpV2ICsUnknownRx=jnxMbgSgwPPGtpV2ICsUnknownRx, jnxMbgSgwPPDelSessReqRx=jnxMbgSgwPPDelSessReqRx, jnxMbgSgwPPT3RespTmrExpRx=jnxMbgSgwPPT3RespTmrExpRx, jnxMbgSgwIfGtpV2ICsLclDetTx=jnxMbgSgwIfGtpV2ICsLclDetTx, jnxMbgSgwGtpV2ICsServNotSuppRx=jnxMbgSgwGtpV2ICsServNotSuppRx, jnxMbgSgwPPDelConnSetRspTx=jnxMbgSgwPPDelConnSetRspTx, jnxMbgSgwPacketSendFail=jnxMbgSgwPacketSendFail, jnxMbgSgwIfModBrCmdTx=jnxMbgSgwIfModBrCmdTx, jnxMbgSgwGtpV2ICsNoMemTx=jnxMbgSgwGtpV2ICsNoMemTx, jnxMbgSgwIfGtpV2ICsIMSINotKnTx=jnxMbgSgwIfGtpV2ICsIMSINotKnTx, jnxMbgSgwPPGtpV2ICsVerNotSuppRx=jnxMbgSgwPPGtpV2ICsVerNotSuppRx, jnxMbgSgwGtpV2ICsRMValRcvTx=jnxMbgSgwGtpV2ICsRMValRcvTx, jnxMbgSgwIfGtpV2ICsDtForNtSupRx=jnxMbgSgwIfGtpV2ICsDtForNtSupRx, jnxMbgSgwIfUpdBrReqRx=jnxMbgSgwIfUpdBrReqRx, jnxMbgSgwModBrFlrIndTx=jnxMbgSgwModBrFlrIndTx, jnxMbgSgwDlDataNotifTx=jnxMbgSgwDlDataNotifTx, jnxMbgSgwGtpV2ICsPkFltSynErrRx=jnxMbgSgwGtpV2ICsPkFltSynErrRx, jnxMbgSgwPPGtpV2ICsManIEMissRx=jnxMbgSgwPPGtpV2ICsManIEMissRx, jnxMbgSgwCrIndTunRespTx=jnxMbgSgwCrIndTunRespTx, jnxMbgSgwPPCrtBrReqTx=jnxMbgSgwPPCrtBrReqTx, jnxMbgSgwPPGtpV2ICsServDeniedRx=jnxMbgSgwPPGtpV2ICsServDeniedRx)
mibBuilder.exportSymbols("JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", jnxMbgSgwBrResFlrIndRx=jnxMbgSgwBrResFlrIndRx, jnxMbgSgwPPModBrReqTx=jnxMbgSgwPPModBrReqTx, jnxMbgSgwIfDlDataAckRx=jnxMbgSgwIfDlDataAckRx, jnxMbgSgwIfGtpV2ICsUENotRespTx=jnxMbgSgwIfGtpV2ICsUENotRespTx, jnxMbgSgwGtpV2ICsRelocFailRx=jnxMbgSgwGtpV2ICsRelocFailRx, jnxMbgSgwPPGtpV2ICsNOTFTUECTXTx=jnxMbgSgwPPGtpV2ICsNOTFTUECTXTx, jnxMbgSgwDelConnSetRspRx=jnxMbgSgwDelConnSetRspRx, jnxMbgSgwGtpV1EndMarkerTx=jnxMbgSgwGtpV1EndMarkerTx, jnxMbgSgwPPSuspNotifRx=jnxMbgSgwPPSuspNotifRx, jnxMbgSgwGtpV2ICsUnexpRptIETx=jnxMbgSgwGtpV2ICsUnexpRptIETx, jnxMbgSgwIfGtpV2ICsReqRejRx=jnxMbgSgwIfGtpV2ICsReqRejRx, jnxMbgSgwModBrRspTx=jnxMbgSgwModBrRspTx, jnxMbgSgwGtpV2ICsAcceptPartRx=jnxMbgSgwGtpV2ICsAcceptPartRx, jnxMbgSgwIfSuspNotifRx=jnxMbgSgwIfSuspNotifRx, jnxMbgSgwPPV2NumMsgTx=jnxMbgSgwPPV2NumMsgTx, jnxMbgSgwPPGtpV2ICsNoMemTx=jnxMbgSgwPPGtpV2ICsNoMemTx, jnxMbgSgwIfGtpV2ICsReqAcceptRx=jnxMbgSgwIfGtpV2ICsReqAcceptRx, jnxMbgSgwPPPcktLenErrRx=jnxMbgSgwPPPcktLenErrRx, jnxMbgSgwBrResCmdTx=jnxMbgSgwBrResCmdTx, jnxMbgSgwIfGtpV2ICsCondIEMsTx=jnxMbgSgwIfGtpV2ICsCondIEMsTx, jnxMbgSgwGtpV2ICsInvLenRx=jnxMbgSgwGtpV2ICsInvLenRx, jnxMbgSgwPPGtpV1T3RespTmrExpRx=jnxMbgSgwPPGtpV1T3RespTmrExpRx, jnxMbgSgwPPGtpV2ICsRMValRcvRx=jnxMbgSgwPPGtpV2ICsRMValRcvRx, jnxMbgSgwS5PiggybackMsgTx=jnxMbgSgwS5PiggybackMsgTx, jnxMbgSgwIfDelIndTunReqTx=jnxMbgSgwIfDelIndTunReqTx, jnxMbgSgwIfDelBrCmdTx=jnxMbgSgwIfDelBrCmdTx, jnxMbgSgwIfGtpV2ICsMisUnknAPNRx=jnxMbgSgwIfGtpV2ICsMisUnknAPNRx, jnxMbgSgwPPGtpV2ICsNoMemRx=jnxMbgSgwPPGtpV2ICsNoMemRx, jnxMbgSgwPPUpdConnSetReqRx=jnxMbgSgwPPUpdConnSetReqRx, jnxMbgSgwDlDataNotiFlrIndRx=jnxMbgSgwDlDataNotiFlrIndRx, jnxMbgSgwPPDlDataNotiFlrIndRx=jnxMbgSgwPPDlDataNotiFlrIndRx, jnxMbgSgwIfV2VerNotSupTx=jnxMbgSgwIfV2VerNotSupTx, jnxMbgSgwPPGtpV2ICsIMSINotKnRx=jnxMbgSgwPPGtpV2ICsIMSINotKnRx, jnxMbgSgwPPRelAcsBrReqRx=jnxMbgSgwPPRelAcsBrReqRx, jnxMbgSgwPPGtpV2ICsInReFRePrRx=jnxMbgSgwPPGtpV2ICsInReFRePrRx, jnxMbgSgwGtpV2ICsPageRx=jnxMbgSgwGtpV2ICsPageRx, jnxMbgSgwIfResumeNotifTx=jnxMbgSgwIfResumeNotifTx, jnxMbgSgwPPGtpV2ICsUnabPageUERx=jnxMbgSgwPPGtpV2ICsUnabPageUERx, jnxMbgSgwIfRxPacketsDropped=jnxMbgSgwIfRxPacketsDropped, jnxMbgSgwGtpV1EchoRespTx=jnxMbgSgwGtpV1EchoRespTx, jnxMbgSgwPPGtpV2ICsUserAUTHFlRx=jnxMbgSgwPPGtpV2ICsUserAUTHFlRx, jnxMbgSgwIfCreateSessReqTx=jnxMbgSgwIfCreateSessReqTx, jnxMbgSgwPPDelIndTunReqTx=jnxMbgSgwPPDelIndTunReqTx, jnxMbgSgwIfDelIndTunReqRx=jnxMbgSgwIfDelIndTunReqRx, jnxMbgSgwPPGtpV2ICsAcceptPartRx=jnxMbgSgwPPGtpV2ICsAcceptPartRx, jnxMbgSgwPPV2EchoRespTx=jnxMbgSgwPPV2EchoRespTx, jnxMbgSgwPPGtpV2ICsColNWReqTx=jnxMbgSgwPPGtpV2ICsColNWReqTx, jnxMbgSgwGtpV2ICsCondIEMsRx=jnxMbgSgwGtpV2ICsCondIEMsRx, jnxMbgSgwGTPPortErrRx=jnxMbgSgwGTPPortErrRx, jnxMbgSgwIfGtpV2ICsInReFRePrRx=jnxMbgSgwIfGtpV2ICsInReFRePrRx, jnxMbgSgwPPGtpV2ICsPkFltSynErTx=jnxMbgSgwPPGtpV2ICsPkFltSynErTx, jnxMbgSgwIfGtpV2ICsUENotRespRx=jnxMbgSgwIfGtpV2ICsUENotRespRx, jnxMbgSgwDelBrRspRx=jnxMbgSgwDelBrRspRx, jnxMbgSgwIfType=jnxMbgSgwIfType, jnxMbgSgwIfGtpV2ICsServDeniedTx=jnxMbgSgwIfGtpV2ICsServDeniedTx, jnxMbgSgwSuspAckRx=jnxMbgSgwSuspAckRx, jnxMbgSgwPPGtpV2ICsManIEIncorTx=jnxMbgSgwPPGtpV2ICsManIEIncorTx, jnxMbgSgwIfGtpV2ICsISRDeactRx=jnxMbgSgwIfGtpV2ICsISRDeactRx, jnxMbgSgwGtpIfStatsEntry=jnxMbgSgwGtpIfStatsEntry, jnxMbgSgwIfGtpV2ICsServDeniedRx=jnxMbgSgwIfGtpV2ICsServDeniedRx, jnxMbgSgwGtpV2ICsNoResTx=jnxMbgSgwGtpV2ICsNoResTx, jnxMbgSgwPPGtpV2ICsReqAcceptRx=jnxMbgSgwPPGtpV2ICsReqAcceptRx, jnxMbgSgwDelBrCmdTx=jnxMbgSgwDelBrCmdTx, jnxMbgSgwGtpV2ICsNoMemRx=jnxMbgSgwGtpV2ICsNoMemRx, jnxMbgSgwGtpV2ICsUnPgUESusTx=jnxMbgSgwGtpV2ICsUnPgUESusTx, jnxMbgSgwIfDelConnSetRspRx=jnxMbgSgwIfDelConnSetRspRx, jnxMbgSgwIfGtpV2ICsNOTFTUECTXTx=jnxMbgSgwIfGtpV2ICsNOTFTUECTXTx, jnxMbgSgwPPDelIndTunReqRx=jnxMbgSgwPPDelIndTunReqRx, jnxMbgSgwIfGtpV2ICsPTNotSuppTx=jnxMbgSgwIfGtpV2ICsPTNotSuppTx, jnxMbgSgwCrtBrRspRx=jnxMbgSgwCrtBrRspRx, jnxMbgSgwGtpV2ICsInvLenTx=jnxMbgSgwGtpV2ICsInvLenTx, jnxMbgSgwGtpV2ICsNewPTNPrefRx=jnxMbgSgwGtpV2ICsNewPTNPrefRx, jnxMbgSgwGtpV2ICsIMSINotKnRx=jnxMbgSgwGtpV2ICsIMSINotKnRx, jnxMbgSgwIfCreateSessRspRx=jnxMbgSgwIfCreateSessRspRx, jnxMbgSgwIfDelSessRspRx=jnxMbgSgwIfDelSessRspRx, jnxMbgSgwGtpV2ICsEIFRNCEnTx=jnxMbgSgwGtpV2ICsEIFRNCEnTx, jnxMbgSgwIfBrResFlrIndRx=jnxMbgSgwIfBrResFlrIndRx, jnxMbgSgwIfGtpV2ICsColNWReqRx=jnxMbgSgwIfGtpV2ICsColNWReqRx, jnxMbgSgwIfProtocolErrRx=jnxMbgSgwIfProtocolErrRx, jnxMbgSgwGtpV2ICsInvPrTx=jnxMbgSgwGtpV2ICsInvPrTx, jnxMbgSgwGtpNotifications=jnxMbgSgwGtpNotifications, jnxMbgSgwGtpV2ICsPkFltManErrTx=jnxMbgSgwGtpV2ICsPkFltManErrTx, jnxMbgSgwPPGtpV2ICsNewPTNPrefRx=jnxMbgSgwPPGtpV2ICsNewPTNPrefRx, jnxMbgSgwGtpV2ICsRPrNtRspTx=jnxMbgSgwGtpV2ICsRPrNtRspTx, jnxMbgSgwRelAcsBrRespTx=jnxMbgSgwRelAcsBrRespTx, jnxMbgSgwGtpV2ICsAPNResTIncTx=jnxMbgSgwGtpV2ICsAPNResTIncTx, jnxMbgSgwPPGtpV2ICsCondIEMsTx=jnxMbgSgwPPGtpV2ICsCondIEMsTx, jnxMbgSgwUpdConnSetReqTx=jnxMbgSgwUpdConnSetReqTx, jnxMbgSgwPPGtpV2ICsAPNResTIncRx=jnxMbgSgwPPGtpV2ICsAPNResTIncRx, jnxMbgSgwGtpV2ICsServNotSuppTx=jnxMbgSgwGtpV2ICsServNotSuppTx, jnxMbgSgwUpdBrRspRx=jnxMbgSgwUpdBrRspRx, jnxMbgSgwDelIndTunReqTx=jnxMbgSgwDelIndTunReqTx, jnxMbgSgwIfGtpV2ICsNewPTNPrefRx=jnxMbgSgwIfGtpV2ICsNewPTNPrefRx, jnxMbgSgwDelConnSetReqRx=jnxMbgSgwDelConnSetReqRx, jnxMbgSgwGtpV2ICsInvPrRx=jnxMbgSgwGtpV2ICsInvPrRx, jnxMbgSgwIfGtpV1EndMarkerTx=jnxMbgSgwIfGtpV1EndMarkerTx, jnxMbgSgwBrResFlrIndTx=jnxMbgSgwBrResFlrIndTx, jnxMbgSgwIPVerErrRx=jnxMbgSgwIPVerErrRx, jnxMbgSgwIfGtpV1T3RespTmrExpRx=jnxMbgSgwIfGtpV1T3RespTmrExpRx, jnxMbgSgwIfModBrRspTx=jnxMbgSgwIfModBrRspTx, jnxMbgSgwPPGtpV2ICsProtoNtSupTx=jnxMbgSgwPPGtpV2ICsProtoNtSupTx, jnxMbgSgwIfGtpV2ICsInvMsgFmtTx=jnxMbgSgwIfGtpV2ICsInvMsgFmtTx, jnxMbgSgwPPSuspAckTx=jnxMbgSgwPPSuspAckTx, jnxMbgSgwGtpV2ICsNOTFTUECTXRx=jnxMbgSgwGtpV2ICsNOTFTUECTXRx, jnxMbgSgwPPGtpV2ICsOptIEIncorRx=jnxMbgSgwPPGtpV2ICsOptIEIncorRx, jnxMbgSgwUpdConnSetRspRx=jnxMbgSgwUpdConnSetRspRx, jnxMbgSgwGtpV2ICsPTNotSuppRx=jnxMbgSgwGtpV2ICsPTNotSuppRx, jnxMbgSgwPPGtpV2ICsAPNAcsDenRx=jnxMbgSgwPPGtpV2ICsAPNAcsDenRx, jnxMbgSgwPPGtpV2ICsUnexpRptIERx=jnxMbgSgwPPGtpV2ICsUnexpRptIERx, jnxMbgSgwCreateSessRspRx=jnxMbgSgwCreateSessRspRx, jnxMbgSgwIfGtpV1UnSupMsgRx=jnxMbgSgwIfGtpV1UnSupMsgRx, jnxMbgSgwUpdBrReqTx=jnxMbgSgwUpdBrReqTx, jnxMbgSgwPPGtpV2ICsServNotSupRx=jnxMbgSgwPPGtpV2ICsServNotSupRx, jnxMbgSgwIfGtpV2ICsUERefusesRx=jnxMbgSgwIfGtpV2ICsUERefusesRx, jnxMbgSgwPPGtpV2ICsRPrNtRspTx=jnxMbgSgwPPGtpV2ICsRPrNtRspTx, jnxMbgSgwIfGtpV1EchoReqTx=jnxMbgSgwIfGtpV1EchoReqTx, jnxMbgSgwPPGtpV2ICsCmpDetRx=jnxMbgSgwPPGtpV2ICsCmpDetRx, jnxMbgSgwCrIndTunRespRx=jnxMbgSgwCrIndTunRespRx, jnxMbgSgwIfGtpV2ICsOptIEIncorRx=jnxMbgSgwIfGtpV2ICsOptIEIncorRx, jnxMbgSgwPPGtpV2ICsCmpDetTx=jnxMbgSgwPPGtpV2ICsCmpDetTx, jnxMbgSgwGtpAlarmStatCounter=jnxMbgSgwGtpAlarmStatCounter, jnxMbgSgwPPV2EchoReqRx=jnxMbgSgwPPV2EchoReqRx, jnxMbgSgwDlDataAckRx=jnxMbgSgwDlDataAckRx, jnxMbgSgwIfIPVerErrRx=jnxMbgSgwIfIPVerErrRx, jnxMbgSgwPPStopPagingIndRx=jnxMbgSgwPPStopPagingIndRx, jnxMbgSgwGtpV2ICsInvTotLenTx=jnxMbgSgwGtpV2ICsInvTotLenTx, jnxMbgSgwIfModBrReqTx=jnxMbgSgwIfModBrReqTx, jnxMbgSgwGtpV1ProtocolErrRx=jnxMbgSgwGtpV1ProtocolErrRx, jnxMbgSgwGtpV2ICsUENotRespRx=jnxMbgSgwGtpV2ICsUENotRespRx, jnxMbgSgwIfGtpV2ICsManIEIncorRx=jnxMbgSgwIfGtpV2ICsManIEIncorRx, jnxMbgSgwPPGtpV2ICsUnexpRptIETx=jnxMbgSgwPPGtpV2ICsUnexpRptIETx, jnxMbgSgwIfGtpV2ICsPkFltSynErRx=jnxMbgSgwIfGtpV2ICsPkFltSynErRx, jnxMbgSgwPPDlDataNotifRx=jnxMbgSgwPPDlDataNotifRx, jnxMbgSgwGtpV2ICsCondIEMsTx=jnxMbgSgwGtpV2ICsCondIEMsTx, jnxMbgSgwDelIndTunRespTx=jnxMbgSgwDelIndTunRespTx, jnxMbgSgwPPGtpV2ICsDenINRatRx=jnxMbgSgwPPGtpV2ICsDenINRatRx, jnxMbgSgwGtpPeerGwDnNotif=jnxMbgSgwGtpPeerGwDnNotif, jnxMbgSgwGtpV2ICsPkFltManErrRx=jnxMbgSgwGtpV2ICsPkFltManErrRx, jnxMbgSgwV2NumMsgRx=jnxMbgSgwV2NumMsgRx, jnxMbgSgwPPModBrFlrIndTx=jnxMbgSgwPPModBrFlrIndTx, jnxMbgSgwIfUpdConnSetReqRx=jnxMbgSgwIfUpdConnSetReqRx, jnxMbgSgwGtpObjects=jnxMbgSgwGtpObjects, jnxMbgSgwGtpV2ICsSynErTADTx=jnxMbgSgwGtpV2ICsSynErTADTx, jnxMbgSgwIfPacketAllocFail=jnxMbgSgwIfPacketAllocFail, jnxMbgSgwIfCreateSessReqRx=jnxMbgSgwIfCreateSessReqRx, jnxMbgSgwPPCrIndTunReqRx=jnxMbgSgwPPCrIndTunReqRx, jnxMbgSgwCrtBrRspTx=jnxMbgSgwCrtBrRspTx, jnxMbgSgwPPV2NumBytesTx=jnxMbgSgwPPV2NumBytesTx, jnxMbgSgwGtpIfStatsTable=jnxMbgSgwGtpIfStatsTable, jnxMbgSgwGtpV2ICsColNWReqRx=jnxMbgSgwGtpV2ICsColNWReqRx, jnxMbgSgwPPGtpV2ICsUserAUTHFlTx=jnxMbgSgwPPGtpV2ICsUserAUTHFlTx, jnxMbgSgwIfGtpV2ICsEIFRNCEnTx=jnxMbgSgwIfGtpV2ICsEIFRNCEnTx, jnxMbgSgwPPV2EchoReqTx=jnxMbgSgwPPV2EchoReqTx, jnxMbgSgwDlDataNotifRx=jnxMbgSgwDlDataNotifRx, jnxMbgSgwPPGtpV2ICsRPrNtRspRx=jnxMbgSgwPPGtpV2ICsRPrNtRspRx, jnxMbgSgwS11PiggybackMsgRx=jnxMbgSgwS11PiggybackMsgRx, jnxMbgSgwPPGtpV2ICsSysFailRx=jnxMbgSgwPPGtpV2ICsSysFailRx, jnxMbgSgwGtpV2ICsVerNotSuppRx=jnxMbgSgwGtpV2ICsVerNotSuppRx, jnxMbgSgwDlDataAckTx=jnxMbgSgwDlDataAckTx, jnxMbgSgwPPGtpV2ICsCtxNotFndRx=jnxMbgSgwPPGtpV2ICsCtxNotFndRx, jnxMbgSgwIfGtpV2ICsAlDynAdOccTx=jnxMbgSgwIfGtpV2ICsAlDynAdOccTx, jnxMbgSgwPPGtpV1ProtocolErrRx=jnxMbgSgwPPGtpV1ProtocolErrRx, jnxMbgSgwModBrCmdTx=jnxMbgSgwModBrCmdTx, jnxMbgSgwPPProtocolErrRx=jnxMbgSgwPPProtocolErrRx, jnxMbgSgwPPRelAcsBrReqTx=jnxMbgSgwPPRelAcsBrReqTx, jnxMbgSgwGtpV1UnSupMsgRx=jnxMbgSgwGtpV1UnSupMsgRx, jnxMbgSgwResumeAckTx=jnxMbgSgwResumeAckTx, jnxMbgSgwIfGtpV2ICsSysFailTx=jnxMbgSgwIfGtpV2ICsSysFailTx, jnxMbgSgwIfV2EchoReqTx=jnxMbgSgwIfV2EchoReqTx, jnxMbgSgwIfGtpV2ICsRMValRcvRx=jnxMbgSgwIfGtpV2ICsRMValRcvRx, jnxMbgSgwPPUpdBrRspTx=jnxMbgSgwPPUpdBrRspTx, jnxMbgSgwIfGtpV2ICsSynErTADRx=jnxMbgSgwIfGtpV2ICsSynErTADRx, jnxMbgSgwPPSuspAckRx=jnxMbgSgwPPSuspAckRx, jnxMbgSgwProtocolErrRx=jnxMbgSgwProtocolErrRx, jnxMbgSgwCrtBrReqTx=jnxMbgSgwCrtBrReqTx, jnxMbgSgwIfCrtBrReqRx=jnxMbgSgwIfCrtBrReqRx, jnxMbgSgwIfGtpV2ICsProtoNtSupTx=jnxMbgSgwIfGtpV2ICsProtoNtSupTx, jnxMbgSgwIfGtpV2ICsUserAUTHFlRx=jnxMbgSgwIfGtpV2ICsUserAUTHFlRx, jnxMbgSgwGtpV2ICsSemErTADTx=jnxMbgSgwGtpV2ICsSemErTADTx, jnxMbgSgwGtpV2ICsSysFailTx=jnxMbgSgwGtpV2ICsSysFailTx, jnxMbgSgwGtpV2ICsDtForNtSupTx=jnxMbgSgwGtpV2ICsDtForNtSupTx, jnxMbgSgwPPDelBrFlrIndRx=jnxMbgSgwPPDelBrFlrIndRx, jnxMbgSgwPPGtpV2ICsUnPgUESusTx=jnxMbgSgwPPGtpV2ICsUnPgUESusTx, jnxMbgSgwGtpV2ICsManIEMissTx=jnxMbgSgwGtpV2ICsManIEMissTx, jnxMbgSgwCreateSessReqTx=jnxMbgSgwCreateSessReqTx, jnxMbgSgwPPUpdBrReqTx=jnxMbgSgwPPUpdBrReqTx, jnxMbgSgwIfPiggybackMsgTx=jnxMbgSgwIfPiggybackMsgTx, jnxMbgSgwIfResumeAckRx=jnxMbgSgwIfResumeAckRx, jnxMbgSgwPPGtpV2ICsPageRx=jnxMbgSgwPPGtpV2ICsPageRx, jnxMbgSgwIfGtpV2ICsNOTFTUECTXRx=jnxMbgSgwIfGtpV2ICsNOTFTUECTXRx, jnxMbgSgwIfGtpV2ICsInvTotLenRx=jnxMbgSgwIfGtpV2ICsInvTotLenRx, jnxMbgSgwGTPUnknVerRx=jnxMbgSgwGTPUnknVerRx, jnxMbgSgwV2EchoReqTx=jnxMbgSgwV2EchoReqTx, jnxMbgSgwPPGtpV2ICsManIEMissTx=jnxMbgSgwPPGtpV2ICsManIEMissTx, jnxMbgSgwIfGtpV2ICsAPNResTIncRx=jnxMbgSgwIfGtpV2ICsAPNResTIncRx, jnxMbgSgwIfDlDataNotiFlrIndRx=jnxMbgSgwIfDlDataNotiFlrIndRx, jnxMbgSgwPPGtpV2ICsInvTotLenTx=jnxMbgSgwPPGtpV2ICsInvTotLenTx, jnxMbgSgwGtpV2ICsMisUnknAPNRx=jnxMbgSgwGtpV2ICsMisUnknAPNRx, jnxMbgSgwModBrReqRx=jnxMbgSgwModBrReqRx, jnxMbgSgwModBrReqTx=jnxMbgSgwModBrReqTx, jnxMbgSgwIfGtpV2ICsReqRejTx=jnxMbgSgwIfGtpV2ICsReqRejTx, jnxMbgSgwIfRelAcsBrRespTx=jnxMbgSgwIfRelAcsBrRespTx, jnxMbgSgwCrIndTunReqRx=jnxMbgSgwCrIndTunReqRx, jnxMbgSgwIfGtpV2ICsProtoNtSupRx=jnxMbgSgwIfGtpV2ICsProtoNtSupRx, jnxMbgSgwPPDelBrRspRx=jnxMbgSgwPPDelBrRspRx, jnxMbgSgwPPGtpV2ICsLclDetTx=jnxMbgSgwPPGtpV2ICsLclDetTx, jnxMbgSgwIfGtpV2ICsIMSINotKnRx=jnxMbgSgwIfGtpV2ICsIMSINotKnRx, jnxMbgSgwIfRelAcsBrRespRx=jnxMbgSgwIfRelAcsBrRespRx, jnxMbgSgwPPV2VerNotSupTx=jnxMbgSgwPPV2VerNotSupTx, jnxMbgSgwIfGtpV2ICsPTMSISigMMTx=jnxMbgSgwIfGtpV2ICsPTMSISigMMTx, jnxMbgSgwIfGtpV2ICsRATChgRx=jnxMbgSgwIfGtpV2ICsRATChgRx, jnxMbgSgwGtpGwName=jnxMbgSgwGtpGwName, jnxMbgSgwPPGtpV2ICsUnabPageUETx=jnxMbgSgwPPGtpV2ICsUnabPageUETx, jnxMbgSgwGtpV2ICsNewPTSIAdbrTx=jnxMbgSgwGtpV2ICsNewPTSIAdbrTx, jnxMbgSgwSuspNotifRx=jnxMbgSgwSuspNotifRx, jnxMbgSgwPPV2VerNotSupRx=jnxMbgSgwPPV2VerNotSupRx, jnxMbgSgwIfGtpV2ICsNoMemRx=jnxMbgSgwIfGtpV2ICsNoMemRx, jnxMbgSgwDelBrRspTx=jnxMbgSgwDelBrRspTx, jnxMbgSgwIfGtpV2ICsSynErTADTx=jnxMbgSgwIfGtpV2ICsSynErTADTx, jnxMbgSgwIfIPProtoErrRx=jnxMbgSgwIfIPProtoErrRx, jnxMbgSgwIfGtpV1EchoRespRx=jnxMbgSgwIfGtpV1EchoRespRx, jnxMbgSgwPPGtpV2ICsInvLenTx=jnxMbgSgwPPGtpV2ICsInvLenTx, jnxMbgSgwSuspNotifTx=jnxMbgSgwSuspNotifTx, jnxMbgSgwPPGtpV2ICsColNWReqRx=jnxMbgSgwPPGtpV2ICsColNWReqRx, jnxMbgSgwIfGtpV2ICsCtxNotFndTx=jnxMbgSgwIfGtpV2ICsCtxNotFndTx, jnxMbgSgwIfGtpV1ErrIndRx=jnxMbgSgwIfGtpV1ErrIndRx, jnxMbgSgwPPDelConnSetReqTx=jnxMbgSgwPPDelConnSetReqTx, jnxMbgSgwPPGtpV1EchoRespTx=jnxMbgSgwPPGtpV1EchoRespTx, jnxMbgSgwPPGtpV2ICsServDeniedTx=jnxMbgSgwPPGtpV2ICsServDeniedTx, jnxMbgSgwGtpV2ICsUnknownTx=jnxMbgSgwGtpV2ICsUnknownTx, jnxMbgSgwPPDelConnSetReqRx=jnxMbgSgwPPDelConnSetReqRx, jnxMbgSgwIfDelIndTunRespTx=jnxMbgSgwIfDelIndTunRespTx, jnxMbgSgwIfPiggybackMsgRx=jnxMbgSgwIfPiggybackMsgRx, jnxMbgSgwIfDelBrCmdRx=jnxMbgSgwIfDelBrCmdRx, jnxMbgSgwGtpV1EchoRespRx=jnxMbgSgwGtpV1EchoRespRx, jnxMbgSgwPPGtpLclAddr=jnxMbgSgwPPGtpLclAddr, jnxMbgSgwPPGtpV2ICsPkFltSynErRx=jnxMbgSgwPPGtpV2ICsPkFltSynErRx, jnxMbgSgwPPGtpV2ICsRelocFailTx=jnxMbgSgwPPGtpV2ICsRelocFailTx, jnxMbgSgwGtpV2ICsAPNAcsDenRx=jnxMbgSgwGtpV2ICsAPNAcsDenRx, jnxMbgSgwIfGtpV2ICsUnknownTx=jnxMbgSgwIfGtpV2ICsUnknownTx, jnxMbgSgwPPDelSessRspRx=jnxMbgSgwPPDelSessRspRx, jnxMbgSgwPPGtpV2ICsNewPTNPrefTx=jnxMbgSgwPPGtpV2ICsNewPTNPrefTx, jnxMbgSgwV2EchoRespTx=jnxMbgSgwV2EchoRespTx, jnxMbgSgwPPGtpV2ICsVerNotSuppTx=jnxMbgSgwPPGtpV2ICsVerNotSuppTx, jnxMbgSgwResumeNotifTx=jnxMbgSgwResumeNotifTx, jnxMbgSgwPPCrtBrRspTx=jnxMbgSgwPPCrtBrRspTx, jnxMbgSgwPPGtpV2ICsGREKeyNtFdRx=jnxMbgSgwPPGtpV2ICsGREKeyNtFdRx, jnxMbgSgwPPGtpV2ICsManIEIncorRx=jnxMbgSgwPPGtpV2ICsManIEIncorRx, jnxMbgSgwIfDlDataNotifRx=jnxMbgSgwIfDlDataNotifRx, jnxMbgSgwIfDelConnSetReqRx=jnxMbgSgwIfDelConnSetReqRx, jnxMbgSgwGtpV2ICsAPNResTIncRx=jnxMbgSgwGtpV2ICsAPNResTIncRx, jnxMbgSgwIfGtpV1ProtocolErrRx=jnxMbgSgwIfGtpV1ProtocolErrRx, jnxMbgSgwIfUpdBrRspTx=jnxMbgSgwIfUpdBrRspTx, jnxMbgSgwPPGtpV2ICsTFTSysErrRx=jnxMbgSgwPPGtpV2ICsTFTSysErrRx)
mibBuilder.exportSymbols("JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB", jnxMbgSgwResumeNotifRx=jnxMbgSgwResumeNotifRx, jnxMbgSgwIfV2EchoReqRx=jnxMbgSgwIfV2EchoReqRx, jnxMbgSgwSuspAckTx=jnxMbgSgwSuspAckTx, jnxMbgSgwGtpV1EndMarkerRx=jnxMbgSgwGtpV1EndMarkerRx, jnxMbgSgwIfGtpV2ICsNoMemTx=jnxMbgSgwIfGtpV2ICsNoMemTx, jnxMbgSgwPPGtpV2ICsNPTSIAdbrRx=jnxMbgSgwPPGtpV2ICsNPTSIAdbrRx, jnxMbgSgwPPGtpV1EndMarkerTx=jnxMbgSgwPPGtpV1EndMarkerTx, jnxMbgSgwPPGtpV2ICsReqRejRx=jnxMbgSgwPPGtpV2ICsReqRejRx, jnxMbgSgwIfSuspAckRx=jnxMbgSgwIfSuspAckRx, jnxMbgSgwIfGtpV2ICsNoResRx=jnxMbgSgwIfGtpV2ICsNoResRx, jnxMbgSgwIfGtpV2ICsInvPrTx=jnxMbgSgwIfGtpV2ICsInvPrTx, jnxMbgSgwGtpV2ICsMisUnknAPNTx=jnxMbgSgwGtpV2ICsMisUnknAPNTx, jnxMbgSgwIfGtpV2ICsNPTSIAdbrTx=jnxMbgSgwIfGtpV2ICsNPTSIAdbrTx, jnxMbgSgwPPGtpV2ICsEIFRNCEnRx=jnxMbgSgwPPGtpV2ICsEIFRNCEnRx, jnxMbgSgwUpdConnSetReqRx=jnxMbgSgwUpdConnSetReqRx, jnxMbgSgwGtpV2ICsAllDynAdOccTx=jnxMbgSgwGtpV2ICsAllDynAdOccTx, jnxMbgSgwIfResumeNotifRx=jnxMbgSgwIfResumeNotifRx, jnxMbgSgwGtpV2ICsRATChgTx=jnxMbgSgwGtpV2ICsRATChgTx, jnxMbgSgwGtpV1ErrIndTx=jnxMbgSgwGtpV1ErrIndTx, jnxMbgSgwIfSuspNotifTx=jnxMbgSgwIfSuspNotifTx, jnxMbgSgwIfGtpV2ICsAlDynAdOccRx=jnxMbgSgwIfGtpV2ICsAlDynAdOccRx, jnxMbgSgwIfUnknMsgRx=jnxMbgSgwIfUnknMsgRx, jnxMbgSgwPPDlDataAckRx=jnxMbgSgwPPDlDataAckRx, jnxMbgSgwIfGtpV2ICsNoResTx=jnxMbgSgwIfGtpV2ICsNoResTx, jnxMbgSgwPPGtpV2ICsTFTSMANTErTx=jnxMbgSgwPPGtpV2ICsTFTSMANTErTx, jnxMbgSgwIfGtpV2ICsTFTSMANTErTx=jnxMbgSgwIfGtpV2ICsTFTSMANTErTx, jnxMbgSgwIfV2NumBytesRx=jnxMbgSgwIfV2NumBytesRx, jnxMbgSgwPPPacketSendFail=jnxMbgSgwPPPacketSendFail, jnxMbgSgwModBrRspRx=jnxMbgSgwModBrRspRx, jnxMbgSgwPPCrIndTunReqTx=jnxMbgSgwPPCrIndTunReqTx, jnxMbgSgwRelAcsBrReqRx=jnxMbgSgwRelAcsBrReqRx, jnxMbgSgwPPGtpV2ICsCondIEMsRx=jnxMbgSgwPPGtpV2ICsCondIEMsRx, jnxMbgSgwIfDelBrFlrIndRx=jnxMbgSgwIfDelBrFlrIndRx, jnxMbgSgwV2NumBytesRx=jnxMbgSgwV2NumBytesRx, jnxMbgSgwPPGtpV2ICsUENotRespRx=jnxMbgSgwPPGtpV2ICsUENotRespRx, jnxMbgSgwPPGtpV2ICsDtForNtSupTx=jnxMbgSgwPPGtpV2ICsDtForNtSupTx, jnxMbgSgwGtpNotificationVars=jnxMbgSgwGtpNotificationVars, jnxMbgSgwPPV2EchoRespRx=jnxMbgSgwPPV2EchoRespRx, jnxMbgSgwPPGtpV2ICsTFTSysErrTx=jnxMbgSgwPPGtpV2ICsTFTSysErrTx, jnxMbgSgwGtpV2ICsVerNotSuppTx=jnxMbgSgwGtpV2ICsVerNotSuppTx, jnxMbgSgwIfGtpV1EchoReqRx=jnxMbgSgwIfGtpV1EchoReqRx, jnxMbgSgwIfCreateSessRspTx=jnxMbgSgwIfCreateSessRspTx, jnxMbgSgwGtpPerPeerStatsEntry=jnxMbgSgwGtpPerPeerStatsEntry, jnxMbgSgwPPGtpV2ICsUnknownTx=jnxMbgSgwPPGtpV2ICsUnknownTx, jnxMbgSgwIfGtpV2ICsPTMSISigMMRx=jnxMbgSgwIfGtpV2ICsPTMSISigMMRx, jnxMbgSgwGtpGwIndex=jnxMbgSgwGtpGwIndex, jnxMbgSgwModBrCmdRx=jnxMbgSgwModBrCmdRx, jnxMbgSgwPPDelSessRspTx=jnxMbgSgwPPDelSessRspTx, jnxMbgSgwIfV2NumMsgRx=jnxMbgSgwIfV2NumMsgRx, jnxMbgSgwIfBrResCmdRx=jnxMbgSgwIfBrResCmdRx, jnxMbgSgwPPGtpV2ICsAllDynAdOcTx=jnxMbgSgwPPGtpV2ICsAllDynAdOcTx, jnxMbgSgwIfV2VerNotSupRx=jnxMbgSgwIfV2VerNotSupRx, jnxMbgSgwPPGtpV2ICsPageTx=jnxMbgSgwPPGtpV2ICsPageTx, jnxMbgSgwPPGtpV2ICsSemErTADTx=jnxMbgSgwPPGtpV2ICsSemErTADTx, jnxMbgSgwPPResumeAckRx=jnxMbgSgwPPResumeAckRx, jnxMbgSgwGtpV2ICsPTNotSuppTx=jnxMbgSgwGtpV2ICsPTNotSuppTx, jnxMbgSgwGtpV2ICsSysFailRx=jnxMbgSgwGtpV2ICsSysFailRx, jnxMbgSgwPPUnknMsgRx=jnxMbgSgwPPUnknMsgRx, jnxMbgSgwGtpV2ICsNOTFTUECTXTx=jnxMbgSgwGtpV2ICsNOTFTUECTXTx, jnxMbgSgwPPDelBrReqRx=jnxMbgSgwPPDelBrReqRx, jnxMbgSgwGtpV2ICsManIEMissRx=jnxMbgSgwGtpV2ICsManIEMissRx, jnxMbgSgwDelIndTunReqRx=jnxMbgSgwDelIndTunReqRx, jnxMbgSgwGtpV2ICsReqAcceptRx=jnxMbgSgwGtpV2ICsReqAcceptRx, jnxMbgSgwPPUpdBrRspRx=jnxMbgSgwPPUpdBrRspRx, jnxMbgSgwIfGtpV2ICsMisUnknAPNTx=jnxMbgSgwIfGtpV2ICsMisUnknAPNTx, jnxMbgSgwPPGtpV1ErrIndRx=jnxMbgSgwPPGtpV1ErrIndRx, jnxMbgSgwGtpPeerName=jnxMbgSgwGtpPeerName, jnxMbgSgwDelBrReqTx=jnxMbgSgwDelBrReqTx, jnxMbgSgwIfGtpV2ICsManIEIncorTx=jnxMbgSgwIfGtpV2ICsManIEIncorTx, jnxMbgSgwIfGtpV2ICsSemErTADRx=jnxMbgSgwIfGtpV2ICsSemErTADRx, jnxMbgSgwIfGtpV2ICsDenINRatRx=jnxMbgSgwIfGtpV2ICsDenINRatRx, jnxMbgSgwIfUpdBrRspRx=jnxMbgSgwIfUpdBrRspRx, jnxMbgSgwPPCrtBrReqRx=jnxMbgSgwPPCrtBrReqRx, jnxMbgSgwGtpV2ICsTFTSysErrTx=jnxMbgSgwGtpV2ICsTFTSysErrTx, jnxMbgSgwIfPcktLenErrRx=jnxMbgSgwIfPcktLenErrRx, jnxMbgSgwIfGtpV2ICsRelocFailTx=jnxMbgSgwIfGtpV2ICsRelocFailTx, jnxMbgSgwIfGtpV2ICsReqAcceptTx=jnxMbgSgwIfGtpV2ICsReqAcceptTx, jnxMbgSgwPPPiggybackMsgRx=jnxMbgSgwPPPiggybackMsgRx, jnxMbgSgwDelSessRspTx=jnxMbgSgwDelSessRspTx, jnxMbgSgwPPDelBrReqTx=jnxMbgSgwPPDelBrReqTx, jnxMbgSgwGtpV2ICsTFTSMANTErRx=jnxMbgSgwGtpV2ICsTFTSMANTErRx, jnxMbgSgwPPGtpV2ICsUERefusesTx=jnxMbgSgwPPGtpV2ICsUERefusesTx, jnxMbgSgwGtpV2ICsNoResRx=jnxMbgSgwGtpV2ICsNoResRx, jnxMbgSgwIfDelBrReqRx=jnxMbgSgwIfDelBrReqRx, jnxMbgSgwGtpV2ICsRMValRcvRx=jnxMbgSgwGtpV2ICsRMValRcvRx, jnxMbgSgwGtpV2ICsUnabPageUERx=jnxMbgSgwGtpV2ICsUnabPageUERx, jnxMbgSgwIfGtpV2ICsNewPTNPrefTx=jnxMbgSgwIfGtpV2ICsNewPTNPrefTx, jnxMbgSgwPPBrResCmdTx=jnxMbgSgwPPBrResCmdTx, jnxMbgSgwIfDlDataNotifTx=jnxMbgSgwIfDlDataNotifTx, jnxMbgSgwPacketAllocFail=jnxMbgSgwPacketAllocFail, jnxMbgSgwPPGtpV2ICsSemErTADRx=jnxMbgSgwPPGtpV2ICsSemErTADRx, jnxMbgSgwPPDlDataNotiFlrIndTx=jnxMbgSgwPPDlDataNotiFlrIndTx, jnxMbgSgwIfUpdConnSetRspTx=jnxMbgSgwIfUpdConnSetRspTx, jnxMbgSgwGtpV2ICsIMSINotKnTx=jnxMbgSgwGtpV2ICsIMSINotKnTx, jnxMbgSgwGtpV2ICsSemErTADRx=jnxMbgSgwGtpV2ICsSemErTADRx, jnxMbgSgwPPGtpV2ICsLclDetRx=jnxMbgSgwPPGtpV2ICsLclDetRx, jnxMbgSgwIfUpdConnSetReqTx=jnxMbgSgwIfUpdConnSetReqTx, jnxMbgSgwIfPacketSendFail=jnxMbgSgwIfPacketSendFail, jnxMbgSgwIfGtpV2ICsNPTSIAdbrRx=jnxMbgSgwIfGtpV2ICsNPTSIAdbrRx, jnxMbgSgwIfGtpV2ICsAcceptPartTx=jnxMbgSgwIfGtpV2ICsAcceptPartTx, jnxMbgSgwPPUpdConnSetRspRx=jnxMbgSgwPPUpdConnSetRspRx, jnxMbgSgwDelIndTunRespRx=jnxMbgSgwDelIndTunRespRx, jnxMbgSgwPPSuspNotifTx=jnxMbgSgwPPSuspNotifTx, jnxMbgSgwIfUpdConnSetRspRx=jnxMbgSgwIfUpdConnSetRspRx, jnxMbgSgwGtpV2ICsInvMsgFmtRx=jnxMbgSgwGtpV2ICsInvMsgFmtRx, jnxMbgSgwIfGtpV2ICsAPNAcsDenTx=jnxMbgSgwIfGtpV2ICsAPNAcsDenTx, jnxMbgSgwDelBrFlrIndTx=jnxMbgSgwDelBrFlrIndTx, jnxMbgSgwIfIndex=jnxMbgSgwIfIndex, jnxMbgSgwGtpV1T3RespTmrExpRx=jnxMbgSgwGtpV1T3RespTmrExpRx, jnxMbgSgwPPCreateSessRspTx=jnxMbgSgwPPCreateSessRspTx, jnxMbgSgwPPDelBrCmdTx=jnxMbgSgwPPDelBrCmdTx, jnxMbgSgwIfStopPagingIndTx=jnxMbgSgwIfStopPagingIndTx, jnxMbgSgwPPGtpV2ICsRelocFailRx=jnxMbgSgwPPGtpV2ICsRelocFailRx, jnxMbgSgwPPGtpV2ICsInvMsgFmtTx=jnxMbgSgwPPGtpV2ICsInvMsgFmtTx, jnxMbgSgwIfGtpV2ICsDenINRatTx=jnxMbgSgwIfGtpV2ICsDenINRatTx, jnxMbgSgwPPGtpV2ICsISRDeactRx=jnxMbgSgwPPGtpV2ICsISRDeactRx, jnxMbgSgwPPBrResCmdRx=jnxMbgSgwPPBrResCmdRx, jnxMbgSgwPPGtpV2ICsNoResTx=jnxMbgSgwPPGtpV2ICsNoResTx, jnxMbgSgwPPGtpV2ICsAllDynAdOcRx=jnxMbgSgwPPGtpV2ICsAllDynAdOcRx, jnxMbgSgwIfGtpV2ICsDtForNtSupTx=jnxMbgSgwIfGtpV2ICsDtForNtSupTx, jnxMbgSgwIfV2NumMsgTx=jnxMbgSgwIfV2NumMsgTx, jnxMbgSgwIfGtpV2ICsInvLenTx=jnxMbgSgwIfGtpV2ICsInvLenTx, jnxMbgSgwDlDataNotiFlrIndTx=jnxMbgSgwDlDataNotiFlrIndTx, jnxMbgSgwIfGtpV2ICsRPrNtRspTx=jnxMbgSgwIfGtpV2ICsRPrNtRspTx, jnxMbgSgwGtpV2ICsDeniedINRatTx=jnxMbgSgwGtpV2ICsDeniedINRatTx, jnxMbgSgwGtpV2ICsProtoNtSupRx=jnxMbgSgwGtpV2ICsProtoNtSupRx, jnxMbgSgwPPModBrFlrIndRx=jnxMbgSgwPPModBrFlrIndRx, jnxMbgSgwV2VerNotSupRx=jnxMbgSgwV2VerNotSupRx, jnxMbgSgwPPGtpV1EndMarkerRx=jnxMbgSgwPPGtpV1EndMarkerRx, jnxMbgSgwGtpV2ICsISRDeactTx=jnxMbgSgwGtpV2ICsISRDeactTx, jnxMbgSgwGtpV2ICsServDeniedRx=jnxMbgSgwGtpV2ICsServDeniedRx, jnxMbgSgwIfDlDataNotiFlrIndTx=jnxMbgSgwIfDlDataNotiFlrIndTx, jnxMbgSgwCrIndTunReqTx=jnxMbgSgwCrIndTunReqTx, jnxMbgSgwGtpV2ICsUserAUTHFlTx=jnxMbgSgwGtpV2ICsUserAUTHFlTx, jnxMbgSgwPPV2NumBytesRx=jnxMbgSgwPPV2NumBytesRx, jnxMbgSgwS4PiggybackMsgRx=jnxMbgSgwS4PiggybackMsgRx, jnxMbgSgwIfDlDataAckTx=jnxMbgSgwIfDlDataAckTx, jnxMbgSgwIfGtpV2ICsGREKeyNtFdRx=jnxMbgSgwIfGtpV2ICsGREKeyNtFdRx, jnxMbgSgwGtpV2ICsISRDeactRx=jnxMbgSgwGtpV2ICsISRDeactRx, jnxMbgSgwIfDelSessReqTx=jnxMbgSgwIfDelSessReqTx, jnxMbgSgwIfRelAcsBrReqTx=jnxMbgSgwIfRelAcsBrReqTx, jnxMbgSgwDelSessRspRx=jnxMbgSgwDelSessRspRx, jnxMbgSgwPPModBrRspTx=jnxMbgSgwPPModBrRspTx, jnxMbgSgwIfV2EchoRespRx=jnxMbgSgwIfV2EchoRespRx, jnxMbgSgwBrResCmdRx=jnxMbgSgwBrResCmdRx, jnxMbgSgwPPGtpV2ICsAPNResTIncTx=jnxMbgSgwPPGtpV2ICsAPNResTIncTx, jnxMbgSgwPPGtpV2ICsInvTotLenRx=jnxMbgSgwPPGtpV2ICsInvTotLenRx, jnxMbgSgwGtpV2ICsUnPgUESusRx=jnxMbgSgwGtpV2ICsUnPgUESusRx, jnxMbgSgwIfGtpV2ICsOptIEIncorTx=jnxMbgSgwIfGtpV2ICsOptIEIncorTx, jnxMbgSgwGtpV2ICsCmpDetTx=jnxMbgSgwGtpV2ICsCmpDetTx, jnxMbgSgwModBrFlrIndRx=jnxMbgSgwModBrFlrIndRx, jnxMbgSgwIfGtpV2ICsRMValRcvTx=jnxMbgSgwIfGtpV2ICsRMValRcvTx, jnxMbgSgwGtpCPerPeerStatsTable=jnxMbgSgwGtpCPerPeerStatsTable, jnxMbgSgwGtpInterfaceType=jnxMbgSgwGtpInterfaceType, jnxMbgSgwPPGtpV2ICsServNotSupTx=jnxMbgSgwPPGtpV2ICsServNotSupTx, jnxMbgSgwPPBrResFlrIndRx=jnxMbgSgwPPBrResFlrIndRx, jnxMbgSgwIfGtpV2ICsCondIEMsRx=jnxMbgSgwIfGtpV2ICsCondIEMsRx, jnxMbgSgwIfGtpV2ICsAPNResTIncTx=jnxMbgSgwIfGtpV2ICsAPNResTIncTx, jnxMbgSgwIfGtpV2ICsISRDeactTx=jnxMbgSgwIfGtpV2ICsISRDeactTx, jnxMbgSgwUpdBrReqRx=jnxMbgSgwUpdBrReqRx, jnxMbgSgwV2EchoRespRx=jnxMbgSgwV2EchoRespRx, jnxMbgSgwIfGtpV2ICsUnabPageUETx=jnxMbgSgwIfGtpV2ICsUnabPageUETx, jnxMbgSgwV2NumBytesTx=jnxMbgSgwV2NumBytesTx, jnxMbgSgwIfBrResFlrIndTx=jnxMbgSgwIfBrResFlrIndTx, jnxMbgSgwPPCreateSessRspRx=jnxMbgSgwPPCreateSessRspRx, jnxMbgSgwPPGtpV2ICsReqAcceptTx=jnxMbgSgwPPGtpV2ICsReqAcceptTx, jnxMbgSgwIfGtpV2ICsVerNotSuppRx=jnxMbgSgwIfGtpV2ICsVerNotSuppRx, jnxMbgSgwPPGtpV2ICsReqRejTx=jnxMbgSgwPPGtpV2ICsReqRejTx, jnxMbgSgwIfT3RespTmrExpRx=jnxMbgSgwIfT3RespTmrExpRx, jnxMbgSgwPPUpdConnSetRspTx=jnxMbgSgwPPUpdConnSetRspTx, jnxMbgSgwPPGtpRmtAddr=jnxMbgSgwPPGtpRmtAddr, jnxMbgSgwGtpGlbStatsEntry=jnxMbgSgwGtpGlbStatsEntry, jnxMbgSgwGtpV2ICsEIFRNCEnRx=jnxMbgSgwGtpV2ICsEIFRNCEnRx, jnxMbgSgwIfCrIndTunRespRx=jnxMbgSgwIfCrIndTunRespRx, jnxMbgSgwGtpV2ICsRPrNtRspRx=jnxMbgSgwGtpV2ICsRPrNtRspRx, jnxMbgSgwPPGtpRtgInst=jnxMbgSgwPPGtpRtgInst)
|
(integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_intersection, value_size_constraint, single_value_constraint, value_range_constraint, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'ValueSizeConstraint', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsUnion')
(inet_address_prefix_length, inet_port_number, inet_address, inet_address_type) = mibBuilder.importSymbols('INET-ADDRESS-MIB', 'InetAddressPrefixLength', 'InetPortNumber', 'InetAddress', 'InetAddressType')
(ipv6_address_if_identifier, ipv6_address_prefix, ipv6_address) = mibBuilder.importSymbols('IPV6-TC', 'Ipv6AddressIfIdentifier', 'Ipv6AddressPrefix', 'Ipv6Address')
(jnx_mobile_gateway_sgw,) = mibBuilder.importSymbols('JUNIPER-MBG-SMI', 'jnxMobileGatewaySgw')
(enabled_status,) = mibBuilder.importSymbols('JUNIPER-MIMSTP-MIB', 'EnabledStatus')
(jnx_mbg_gw_name, jnx_mbg_gw_index) = mibBuilder.importSymbols('JUNIPER-MOBILE-GATEWAYS', 'jnxMbgGwName', 'jnxMbgGwIndex')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(module_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, counter32, counter64, bits, time_ticks, integer32, iso, object_identity, mib_identifier, unsigned32, gauge32, ip_address, notification_type) = mibBuilder.importSymbols('SNMPv2-SMI', 'ModuleIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Counter32', 'Counter64', 'Bits', 'TimeTicks', 'Integer32', 'iso', 'ObjectIdentity', 'MibIdentifier', 'Unsigned32', 'Gauge32', 'IpAddress', 'NotificationType')
(textual_convention, row_status, truth_value, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'RowStatus', 'TruthValue', 'DisplayString')
jnx_mbg_sgw_gtp_mib = module_identity((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2))
jnxMbgSgwGtpMib.setRevisions(('2011-09-21 12:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
jnxMbgSgwGtpMib.setRevisionsDescriptions(('Initial version',))
if mibBuilder.loadTexts:
jnxMbgSgwGtpMib.setLastUpdated('201109211200Z')
if mibBuilder.loadTexts:
jnxMbgSgwGtpMib.setOrganization('Juniper Networks, Inc.')
if mibBuilder.loadTexts:
jnxMbgSgwGtpMib.setContactInfo('Juniper Technical Assistance Center Juniper Networks, Inc. 1194 N. Mathilda Avenue Sunnyvale, CA 94089 E-mail: support@juniper.net')
if mibBuilder.loadTexts:
jnxMbgSgwGtpMib.setDescription('This module defines some sample objects pertaining to GTP protocol.')
jnx_mbg_sgw_gtp_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 0))
jnx_mbg_sgw_gtp_objects = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1))
jnx_mbg_sgw_gtp_c_glb_stats_table = mib_table((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2))
if mibBuilder.loadTexts:
jnxMbgSgwGtpCGlbStatsTable.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpCGlbStatsTable.setDescription('Each entry corresponds to a gateway level GTP Control statistic.')
jnx_mbg_sgw_gtp_glb_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1)).setIndexNames((0, 'JUNIPER-MOBILE-GATEWAYS', 'jnxMbgGwIndex'))
if mibBuilder.loadTexts:
jnxMbgSgwGtpGlbStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpGlbStatsEntry.setDescription('A specification of the GTP gateway level control Statistics.')
jnx_mbg_sgw_rx_packets_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 1), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwRxPacketsDropped.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwRxPacketsDropped.setDescription('Number of Received Packets Dropped.')
jnx_mbg_sgw_packet_alloc_fail = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 2), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPacketAllocFail.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPacketAllocFail.setDescription('Number of Packet allocation failures.')
jnx_mbg_sgw_packet_send_fail = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPacketSendFail.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPacketSendFail.setDescription('Number of Packet Send failures.')
jnx_mbg_sgw_ip_ver_err_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 4), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIPVerErrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIPVerErrRx.setDescription('Number of IP Version Error Packets Received.')
jnx_mbg_sgw_ip_proto_err_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 5), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIPProtoErrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIPProtoErrRx.setDescription('Number of IP protocol Error packets Received.')
jnx_mbg_sgw_gtp_port_err_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 6), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGTPPortErrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGTPPortErrRx.setDescription('Number of Port Error Packets Received.')
jnx_mbg_sgw_gtp_unkn_ver_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 7), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGTPUnknVerRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGTPUnknVerRx.setDescription('Number of Unknown Version Packets Received.')
jnx_mbg_sgw_pckt_len_err_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 8), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPcktLenErrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPcktLenErrRx.setDescription('Number of Packet Length Error Packets Received.')
jnx_mbg_sgw_unkn_msg_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 9), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwUnknMsgRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwUnknMsgRx.setDescription('Number of Unknown Messages Received.')
jnx_mbg_sgw_protocol_err_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 10), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwProtocolErrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwProtocolErrRx.setDescription('Number of GTPv2 Protocol Errors Received.')
jnx_mbg_sgw_un_supported_msg_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 11), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwUnSupportedMsgRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwUnSupportedMsgRx.setDescription('Number of GTPv2 Unsupported Messages received.')
jnx_mbg_sgw_t3_resp_tmr_exp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 12), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwT3RespTmrExpRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwT3RespTmrExpRx.setDescription('Number of GTP V2 T3 timer expiries Received.')
jnx_mbg_sgw_v2_num_msg_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 13), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwV2NumMsgRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwV2NumMsgRx.setDescription('Number of GTPv2 messages received.')
jnx_mbg_sgw_v2_num_msg_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 14), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwV2NumMsgTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwV2NumMsgTx.setDescription('Number of V2 messages sent.')
jnx_mbg_sgw_v2_num_bytes_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 15), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwV2NumBytesRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwV2NumBytesRx.setDescription('Number of GTPv2 bytes received.')
jnx_mbg_sgw_v2_num_bytes_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 16), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwV2NumBytesTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwV2NumBytesTx.setDescription('Number of V2 bytes sent.')
jnx_mbg_sgw_v2_echo_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 19), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwV2EchoReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwV2EchoReqRx.setDescription('Number of GTP V2 Echo Request received.')
jnx_mbg_sgw_v2_echo_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 20), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwV2EchoReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwV2EchoReqTx.setDescription('Number of GTP V2 Echo Request Sent.')
jnx_mbg_sgw_v2_echo_resp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 21), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwV2EchoRespRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwV2EchoRespRx.setDescription('Number of GTP V2 Echo Response received.')
jnx_mbg_sgw_v2_echo_resp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 22), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwV2EchoRespTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwV2EchoRespTx.setDescription('Number of GTP V2 Echo Response Sent.')
jnx_mbg_sgw_v2_ver_not_sup_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 23), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwV2VerNotSupRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwV2VerNotSupRx.setDescription('Number of GTP V2 Version Not supported messages received')
jnx_mbg_sgw_v2_ver_not_sup_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 24), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwV2VerNotSupTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwV2VerNotSupTx.setDescription('Number of GTP V2 version not supported messages sent.')
jnx_mbg_sgw_create_sess_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 25), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwCreateSessReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwCreateSessReqRx.setDescription('Number of GTP V2 Create Session Requests received.')
jnx_mbg_sgw_create_sess_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 26), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwCreateSessReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwCreateSessReqTx.setDescription('Number of GTP V2 Create Session Requests Sent.')
jnx_mbg_sgw_create_sess_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 27), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwCreateSessRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwCreateSessRspRx.setDescription('Number of GTP V2 Create Session Responses received.')
jnx_mbg_sgw_create_sess_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 28), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwCreateSessRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwCreateSessRspTx.setDescription('Number of GTP V2 Create Session Responses Sent.')
jnx_mbg_sgw_mod_br_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 29), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwModBrReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwModBrReqRx.setDescription('Number of GTP V2 Modify Bearer Requests received.')
jnx_mbg_sgw_mod_br_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 30), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwModBrReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwModBrReqTx.setDescription('Number of GTP V2 Modify Bearer Requests Sent.')
jnx_mbg_sgw_mod_br_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 31), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwModBrRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwModBrRspRx.setDescription('Number of GTP V2 Modify Bearer Responses received.')
jnx_mbg_sgw_mod_br_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 32), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwModBrRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwModBrRspTx.setDescription('Number of GTP V2 Modify Bearer Responses Sent.')
jnx_mbg_sgw_del_sess_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 33), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDelSessReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDelSessReqRx.setDescription('Number of GTP V2 Delete Session Requests received.')
jnx_mbg_sgw_del_sess_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 34), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDelSessReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDelSessReqTx.setDescription('Number of GTP V2 Delete Session Requests Sent.')
jnx_mbg_sgw_del_sess_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 35), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDelSessRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDelSessRspRx.setDescription('Number of GTP V2 Delete Session Responses received.')
jnx_mbg_sgw_del_sess_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 36), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDelSessRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDelSessRspTx.setDescription('Number of GTP V2 Delete Session Responses Sent.')
jnx_mbg_sgw_crt_br_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 37), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwCrtBrReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwCrtBrReqRx.setDescription('Number of GTP V2 Create Bearer Requests received.')
jnx_mbg_sgw_crt_br_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 38), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwCrtBrReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwCrtBrReqTx.setDescription('Number of GTP V2 Create Bearer Requests Sent.')
jnx_mbg_sgw_crt_br_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 39), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwCrtBrRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwCrtBrRspRx.setDescription('Number of GTP V2 Create Bearer Response received.')
jnx_mbg_sgw_crt_br_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 40), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwCrtBrRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwCrtBrRspTx.setDescription('Number of GTP V2 Create Bearer Response Sent.')
jnx_mbg_sgw_upd_br_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 41), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwUpdBrReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwUpdBrReqRx.setDescription('Number of GTP V2 Update Bearer Request received.')
jnx_mbg_sgw_upd_br_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 42), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwUpdBrReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwUpdBrReqTx.setDescription('Number of GTP V2 Update Bearer Request Sent.')
jnx_mbg_sgw_upd_br_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 43), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwUpdBrRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwUpdBrRspRx.setDescription('Number of GTP V2 Update Bearer Response received.')
jnx_mbg_sgw_upd_br_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 44), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwUpdBrRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwUpdBrRspTx.setDescription('Number of GTP V2 Update Bearer Response Sent.')
jnx_mbg_sgw_del_br_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 45), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDelBrReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDelBrReqRx.setDescription('Number of GTP V2 Delete Bearer Request received.')
jnx_mbg_sgw_del_br_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 46), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDelBrReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDelBrReqTx.setDescription('Number of GTP V2 Delete Bearer Request Sent.')
jnx_mbg_sgw_del_br_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 47), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDelBrRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDelBrRspRx.setDescription('Number of GTP V2 Delete Bearer Response received.')
jnx_mbg_sgw_del_br_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 48), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDelBrRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDelBrRspTx.setDescription('Number of GTP V2 Delete Bearer Response Sent.')
jnx_mbg_sgw_del_conn_set_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 49), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDelConnSetReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDelConnSetReqRx.setDescription('Number of GTP V2 Delete PDN connection set Request received.')
jnx_mbg_sgw_del_conn_set_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 50), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDelConnSetReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDelConnSetReqTx.setDescription('Number of GTP V2 Delete PDN connection set Request Sent.')
jnx_mbg_sgw_del_conn_set_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 51), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDelConnSetRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDelConnSetRspRx.setDescription('Number of GTP V2 Delete PDN connection set Response received.')
jnx_mbg_sgw_del_conn_set_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 52), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDelConnSetRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDelConnSetRspTx.setDescription('Number of GTP V2 Delete PDN connection set Response Sent.')
jnx_mbg_sgw_upd_conn_set_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 53), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwUpdConnSetReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwUpdConnSetReqRx.setDescription('Number of GTP V2 Update Connection set Request received.')
jnx_mbg_sgw_upd_conn_set_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 54), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwUpdConnSetReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwUpdConnSetReqTx.setDescription('Number of GTP V2 Update Connection set Request Sent.')
jnx_mbg_sgw_upd_conn_set_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 55), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwUpdConnSetRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwUpdConnSetRspRx.setDescription('Number of GTP V2 Update Connection set Response received.')
jnx_mbg_sgw_upd_conn_set_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 56), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwUpdConnSetRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwUpdConnSetRspTx.setDescription('Number of GTP V2 Update Connection set Response Sent.')
jnx_mbg_sgw_mod_br_cmd_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 57), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwModBrCmdRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwModBrCmdRx.setDescription('Number of GTP V2 Modify Bearer Command received.')
jnx_mbg_sgw_mod_br_cmd_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 58), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwModBrCmdTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwModBrCmdTx.setDescription('Number of GTP V2 Modify Bearer Command Sent.')
jnx_mbg_sgw_mod_br_flr_ind_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 59), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwModBrFlrIndRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwModBrFlrIndRx.setDescription('Number of GTP V2 Modify Bearer Failure received.')
jnx_mbg_sgw_mod_br_flr_ind_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 60), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwModBrFlrIndTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwModBrFlrIndTx.setDescription('Number of GTP V2 Modify Bearer Failure Sent.')
jnx_mbg_sgw_del_br_cmd_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 61), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDelBrCmdRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDelBrCmdRx.setDescription('Number of GTP V2 Delete Bearer Command received.')
jnx_mbg_sgw_del_br_cmd_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 62), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDelBrCmdTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDelBrCmdTx.setDescription('Number of GTP V2 Delete Bearer Command Sent.')
jnx_mbg_sgw_del_br_flr_ind_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 63), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDelBrFlrIndRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDelBrFlrIndRx.setDescription('Number of GTP V2 Delete Bearer Failure received.')
jnx_mbg_sgw_del_br_flr_ind_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 64), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDelBrFlrIndTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDelBrFlrIndTx.setDescription('Number of GTP V2 Delete Bearer Failure Sent.')
jnx_mbg_sgw_br_res_cmd_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 65), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwBrResCmdRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwBrResCmdRx.setDescription('Number of GTP V2 Bearer Response Command received.')
jnx_mbg_sgw_br_res_cmd_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 66), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwBrResCmdTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwBrResCmdTx.setDescription('Number of GTP V2 Bearer Response Command Sent.')
jnx_mbg_sgw_br_res_flr_ind_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 67), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwBrResFlrIndRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwBrResFlrIndRx.setDescription('Number of GTP V2 Bearer Resource Failure received.')
jnx_mbg_sgw_br_res_flr_ind_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 68), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwBrResFlrIndTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwBrResFlrIndTx.setDescription('Number of GTP V2 Bearer Resource Failure Sent.')
jnx_mbg_sgw_rel_acs_br_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 69), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwRelAcsBrReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwRelAcsBrReqRx.setDescription('Number of GTP V2 Release Access Bearer Requests received.')
jnx_mbg_sgw_rel_acs_br_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 70), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwRelAcsBrReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwRelAcsBrReqTx.setDescription('Number of GTP V2 Release Access Bearer Requests sent.')
jnx_mbg_sgw_rel_acs_br_resp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 71), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwRelAcsBrRespRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwRelAcsBrRespRx.setDescription('Number of GTP V2 Release Access Bearer Response received.')
jnx_mbg_sgw_rel_acs_br_resp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 72), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwRelAcsBrRespTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwRelAcsBrRespTx.setDescription('Number of GTP V2 Release Access Bearer Response sent.')
jnx_mbg_sgw_cr_ind_tun_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 73), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwCrIndTunReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwCrIndTunReqRx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Request Received')
jnx_mbg_sgw_cr_ind_tun_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 74), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwCrIndTunReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwCrIndTunReqTx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Request sent')
jnx_mbg_sgw_cr_ind_tun_resp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 75), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwCrIndTunRespRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwCrIndTunRespRx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Response Received')
jnx_mbg_sgw_cr_ind_tun_resp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 76), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwCrIndTunRespTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwCrIndTunRespTx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Response sent')
jnx_mbg_sgw_del_ind_tun_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 77), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDelIndTunReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDelIndTunReqRx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Request Received')
jnx_mbg_sgw_del_ind_tun_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 78), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDelIndTunReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDelIndTunReqTx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Request sent.')
jnx_mbg_sgw_del_ind_tun_resp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 79), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDelIndTunRespRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDelIndTunRespRx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Response Received')
jnx_mbg_sgw_del_ind_tun_resp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 80), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDelIndTunRespTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDelIndTunRespTx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Response sent.')
jnx_mbg_sgw_dl_data_notif_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 81), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDlDataNotifRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDlDataNotifRx.setDescription('Number of GTP V2 Downlink Data Notify received.')
jnx_mbg_sgw_dl_data_notif_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 82), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDlDataNotifTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDlDataNotifTx.setDescription('Number of GTP V2 Downlink Data Notify Sent.')
jnx_mbg_sgw_dl_data_ack_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 83), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDlDataAckRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDlDataAckRx.setDescription('Number of GTP V2 Downlink Data Notify Acknowledgement received.')
jnx_mbg_sgw_dl_data_ack_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 84), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDlDataAckTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDlDataAckTx.setDescription('Number of GTP V2 Downlink Data Notify Acknowledgement Sent.')
jnx_mbg_sgw_dl_data_noti_flr_ind_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 85), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDlDataNotiFlrIndRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDlDataNotiFlrIndRx.setDescription('Number of GTP V2 Downlink Data Notification fail received.')
jnx_mbg_sgw_dl_data_noti_flr_ind_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 86), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwDlDataNotiFlrIndTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwDlDataNotiFlrIndTx.setDescription('Number of GTP V2 Downlink Data Notification fail Sent.')
jnx_mbg_sgw_stop_paging_ind_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 87), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwStopPagingIndRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwStopPagingIndRx.setDescription('Number of GTP V2 Number of Stop Paging Indication Messages Received.')
jnx_mbg_sgw_stop_paging_ind_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 88), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwStopPagingIndTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwStopPagingIndTx.setDescription('Number of GTP V2 Number of Stop Paging Indicaton messages sent')
jnx_mbg_sgw_gtp_v2_i_cs_page_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 89), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsPageRx.setStatus('obsolete')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsPageRx.setDescription('Number of GTPV2 packets received with cause Page.')
jnx_mbg_sgw_gtp_v2_i_cs_page_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 90), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsPageTx.setStatus('obsolete')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsPageTx.setDescription('Number of GTP packets sent with cause Page.')
jnx_mbg_sgw_gtp_v2_i_cs_req_accept_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 91), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsReqAcceptRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsReqAcceptRx.setDescription('Number of GTPV2 packets received with cause Request Accept.')
jnx_mbg_sgw_gtp_v2_i_cs_req_accept_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 92), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsReqAcceptTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsReqAcceptTx.setDescription('Number of GTP packets sent with cause Request Accept.')
jnx_mbg_sgw_gtp_v2_i_cs_accept_part_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 93), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsAcceptPartRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsAcceptPartRx.setDescription('Number of GTPV2 packets received with cause Accept Partial.')
jnx_mbg_sgw_gtp_v2_i_cs_accept_part_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 94), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsAcceptPartTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsAcceptPartTx.setDescription('Number of GTP packets sent with cause Accept Partial.')
jnx_mbg_sgw_gtp_v2_i_cs_new_ptn_pref_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 95), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsNewPTNPrefRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsNewPTNPrefRx.setDescription('Number of GTPV2 packets received with cause New PDN type due to Network Preference.')
jnx_mbg_sgw_gtp_v2_i_cs_new_ptn_pref_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 96), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsNewPTNPrefTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsNewPTNPrefTx.setDescription('Number of GTP packets sent with cause New PDN type due to Network Preference')
jnx_mbg_sgw_gtp_v2_i_cs_new_ptsi_adbr_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 97), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsNewPTSIAdbrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsNewPTSIAdbrRx.setDescription('Number of GTPV2 packets received with cause New PDN type due to Single Address Bearer.')
jnx_mbg_sgw_gtp_v2_i_cs_new_ptsi_adbr_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 98), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsNewPTSIAdbrTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsNewPTSIAdbrTx.setDescription('Number of GTP packets sent with cause New PDN type due to Single Address Bearer.')
jnx_mbg_sgw_gtp_v2_i_cs_ctx_not_fnd_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 99), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsCtxNotFndRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsCtxNotFndRx.setDescription('Number of GTPV2 packets received with cause Context not found.')
jnx_mbg_sgw_gtp_v2_i_cs_ctx_not_fnd_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 100), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsCtxNotFndTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsCtxNotFndTx.setDescription('Number of GTP packets sent with cause Context not found.')
jnx_mbg_sgw_gtp_v2_i_cs_inv_msg_fmt_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 101), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsInvMsgFmtRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsInvMsgFmtRx.setDescription('Number of GTPV2 packets received with cause Invalid Message Format.')
jnx_mbg_sgw_gtp_v2_i_cs_inv_msg_fmt_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 102), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsInvMsgFmtTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsInvMsgFmtTx.setDescription('Number of GTP packets sent with cause Invalid Message Format.')
jnx_mbg_sgw_gtp_v2_i_cs_ver_not_supp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 103), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsVerNotSuppRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsVerNotSuppRx.setDescription('Number of GTPV2 packets received with cause Version not Supported.')
jnx_mbg_sgw_gtp_v2_i_cs_ver_not_supp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 104), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsVerNotSuppTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsVerNotSuppTx.setDescription('Number of GTP packets sent with cause Version not Supported.')
jnx_mbg_sgw_gtp_v2_i_cs_inv_len_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 105), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsInvLenRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsInvLenRx.setDescription('Number of GTPV2 packets received with cause Invalid Length.')
jnx_mbg_sgw_gtp_v2_i_cs_inv_len_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 106), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsInvLenTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsInvLenTx.setDescription('Number of GTP packets sent with cause Invalid Length.')
jnx_mbg_sgw_gtp_v2_i_cs_serv_not_supp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 107), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsServNotSuppRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsServNotSuppRx.setDescription('Number of GTPV2 packets received with cause Service Not supported.')
jnx_mbg_sgw_gtp_v2_i_cs_serv_not_supp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 108), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsServNotSuppTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsServNotSuppTx.setDescription('Number of GTP packets sent with cause Service Not supported.')
jnx_mbg_sgw_gtp_v2_i_cs_man_ie_incorr_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 109), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsManIEIncorrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsManIEIncorrRx.setDescription('Number of GTPV2 packets received with cause Mandatory IE incorrect.')
jnx_mbg_sgw_gtp_v2_i_cs_man_ie_incorr_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 110), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsManIEIncorrTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsManIEIncorrTx.setDescription('Number of GTP packets sent with cause Mandatory IE incorrect.')
jnx_mbg_sgw_gtp_v2_i_cs_man_ie_miss_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 111), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsManIEMissRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsManIEMissRx.setDescription('Number of GTPV2 packets received with cause Mandatory IE Missing.')
jnx_mbg_sgw_gtp_v2_i_cs_man_ie_miss_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 112), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsManIEMissTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsManIEMissTx.setDescription('Number of GTP packets sent with cause Mandatory IE Missing.')
jnx_mbg_sgw_gtp_v2_i_cs_opt_ie_incorr_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 113), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsOptIEIncorrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsOptIEIncorrRx.setDescription('Number of GTPV2 packets received with cause Optional IE Incorrect.')
jnx_mbg_sgw_gtp_v2_i_cs_opt_ie_incorr_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 114), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsOptIEIncorrTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsOptIEIncorrTx.setDescription('Number of GTP packets sent with cause Optional IE Incorrect.')
jnx_mbg_sgw_gtp_v2_i_cs_sys_fail_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 115), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsSysFailRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsSysFailRx.setDescription('Number of GTPV2 packets received with cause System Failure.')
jnx_mbg_sgw_gtp_v2_i_cs_sys_fail_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 116), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsSysFailTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsSysFailTx.setDescription('Number of GTP packets sent with cause System Failure.')
jnx_mbg_sgw_gtp_v2_i_cs_no_res_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 117), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsNoResRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsNoResRx.setDescription('Number of GTPV2 packets received with cause No Resource.')
jnx_mbg_sgw_gtp_v2_i_cs_no_res_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 118), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsNoResTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsNoResTx.setDescription('Number of GTP packets sent with cause No Resource.')
jnx_mbg_sgw_gtp_v2_i_cs_tftsmant_er_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 119), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsTFTSMANTErRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsTFTSMANTErRx.setDescription('Number of GTPV2 packets received with cause TFT Symantic Error.')
jnx_mbg_sgw_gtp_v2_i_cs_tftsmant_er_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 120), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsTFTSMANTErTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsTFTSMANTErTx.setDescription('Number of GTP packets sent with cause TFT Symantic Error.')
jnx_mbg_sgw_gtp_v2_i_cs_tft_sys_err_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 121), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsTFTSysErrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsTFTSysErrRx.setDescription('Number of GTPV2 packets received with cause TFT System Error.')
jnx_mbg_sgw_gtp_v2_i_cs_tft_sys_err_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 122), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsTFTSysErrTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsTFTSysErrTx.setDescription('Number of GTP packets sent with cause TFT System Error.')
jnx_mbg_sgw_gtp_v2_i_cs_pk_flt_man_err_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 123), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsPkFltManErrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsPkFltManErrRx.setDescription('Number of GTPV2 packets received with cause Packet Filter Symantic Error.')
jnx_mbg_sgw_gtp_v2_i_cs_pk_flt_man_err_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 124), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsPkFltManErrTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsPkFltManErrTx.setDescription('Number of GTP packets sent with cause Packet Filter Symantic Error.')
jnx_mbg_sgw_gtp_v2_i_cs_pk_flt_syn_err_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 125), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsPkFltSynErrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsPkFltSynErrRx.setDescription('Number of GTPV2 packets received with cause Packet Filter Syntax Error.')
jnx_mbg_sgw_gtp_v2_i_cs_pk_flt_syn_err_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 126), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsPkFltSynErrTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsPkFltSynErrTx.setDescription('Number of GTP packets sent with cause Packet Filter Syntax Error.')
jnx_mbg_sgw_gtp_v2_i_cs_mis_unkn_apn_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 127), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsMisUnknAPNRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsMisUnknAPNRx.setDescription('Number of GTPV2 packets received with cause Unknown APN.')
jnx_mbg_sgw_gtp_v2_i_cs_mis_unkn_apn_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 128), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsMisUnknAPNTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsMisUnknAPNTx.setDescription('Number of GTP packets sent with cause Unknown APN.')
jnx_mbg_sgw_gtp_v2_i_cs_unexp_rpt_ie_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 129), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUnexpRptIERx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUnexpRptIERx.setDescription('Number of GTPV2 packets received with cause Unexpected Repeated IE.')
jnx_mbg_sgw_gtp_v2_i_cs_unexp_rpt_ie_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 130), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUnexpRptIETx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUnexpRptIETx.setDescription('Number of GTP packets sent with cause Unexpected Repeated IE.')
jnx_mbg_sgw_gtp_v2_i_cs_gre_key_nt_fd_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 131), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsGREKeyNtFdRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsGREKeyNtFdRx.setDescription('Number of GTPV2 packets received with cause GRE Key Not Found.')
jnx_mbg_sgw_gtp_v2_i_cs_gre_key_nt_fd_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 132), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsGREKeyNtFdTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsGREKeyNtFdTx.setDescription('Number of GTP packets sent with cause GRE Key Not Found.')
jnx_mbg_sgw_gtp_v2_i_cs_reloc_fail_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 133), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsRelocFailRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsRelocFailRx.setDescription('Number of GTPV2 packets received with cause Relocation Failed.')
jnx_mbg_sgw_gtp_v2_i_cs_reloc_fail_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 134), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsRelocFailTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsRelocFailTx.setDescription('Number of GTP packets sent with cause Relocation Failed.')
jnx_mbg_sgw_gtp_v2_i_cs_denied_in_rat_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 135), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsDeniedINRatRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsDeniedINRatRx.setDescription('Number of GTPV2 packets received with cause Denied in RAT.')
jnx_mbg_sgw_gtp_v2_i_cs_denied_in_rat_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 136), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsDeniedINRatTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsDeniedINRatTx.setDescription('Number of GTP packets sent with cause Denied in RAT.')
jnx_mbg_sgw_gtp_v2_i_cs_pt_not_supp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 137), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsPTNotSuppRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsPTNotSuppRx.setDescription('Number of GTPV2 packets received with cause PDN Type Not Supported.')
jnx_mbg_sgw_gtp_v2_i_cs_pt_not_supp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 138), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsPTNotSuppTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsPTNotSuppTx.setDescription('Number of GTP packets sent with cause PDN Type Not Supported.')
jnx_mbg_sgw_gtp_v2_i_cs_all_dyn_ad_occ_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 139), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsAllDynAdOccRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsAllDynAdOccRx.setDescription('Number of GTPV2 packets received with cause Allocated Dynamic Address Occupied.')
jnx_mbg_sgw_gtp_v2_i_cs_all_dyn_ad_occ_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 140), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsAllDynAdOccTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsAllDynAdOccTx.setDescription('Number of GTP packets sent with cause Allocated Dynamic Address Occupied.')
jnx_mbg_sgw_gtp_v2_i_cs_notftuectx_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 141), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsNOTFTUECTXRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsNOTFTUECTXRx.setDescription('Number of GTPV2 packets received with cause UE Context Without TFT Exists.')
jnx_mbg_sgw_gtp_v2_i_cs_notftuectx_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 142), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsNOTFTUECTXTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsNOTFTUECTXTx.setDescription('Number of GTP packets sent with cause UE Context Without TFT Exists.')
jnx_mbg_sgw_gtp_v2_i_cs_proto_nt_sup_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 143), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsProtoNtSupRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsProtoNtSupRx.setDescription('Number of GTPV2 packets received with cause Protocol Not Supported.')
jnx_mbg_sgw_gtp_v2_i_cs_proto_nt_sup_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 144), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsProtoNtSupTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsProtoNtSupTx.setDescription('Number of GTP packets sent with cause Protocol Not Supported.')
jnx_mbg_sgw_gtp_v2_i_cs_ue_not_resp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 145), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUENotRespRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUENotRespRx.setDescription('Number of GTPV2 packets received with cause UE Not Responding.')
jnx_mbg_sgw_gtp_v2_i_cs_ue_not_resp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 146), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUENotRespTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUENotRespTx.setDescription('Number of GTP packets sent with cause UE Not Responding.')
jnx_mbg_sgw_gtp_v2_i_cs_ue_refuses_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 147), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUERefusesRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUERefusesRx.setDescription('Number of GTPV2 packets received with cause UE Refuses.')
jnx_mbg_sgw_gtp_v2_i_cs_ue_refuses_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 148), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUERefusesTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUERefusesTx.setDescription('Number of GTP packets sent with cause UE Refuses.')
jnx_mbg_sgw_gtp_v2_i_cs_serv_denied_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 149), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsServDeniedRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsServDeniedRx.setDescription('Number of GTPV2 packets received with cause Service Denied.')
jnx_mbg_sgw_gtp_v2_i_cs_serv_denied_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 150), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsServDeniedTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsServDeniedTx.setDescription('Number of GTP packets sent with cause Service Denied.')
jnx_mbg_sgw_gtp_v2_i_cs_unab_page_ue_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 151), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUnabPageUERx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUnabPageUERx.setDescription('Number of GTPV2 packets received with cause Unable to Page UE.')
jnx_mbg_sgw_gtp_v2_i_cs_unab_page_ue_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 152), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUnabPageUETx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUnabPageUETx.setDescription('Number of GTP packets sent with cause Unable to Page UE.')
jnx_mbg_sgw_gtp_v2_i_cs_no_mem_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 153), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsNoMemRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsNoMemRx.setDescription('Number of GTPV2 packets received with cause No Memory.')
jnx_mbg_sgw_gtp_v2_i_cs_no_mem_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 154), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsNoMemTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsNoMemTx.setDescription('Number of GTP packets sent with cause No Memory.')
jnx_mbg_sgw_gtp_v2_i_cs_user_auth_fl_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 155), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUserAUTHFlRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUserAUTHFlRx.setDescription('Number of GTPV2 packets received with cause User AUTH Failed.')
jnx_mbg_sgw_gtp_v2_i_cs_user_auth_fl_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 156), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUserAUTHFlTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUserAUTHFlTx.setDescription('Number of GTP packets sent with cause User AUTH Failed.')
jnx_mbg_sgw_gtp_v2_i_cs_apn_acs_den_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 157), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsAPNAcsDenRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsAPNAcsDenRx.setDescription('Number of GTPV2 packets received with cause APN Access Denied.')
jnx_mbg_sgw_gtp_v2_i_cs_apn_acs_den_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 158), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsAPNAcsDenTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsAPNAcsDenTx.setDescription('Number of GTP packets sent with cause APN Access Denied.')
jnx_mbg_sgw_gtp_v2_i_cs_req_rej_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 159), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsReqRejRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsReqRejRx.setDescription('Number of GTPV2 packets received with cause Request Rejected.')
jnx_mbg_sgw_gtp_v2_i_cs_req_rej_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 160), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsReqRejTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsReqRejTx.setDescription('Number of GTP packets sent with cause Request Rejected.')
jnx_mbg_sgw_gtp_v2_i_cs_ptmsi_sig_mm_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 161), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsPTMSISigMMRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsPTMSISigMMRx.setDescription('Number of GTPV2 packets received with cause P-TMSI Signature Mismatch.')
jnx_mbg_sgw_gtp_v2_i_cs_ptmsi_sig_mm_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 162), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsPTMSISigMMTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsPTMSISigMMTx.setDescription('Number of GTP packets sent with cause P-TMSI Signature Mismatch')
jnx_mbg_sgw_gtp_v2_i_cs_imsi_not_kn_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 163), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsIMSINotKnRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsIMSINotKnRx.setDescription('Number of GTPV2 packets received with cause IMSI Not Known.')
jnx_mbg_sgw_gtp_v2_i_cs_imsi_not_kn_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 164), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsIMSINotKnTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsIMSINotKnTx.setDescription('Number of GTP packets sent with cause IMSI Not Known.')
jnx_mbg_sgw_gtp_v2_i_cs_cond_ie_ms_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 165), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsCondIEMsRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsCondIEMsRx.setDescription('Number of GTPV2 packets received with cause Conditional IE Missing.')
jnx_mbg_sgw_gtp_v2_i_cs_cond_ie_ms_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 166), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsCondIEMsTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsCondIEMsTx.setDescription('Number of GTP packets sent with cause Conditional IE Missing.')
jnx_mbg_sgw_gtp_v2_i_cs_apn_res_t_inc_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 167), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsAPNResTIncRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsAPNResTIncRx.setDescription('Number of GTPV2 packets received with cause APN Restriction Type Incompatible.')
jnx_mbg_sgw_gtp_v2_i_cs_apn_res_t_inc_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 168), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsAPNResTIncTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsAPNResTIncTx.setDescription('Number of GTP packets sent with cause APN Restriction Type Incompatible.')
jnx_mbg_sgw_gtp_v2_i_cs_unknown_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 169), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUnknownRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUnknownRx.setDescription('Number of GTPV2 packets received with cause Unknown.')
jnx_mbg_sgw_gtp_v2_i_cs_unknown_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 170), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUnknownTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUnknownTx.setDescription('Number of GTP packets sent with cause Unknown.')
jnx_mbg_sgw_gtp_v2_i_cs_lcl_det_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 171), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsLclDetRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsLclDetRx.setDescription('Number of GTP packets received with cause Local Detach.')
jnx_mbg_sgw_gtp_v2_i_cs_lcl_det_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 172), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsLclDetTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsLclDetTx.setDescription('Number of GTP packets sent with cause Local Detach.')
jnx_mbg_sgw_gtp_v2_i_cs_cmp_det_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 173), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsCmpDetRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsCmpDetRx.setDescription('Number of GTP packets received with cause Complete Detach.')
jnx_mbg_sgw_gtp_v2_i_cs_cmp_det_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 174), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsCmpDetTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsCmpDetTx.setDescription('Number of GTP packets sent with cause Complete Detach.')
jnx_mbg_sgw_gtp_v2_i_cs_rat_chg_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 175), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsRATChgRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsRATChgRx.setDescription('Number of GTP packets received with cause RAT changed from 3GPP to non 3GPP.')
jnx_mbg_sgw_gtp_v2_i_cs_rat_chg_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 176), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsRATChgTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsRATChgTx.setDescription('Number of GTP packets sent with cause RAT changed from 3GPP to non 3GPP.')
jnx_mbg_sgw_gtp_v2_i_cs_isr_deact_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 177), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsISRDeactRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsISRDeactRx.setDescription('Number of GTP packets received with cause ISR Deactivated.')
jnx_mbg_sgw_gtp_v2_i_cs_isr_deact_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 178), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsISRDeactTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsISRDeactTx.setDescription('Number of GTP packets sent with cause ISR Deactivated.')
jnx_mbg_sgw_gtp_v2_i_cs_eifrnc_en_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 179), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsEIFRNCEnRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsEIFRNCEnRx.setDescription('Number of GTP packets received with cause Error Indication from RNC eNodeB.')
jnx_mbg_sgw_gtp_v2_i_cs_eifrnc_en_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 180), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsEIFRNCEnTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsEIFRNCEnTx.setDescription('Number of GTP packets sent with cause Error Indication from RNC eNodeB.')
jnx_mbg_sgw_gtp_v2_i_cs_sem_er_tad_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 181), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsSemErTADRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsSemErTADRx.setDescription('Number of GTP packets received with cause Semantic Error in TAD Operation.')
jnx_mbg_sgw_gtp_v2_i_cs_sem_er_tad_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 182), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsSemErTADTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsSemErTADTx.setDescription('Number of GTP packets sent with cause Semantic Error in TAD Operation.')
jnx_mbg_sgw_gtp_v2_i_cs_syn_er_tad_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 183), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsSynErTADRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsSynErTADRx.setDescription('Number of GTP packets received with cause Syntactic Error in TAD Operation.')
jnx_mbg_sgw_gtp_v2_i_cs_syn_er_tad_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 184), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsSynErTADTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsSynErTADTx.setDescription('Number of GTP packets sent with cause Syntactic Error in TAD Operation.')
jnx_mbg_sgw_gtp_v2_i_cs_rm_val_rcv_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 185), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsRMValRcvRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsRMValRcvRx.setDescription('Number of GTP packets received with cause Reserved Message Value Received.')
jnx_mbg_sgw_gtp_v2_i_cs_rm_val_rcv_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 186), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsRMValRcvTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsRMValRcvTx.setDescription('Number of GTP packets sent with cause Reserved Message Value Received.')
jnx_mbg_sgw_gtp_v2_i_cs_r_pr_nt_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 187), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsRPrNtRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsRPrNtRspRx.setDescription('Number of GTP packets received with cause Remote peer not responding.')
jnx_mbg_sgw_gtp_v2_i_cs_r_pr_nt_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 188), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsRPrNtRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsRPrNtRspTx.setDescription('Number of GTP packets sent with cause Remote peer not responding.')
jnx_mbg_sgw_gtp_v2_i_cs_col_nw_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 189), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsColNWReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsColNWReqRx.setDescription('Number of GTP packets received with cause Collision with network initiated request.')
jnx_mbg_sgw_gtp_v2_i_cs_col_nw_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 190), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsColNWReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsColNWReqTx.setDescription('Number of GTP packets sent with cause Collision with network initiated request.')
jnx_mbg_sgw_gtp_v2_i_cs_un_pg_ue_sus_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 191), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUnPgUESusRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUnPgUESusRx.setDescription('Number of GTP packets received with cause Unable to page UE due to suspension.')
jnx_mbg_sgw_gtp_v2_i_cs_un_pg_ue_sus_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 192), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUnPgUESusTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsUnPgUESusTx.setDescription('Number of GTP packets sent with cause Unable to page UE due to suspension.')
jnx_mbg_sgw_gtp_v2_i_cs_inv_tot_len_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 193), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsInvTotLenRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsInvTotLenRx.setDescription('Number of GTP packets received with cause Invalid total len.')
jnx_mbg_sgw_gtp_v2_i_cs_inv_tot_len_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 194), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsInvTotLenTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsInvTotLenTx.setDescription('Number of GTP packets sent with cause Invalid total len.')
jnx_mbg_sgw_gtp_v2_i_cs_dt_for_nt_sup_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 195), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsDtForNtSupRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsDtForNtSupRx.setDescription('Number of GTP packets received with cause Data forwarding not supported.')
jnx_mbg_sgw_gtp_v2_i_cs_dt_for_nt_sup_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 196), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsDtForNtSupTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsDtForNtSupTx.setDescription('Number of GTP packets sent with cause Data forwarding not supported.')
jnx_mbg_sgw_gtp_v2_i_cs_in_re_f_re_pr_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 197), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsInReFRePrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsInReFRePrRx.setDescription('Number of GTP packets received with cause Invalid Reply from Remote peer.')
jnx_mbg_sgw_gtp_v2_i_cs_in_re_f_re_pr_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 198), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsInReFRePrTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsInReFRePrTx.setDescription('Number of GTP packets sent with cause Invalid Reply from Remote peer.')
jnx_mbg_sgw_gtp_v2_i_cs_inv_pr_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 199), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsInvPrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsInvPrRx.setDescription('Number of GTP packets received with cause Invalid peer.')
jnx_mbg_sgw_gtp_v2_i_cs_inv_pr_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 200), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsInvPrTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV2ICsInvPrTx.setDescription('Number of GTP packets sent with cause Invalid peer.')
jnx_mbg_sgw_gtp_v1_protocol_err_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 201), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV1ProtocolErrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV1ProtocolErrRx.setDescription('Number of GTPv1 Protocol Errors Received.')
jnx_mbg_sgw_gtp_v1_un_sup_msg_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 202), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV1UnSupMsgRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV1UnSupMsgRx.setDescription('Number of GTPv1 Unsupported Messages received.')
jnx_mbg_sgw_gtp_v1_t3_resp_tmr_exp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 203), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV1T3RespTmrExpRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV1T3RespTmrExpRx.setDescription('Number of GTP V1 T3 timer expiries Received.')
jnx_mbg_sgw_gtp_v1_end_marker_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 204), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV1EndMarkerRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV1EndMarkerRx.setDescription('Number of GTP V1 end marker packets received.')
jnx_mbg_sgw_gtp_v1_end_marker_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 205), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV1EndMarkerTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV1EndMarkerTx.setDescription('Number of GTP V1 end marker packets sent.')
jnx_mbg_sgw_gtp_v1_echo_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 206), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV1EchoReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV1EchoReqRx.setDescription('Number of GTP V1 echo request packets received.')
jnx_mbg_sgw_gtp_v1_echo_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 207), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV1EchoReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV1EchoReqTx.setDescription('Number of GTP V1 echo request packets sent.')
jnx_mbg_sgw_gtp_v1_echo_resp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 208), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV1EchoRespRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV1EchoRespRx.setDescription('Number of GTP V1 echo response packets received.')
jnx_mbg_sgw_gtp_v1_echo_resp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 209), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV1EchoRespTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV1EchoRespTx.setDescription('Number of GTP V1 echo response packets sent.')
jnx_mbg_sgw_gtp_v1_err_ind_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 210), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV1ErrIndRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV1ErrIndRx.setDescription('Number of GTP V1 Error Indication packets received.')
jnx_mbg_sgw_gtp_v1_err_ind_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 211), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV1ErrIndTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpV1ErrIndTx.setDescription('Number of GTP V1 Error Indication packets sent.')
jnx_mbg_sgw_susp_notif_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 212), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwSuspNotifRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwSuspNotifRx.setDescription('Number of GTPv2 Suspend Notification messages received.')
jnx_mbg_sgw_susp_notif_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 213), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwSuspNotifTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwSuspNotifTx.setDescription('Number of GTPv2 Suspend Notification messages sent.')
jnx_mbg_sgw_susp_ack_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 214), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwSuspAckRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwSuspAckRx.setDescription('Number of GTPv2 Suspend Acknowledgement messages received.')
jnx_mbg_sgw_susp_ack_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 215), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwSuspAckTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwSuspAckTx.setDescription('Number of GTPv2 Suspend Acknowledgement messages sent.')
jnx_mbg_sgw_resume_notif_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 216), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwResumeNotifRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwResumeNotifRx.setDescription('Number of GTPv2 Resume Notification messages received.')
jnx_mbg_sgw_resume_notif_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 217), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwResumeNotifTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwResumeNotifTx.setDescription('Number of GTPv2 Resume Notification messages sent.')
jnx_mbg_sgw_resume_ack_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 218), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwResumeAckRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwResumeAckRx.setDescription('Number of GTPv2 Resume Acknowledgement messages received.')
jnx_mbg_sgw_resume_ack_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 219), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwResumeAckTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwResumeAckTx.setDescription('Number of GTPv2 Resume Acknowledgement messages sent.')
jnx_mbg_sgw_s11_piggyback_msg_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 220), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwS11PiggybackMsgRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwS11PiggybackMsgRx.setDescription('Number of GTPv2 S11 Piggyback messages received.')
jnx_mbg_sgw_s11_piggyback_msg_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 221), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwS11PiggybackMsgTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwS11PiggybackMsgTx.setDescription('Number of GTPv2 S11 Piggyback messages sent.')
jnx_mbg_sgw_s4_piggyback_msg_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 222), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwS4PiggybackMsgRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwS4PiggybackMsgRx.setDescription('Number of GTPv2 S4 Piggyback messages received.')
jnx_mbg_sgw_s4_piggyback_msg_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 223), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwS4PiggybackMsgTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwS4PiggybackMsgTx.setDescription('Number of GTPv2 S4 Piggyback messages sent.')
jnx_mbg_sgw_s5_piggyback_msg_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 224), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwS5PiggybackMsgRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwS5PiggybackMsgRx.setDescription('Number of GTPv2 S5 Piggyback messages received.')
jnx_mbg_sgw_s5_piggyback_msg_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 2, 1, 225), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwS5PiggybackMsgTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwS5PiggybackMsgTx.setDescription('Number of GTPv2 S5 Piggyback messages sent.')
jnx_mbg_sgw_gtp_c_per_peer_stats_table = mib_table((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1))
if mibBuilder.loadTexts:
jnxMbgSgwGtpCPerPeerStatsTable.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpCPerPeerStatsTable.setDescription('Each entry corresponds to a GTP per peer level control statistic.')
jnx_mbg_sgw_gtp_per_peer_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1)).setIndexNames((0, 'JUNIPER-MOBILE-GATEWAYS', 'jnxMbgGwIndex'), (0, 'JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', 'jnxMbgSgwPPGtpRmtAddr'), (0, 'JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', 'jnxMbgSgwPPGtpLclAddr'), (0, 'JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', 'jnxMbgSgwPPGtpRtgInst'))
if mibBuilder.loadTexts:
jnxMbgSgwGtpPerPeerStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpPerPeerStatsEntry.setDescription('A specification of the GTPC peer level Statistics.')
jnx_mbg_sgw_pp_gtp_rmt_addr = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 1), ip_address())
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpRmtAddr.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpRmtAddr.setDescription('The Remote IP address of this GTP peer entry.')
jnx_mbg_sgw_pp_gtp_lcl_addr = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 2), ip_address())
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpLclAddr.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpLclAddr.setDescription('The Local IP address of this GTP peer entry.')
jnx_mbg_sgw_pp_gtp_rtg_inst = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 3), unsigned32())
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpRtgInst.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpRtgInst.setDescription('The Routing Instance for this Peer.')
jnx_mbg_sgw_pp_rx_packets_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 4), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPRxPacketsDropped.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPRxPacketsDropped.setDescription('Number of Received Packets Dropped.')
jnx_mbg_sgw_pp_packet_alloc_fail = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 5), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPPacketAllocFail.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPPacketAllocFail.setDescription('Number of Packet allocation failures.')
jnx_mbg_sgw_pp_packet_send_fail = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 6), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPPacketSendFail.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPPacketSendFail.setDescription('Number of Packet Send failures.')
jnx_mbg_sgw_ppip_ver_err_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 7), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPIPVerErrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPIPVerErrRx.setDescription('Number of IP Version Error Packets Received.')
jnx_mbg_sgw_ppip_proto_err_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 8), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPIPProtoErrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPIPProtoErrRx.setDescription('Number of IP Protocol Error packets Received.')
jnx_mbg_sgw_ppgtp_port_err_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 9), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGTPPortErrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGTPPortErrRx.setDescription('Number of Port Error Packets Received.')
jnx_mbg_sgw_ppgtp_unkn_ver_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 10), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGTPUnknVerRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGTPUnknVerRx.setDescription('Number of Unknown Version Packets Received.')
jnx_mbg_sgw_pp_pckt_len_err_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 11), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPPcktLenErrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPPcktLenErrRx.setDescription('Number of Packet Length Error Packets Received.')
jnx_mbg_sgw_pp_unkn_msg_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 12), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPUnknMsgRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPUnknMsgRx.setDescription('Number of Unknown Messages Received.')
jnx_mbg_sgw_pp_protocol_err_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 13), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPProtocolErrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPProtocolErrRx.setDescription('Number of GTPv2 Protocol Errors Received.')
jnx_mbg_sgw_pp_un_supported_msg_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 14), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPUnSupportedMsgRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPUnSupportedMsgRx.setDescription('Number of GTPv2 Unsupported Messages received.')
jnx_mbg_sgw_ppt3_resp_tmr_exp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 15), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPT3RespTmrExpRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPT3RespTmrExpRx.setDescription('Number of GTP V2 T3 timer expiries Received.')
jnx_mbg_sgw_ppv2_num_msg_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 16), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPV2NumMsgRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPV2NumMsgRx.setDescription('Number of GTPv2 messages received.')
jnx_mbg_sgw_ppv2_num_msg_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 17), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPV2NumMsgTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPV2NumMsgTx.setDescription('Number of GTPV2 messages sent.')
jnx_mbg_sgw_ppv2_num_bytes_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 18), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPV2NumBytesRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPV2NumBytesRx.setDescription('Number of GTPv2 bytes received.')
jnx_mbg_sgw_ppv2_num_bytes_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 19), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPV2NumBytesTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPV2NumBytesTx.setDescription('Number of GTPV2 bytes sent.')
jnx_mbg_sgw_ppv2_echo_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 20), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPV2EchoReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPV2EchoReqRx.setDescription('Number of GTP V2 Echo Request received.')
jnx_mbg_sgw_ppv2_echo_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 21), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPV2EchoReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPV2EchoReqTx.setDescription('Number of GTP V2 Echo Request Sent.')
jnx_mbg_sgw_ppv2_echo_resp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 22), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPV2EchoRespRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPV2EchoRespRx.setDescription('Number of GTP V2 Echo Response received.')
jnx_mbg_sgw_ppv2_echo_resp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 23), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPV2EchoRespTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPV2EchoRespTx.setDescription('Number of GTP V2 Echo Response Sent.')
jnx_mbg_sgw_ppv2_ver_not_sup_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 24), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPV2VerNotSupRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPV2VerNotSupRx.setDescription('Number of GTP V2 Version Not supported messages received')
jnx_mbg_sgw_ppv2_ver_not_sup_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 25), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPV2VerNotSupTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPV2VerNotSupTx.setDescription('Number of GTP V2 Number of version not supported messages sent.')
jnx_mbg_sgw_pp_create_sess_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 26), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPCreateSessReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPCreateSessReqRx.setDescription('Number of GTP V2 Create Session Requests received.')
jnx_mbg_sgw_pp_create_sess_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 27), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPCreateSessReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPCreateSessReqTx.setDescription('Number of GTP V2 Create Session Requests Sent.')
jnx_mbg_sgw_pp_create_sess_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 28), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPCreateSessRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPCreateSessRspRx.setDescription('Number of GTP V2 Create Session Responses received.')
jnx_mbg_sgw_pp_create_sess_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 29), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPCreateSessRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPCreateSessRspTx.setDescription('Number of GTP V2 Create Session Responses Sent.')
jnx_mbg_sgw_pp_mod_br_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 30), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPModBrReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPModBrReqRx.setDescription('Number of GTP V2 Modify Bearer Requests received.')
jnx_mbg_sgw_pp_mod_br_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 31), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPModBrReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPModBrReqTx.setDescription('Number of GTP V2 Modify Bearer Requests Sent.')
jnx_mbg_sgw_pp_mod_br_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 32), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPModBrRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPModBrRspRx.setDescription('Number of GTP V2 Modify Bearer Responses received.')
jnx_mbg_sgw_pp_mod_br_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 33), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPModBrRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPModBrRspTx.setDescription('Number of GTP V2 Modify Bearer Responses Sent.')
jnx_mbg_sgw_pp_del_sess_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 34), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelSessReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelSessReqRx.setDescription('Number of GTP V2 Delete Session Requests received.')
jnx_mbg_sgw_pp_del_sess_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 35), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelSessReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelSessReqTx.setDescription('Number of GTP V2 Delete Session Requests Sent.')
jnx_mbg_sgw_pp_del_sess_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 36), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelSessRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelSessRspRx.setDescription('Number of GTP V2 Delete Session Responses received.')
jnx_mbg_sgw_pp_del_sess_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 37), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelSessRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelSessRspTx.setDescription('Number of GTP V2 Delete Session Responses Sent.')
jnx_mbg_sgw_pp_crt_br_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 38), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPCrtBrReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPCrtBrReqRx.setDescription('Number of GTP V2 Create Bearer Requests received.')
jnx_mbg_sgw_pp_crt_br_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 39), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPCrtBrReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPCrtBrReqTx.setDescription('Number of GTP V2 Create Bearer Requests Sent.')
jnx_mbg_sgw_pp_crt_br_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 40), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPCrtBrRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPCrtBrRspRx.setDescription('Number of GTP V2 Create Bearer Response received.')
jnx_mbg_sgw_pp_crt_br_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 41), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPCrtBrRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPCrtBrRspTx.setDescription('Number of GTP V2 Create Bearer Response Sent.')
jnx_mbg_sgw_pp_upd_br_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 42), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPUpdBrReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPUpdBrReqRx.setDescription('Number of GTP V2 Update Bearer Request received.')
jnx_mbg_sgw_pp_upd_br_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 43), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPUpdBrReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPUpdBrReqTx.setDescription('Number of GTP V2 Update Bearer Request Sent.')
jnx_mbg_sgw_pp_upd_br_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 44), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPUpdBrRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPUpdBrRspRx.setDescription('Number of GTP V2 Update Bearer Response received.')
jnx_mbg_sgw_pp_upd_br_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 45), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPUpdBrRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPUpdBrRspTx.setDescription('Number of GTP V2 Update Bearer Response Sent.')
jnx_mbg_sgw_pp_del_br_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 46), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelBrReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelBrReqRx.setDescription('Number of GTP V2 Delete Bearer Request received.')
jnx_mbg_sgw_pp_del_br_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 47), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelBrReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelBrReqTx.setDescription('Number of GTP V2 Delete Bearer Request Sent.')
jnx_mbg_sgw_pp_del_br_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 48), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelBrRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelBrRspRx.setDescription('Number of GTP V2 Delete Bearer Response received.')
jnx_mbg_sgw_pp_del_br_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 49), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelBrRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelBrRspTx.setDescription('Number of GTP V2 Delete Bearer Response Sent.')
jnx_mbg_sgw_pp_del_conn_set_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 50), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelConnSetReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelConnSetReqRx.setDescription('Number of GTP V2 Delete PDN connection set Request received.')
jnx_mbg_sgw_pp_del_conn_set_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 51), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelConnSetReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelConnSetReqTx.setDescription('Number of GTP V2 Delete PDN connection set Request Sent.')
jnx_mbg_sgw_pp_del_conn_set_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 52), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelConnSetRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelConnSetRspRx.setDescription('Number of GTP V2 Delete PDN connection set Response received.')
jnx_mbg_sgw_pp_del_conn_set_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 53), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelConnSetRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelConnSetRspTx.setDescription('Number of GTP V2 Delete PDN connection set Response Sent.')
jnx_mbg_sgw_pp_upd_conn_set_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 54), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPUpdConnSetReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPUpdConnSetReqRx.setDescription('Number of GTP V2 Update Connection set Request received.')
jnx_mbg_sgw_pp_upd_conn_set_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 55), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPUpdConnSetReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPUpdConnSetReqTx.setDescription('Number of GTP V2 Update Connection set Request Sent.')
jnx_mbg_sgw_pp_upd_conn_set_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 56), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPUpdConnSetRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPUpdConnSetRspRx.setDescription('Number of GTP V2 Update Connection set Response received.')
jnx_mbg_sgw_pp_upd_conn_set_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 57), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPUpdConnSetRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPUpdConnSetRspTx.setDescription('Number of GTP V2 Update Connection set Response Sent.')
jnx_mbg_sgw_pp_mod_br_cmd_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 58), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPModBrCmdRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPModBrCmdRx.setDescription('Number of GTP V2 Modify Bearer Command received.')
jnx_mbg_sgw_pp_mod_br_cmd_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 59), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPModBrCmdTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPModBrCmdTx.setDescription('Number of GTP V2 Modify Bearer Command Sent.')
jnx_mbg_sgw_pp_mod_br_flr_ind_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 60), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPModBrFlrIndRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPModBrFlrIndRx.setDescription('Number of GTP V2 Modify Bearer Failure received.')
jnx_mbg_sgw_pp_mod_br_flr_ind_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 61), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPModBrFlrIndTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPModBrFlrIndTx.setDescription('Number of GTP V2 Modify Bearer Failure Sent.')
jnx_mbg_sgw_pp_del_br_cmd_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 62), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelBrCmdRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelBrCmdRx.setDescription('Number of GTP V2 Delete Bearer Command received.')
jnx_mbg_sgw_pp_del_br_cmd_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 63), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelBrCmdTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelBrCmdTx.setDescription('Number of GTP V2 Delete Bearer Command Sent.')
jnx_mbg_sgw_pp_del_br_flr_ind_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 64), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelBrFlrIndRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelBrFlrIndRx.setDescription('Number of GTP V2 Delete Bearer Failure received.')
jnx_mbg_sgw_pp_del_br_flr_ind_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 65), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelBrFlrIndTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelBrFlrIndTx.setDescription('Number of GTP V2 Delete Bearer Failure Sent.')
jnx_mbg_sgw_pp_br_res_cmd_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 66), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPBrResCmdRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPBrResCmdRx.setDescription('Number of GTP V2 Bearer Response Command received.')
jnx_mbg_sgw_pp_br_res_cmd_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 67), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPBrResCmdTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPBrResCmdTx.setDescription('Number of GTP V2 Bearer Response Command Sent.')
jnx_mbg_sgw_pp_br_res_flr_ind_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 68), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPBrResFlrIndRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPBrResFlrIndRx.setDescription('Number of GTP V2 Bearer Resource Failure received.')
jnx_mbg_sgw_pp_br_res_flr_ind_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 69), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPBrResFlrIndTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPBrResFlrIndTx.setDescription('Number of GTP V2 Bearer Resource Failure Sent.')
jnx_mbg_sgw_pp_rel_acs_br_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 70), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPRelAcsBrReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPRelAcsBrReqRx.setDescription('Number of GTP V2 Release Access Bearer Requests received.')
jnx_mbg_sgw_pp_rel_acs_br_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 71), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPRelAcsBrReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPRelAcsBrReqTx.setDescription('Number of GTP V2 Release Access Bearer Requests sent.')
jnx_mbg_sgw_pp_rel_acs_br_resp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 72), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPRelAcsBrRespRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPRelAcsBrRespRx.setDescription('Number of GTP V2 Release Access Bearer Response received.')
jnx_mbg_sgw_pp_rel_acs_br_resp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 73), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPRelAcsBrRespTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPRelAcsBrRespTx.setDescription('Number of GTP V2 Release Access Bearer Response sent.')
jnx_mbg_sgw_pp_cr_ind_tun_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 74), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPCrIndTunReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPCrIndTunReqRx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Request Received')
jnx_mbg_sgw_pp_cr_ind_tun_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 75), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPCrIndTunReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPCrIndTunReqTx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Request sent')
jnx_mbg_sgw_pp_cr_ind_tun_resp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 76), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPCrIndTunRespRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPCrIndTunRespRx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Response Received')
jnx_mbg_sgw_pp_cr_ind_tun_resp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 77), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPCrIndTunRespTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPCrIndTunRespTx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Response sent')
jnx_mbg_sgw_pp_del_ind_tun_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 78), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelIndTunReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelIndTunReqRx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Request Received')
jnx_mbg_sgw_pp_del_ind_tun_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 79), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelIndTunReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelIndTunReqTx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Request sent.')
jnx_mbg_sgw_pp_del_ind_tun_resp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 80), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelIndTunRespRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelIndTunRespRx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Response Received')
jnx_mbg_sgw_pp_del_ind_tun_resp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 81), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelIndTunRespTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDelIndTunRespTx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Response sent.')
jnx_mbg_sgw_pp_dl_data_notif_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 82), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDlDataNotifRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDlDataNotifRx.setDescription('Number of GTP V2 Downlink Data Notify received.')
jnx_mbg_sgw_pp_dl_data_notif_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 83), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDlDataNotifTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDlDataNotifTx.setDescription('Number of GTP V2 Downlink Data Notify Sent.')
jnx_mbg_sgw_pp_dl_data_ack_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 84), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDlDataAckRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDlDataAckRx.setDescription('Number of GTP V2 Downlink Data Notify Acknowledgement received.')
jnx_mbg_sgw_pp_dl_data_ack_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 85), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDlDataAckTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDlDataAckTx.setDescription('Number of GTP V2 Downlink Data Notify Acknowledgement Sent.')
jnx_mbg_sgw_pp_dl_data_noti_flr_ind_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 86), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDlDataNotiFlrIndRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDlDataNotiFlrIndRx.setDescription('Number of GTP V2 Downlink Data Notification fail received.')
jnx_mbg_sgw_pp_dl_data_noti_flr_ind_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 87), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPDlDataNotiFlrIndTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPDlDataNotiFlrIndTx.setDescription('Number of GTP V2 Downlink Data Notification fail Sent.')
jnx_mbg_sgw_pp_stop_paging_ind_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 88), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPStopPagingIndRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPStopPagingIndRx.setDescription('Number of GTP V2 Number of Stop Paging Indication Messages Received.')
jnx_mbg_sgw_pp_stop_paging_ind_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 89), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPStopPagingIndTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPStopPagingIndTx.setDescription('Number of GTP V2 Number of Stop Paging Indicaton messages sent')
jnx_mbg_sgw_pp_gtp_v2_i_cs_page_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 90), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsPageRx.setStatus('obsolete')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsPageRx.setDescription('Number of GTPV2 packets received with cause Page.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_page_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 91), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsPageTx.setStatus('obsolete')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsPageTx.setDescription('Number of GTP packets sent with cause Page.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_req_accept_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 92), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsReqAcceptRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsReqAcceptRx.setDescription('Number of GTPV2 packets received with cause Request Accept.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_req_accept_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 93), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsReqAcceptTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsReqAcceptTx.setDescription('Number of GTP packets sent with cause Request Accept.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_accept_part_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 94), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsAcceptPartRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsAcceptPartRx.setDescription('Number of GTPV2 packets received with cause Accept Partial.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_accept_part_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 95), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsAcceptPartTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsAcceptPartTx.setDescription('Number of GTP packets sent with cause Accept Partial.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_new_ptn_pref_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 96), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsNewPTNPrefRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsNewPTNPrefRx.setDescription('Number of GTPV2 packets received with cause New PDN type due to Network Preference.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_new_ptn_pref_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 97), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsNewPTNPrefTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsNewPTNPrefTx.setDescription('Number of GTP packets sent with cause New PDN type due to Network Preference.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_nptsi_adbr_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 98), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsNPTSIAdbrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsNPTSIAdbrRx.setDescription('Number of GTPV2 packets received with cause New PDN type due to Single Address Bearer.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_nptsi_adbr_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 99), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsNPTSIAdbrTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsNPTSIAdbrTx.setDescription('Number of GTP packets sent with cause New PDN type due to Single Address Bearer.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_ctx_not_fnd_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 100), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsCtxNotFndRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsCtxNotFndRx.setDescription('Number of GTPV2 packets received with cause Context not found.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_ctx_not_fnd_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 101), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsCtxNotFndTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsCtxNotFndTx.setDescription('Number of GTP packets sent with cause Context not found.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_inv_msg_fmt_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 102), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsInvMsgFmtRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsInvMsgFmtRx.setDescription('Number of GTPV2 packets received with cause Invalid Message Format.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_inv_msg_fmt_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 103), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsInvMsgFmtTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsInvMsgFmtTx.setDescription('Number of GTP packets sent with cause Invalid Message Format.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_ver_not_supp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 104), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsVerNotSuppRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsVerNotSuppRx.setDescription('Number of GTPV2 packets received with cause Version not Supported.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_ver_not_supp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 105), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsVerNotSuppTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsVerNotSuppTx.setDescription('Number of GTP packets sent with cause Version not Supported.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_inv_len_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 106), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsInvLenRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsInvLenRx.setDescription('Number of GTPV2 packets received with cause Invalid Length.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_inv_len_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 107), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsInvLenTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsInvLenTx.setDescription('Number of GTP packets sent with cause Invalid Length.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_serv_not_sup_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 108), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsServNotSupRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsServNotSupRx.setDescription('Number of GTPV2 packets received with cause Service Not supported.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_serv_not_sup_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 109), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsServNotSupTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsServNotSupTx.setDescription('Number of GTP packets sent with cause Service Not supported.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_man_ie_incor_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 110), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsManIEIncorRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsManIEIncorRx.setDescription('Number of GTPV2 packets received with cause Mandatory IE incorrect.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_man_ie_incor_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 111), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsManIEIncorTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsManIEIncorTx.setDescription('Number of GTP packets sent with cause Mandatory IE incorrect.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_man_ie_miss_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 112), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsManIEMissRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsManIEMissRx.setDescription('Number of GTPV2 packets received with cause Mandatory IE Missing.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_man_ie_miss_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 113), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsManIEMissTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsManIEMissTx.setDescription('Number of GTP packets sent with cause Mandatory IE Missing.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_opt_ie_incor_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 114), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsOptIEIncorRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsOptIEIncorRx.setDescription('Number of GTPV2 packets received with cause Optional IE Incorrect.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_opt_ie_incor_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 115), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsOptIEIncorTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsOptIEIncorTx.setDescription('Number of GTP packets sent with cause Optional IE Incorrect.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_sys_fail_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 116), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsSysFailRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsSysFailRx.setDescription('Number of GTPV2 packets received with cause System Failure.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_sys_fail_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 117), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsSysFailTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsSysFailTx.setDescription('Number of GTP packets sent with cause System Failure.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_no_res_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 118), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsNoResRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsNoResRx.setDescription('Number of GTPV2 packets received with cause No Resource.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_no_res_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 119), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsNoResTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsNoResTx.setDescription('Number of GTP packets sent with cause No Resource.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_tftsmant_er_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 120), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsTFTSMANTErRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsTFTSMANTErRx.setDescription('Number of GTPV2 packets received with cause TFT Symantic Error.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_tftsmant_er_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 121), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsTFTSMANTErTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsTFTSMANTErTx.setDescription('Number of GTP packets sent with cause TFT Symantic Error.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_tft_sys_err_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 122), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsTFTSysErrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsTFTSysErrRx.setDescription('Number of GTPV2 packets received with cause TFT System Error.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_tft_sys_err_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 123), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsTFTSysErrTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsTFTSysErrTx.setDescription('Number of GTP packets sent with cause TFT System Error.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_pk_flt_man_er_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 124), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsPkFltManErRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsPkFltManErRx.setDescription('Number of GTPV2 packets received with cause Packet Filter Symantic Error.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_pk_flt_man_er_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 125), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsPkFltManErTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsPkFltManErTx.setDescription('Number of GTP packets sent with cause Packet Filter Symantic Error.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_pk_flt_syn_er_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 126), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsPkFltSynErRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsPkFltSynErRx.setDescription('Number of GTPV2 packets received with cause Packet Filter Syntax Error.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_pk_flt_syn_er_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 127), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsPkFltSynErTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsPkFltSynErTx.setDescription('Number of GTP packets sent with cause Packet Filter Syntax Error.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_mis_unkn_apn_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 128), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsMisUnknAPNRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsMisUnknAPNRx.setDescription('Number of GTPV2 packets received with cause Unknown APN.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_mis_unkn_apn_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 129), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsMisUnknAPNTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsMisUnknAPNTx.setDescription('Number of GTP packets sent with cause Unknown APN.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_unexp_rpt_ie_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 130), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUnexpRptIERx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUnexpRptIERx.setDescription('Number of GTPV2 packets received with cause Unexpected Repeated IE.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_unexp_rpt_ie_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 131), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUnexpRptIETx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUnexpRptIETx.setDescription('Number of GTP packets sent with cause Unexpected Repeated IE.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_gre_key_nt_fd_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 132), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsGREKeyNtFdRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsGREKeyNtFdRx.setDescription('Number of GTPV2 packets received with cause GRE Key Not Found.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_gre_key_nt_fd_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 133), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsGREKeyNtFdTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsGREKeyNtFdTx.setDescription('Number of GTP packets sent with cause GRE Key Not Found.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_reloc_fail_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 134), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsRelocFailRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsRelocFailRx.setDescription('Number of GTPV2 packets received with cause Relocation Failed.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_reloc_fail_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 135), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsRelocFailTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsRelocFailTx.setDescription('Number of GTP packets sent with cause Relocation Failed.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_den_in_rat_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 136), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsDenINRatRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsDenINRatRx.setDescription('Number of GTPV2 packets received with cause Denied in RAT.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_den_in_rat_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 137), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsDenINRatTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsDenINRatTx.setDescription('Number of GTP packets sent with cause Denied in RAT.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_pt_not_supp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 138), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsPTNotSuppRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsPTNotSuppRx.setDescription('Number of GTPV2 packets received with cause PDN Type Not Supported.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_pt_not_supp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 139), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsPTNotSuppTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsPTNotSuppTx.setDescription('Number of GTP packets sent with cause PDN Type Not Supported.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_all_dyn_ad_oc_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 140), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsAllDynAdOcRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsAllDynAdOcRx.setDescription('Number of GTPV2 packets received with cause Allocated Dynamic Address Occupied.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_all_dyn_ad_oc_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 141), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsAllDynAdOcTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsAllDynAdOcTx.setDescription('Number of GTP packets sent with cause Allocated Dynamic Address Occupied.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_notftuectx_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 142), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsNOTFTUECTXRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsNOTFTUECTXRx.setDescription('Number of GTPV2 packets received with cause UE Context Without TFT Exists.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_notftuectx_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 143), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsNOTFTUECTXTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsNOTFTUECTXTx.setDescription('Number of GTP packets sent with cause UE Context Without TFT Exists.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_proto_nt_sup_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 144), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsProtoNtSupRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsProtoNtSupRx.setDescription('Number of GTPV2 packets received with cause Protocol Not Supported.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_proto_nt_sup_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 145), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsProtoNtSupTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsProtoNtSupTx.setDescription('Number of GTP packets sent with cause Protocol Not Supported.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_ue_not_resp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 146), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUENotRespRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUENotRespRx.setDescription('Number of GTPV2 packets received with cause UE Not Responding.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_ue_not_resp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 147), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUENotRespTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUENotRespTx.setDescription('Number of GTP packets sent with cause UE Not Responding.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_ue_refuses_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 148), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUERefusesRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUERefusesRx.setDescription('Number of GTPV2 packets received with cause UE Refuses.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_ue_refuses_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 149), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUERefusesTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUERefusesTx.setDescription('Number of GTP packets sent with cause UE Refuses.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_serv_denied_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 150), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsServDeniedRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsServDeniedRx.setDescription('Number of GTPV2 packets received with cause Service Denied.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_serv_denied_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 151), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsServDeniedTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsServDeniedTx.setDescription('Number of GTP packets sent with cause Service Denied.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_unab_page_ue_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 152), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUnabPageUERx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUnabPageUERx.setDescription('Number of GTPV2 packets received with cause Unable to Page UE.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_unab_page_ue_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 153), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUnabPageUETx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUnabPageUETx.setDescription('Number of GTP packets sent with cause Unable to Page UE.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_no_mem_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 154), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsNoMemRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsNoMemRx.setDescription('Number of GTPV2 packets received with cause No Memory.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_no_mem_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 155), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsNoMemTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsNoMemTx.setDescription('Number of GTP packets sent with cause No Memory.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_user_auth_fl_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 156), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUserAUTHFlRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUserAUTHFlRx.setDescription('Number of GTPV2 packets received with cause User AUTH Failed.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_user_auth_fl_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 157), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUserAUTHFlTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUserAUTHFlTx.setDescription('Number of GTP packets sent with cause User AUTH Failed.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_apn_acs_den_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 158), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsAPNAcsDenRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsAPNAcsDenRx.setDescription('Number of GTPV2 packets received with cause APN Access Denied.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_apn_acs_den_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 159), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsAPNAcsDenTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsAPNAcsDenTx.setDescription('Number of GTP packets sent with cause APN Access Denied.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_req_rej_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 160), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsReqRejRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsReqRejRx.setDescription('Number of GTPV2 packets received with cause Request Rejected.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_req_rej_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 161), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsReqRejTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsReqRejTx.setDescription('Number of GTP packets sent with cause Request Rejected.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_ptmsi_sig_mm_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 162), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsPTMSISigMMRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsPTMSISigMMRx.setDescription('Number of GTPV2 packets received with cause P-TMSI Signature Mismatch.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_ptmsi_sig_mm_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 163), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsPTMSISigMMTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsPTMSISigMMTx.setDescription('Number of GTP packets sent with cause P-TMSI Signature Mismatch.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_imsi_not_kn_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 164), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsIMSINotKnRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsIMSINotKnRx.setDescription('Number of GTPV2 packets received with cause IMSI Not Known.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_imsi_not_kn_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 165), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsIMSINotKnTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsIMSINotKnTx.setDescription('Number of GTP packets sent with cause IMSI Not Known.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_cond_ie_ms_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 166), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsCondIEMsRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsCondIEMsRx.setDescription('Number of GTPV2 packets received with cause Conditional IE Missing.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_cond_ie_ms_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 167), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsCondIEMsTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsCondIEMsTx.setDescription('Number of GTP packets sent with cause Conditional IE Missing.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_apn_res_t_inc_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 168), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsAPNResTIncRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsAPNResTIncRx.setDescription('Number of GTPV2 packets received with cause APN Restriction Type Incompatible.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_apn_res_t_inc_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 169), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsAPNResTIncTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsAPNResTIncTx.setDescription('Number of GTP packets sent with cause APN Restriction Type Incompatible.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_unknown_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 170), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUnknownRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUnknownRx.setDescription('Number of GTPV2 packets received with cause Unknown.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_unknown_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 171), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUnknownTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUnknownTx.setDescription('Number of GTP packets sent with cause Unknown.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_lcl_det_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 172), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsLclDetRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsLclDetRx.setDescription('Number of GTP packets received with cause Local Detach.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_lcl_det_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 173), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsLclDetTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsLclDetTx.setDescription('Number of GTP packets sent with cause Local Detach.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_cmp_det_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 174), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsCmpDetRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsCmpDetRx.setDescription('Number of GTP packets received with cause Complete Detach.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_cmp_det_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 175), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsCmpDetTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsCmpDetTx.setDescription('Number of GTP packets sent with cause Complete Detach.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_rat_chg_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 176), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsRATChgRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsRATChgRx.setDescription('Number of GTP packets received with cause RAT changed from 3GPP to non 3GPP.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_rat_chg_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 177), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsRATChgTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsRATChgTx.setDescription('Number of GTP packets sent with cause RAT changed from 3GPP to non 3GPP.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_isr_deact_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 178), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsISRDeactRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsISRDeactRx.setDescription('Number of GTP packets received with cause ISR Deactivated.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_isr_deact_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 179), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsISRDeactTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsISRDeactTx.setDescription('Number of GTP packets sent with cause ISR Deactivated.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_eifrnc_en_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 180), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsEIFRNCEnRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsEIFRNCEnRx.setDescription('Number of GTP packets received with cause Error Indication from RNC eNodeB.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_eifrnc_en_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 181), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsEIFRNCEnTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsEIFRNCEnTx.setDescription('Number of GTP packets sent with cause Error Indication from RNC eNodeB.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_sem_er_tad_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 182), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsSemErTADRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsSemErTADRx.setDescription('Number of GTP packets received with cause Semantic Error in TAD Operation.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_sem_er_tad_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 183), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsSemErTADTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsSemErTADTx.setDescription('Number of GTP packets sent with cause Semantic Error in TAD Operation.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_syn_er_tad_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 184), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsSynErTADRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsSynErTADRx.setDescription('Number of GTP packets received with cause Syntactic Error in TAD Operation.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_syn_er_tad_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 185), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsSynErTADTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsSynErTADTx.setDescription('Number of GTP packets sent with cause Syntactic Error in TAD Operation.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_rm_val_rcv_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 186), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsRMValRcvRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsRMValRcvRx.setDescription('Number of GTP packets received with cause Reserved Message Value Received.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_rm_val_rcv_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 187), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsRMValRcvTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsRMValRcvTx.setDescription('Number of GTP packets sent with cause Reserved Message Value Received.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_r_pr_nt_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 188), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsRPrNtRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsRPrNtRspRx.setDescription('Number of GTP packets received with cause Remote peer not responding.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_r_pr_nt_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 189), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsRPrNtRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsRPrNtRspTx.setDescription('Number of GTP packets sent with cause Remote peer not responding.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_col_nw_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 190), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsColNWReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsColNWReqRx.setDescription('Number of GTP packets received with cause Collision with network initiated request.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_col_nw_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 191), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsColNWReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsColNWReqTx.setDescription('Number of GTP packets sent with cause Collision with network initiated request.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_un_pg_ue_sus_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 192), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUnPgUESusRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUnPgUESusRx.setDescription('Number of GTP packets received with cause Unable to page UE due to suspension.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_un_pg_ue_sus_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 193), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUnPgUESusTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsUnPgUESusTx.setDescription('Number of GTP packets sent with cause Unable to page UE due to suspension.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_inv_tot_len_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 194), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsInvTotLenRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsInvTotLenRx.setDescription('Number of GTP packets received with cause Invalid total len.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_inv_tot_len_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 195), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsInvTotLenTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsInvTotLenTx.setDescription('Number of GTP packets sent with cause Invalid total len.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_dt_for_nt_sup_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 196), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsDtForNtSupRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsDtForNtSupRx.setDescription('Number of GTP packets received with cause Data forwarding not supported.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_dt_for_nt_sup_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 197), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsDtForNtSupTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsDtForNtSupTx.setDescription('Number of GTP packets sent with cause Data forwarding not supported.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_in_re_f_re_pr_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 198), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsInReFRePrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsInReFRePrRx.setDescription('Number of GTP packets received with cause Invalid Reply from Remote peer.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_in_re_f_re_pr_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 199), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsInReFRePrTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsInReFRePrTx.setDescription('Number of GTP packets sent with cause Invalid Reply from Remote peer.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_inv_pr_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 200), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsInvPrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsInvPrRx.setDescription('Number of GTP packets received with cause Invalid peer.')
jnx_mbg_sgw_pp_gtp_v2_i_cs_inv_pr_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 201), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsInvPrTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV2ICsInvPrTx.setDescription('Number of GTP packets sent with cause Invalid peer.')
jnx_mbg_sgw_pp_gtp_v1_protocol_err_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 202), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV1ProtocolErrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV1ProtocolErrRx.setDescription('Number of GTPv1 Protocol Errors Received.')
jnx_mbg_sgw_pp_gtp_v1_un_sup_msg_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 203), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV1UnSupMsgRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV1UnSupMsgRx.setDescription('Number of GTPv1 Unsupported Messages received.')
jnx_mbg_sgw_pp_gtp_v1_t3_resp_tmr_exp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 204), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV1T3RespTmrExpRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV1T3RespTmrExpRx.setDescription('Number of GTP V1 T3 timer expiries Received.')
jnx_mbg_sgw_pp_gtp_v1_end_marker_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 205), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV1EndMarkerRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV1EndMarkerRx.setDescription('Number of GTP V1 end marker packets received.')
jnx_mbg_sgw_pp_gtp_v1_end_marker_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 206), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV1EndMarkerTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV1EndMarkerTx.setDescription('Number of GTP V1 end marker packets sent.')
jnx_mbg_sgw_pp_gtp_v1_echo_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 207), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV1EchoReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV1EchoReqRx.setDescription('Number of GTP V1 echo request packets received.')
jnx_mbg_sgw_pp_gtp_v1_echo_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 208), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV1EchoReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV1EchoReqTx.setDescription('Number of GTP iV1 echo request packets sent.')
jnx_mbg_sgw_pp_gtp_v1_echo_resp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 209), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV1EchoRespRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV1EchoRespRx.setDescription('Number of GTP V1 echo response packets received.')
jnx_mbg_sgw_pp_gtp_v1_echo_resp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 210), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV1EchoRespTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV1EchoRespTx.setDescription('Number of GTP V1 echo response packets sent.')
jnx_mbg_sgw_pp_gtp_v1_err_ind_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 211), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV1ErrIndRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV1ErrIndRx.setDescription('Number of GTP V1 Error Indication packets received.')
jnx_mbg_sgw_pp_gtp_v1_err_ind_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 212), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV1ErrIndTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPGtpV1ErrIndTx.setDescription('Number of GTP V1 Error Indication packets sent.')
jnx_mbg_sgw_pp_susp_notif_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 213), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPSuspNotifRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPSuspNotifRx.setDescription('Number of GTPv2 Suspend Notification messages received.')
jnx_mbg_sgw_pp_susp_notif_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 214), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPSuspNotifTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPSuspNotifTx.setDescription('Number of GTPv2 Suspend Notification messages sent.')
jnx_mbg_sgw_pp_susp_ack_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 215), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPSuspAckRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPSuspAckRx.setDescription('Number of GTPv2 Suspend Acknowledgement messages received.')
jnx_mbg_sgw_pp_susp_ack_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 216), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPSuspAckTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPSuspAckTx.setDescription('Number of GTPv2 Suspend Acknowledgement messages sent.')
jnx_mbg_sgw_pp_resume_notif_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 217), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPResumeNotifRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPResumeNotifRx.setDescription('Number of GTPv2 Resume Notification messages received.')
jnx_mbg_sgw_pp_resume_notif_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 218), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPResumeNotifTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPResumeNotifTx.setDescription('Number of GTPv2 Resume Notification messages sent.')
jnx_mbg_sgw_pp_resume_ack_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 219), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPResumeAckRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPResumeAckRx.setDescription('Number of GTPv2 Resume Acknowledgement messages received.')
jnx_mbg_sgw_pp_resume_ack_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 220), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPResumeAckTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPResumeAckTx.setDescription('Number of GTPv2 Resume Acknowledgement messages sent.')
jnx_mbg_sgw_pp_piggyback_msg_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 221), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPPiggybackMsgRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPPiggybackMsgRx.setDescription('Number of GTPv2 Piggyback messages received.')
jnx_mbg_sgw_pp_piggyback_msg_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 1, 1, 222), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwPPPiggybackMsgTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwPPPiggybackMsgTx.setDescription('Number of GTPv2 S11 Piggyback messages sent.')
jnx_mbg_sgw_gtp_if_stats_table = mib_table((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4))
if mibBuilder.loadTexts:
jnxMbgSgwGtpIfStatsTable.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpIfStatsTable.setDescription('Each entry corresponds to an interface level GTP statistic.')
jnx_mbg_sgw_gtp_if_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1)).setIndexNames((0, 'JUNIPER-MOBILE-GATEWAYS', 'jnxMbgGwIndex'), (0, 'JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', 'jnxMbgSgwIfIndex'))
if mibBuilder.loadTexts:
jnxMbgSgwGtpIfStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpIfStatsEntry.setDescription('A specification of the GTP interface level control Statistics.')
jnx_mbg_sgw_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 1), unsigned32())
if mibBuilder.loadTexts:
jnxMbgSgwIfIndex.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfIndex.setDescription('GTP Interface Index')
jnx_mbg_sgw_if_type = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfType.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfType.setDescription('Interface Name.')
jnx_mbg_sgw_if_rx_packets_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfRxPacketsDropped.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfRxPacketsDropped.setDescription('Number of Received GTP Packets Dropped by the Gateway.')
jnx_mbg_sgw_if_packet_alloc_fail = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 4), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfPacketAllocFail.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfPacketAllocFail.setDescription('Number of Packet allocation failures in the Gateway.')
jnx_mbg_sgw_if_packet_send_fail = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 5), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfPacketSendFail.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfPacketSendFail.setDescription('Number of GTP Packet Send failures in the Gateway.')
jnx_mbg_sgw_if_ip_ver_err_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 6), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfIPVerErrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfIPVerErrRx.setDescription('Number of IP Version Error Packets Received.')
jnx_mbg_sgw_if_ip_proto_err_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 7), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfIPProtoErrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfIPProtoErrRx.setDescription('Number of IP Protocol Error packets Received.')
jnx_mbg_sgw_if_gtp_port_err_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 8), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGTPPortErrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGTPPortErrRx.setDescription('Number of Port Error Packets Received.')
jnx_mbg_sgw_if_gtp_unkn_ver_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 9), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGTPUnknVerRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGTPUnknVerRx.setDescription('Number of Unknown Version Packets Received.')
jnx_mbg_sgw_if_pckt_len_err_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 10), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfPcktLenErrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfPcktLenErrRx.setDescription('Number of Packet Length Error Packets Received.')
jnx_mbg_sgw_if_unkn_msg_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 11), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfUnknMsgRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfUnknMsgRx.setDescription('Number of Unknown Messages Received.')
jnx_mbg_sgw_if_protocol_err_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 12), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfProtocolErrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfProtocolErrRx.setDescription('Number of GTPv2 Protocol Errors Received.')
jnx_mbg_sgw_if_un_supported_msg_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 13), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfUnSupportedMsgRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfUnSupportedMsgRx.setDescription('Number of GTPv2 Unsupported Messages received.')
jnx_mbg_sgw_if_t3_resp_tmr_exp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 14), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfT3RespTmrExpRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfT3RespTmrExpRx.setDescription('Number of GTP V2 T3 timer expiries Received.')
jnx_mbg_sgw_if_v2_num_msg_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 15), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfV2NumMsgRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfV2NumMsgRx.setDescription('Number of GTPv2 messages received.')
jnx_mbg_sgw_if_v2_num_msg_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 16), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfV2NumMsgTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfV2NumMsgTx.setDescription('Number of V2 messages sent.')
jnx_mbg_sgw_if_v2_num_bytes_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 17), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfV2NumBytesRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfV2NumBytesRx.setDescription('Number of GTPv2 bytes received.')
jnx_mbg_sgw_if_v2_num_bytes_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 18), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfV2NumBytesTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfV2NumBytesTx.setDescription('Number of V2 bytes sent.')
jnx_mbg_sgw_if_v2_echo_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 19), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfV2EchoReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfV2EchoReqRx.setDescription('Number of GTP V2 Echo Request received.')
jnx_mbg_sgw_if_v2_echo_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 20), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfV2EchoReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfV2EchoReqTx.setDescription('Number of GTP V2 Echo Request Sent.')
jnx_mbg_sgw_if_v2_echo_resp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 21), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfV2EchoRespRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfV2EchoRespRx.setDescription('Number of GTP V2 Echo Response received.')
jnx_mbg_sgw_if_v2_echo_resp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 22), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfV2EchoRespTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfV2EchoRespTx.setDescription('Number of GTP V2 Echo Response Sent.')
jnx_mbg_sgw_if_v2_ver_not_sup_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 23), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfV2VerNotSupRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfV2VerNotSupRx.setDescription('Number of GTP V2 Version Not supported messages received')
jnx_mbg_sgw_if_v2_ver_not_sup_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 24), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfV2VerNotSupTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfV2VerNotSupTx.setDescription('Number of GTP V2 version not supported messages sent.')
jnx_mbg_sgw_if_create_sess_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 25), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfCreateSessReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfCreateSessReqRx.setDescription('Number of GTP V2 Create Session Requests received.')
jnx_mbg_sgw_if_create_sess_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 26), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfCreateSessReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfCreateSessReqTx.setDescription('Number of GTP V2 Create Session Requests Sent.')
jnx_mbg_sgw_if_create_sess_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 27), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfCreateSessRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfCreateSessRspRx.setDescription('Number of GTP V2 Create Session Responses received.')
jnx_mbg_sgw_if_create_sess_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 28), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfCreateSessRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfCreateSessRspTx.setDescription('Number of GTP V2 Create Session Responses Sent.')
jnx_mbg_sgw_if_mod_br_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 29), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfModBrReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfModBrReqRx.setDescription('Number of GTP V2 Modify Bearer Requests received.')
jnx_mbg_sgw_if_mod_br_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 30), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfModBrReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfModBrReqTx.setDescription('Number of GTP V2 Modify Bearer Requests Sent.')
jnx_mbg_sgw_if_mod_br_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 31), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfModBrRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfModBrRspRx.setDescription('Number of GTP V2 Modify Bearer Responses received.')
jnx_mbg_sgw_if_mod_br_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 32), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfModBrRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfModBrRspTx.setDescription('Number of GTP V2 Modify Bearer Responses Sent.')
jnx_mbg_sgw_if_del_sess_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 33), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelSessReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelSessReqRx.setDescription('Number of GTP V2 Delete Session Requests received.')
jnx_mbg_sgw_if_del_sess_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 34), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelSessReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelSessReqTx.setDescription('Number of GTP V2 Delete Session Requests Sent.')
jnx_mbg_sgw_if_del_sess_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 35), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelSessRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelSessRspRx.setDescription('Number of GTP V2 Delete Session Responses received.')
jnx_mbg_sgw_if_del_sess_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 36), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelSessRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelSessRspTx.setDescription('Number of GTP V2 Delete Session Responses Sent.')
jnx_mbg_sgw_if_crt_br_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 37), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfCrtBrReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfCrtBrReqRx.setDescription('Number of GTP V2 Create Bearer Requests received.')
jnx_mbg_sgw_if_crt_br_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 38), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfCrtBrReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfCrtBrReqTx.setDescription('Number of GTP V2 Create Bearer Requests Sent.')
jnx_mbg_sgw_if_crt_br_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 39), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfCrtBrRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfCrtBrRspRx.setDescription('Number of GTP V2 Create Bearer Response received.')
jnx_mbg_sgw_if_crt_br_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 40), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfCrtBrRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfCrtBrRspTx.setDescription('Number of GTP V2 Create Bearer Response Sent.')
jnx_mbg_sgw_if_upd_br_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 41), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfUpdBrReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfUpdBrReqRx.setDescription('Number of GTP V2 Update Bearer Request received.')
jnx_mbg_sgw_if_upd_br_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 42), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfUpdBrReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfUpdBrReqTx.setDescription('Number of GTP V2 Update Bearer Request Sent.')
jnx_mbg_sgw_if_upd_br_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 43), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfUpdBrRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfUpdBrRspRx.setDescription('Number of GTP V2 Update Bearer Response received.')
jnx_mbg_sgw_if_upd_br_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 44), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfUpdBrRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfUpdBrRspTx.setDescription('Number of GTP V2 Update Bearer Response Sent.')
jnx_mbg_sgw_if_del_br_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 45), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelBrReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelBrReqRx.setDescription('Number of GTP V2 Delete Bearer Request received.')
jnx_mbg_sgw_if_del_br_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 46), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelBrReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelBrReqTx.setDescription('Number of GTP V2 Delete Bearer Request Sent.')
jnx_mbg_sgw_if_del_br_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 47), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelBrRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelBrRspRx.setDescription('Number of GTP V2 Delete Bearer Response received.')
jnx_mbg_sgw_if_del_br_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 48), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelBrRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelBrRspTx.setDescription('Number of GTP V2 Delete Bearer Response Sent.')
jnx_mbg_sgw_if_del_conn_set_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 49), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelConnSetReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelConnSetReqRx.setDescription('Number of GTP V2 Delete PDN connection set Request received.')
jnx_mbg_sgw_if_del_conn_set_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 50), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelConnSetReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelConnSetReqTx.setDescription('Number of GTP V2 Delete PDN connection set Request Sent.')
jnx_mbg_sgw_if_del_conn_set_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 51), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelConnSetRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelConnSetRspRx.setDescription('Number of GTP V2 Delete PDN connection set Response received.')
jnx_mbg_sgw_if_del_conn_set_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 52), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelConnSetRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelConnSetRspTx.setDescription('Number of GTP V2 Delete PDN connection set Response Sent.')
jnx_mbg_sgw_if_upd_conn_set_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 53), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfUpdConnSetReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfUpdConnSetReqRx.setDescription('Number of GTP V2 Update Connection set Request received.')
jnx_mbg_sgw_if_upd_conn_set_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 54), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfUpdConnSetReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfUpdConnSetReqTx.setDescription('Number of GTP V2 Update Connection set Request Sent.')
jnx_mbg_sgw_if_upd_conn_set_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 55), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfUpdConnSetRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfUpdConnSetRspRx.setDescription('Number of GTP V2 Update Connection set Response received.')
jnx_mbg_sgw_if_upd_conn_set_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 56), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfUpdConnSetRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfUpdConnSetRspTx.setDescription('Number of GTP V2 Update Connection set Response Sent.')
jnx_mbg_sgw_if_mod_br_cmd_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 57), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfModBrCmdRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfModBrCmdRx.setDescription('Number of GTP V2 Modify Bearer Command received.')
jnx_mbg_sgw_if_mod_br_cmd_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 58), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfModBrCmdTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfModBrCmdTx.setDescription('Number of GTP V2 Modify Bearer Command Sent.')
jnx_mbg_sgw_if_mod_br_flr_ind_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 59), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfModBrFlrIndRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfModBrFlrIndRx.setDescription('Number of GTP V2 Modify Bearer Failure received.')
jnx_mbg_sgw_if_mod_br_flr_ind_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 60), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfModBrFlrIndTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfModBrFlrIndTx.setDescription('Number of GTP V2 Modify Bearer Failure Sent.')
jnx_mbg_sgw_if_del_br_cmd_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 61), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelBrCmdRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelBrCmdRx.setDescription('Number of GTP V2 Delete Bearer Command received.')
jnx_mbg_sgw_if_del_br_cmd_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 62), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelBrCmdTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelBrCmdTx.setDescription('Number of GTP V2 Delete Bearer Command Sent.')
jnx_mbg_sgw_if_del_br_flr_ind_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 63), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelBrFlrIndRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelBrFlrIndRx.setDescription('Number of GTP V2 Delete Bearer Failure received.')
jnx_mbg_sgw_if_del_br_flr_ind_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 64), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelBrFlrIndTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelBrFlrIndTx.setDescription('Number of GTP V2 Delete Bearer Failure Sent.')
jnx_mbg_sgw_if_br_res_cmd_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 65), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfBrResCmdRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfBrResCmdRx.setDescription('Number of GTP V2 Bearer Response Command received.')
jnx_mbg_sgw_if_br_res_cmd_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 66), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfBrResCmdTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfBrResCmdTx.setDescription('Number of GTP V2 Bearer Response Command Sent.')
jnx_mbg_sgw_if_br_res_flr_ind_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 67), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfBrResFlrIndRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfBrResFlrIndRx.setDescription('Number of GTP V2 Bearer Resource Failure received.')
jnx_mbg_sgw_if_br_res_flr_ind_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 68), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfBrResFlrIndTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfBrResFlrIndTx.setDescription('Number of GTP V2 Bearer Resource Failure Sent.')
jnx_mbg_sgw_if_rel_acs_br_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 69), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfRelAcsBrReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfRelAcsBrReqRx.setDescription('Number of GTP V2 Release Access Bearer Requests received.')
jnx_mbg_sgw_if_rel_acs_br_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 70), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfRelAcsBrReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfRelAcsBrReqTx.setDescription('Number of GTP V2 Release Access Bearer Requests sent.')
jnx_mbg_sgw_if_rel_acs_br_resp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 71), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfRelAcsBrRespRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfRelAcsBrRespRx.setDescription('Number of GTP V2 Release Access Bearer Response received.')
jnx_mbg_sgw_if_rel_acs_br_resp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 72), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfRelAcsBrRespTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfRelAcsBrRespTx.setDescription('Number of GTP V2 Release Access Bearer Response sent.')
jnx_mbg_sgw_if_cr_ind_tun_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 73), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfCrIndTunReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfCrIndTunReqRx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Request Received')
jnx_mbg_sgw_if_cr_ind_tun_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 74), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfCrIndTunReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfCrIndTunReqTx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Request sent')
jnx_mbg_sgw_if_cr_ind_tun_resp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 75), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfCrIndTunRespRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfCrIndTunRespRx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Response Received')
jnx_mbg_sgw_if_cr_ind_tun_resp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 76), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfCrIndTunRespTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfCrIndTunRespTx.setDescription('Number of GTP V2 Create Indirect Tunnel Forward Response sent')
jnx_mbg_sgw_if_del_ind_tun_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 77), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelIndTunReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelIndTunReqRx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Request Received')
jnx_mbg_sgw_if_del_ind_tun_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 78), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelIndTunReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelIndTunReqTx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Request sent.')
jnx_mbg_sgw_if_del_ind_tun_resp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 79), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelIndTunRespRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelIndTunRespRx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Response Received')
jnx_mbg_sgw_if_del_ind_tun_resp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 80), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelIndTunRespTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDelIndTunRespTx.setDescription('Number of GTP V2 Delete Indirect Tunnel Forward Response sent.')
jnx_mbg_sgw_if_dl_data_notif_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 81), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDlDataNotifRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDlDataNotifRx.setDescription('Number of GTP V2 Downlink Data Notify received.')
jnx_mbg_sgw_if_dl_data_notif_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 82), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDlDataNotifTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDlDataNotifTx.setDescription('Number of GTP V2 Downlink Data Notify Sent.')
jnx_mbg_sgw_if_dl_data_ack_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 83), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDlDataAckRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDlDataAckRx.setDescription('Number of GTP V2 Downlink Data Notify Acknowledgement received.')
jnx_mbg_sgw_if_dl_data_ack_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 84), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDlDataAckTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDlDataAckTx.setDescription('Number of GTP V2 Downlink Data Notify Acknowledgement Sent.')
jnx_mbg_sgw_if_dl_data_noti_flr_ind_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 85), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDlDataNotiFlrIndRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDlDataNotiFlrIndRx.setDescription('Number of GTP V2 Downlink Data Notification fail received.')
jnx_mbg_sgw_if_dl_data_noti_flr_ind_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 86), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfDlDataNotiFlrIndTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfDlDataNotiFlrIndTx.setDescription('Number of GTP V2 Downlink Data Notification fail Sent.')
jnx_mbg_sgw_if_stop_paging_ind_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 87), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfStopPagingIndRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfStopPagingIndRx.setDescription('Number of GTP V2 Number of Stop Paging Indication Messages Received.')
jnx_mbg_sgw_if_stop_paging_ind_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 88), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfStopPagingIndTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfStopPagingIndTx.setDescription('Number of GTP V2 Number of Stop Paging Indicaton messages sent')
jnx_mbg_sgw_if_gtp_v2_i_cs_req_accept_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 89), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsReqAcceptRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsReqAcceptRx.setDescription('Number of GTPV2 packets received with cause Request Accept.')
jnx_mbg_sgw_if_gtp_v2_i_cs_req_accept_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 90), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsReqAcceptTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsReqAcceptTx.setDescription('Number of GTP packets sent with cause Request Accept.')
jnx_mbg_sgw_if_gtp_v2_i_cs_accept_part_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 91), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsAcceptPartRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsAcceptPartRx.setDescription('Number of GTPV2 packets received with cause Accept Partial.')
jnx_mbg_sgw_if_gtp_v2_i_cs_accept_part_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 92), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsAcceptPartTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsAcceptPartTx.setDescription('Number of GTP packets sent with cause Accept Partial.')
jnx_mbg_sgw_if_gtp_v2_i_cs_new_ptn_pref_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 93), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsNewPTNPrefRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsNewPTNPrefRx.setDescription('Number of GTPV2 packets received with cause New PDN type due to Network Preference.')
jnx_mbg_sgw_if_gtp_v2_i_cs_new_ptn_pref_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 94), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsNewPTNPrefTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsNewPTNPrefTx.setDescription('Number of GTP packets sent with cause New PDN type due to Network Preference')
jnx_mbg_sgw_if_gtp_v2_i_cs_nptsi_adbr_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 95), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsNPTSIAdbrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsNPTSIAdbrRx.setDescription('Number of GTPV2 packets received with cause New PDN type due to Single Address Bearer.')
jnx_mbg_sgw_if_gtp_v2_i_cs_nptsi_adbr_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 96), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsNPTSIAdbrTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsNPTSIAdbrTx.setDescription('Number of GTP packets sent with cause New PDN type due to Single Address Bearer.')
jnx_mbg_sgw_if_gtp_v2_i_cs_ctx_not_fnd_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 97), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsCtxNotFndRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsCtxNotFndRx.setDescription('Number of GTPV2 packets received with cause Context not found.')
jnx_mbg_sgw_if_gtp_v2_i_cs_ctx_not_fnd_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 98), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsCtxNotFndTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsCtxNotFndTx.setDescription('Number of GTP packets sent with cause Context not found.')
jnx_mbg_sgw_if_gtp_v2_i_cs_inv_msg_fmt_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 99), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsInvMsgFmtRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsInvMsgFmtRx.setDescription('Number of GTPV2 packets received with cause Invalid Message Format.')
jnx_mbg_sgw_if_gtp_v2_i_cs_inv_msg_fmt_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 100), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsInvMsgFmtTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsInvMsgFmtTx.setDescription('Number of GTP packets sent with cause Invalid Message Format.')
jnx_mbg_sgw_if_gtp_v2_i_cs_ver_not_supp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 101), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsVerNotSuppRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsVerNotSuppRx.setDescription('Number of GTPV2 packets received with cause Version not Supported.')
jnx_mbg_sgw_if_gtp_v2_i_cs_ver_not_supp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 102), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsVerNotSuppTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsVerNotSuppTx.setDescription('Number of GTP packets sent with cause Version not Supported.')
jnx_mbg_sgw_if_gtp_v2_i_cs_inv_len_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 103), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsInvLenRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsInvLenRx.setDescription('Number of GTPV2 packets received with cause Invalid Length.')
jnx_mbg_sgw_if_gtp_v2_i_cs_inv_len_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 104), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsInvLenTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsInvLenTx.setDescription('Number of GTP packets sent with cause Invalid Length.')
jnx_mbg_sgw_if_gtp_v2_i_cs_srv_not_supp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 105), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsSrvNotSuppRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsSrvNotSuppRx.setDescription('Number of GTPV2 packets received with cause Service Not supported.')
jnx_mbg_sgw_if_gtp_v2_i_cs_srv_not_supp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 106), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsSrvNotSuppTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsSrvNotSuppTx.setDescription('Number of GTP packets sent with cause Service Not supported.')
jnx_mbg_sgw_if_gtp_v2_i_cs_man_ie_incor_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 107), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsManIEIncorRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsManIEIncorRx.setDescription('Number of GTPV2 packets received with cause Mandatory IE incorrect.')
jnx_mbg_sgw_if_gtp_v2_i_cs_man_ie_incor_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 108), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsManIEIncorTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsManIEIncorTx.setDescription('Number of GTP packets sent with cause Mandatory IE incorrect.')
jnx_mbg_sgw_if_gtp_v2_i_cs_man_ie_miss_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 109), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsManIEMissRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsManIEMissRx.setDescription('Number of GTPV2 packets received with cause Mandatory IE Missing.')
jnx_mbg_sgw_if_gtp_v2_i_cs_man_ie_miss_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 110), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsManIEMissTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsManIEMissTx.setDescription('Number of GTP packets sent with cause Mandatory IE Missing.')
jnx_mbg_sgw_if_gtp_v2_i_cs_opt_ie_incor_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 111), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsOptIEIncorRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsOptIEIncorRx.setDescription('Number of GTPV2 packets received with cause Optional IE Incorrect.')
jnx_mbg_sgw_if_gtp_v2_i_cs_opt_ie_incor_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 112), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsOptIEIncorTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsOptIEIncorTx.setDescription('Number of GTP packets sent with cause Optional IE Incorrect.')
jnx_mbg_sgw_if_gtp_v2_i_cs_sys_fail_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 113), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsSysFailRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsSysFailRx.setDescription('Number of GTPV2 packets received with cause System Failure.')
jnx_mbg_sgw_if_gtp_v2_i_cs_sys_fail_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 114), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsSysFailTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsSysFailTx.setDescription('Number of GTP packets sent with cause System Failure.')
jnx_mbg_sgw_if_gtp_v2_i_cs_no_res_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 115), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsNoResRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsNoResRx.setDescription('Number of GTPV2 packets received with cause No Resource.')
jnx_mbg_sgw_if_gtp_v2_i_cs_no_res_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 116), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsNoResTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsNoResTx.setDescription('Number of GTP packets sent with cause No Resource.')
jnx_mbg_sgw_if_gtp_v2_i_cs_tftsmant_er_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 117), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsTFTSMANTErRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsTFTSMANTErRx.setDescription('Number of GTPV2 packets received with cause TFT Symantic Error.')
jnx_mbg_sgw_if_gtp_v2_i_cs_tftsmant_er_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 118), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsTFTSMANTErTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsTFTSMANTErTx.setDescription('Number of GTP packets sent with cause TFT Symantic Error.')
jnx_mbg_sgw_if_gtp_v2_i_cs_tft_sys_err_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 119), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsTFTSysErrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsTFTSysErrRx.setDescription('Number of GTPV2 packets received with cause TFT System Error.')
jnx_mbg_sgw_if_gtp_v2_i_cs_tft_sys_err_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 120), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsTFTSysErrTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsTFTSysErrTx.setDescription('Number of GTP packets sent with cause TFT System Error.')
jnx_mbg_sgw_if_gtp_v2_i_cs_pk_flt_man_er_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 121), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsPkFltManErRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsPkFltManErRx.setDescription('Number of GTPV2 packets received with cause Packet Filter Symantic Error.')
jnx_mbg_sgw_if_gtp_v2_i_cs_pk_flt_man_er_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 122), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsPkFltManErTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsPkFltManErTx.setDescription('Number of GTP packets sent with cause Packet Filter Symantic Error.')
jnx_mbg_sgw_if_gtp_v2_i_cs_pk_flt_syn_er_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 123), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsPkFltSynErRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsPkFltSynErRx.setDescription('Number of GTPV2 packets received with cause Packet Filter Syntax Error.')
jnx_mbg_sgw_if_gtp_v2_i_cs_pk_flt_syn_er_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 124), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsPkFltSynErTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsPkFltSynErTx.setDescription('Number of GTP packets sent with cause Packet Filter Syntax Error.')
jnx_mbg_sgw_if_gtp_v2_i_cs_mis_unkn_apn_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 125), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsMisUnknAPNRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsMisUnknAPNRx.setDescription('Number of GTPV2 packets received with cause Unknown APN.')
jnx_mbg_sgw_if_gtp_v2_i_cs_mis_unkn_apn_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 126), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsMisUnknAPNTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsMisUnknAPNTx.setDescription('Number of GTP packets sent with cause Unknown APN.')
jnx_mbg_sgw_if_gtp_v2_i_cs_unexp_rpt_ie_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 127), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUnexpRptIERx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUnexpRptIERx.setDescription('Number of GTPV2 packets received with cause Unexpected Repeated IE.')
jnx_mbg_sgw_if_gtp_v2_i_cs_unexp_rpt_ie_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 128), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUnexpRptIETx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUnexpRptIETx.setDescription('Number of GTP packets sent with cause Unexpected Repeated IE.')
jnx_mbg_sgw_if_gtp_v2_i_cs_gre_key_nt_fd_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 129), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsGREKeyNtFdRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsGREKeyNtFdRx.setDescription('Number of GTPV2 packets received with cause GRE Key Not Found.')
jnx_mbg_sgw_if_gtp_v2_i_cs_gre_key_nt_fd_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 130), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsGREKeyNtFdTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsGREKeyNtFdTx.setDescription('Number of GTP packets sent with cause GRE Key Not Found.')
jnx_mbg_sgw_if_gtp_v2_i_cs_reloc_fail_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 131), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsRelocFailRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsRelocFailRx.setDescription('Number of GTPV2 packets received with cause Relocation Failed.')
jnx_mbg_sgw_if_gtp_v2_i_cs_reloc_fail_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 132), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsRelocFailTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsRelocFailTx.setDescription('Number of GTP packets sent with cause Relocation Failed.')
jnx_mbg_sgw_if_gtp_v2_i_cs_den_in_rat_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 133), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsDenINRatRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsDenINRatRx.setDescription('Number of GTPV2 packets received with cause Denied in RAT.')
jnx_mbg_sgw_if_gtp_v2_i_cs_den_in_rat_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 134), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsDenINRatTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsDenINRatTx.setDescription('Number of GTP packets sent with cause Denied in RAT.')
jnx_mbg_sgw_if_gtp_v2_i_cs_pt_not_supp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 135), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsPTNotSuppRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsPTNotSuppRx.setDescription('Number of GTPV2 packets received with cause PDN Type Not Supported.')
jnx_mbg_sgw_if_gtp_v2_i_cs_pt_not_supp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 136), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsPTNotSuppTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsPTNotSuppTx.setDescription('Number of GTP packets sent with cause PDN Type Not Supported.')
jnx_mbg_sgw_if_gtp_v2_i_cs_al_dyn_ad_occ_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 137), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsAlDynAdOccRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsAlDynAdOccRx.setDescription('Number of GTPV2 packets received with cause Allocated Dynamic Address Occupied.')
jnx_mbg_sgw_if_gtp_v2_i_cs_al_dyn_ad_occ_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 138), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsAlDynAdOccTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsAlDynAdOccTx.setDescription('Number of GTP packets sent with cause Allocated Dynamic Address Occupied.')
jnx_mbg_sgw_if_gtp_v2_i_cs_notftuectx_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 139), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsNOTFTUECTXRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsNOTFTUECTXRx.setDescription('Number of GTPV2 packets received with cause UE Context Without TFT Exists.')
jnx_mbg_sgw_if_gtp_v2_i_cs_notftuectx_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 140), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsNOTFTUECTXTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsNOTFTUECTXTx.setDescription('Number of GTP packets sent with cause UE Context Without TFT Exists.')
jnx_mbg_sgw_if_gtp_v2_i_cs_proto_nt_sup_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 141), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsProtoNtSupRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsProtoNtSupRx.setDescription('Number of GTPV2 packets received with cause Protocol Not Supported.')
jnx_mbg_sgw_if_gtp_v2_i_cs_proto_nt_sup_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 142), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsProtoNtSupTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsProtoNtSupTx.setDescription('Number of GTP packets sent with cause Protocol Not Supported.')
jnx_mbg_sgw_if_gtp_v2_i_cs_ue_not_resp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 143), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUENotRespRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUENotRespRx.setDescription('Number of GTPV2 packets received with cause UE Not Responding.')
jnx_mbg_sgw_if_gtp_v2_i_cs_ue_not_resp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 144), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUENotRespTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUENotRespTx.setDescription('Number of GTP packets sent with cause UE Not Responding.')
jnx_mbg_sgw_if_gtp_v2_i_cs_ue_refuses_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 145), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUERefusesRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUERefusesRx.setDescription('Number of GTPV2 packets received with cause UE Refuses.')
jnx_mbg_sgw_if_gtp_v2_i_cs_ue_refuses_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 146), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUERefusesTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUERefusesTx.setDescription('Number of GTP packets sent with cause UE Refuses.')
jnx_mbg_sgw_if_gtp_v2_i_cs_serv_denied_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 147), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsServDeniedRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsServDeniedRx.setDescription('Number of GTPV2 packets received with cause Service Denied.')
jnx_mbg_sgw_if_gtp_v2_i_cs_serv_denied_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 148), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsServDeniedTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsServDeniedTx.setDescription('Number of GTP packets sent with cause Service Denied.')
jnx_mbg_sgw_if_gtp_v2_i_cs_unab_page_ue_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 149), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUnabPageUERx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUnabPageUERx.setDescription('Number of GTPV2 packets received with cause Unable to Page UE.')
jnx_mbg_sgw_if_gtp_v2_i_cs_unab_page_ue_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 150), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUnabPageUETx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUnabPageUETx.setDescription('Number of GTP packets sent with cause Unable to Page UE.')
jnx_mbg_sgw_if_gtp_v2_i_cs_no_mem_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 151), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsNoMemRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsNoMemRx.setDescription('Number of GTPV2 packets received with cause No Memory.')
jnx_mbg_sgw_if_gtp_v2_i_cs_no_mem_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 152), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsNoMemTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsNoMemTx.setDescription('Number of GTP packets sent with cause No Memory.')
jnx_mbg_sgw_if_gtp_v2_i_cs_user_auth_fl_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 153), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUserAUTHFlRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUserAUTHFlRx.setDescription('Number of GTPV2 packets received with cause User AUTH Failed.')
jnx_mbg_sgw_if_gtp_v2_i_cs_user_auth_fl_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 154), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUserAUTHFlTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUserAUTHFlTx.setDescription('Number of GTP packets sent with cause User AUTH Failed.')
jnx_mbg_sgw_if_gtp_v2_i_cs_apn_acs_den_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 155), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsAPNAcsDenRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsAPNAcsDenRx.setDescription('Number of GTPV2 packets received with cause APN Access Denied.')
jnx_mbg_sgw_if_gtp_v2_i_cs_apn_acs_den_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 156), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsAPNAcsDenTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsAPNAcsDenTx.setDescription('Number of GTP packets sent with cause APN Access Denied.')
jnx_mbg_sgw_if_gtp_v2_i_cs_req_rej_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 157), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsReqRejRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsReqRejRx.setDescription('Number of GTPV2 packets received with cause Request Rejected.')
jnx_mbg_sgw_if_gtp_v2_i_cs_req_rej_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 158), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsReqRejTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsReqRejTx.setDescription('Number of GTP packets sent with cause Request Rejected.')
jnx_mbg_sgw_if_gtp_v2_i_cs_ptmsi_sig_mm_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 159), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsPTMSISigMMRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsPTMSISigMMRx.setDescription('Number of GTPV2 packets received with cause P-TMSI Signature Mismatch.')
jnx_mbg_sgw_if_gtp_v2_i_cs_ptmsi_sig_mm_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 160), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsPTMSISigMMTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsPTMSISigMMTx.setDescription('Number of GTP packets sent with cause P-TMSI Signature Mismatch')
jnx_mbg_sgw_if_gtp_v2_i_cs_imsi_not_kn_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 161), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsIMSINotKnRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsIMSINotKnRx.setDescription('Number of GTPV2 packets received with cause IMSI Not Known.')
jnx_mbg_sgw_if_gtp_v2_i_cs_imsi_not_kn_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 162), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsIMSINotKnTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsIMSINotKnTx.setDescription('Number of GTP packets sent with cause IMSI Not Known.')
jnx_mbg_sgw_if_gtp_v2_i_cs_cond_ie_ms_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 163), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsCondIEMsRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsCondIEMsRx.setDescription('Number of GTPV2 packets received with cause Conditional IE Missing.')
jnx_mbg_sgw_if_gtp_v2_i_cs_cond_ie_ms_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 164), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsCondIEMsTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsCondIEMsTx.setDescription('Number of GTP packets sent with cause Conditional IE Missing.')
jnx_mbg_sgw_if_gtp_v2_i_cs_apn_res_t_inc_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 165), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsAPNResTIncRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsAPNResTIncRx.setDescription('Number of GTPV2 packets received with cause APN Restriction Type Incompatible.')
jnx_mbg_sgw_if_gtp_v2_i_cs_apn_res_t_inc_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 166), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsAPNResTIncTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsAPNResTIncTx.setDescription('Number of GTP packets sent with cause APN Restriction Type Incompatible.')
jnx_mbg_sgw_if_gtp_v2_i_cs_unknown_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 167), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUnknownRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUnknownRx.setDescription('Number of GTPV2 packets received with cause Unknown.')
jnx_mbg_sgw_if_gtp_v2_i_cs_unknown_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 168), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUnknownTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUnknownTx.setDescription('Number of GTP packets sent with cause Unknown.')
jnx_mbg_sgw_if_gtp_v2_i_cs_lcl_det_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 169), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsLclDetRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsLclDetRx.setDescription('Number of GTP packets received with cause Local Detach.')
jnx_mbg_sgw_if_gtp_v2_i_cs_lcl_det_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 170), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsLclDetTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsLclDetTx.setDescription('Number of GTP packets sent with cause Local Detach.')
jnx_mbg_sgw_if_gtp_v2_i_cs_cmp_det_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 171), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsCmpDetRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsCmpDetRx.setDescription('Number of GTP packets received with cause Complete Detach.')
jnx_mbg_sgw_if_gtp_v2_i_cs_cmp_det_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 172), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsCmpDetTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsCmpDetTx.setDescription('Number of GTP packets sent with cause Complete Detach.')
jnx_mbg_sgw_if_gtp_v2_i_cs_rat_chg_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 173), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsRATChgRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsRATChgRx.setDescription('Number of GTP packets received with cause RAT changed from 3GPP to non 3GPP.')
jnx_mbg_sgw_if_gtp_v2_i_cs_rat_chg_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 174), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsRATChgTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsRATChgTx.setDescription('Number of GTP packets sent with cause RAT changed from 3GPP to non 3GPP.')
jnx_mbg_sgw_if_gtp_v2_i_cs_isr_deact_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 175), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsISRDeactRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsISRDeactRx.setDescription('Number of GTP packets received with cause ISR Deactivated.')
jnx_mbg_sgw_if_gtp_v2_i_cs_isr_deact_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 176), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsISRDeactTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsISRDeactTx.setDescription('Number of GTP packets sent with cause ISR Deactivated.')
jnx_mbg_sgw_if_gtp_v2_i_cs_eifrnc_en_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 177), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsEIFRNCEnRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsEIFRNCEnRx.setDescription('Number of GTP packets received with cause Error Indication from RNC eNodeB.')
jnx_mbg_sgw_if_gtp_v2_i_cs_eifrnc_en_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 178), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsEIFRNCEnTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsEIFRNCEnTx.setDescription('Number of GTP packets sent with cause Error Indication from RNC eNodeB.')
jnx_mbg_sgw_if_gtp_v2_i_cs_sem_er_tad_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 179), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsSemErTADRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsSemErTADRx.setDescription('Number of GTP packets received with cause Semantic Error in TAD Operation.')
jnx_mbg_sgw_if_gtp_v2_i_cs_sem_er_tad_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 180), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsSemErTADTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsSemErTADTx.setDescription('Number of GTP packets sent with cause Semantic Error in TAD Operation.')
jnx_mbg_sgw_if_gtp_v2_i_cs_syn_er_tad_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 181), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsSynErTADRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsSynErTADRx.setDescription('Number of GTP packets received with cause Syntactic Error in TAD Operation.')
jnx_mbg_sgw_if_gtp_v2_i_cs_syn_er_tad_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 182), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsSynErTADTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsSynErTADTx.setDescription('Number of GTP packets sent with cause Syntactic Error in TAD Operation.')
jnx_mbg_sgw_if_gtp_v2_i_cs_rm_val_rcv_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 183), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsRMValRcvRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsRMValRcvRx.setDescription('Number of GTP packets received with cause Reserved Message Value Received.')
jnx_mbg_sgw_if_gtp_v2_i_cs_rm_val_rcv_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 184), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsRMValRcvTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsRMValRcvTx.setDescription('Number of GTP packets sent with cause Reserved Message Value Received.')
jnx_mbg_sgw_if_gtp_v2_i_cs_r_pr_nt_rsp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 185), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsRPrNtRspRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsRPrNtRspRx.setDescription('Number of GTP packets received with cause Remote peer not responding.')
jnx_mbg_sgw_if_gtp_v2_i_cs_r_pr_nt_rsp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 186), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsRPrNtRspTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsRPrNtRspTx.setDescription('Number of GTP packets sent with cause Remote peer not responding.')
jnx_mbg_sgw_if_gtp_v2_i_cs_col_nw_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 187), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsColNWReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsColNWReqRx.setDescription('Number of GTP packets received with cause Collision with network initiated request.')
jnx_mbg_sgw_if_gtp_v2_i_cs_col_nw_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 188), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsColNWReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsColNWReqTx.setDescription('Number of GTP packets sent with cause Collision with network initiated request.')
jnx_mbg_sgw_if_gtp_v2_i_cs_un_pg_ue_sus_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 189), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUnPgUESusRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUnPgUESusRx.setDescription('Number of GTP packets received with cause Unable to page UE due to suspension.')
jnx_mbg_sgw_if_gtp_v2_i_cs_un_pg_ue_sus_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 190), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUnPgUESusTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsUnPgUESusTx.setDescription('Number of GTP packets sent with cause Unable to page UE due to suspension.')
jnx_mbg_sgw_if_gtp_v2_i_cs_inv_tot_len_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 191), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsInvTotLenRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsInvTotLenRx.setDescription('Number of GTP packets received with cause Invalid total len.')
jnx_mbg_sgw_if_gtp_v2_i_cs_inv_tot_len_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 192), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsInvTotLenTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsInvTotLenTx.setDescription('Number of GTP packets sent with cause Invalid total len.')
jnx_mbg_sgw_if_gtp_v2_i_cs_dt_for_nt_sup_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 193), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsDtForNtSupRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsDtForNtSupRx.setDescription('Number of GTP packets received with cause Data forwarding not supported.')
jnx_mbg_sgw_if_gtp_v2_i_cs_dt_for_nt_sup_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 194), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsDtForNtSupTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsDtForNtSupTx.setDescription('Number of GTP packets sent with cause Data forwarding not supported.')
jnx_mbg_sgw_if_gtp_v2_i_cs_in_re_f_re_pr_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 195), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsInReFRePrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsInReFRePrRx.setDescription('Number of GTP packets received with cause Invalid Reply from Remote peer.')
jnx_mbg_sgw_if_gtp_v2_i_cs_in_re_f_re_pr_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 196), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsInReFRePrTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsInReFRePrTx.setDescription('Number of GTP packets sent with cause Invalid Reply from Remote peer.')
jnx_mbg_sgw_if_gtp_v2_i_cs_inv_pr_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 197), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsInvPrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsInvPrRx.setDescription('Number of GTP packets received with cause Invalid peer.')
jnx_mbg_sgw_if_gtp_v2_i_cs_inv_pr_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 198), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsInvPrTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV2ICsInvPrTx.setDescription('Number of GTP packets sent with cause Invalid peer.')
jnx_mbg_sgw_if_gtp_v1_protocol_err_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 199), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV1ProtocolErrRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV1ProtocolErrRx.setDescription('Number of GTPv1 Protocol Errors Received.')
jnx_mbg_sgw_if_gtp_v1_un_sup_msg_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 200), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV1UnSupMsgRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV1UnSupMsgRx.setDescription('Number of GTPv1 Unsupported Messages received.')
jnx_mbg_sgw_if_gtp_v1_t3_resp_tmr_exp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 201), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV1T3RespTmrExpRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV1T3RespTmrExpRx.setDescription('Number of GTP V1 T3 timer expiries Received.')
jnx_mbg_sgw_if_gtp_v1_end_marker_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 202), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV1EndMarkerRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV1EndMarkerRx.setDescription('Number of GTP V1 end marker packets received.')
jnx_mbg_sgw_if_gtp_v1_end_marker_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 203), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV1EndMarkerTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV1EndMarkerTx.setDescription('Number of GTP V1 end marker packets sent.')
jnx_mbg_sgw_if_gtp_v1_echo_req_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 204), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV1EchoReqRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV1EchoReqRx.setDescription('Number of GTP V1 echo request packets received.')
jnx_mbg_sgw_if_gtp_v1_echo_req_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 205), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV1EchoReqTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV1EchoReqTx.setDescription('Number of GTP V1 echo request packets sent.')
jnx_mbg_sgw_if_gtp_v1_echo_resp_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 206), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV1EchoRespRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV1EchoRespRx.setDescription('Number of GTP V1 echo response packets received.')
jnx_mbg_sgw_if_gtp_v1_echo_resp_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 207), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV1EchoRespTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV1EchoRespTx.setDescription('Number of GTP V1 echo response packets sent.')
jnx_mbg_sgw_if_gtp_v1_err_ind_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 208), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV1ErrIndRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV1ErrIndRx.setDescription('Number of GTP packets V1 Error Indication packets received.')
jnx_mbg_sgw_if_gtp_v1_err_ind_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 209), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV1ErrIndTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfGtpV1ErrIndTx.setDescription('Number of GTP packets V1 Error Indication packets sent.')
jnx_mbg_sgw_if_susp_notif_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 210), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfSuspNotifRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfSuspNotifRx.setDescription('Number of GTPv2 Suspend Notification messages received.')
jnx_mbg_sgw_if_susp_notif_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 211), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfSuspNotifTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfSuspNotifTx.setDescription('Number of GTPv2 Suspend Notification messages sent.')
jnx_mbg_sgw_if_susp_ack_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 212), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfSuspAckRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfSuspAckRx.setDescription('Number of GTPv2 Suspend Acknowledgement messages received.')
jnx_mbg_sgw_if_susp_ack_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 213), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfSuspAckTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfSuspAckTx.setDescription('Number of GTPv2 Suspend Acknowledgement messages sent.')
jnx_mbg_sgw_if_resume_notif_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 214), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfResumeNotifRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfResumeNotifRx.setDescription('Number of GTPv2 Resume Notification messages received.')
jnx_mbg_sgw_if_resume_notif_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 215), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfResumeNotifTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfResumeNotifTx.setDescription('Number of GTPv2 Resume Notification messages sent.')
jnx_mbg_sgw_if_resume_ack_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 216), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfResumeAckRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfResumeAckRx.setDescription('Number of GTPv2 Resume Acknowledgement messages received.')
jnx_mbg_sgw_if_resume_ack_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 217), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfResumeAckTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfResumeAckTx.setDescription('Number of GTPv2 Resume Acknowledgement messages sent.')
jnx_mbg_sgw_if_piggyback_msg_rx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 218), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfPiggybackMsgRx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfPiggybackMsgRx.setDescription('Number of GTPv2 Piggyback messages received.')
jnx_mbg_sgw_if_piggyback_msg_tx = mib_table_column((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 4, 1, 219), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
jnxMbgSgwIfPiggybackMsgTx.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwIfPiggybackMsgTx.setDescription('Number of GTPv2 S11 Piggyback messages sent.')
jnx_mbg_sgw_gtp_notification_vars = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 3))
jnx_mbg_sgw_gtp_peer_name = mib_scalar((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 3, 1), display_string()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
jnxMbgSgwGtpPeerName.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpPeerName.setDescription('GTP Peer Name/IP')
jnx_mbg_sgw_gtp_alarm_stat_counter = mib_scalar((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 3, 2), unsigned32()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
jnxMbgSgwGtpAlarmStatCounter.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpAlarmStatCounter.setDescription('Current Value of (Alarm) Statistics Counter eg: in jnxMbgSgwGtpPrDNTPerPrAlrmActv it spefies the number of times peer is down with in the monitoring interval')
jnx_mbg_sgw_gtp_interface_type = mib_scalar((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 3, 3), display_string()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
jnxMbgSgwGtpInterfaceType.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpInterfaceType.setDescription('GTP Interface Type which can be one of S5/S8/S11/S1U/S12/S4')
jnx_mbg_sgw_gtp_gw_name = mib_scalar((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 3, 4), display_string()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
jnxMbgSgwGtpGwName.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpGwName.setDescription('A string that indicates the gateway name')
jnx_mbg_sgw_gtp_gw_index = mib_scalar((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 1, 3, 5), unsigned32()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
jnxMbgSgwGtpGwIndex.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpGwIndex.setDescription('Current Gateway ID value')
jnx_mbg_sgw_gtp_peer_gw_up_notif = notification_type((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 0, 1)).setObjects(('JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', 'jnxMbgSgwGtpGwIndex'), ('JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', 'jnxMbgSgwGtpGwName'), ('JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', 'jnxMbgSgwGtpInterfaceType'), ('JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', 'jnxMbgSgwGtpPeerName'))
if mibBuilder.loadTexts:
jnxMbgSgwGtpPeerGwUpNotif.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpPeerGwUpNotif.setDescription('GTPC Peer UP Notification. This trap is sent when a new peer is added or an existing peer goes down and comes back up.')
jnx_mbg_sgw_gtp_peer_gw_dn_notif = notification_type((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 0, 2)).setObjects(('JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', 'jnxMbgSgwGtpGwIndex'), ('JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', 'jnxMbgSgwGtpGwName'), ('JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', 'jnxMbgSgwGtpInterfaceType'), ('JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', 'jnxMbgSgwGtpPeerName'))
if mibBuilder.loadTexts:
jnxMbgSgwGtpPeerGwDnNotif.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpPeerGwDnNotif.setDescription('GTPC Peer Down Notification. This trap is sent when a peer connection goes down.')
jnx_mbg_sgw_gtp_pr_dn_t_per_pr_alrm_actv = notification_type((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 0, 3)).setObjects(('JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', 'jnxMbgSgwGtpGwIndex'), ('JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', 'jnxMbgSgwGtpGwName'), ('JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', 'jnxMbgSgwGtpInterfaceType'), ('JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', 'jnxMbgSgwGtpPeerName'), ('JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', 'jnxMbgSgwGtpAlarmStatCounter'))
if mibBuilder.loadTexts:
jnxMbgSgwGtpPrDnTPerPrAlrmActv.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpPrDnTPerPrAlrmActv.setDescription('Peer down Threshold trap Active. This is sent when a peer connection flaps for more than a higher threshold number of times with in a monitor interval.')
jnx_mbg_sgw_gtp_pr_dn_t_per_pr_alrm_clr = notification_type((1, 3, 6, 1, 4, 1, 2636, 3, 66, 2, 2, 0, 4)).setObjects(('JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', 'jnxMbgSgwGtpGwIndex'), ('JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', 'jnxMbgSgwGtpGwName'), ('JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', 'jnxMbgSgwGtpInterfaceType'), ('JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', 'jnxMbgSgwGtpPeerName'), ('JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', 'jnxMbgSgwGtpAlarmStatCounter'))
if mibBuilder.loadTexts:
jnxMbgSgwGtpPrDnTPerPrAlrmClr.setStatus('current')
if mibBuilder.loadTexts:
jnxMbgSgwGtpPrDnTPerPrAlrmClr.setDescription('Peer down Threshold trap Cleared. This is sent when the number of times a peer connection flaps in a monitor interval come down below the lower threshold.')
mibBuilder.exportSymbols('JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', jnxMbgSgwIfGtpV2ICsPkFltManErRx=jnxMbgSgwIfGtpV2ICsPkFltManErRx, jnxMbgSgwGtpV2ICsGREKeyNtFdTx=jnxMbgSgwGtpV2ICsGREKeyNtFdTx, jnxMbgSgwPPIPProtoErrRx=jnxMbgSgwPPIPProtoErrRx, jnxMbgSgwCrtBrReqRx=jnxMbgSgwCrtBrReqRx, jnxMbgSgwPPV2NumMsgRx=jnxMbgSgwPPV2NumMsgRx, jnxMbgSgwPPGtpV2ICsTFTSMANTErRx=jnxMbgSgwPPGtpV2ICsTFTSMANTErRx, jnxMbgSgwIPProtoErrRx=jnxMbgSgwIPProtoErrRx, jnxMbgSgwPPModBrCmdRx=jnxMbgSgwPPModBrCmdRx, jnxMbgSgwGtpPeerGwUpNotif=jnxMbgSgwGtpPeerGwUpNotif, jnxMbgSgwPPGtpV2ICsCtxNotFndTx=jnxMbgSgwPPGtpV2ICsCtxNotFndTx, jnxMbgSgwGtpMib=jnxMbgSgwGtpMib, jnxMbgSgwIfUnSupportedMsgRx=jnxMbgSgwIfUnSupportedMsgRx, jnxMbgSgwPPGtpV2ICsOptIEIncorTx=jnxMbgSgwPPGtpV2ICsOptIEIncorTx, jnxMbgSgwIfGtpV1ErrIndTx=jnxMbgSgwIfGtpV1ErrIndTx, jnxMbgSgwGtpV2ICsUERefusesRx=jnxMbgSgwGtpV2ICsUERefusesRx, jnxMbgSgwPPCreateSessReqRx=jnxMbgSgwPPCreateSessReqRx, jnxMbgSgwPcktLenErrRx=jnxMbgSgwPcktLenErrRx, jnxMbgSgwGtpV2ICsOptIEIncorrTx=jnxMbgSgwGtpV2ICsOptIEIncorrTx, jnxMbgSgwPPGtpV2ICsSysFailTx=jnxMbgSgwPPGtpV2ICsSysFailTx, jnxMbgSgwGtpV2ICsUENotRespTx=jnxMbgSgwGtpV2ICsUENotRespTx, jnxMbgSgwIfGtpV2ICsManIEMissTx=jnxMbgSgwIfGtpV2ICsManIEMissTx, jnxMbgSgwPPGtpV2ICsAPNAcsDenTx=jnxMbgSgwPPGtpV2ICsAPNAcsDenTx, jnxMbgSgwPPGtpV2ICsEIFRNCEnTx=jnxMbgSgwPPGtpV2ICsEIFRNCEnTx, jnxMbgSgwPPGtpV2ICsNoResRx=jnxMbgSgwPPGtpV2ICsNoResRx, jnxMbgSgwGtpV2ICsOptIEIncorrRx=jnxMbgSgwGtpV2ICsOptIEIncorrRx, jnxMbgSgwPPUpdConnSetReqTx=jnxMbgSgwPPUpdConnSetReqTx, jnxMbgSgwUnSupportedMsgRx=jnxMbgSgwUnSupportedMsgRx, jnxMbgSgwRelAcsBrReqTx=jnxMbgSgwRelAcsBrReqTx, jnxMbgSgwPPDelBrCmdRx=jnxMbgSgwPPDelBrCmdRx, jnxMbgSgwIfCrIndTunRespTx=jnxMbgSgwIfCrIndTunRespTx, jnxMbgSgwPPCrIndTunRespRx=jnxMbgSgwPPCrIndTunRespRx, jnxMbgSgwIfGtpV2ICsTFTSMANTErRx=jnxMbgSgwIfGtpV2ICsTFTSMANTErRx, jnxMbgSgwPPModBrCmdTx=jnxMbgSgwPPModBrCmdTx, jnxMbgSgwPPGtpV2ICsNOTFTUECTXRx=jnxMbgSgwPPGtpV2ICsNOTFTUECTXRx, jnxMbgSgwIfGtpV2ICsAcceptPartRx=jnxMbgSgwIfGtpV2ICsAcceptPartRx, jnxMbgSgwPPGtpV2ICsInvPrRx=jnxMbgSgwPPGtpV2ICsInvPrRx, PYSNMP_MODULE_ID=jnxMbgSgwGtpMib, jnxMbgSgwGtpV2ICsAPNAcsDenTx=jnxMbgSgwGtpV2ICsAPNAcsDenTx, jnxMbgSgwPPGTPUnknVerRx=jnxMbgSgwPPGTPUnknVerRx, jnxMbgSgwPPGtpV2ICsRATChgRx=jnxMbgSgwPPGtpV2ICsRATChgRx, jnxMbgSgwPPGtpV2ICsAcceptPartTx=jnxMbgSgwPPGtpV2ICsAcceptPartTx, jnxMbgSgwPPGtpV2ICsRATChgTx=jnxMbgSgwPPGtpV2ICsRATChgTx, jnxMbgSgwGtpV2ICsServDeniedTx=jnxMbgSgwGtpV2ICsServDeniedTx, jnxMbgSgwIfGtpV2ICsInvPrRx=jnxMbgSgwIfGtpV2ICsInvPrRx, jnxMbgSgwIfCrIndTunReqTx=jnxMbgSgwIfCrIndTunReqTx, jnxMbgSgwRelAcsBrRespRx=jnxMbgSgwRelAcsBrRespRx, jnxMbgSgwCreateSessRspTx=jnxMbgSgwCreateSessRspTx, jnxMbgSgwUpdBrRspTx=jnxMbgSgwUpdBrRspTx, jnxMbgSgwPPRxPacketsDropped=jnxMbgSgwPPRxPacketsDropped, jnxMbgSgwDelBrCmdRx=jnxMbgSgwDelBrCmdRx, jnxMbgSgwGtpV2ICsLclDetRx=jnxMbgSgwGtpV2ICsLclDetRx, jnxMbgSgwPPStopPagingIndTx=jnxMbgSgwPPStopPagingIndTx, jnxMbgSgwGtpPrDnTPerPrAlrmClr=jnxMbgSgwGtpPrDnTPerPrAlrmClr, jnxMbgSgwPPModBrRspRx=jnxMbgSgwPPModBrRspRx, jnxMbgSgwPPUpdBrReqRx=jnxMbgSgwPPUpdBrReqRx, jnxMbgSgwGtpV2ICsPTMSISigMMTx=jnxMbgSgwGtpV2ICsPTMSISigMMTx, jnxMbgSgwPPGtpV2ICsMisUnknAPNTx=jnxMbgSgwPPGtpV2ICsMisUnknAPNTx, jnxMbgSgwGtpV2ICsReqRejTx=jnxMbgSgwGtpV2ICsReqRejTx, jnxMbgSgwGtpV2ICsCtxNotFndRx=jnxMbgSgwGtpV2ICsCtxNotFndRx, jnxMbgSgwIfCrtBrReqTx=jnxMbgSgwIfCrtBrReqTx, jnxMbgSgwIfResumeAckTx=jnxMbgSgwIfResumeAckTx, jnxMbgSgwV2NumMsgTx=jnxMbgSgwV2NumMsgTx, jnxMbgSgwPPGtpV2ICsGREKeyNtFdTx=jnxMbgSgwPPGtpV2ICsGREKeyNtFdTx, jnxMbgSgwPPGtpV2ICsInvMsgFmtRx=jnxMbgSgwPPGtpV2ICsInvMsgFmtRx, jnxMbgSgwIfGtpV2ICsInvTotLenTx=jnxMbgSgwIfGtpV2ICsInvTotLenTx, jnxMbgSgwIfGtpV2ICsGREKeyNtFdTx=jnxMbgSgwIfGtpV2ICsGREKeyNtFdTx, jnxMbgSgwPPGtpV2ICsIMSINotKnTx=jnxMbgSgwPPGtpV2ICsIMSINotKnTx, jnxMbgSgwGtpV2ICsUnknownRx=jnxMbgSgwGtpV2ICsUnknownRx, jnxMbgSgwUpdConnSetRspTx=jnxMbgSgwUpdConnSetRspTx, jnxMbgSgwCreateSessReqRx=jnxMbgSgwCreateSessReqRx, jnxMbgSgwGtpV2ICsInvTotLenRx=jnxMbgSgwGtpV2ICsInvTotLenRx, jnxMbgSgwDelBrReqRx=jnxMbgSgwDelBrReqRx, jnxMbgSgwIfV2EchoRespTx=jnxMbgSgwIfV2EchoRespTx, jnxMbgSgwIfGtpV2ICsVerNotSuppTx=jnxMbgSgwIfGtpV2ICsVerNotSuppTx, jnxMbgSgwIfGtpV2ICsRPrNtRspRx=jnxMbgSgwIfGtpV2ICsRPrNtRspRx, jnxMbgSgwIfGtpV2ICsUnexpRptIETx=jnxMbgSgwIfGtpV2ICsUnexpRptIETx, jnxMbgSgwGtpV2ICsRelocFailTx=jnxMbgSgwGtpV2ICsRelocFailTx, jnxMbgSgwGtpV2ICsAllDynAdOccRx=jnxMbgSgwGtpV2ICsAllDynAdOccRx, jnxMbgSgwPPDelSessReqTx=jnxMbgSgwPPDelSessReqTx, jnxMbgSgwDelSessReqRx=jnxMbgSgwDelSessReqRx, jnxMbgSgwPPResumeAckTx=jnxMbgSgwPPResumeAckTx, jnxMbgSgwPPGtpV2ICsSynErTADTx=jnxMbgSgwPPGtpV2ICsSynErTADTx, jnxMbgSgwGtpV2ICsUserAUTHFlRx=jnxMbgSgwGtpV2ICsUserAUTHFlRx, jnxMbgSgwIfGtpV2ICsCmpDetTx=jnxMbgSgwIfGtpV2ICsCmpDetTx, jnxMbgSgwGtpV2ICsDtForNtSupRx=jnxMbgSgwGtpV2ICsDtForNtSupRx, jnxMbgSgwIfGtpV2ICsUnabPageUERx=jnxMbgSgwIfGtpV2ICsUnabPageUERx, jnxMbgSgwPPGtpV2ICsProtoNtSupRx=jnxMbgSgwPPGtpV2ICsProtoNtSupRx, jnxMbgSgwV2VerNotSupTx=jnxMbgSgwV2VerNotSupTx, jnxMbgSgwGtpV2ICsInReFRePrRx=jnxMbgSgwGtpV2ICsInReFRePrRx, jnxMbgSgwIfGtpV2ICsSysFailRx=jnxMbgSgwIfGtpV2ICsSysFailRx, jnxMbgSgwIfGtpV2ICsInReFRePrTx=jnxMbgSgwIfGtpV2ICsInReFRePrTx, jnxMbgSgwPPDlDataNotifTx=jnxMbgSgwPPDlDataNotifTx, jnxMbgSgwIfGtpV2ICsRelocFailRx=jnxMbgSgwIfGtpV2ICsRelocFailRx, jnxMbgSgwDelConnSetRspTx=jnxMbgSgwDelConnSetRspTx, jnxMbgSgwT3RespTmrExpRx=jnxMbgSgwT3RespTmrExpRx, jnxMbgSgwStopPagingIndRx=jnxMbgSgwStopPagingIndRx, jnxMbgSgwDelSessReqTx=jnxMbgSgwDelSessReqTx, jnxMbgSgwGtpV2ICsTFTSysErrRx=jnxMbgSgwGtpV2ICsTFTSysErrRx, jnxMbgSgwPPRelAcsBrRespRx=jnxMbgSgwPPRelAcsBrRespRx, jnxMbgSgwIfDelSessReqRx=jnxMbgSgwIfDelSessReqRx, jnxMbgSgwGtpV2ICsReqAcceptTx=jnxMbgSgwGtpV2ICsReqAcceptTx, jnxMbgSgwPPRelAcsBrRespTx=jnxMbgSgwPPRelAcsBrRespTx, jnxMbgSgwIfGtpV1EchoRespTx=jnxMbgSgwIfGtpV1EchoRespTx, jnxMbgSgwGtpV2ICsAcceptPartTx=jnxMbgSgwGtpV2ICsAcceptPartTx, jnxMbgSgwIfModBrReqRx=jnxMbgSgwIfModBrReqRx, jnxMbgSgwGtpCGlbStatsTable=jnxMbgSgwGtpCGlbStatsTable, jnxMbgSgwGtpV2ICsPkFltSynErrTx=jnxMbgSgwGtpV2ICsPkFltSynErrTx, jnxMbgSgwIfDelBrRspTx=jnxMbgSgwIfDelBrRspTx, jnxMbgSgwV2EchoReqRx=jnxMbgSgwV2EchoReqRx, jnxMbgSgwPPGtpV1EchoReqTx=jnxMbgSgwPPGtpV1EchoReqTx, jnxMbgSgwPPGtpV2ICsUERefusesRx=jnxMbgSgwPPGtpV2ICsUERefusesRx, jnxMbgSgwGtpV2ICsInReFRePrTx=jnxMbgSgwGtpV2ICsInReFRePrTx, jnxMbgSgwIfGtpV2ICsSrvNotSuppRx=jnxMbgSgwIfGtpV2ICsSrvNotSuppRx, jnxMbgSgwPPDelBrRspTx=jnxMbgSgwPPDelBrRspTx, jnxMbgSgwResumeAckRx=jnxMbgSgwResumeAckRx, jnxMbgSgwPPPacketAllocFail=jnxMbgSgwPPPacketAllocFail, jnxMbgSgwPPGtpV2ICsDenINRatTx=jnxMbgSgwPPGtpV2ICsDenINRatTx, jnxMbgSgwUnknMsgRx=jnxMbgSgwUnknMsgRx, jnxMbgSgwPPDelIndTunRespTx=jnxMbgSgwPPDelIndTunRespTx, jnxMbgSgwIfGtpV2ICsUnexpRptIERx=jnxMbgSgwIfGtpV2ICsUnexpRptIERx, jnxMbgSgwIfCrtBrRspTx=jnxMbgSgwIfCrtBrRspTx, jnxMbgSgwGtpV2ICsNewPTNPrefTx=jnxMbgSgwGtpV2ICsNewPTNPrefTx, jnxMbgSgwIfGtpV2ICsUnknownRx=jnxMbgSgwIfGtpV2ICsUnknownRx, jnxMbgSgwGtpPrDnTPerPrAlrmActv=jnxMbgSgwGtpPrDnTPerPrAlrmActv, jnxMbgSgwPPGtpV2ICsPkFltManErRx=jnxMbgSgwPPGtpV2ICsPkFltManErRx, jnxMbgSgwPPGtpV2ICsNPTSIAdbrTx=jnxMbgSgwPPGtpV2ICsNPTSIAdbrTx, jnxMbgSgwIfDelBrFlrIndTx=jnxMbgSgwIfDelBrFlrIndTx, jnxMbgSgwIfGtpV2ICsPkFltManErTx=jnxMbgSgwIfGtpV2ICsPkFltManErTx, jnxMbgSgwStopPagingIndTx=jnxMbgSgwStopPagingIndTx, jnxMbgSgwGtpV2ICsProtoNtSupTx=jnxMbgSgwGtpV2ICsProtoNtSupTx, jnxMbgSgwIfRelAcsBrReqRx=jnxMbgSgwIfRelAcsBrReqRx, jnxMbgSgwGtpV2ICsCmpDetRx=jnxMbgSgwGtpV2ICsCmpDetRx, jnxMbgSgwIfDelBrRspRx=jnxMbgSgwIfDelBrRspRx, jnxMbgSgwPPDelIndTunRespRx=jnxMbgSgwPPDelIndTunRespRx, jnxMbgSgwPPGtpV1UnSupMsgRx=jnxMbgSgwPPGtpV1UnSupMsgRx, jnxMbgSgwPPGtpV1EchoReqRx=jnxMbgSgwPPGtpV1EchoReqRx, jnxMbgSgwIfGtpV2ICsPkFltSynErTx=jnxMbgSgwIfGtpV2ICsPkFltSynErTx, jnxMbgSgwIfCrIndTunReqRx=jnxMbgSgwIfCrIndTunReqRx, jnxMbgSgwGtpV2ICsManIEIncorrTx=jnxMbgSgwGtpV2ICsManIEIncorrTx, jnxMbgSgwIfGtpV2ICsManIEMissRx=jnxMbgSgwIfGtpV2ICsManIEMissRx, jnxMbgSgwPPCreateSessReqTx=jnxMbgSgwPPCreateSessReqTx, jnxMbgSgwIfDelConnSetReqTx=jnxMbgSgwIfDelConnSetReqTx, jnxMbgSgwPPGtpV2ICsPTNotSuppTx=jnxMbgSgwPPGtpV2ICsPTNotSuppTx, jnxMbgSgwPPDlDataAckTx=jnxMbgSgwPPDlDataAckTx, jnxMbgSgwIfDelConnSetRspTx=jnxMbgSgwIfDelConnSetRspTx, jnxMbgSgwPPModBrReqRx=jnxMbgSgwPPModBrReqRx, jnxMbgSgwRxPacketsDropped=jnxMbgSgwRxPacketsDropped, jnxMbgSgwIfGtpV2ICsColNWReqTx=jnxMbgSgwIfGtpV2ICsColNWReqTx, jnxMbgSgwPPGtpV2ICsUnPgUESusRx=jnxMbgSgwPPGtpV2ICsUnPgUESusRx, jnxMbgSgwDelConnSetReqTx=jnxMbgSgwDelConnSetReqTx, jnxMbgSgwGtpV1EchoReqTx=jnxMbgSgwGtpV1EchoReqTx, jnxMbgSgwPPCrtBrRspRx=jnxMbgSgwPPCrtBrRspRx, jnxMbgSgwIfStopPagingIndRx=jnxMbgSgwIfStopPagingIndRx, jnxMbgSgwIfGtpV2ICsLclDetRx=jnxMbgSgwIfGtpV2ICsLclDetRx, jnxMbgSgwIfModBrRspRx=jnxMbgSgwIfModBrRspRx, jnxMbgSgwS11PiggybackMsgTx=jnxMbgSgwS11PiggybackMsgTx, jnxMbgSgwGtpV2ICsSynErTADRx=jnxMbgSgwGtpV2ICsSynErTADRx, jnxMbgSgwPPGtpV2ICsISRDeactTx=jnxMbgSgwPPGtpV2ICsISRDeactTx, jnxMbgSgwIfGtpV2ICsUnPgUESusTx=jnxMbgSgwIfGtpV2ICsUnPgUESusTx, jnxMbgSgwGtpV2ICsUnexpRptIERx=jnxMbgSgwGtpV2ICsUnexpRptIERx, jnxMbgSgwGtpV2ICsUnabPageUETx=jnxMbgSgwGtpV2ICsUnabPageUETx, jnxMbgSgwGtpV2ICsRATChgRx=jnxMbgSgwGtpV2ICsRATChgRx, jnxMbgSgwGtpV2ICsColNWReqTx=jnxMbgSgwGtpV2ICsColNWReqTx, jnxMbgSgwPPGtpV2ICsDtForNtSupRx=jnxMbgSgwPPGtpV2ICsDtForNtSupRx, jnxMbgSgwPPDelConnSetRspRx=jnxMbgSgwPPDelConnSetRspRx, jnxMbgSgwPPResumeNotifRx=jnxMbgSgwPPResumeNotifRx, jnxMbgSgwIfCrtBrRspRx=jnxMbgSgwIfCrtBrRspRx, jnxMbgSgwIfGtpV2ICsInvLenRx=jnxMbgSgwIfGtpV2ICsInvLenRx, jnxMbgSgwPPGtpV2ICsPTNotSuppRx=jnxMbgSgwPPGtpV2ICsPTNotSuppRx, jnxMbgSgwPPGtpV2ICsRMValRcvTx=jnxMbgSgwPPGtpV2ICsRMValRcvTx, jnxMbgSgwPPGtpV2ICsMisUnknAPNRx=jnxMbgSgwPPGtpV2ICsMisUnknAPNRx, jnxMbgSgwGtpV2ICsDeniedINRatRx=jnxMbgSgwGtpV2ICsDeniedINRatRx, jnxMbgSgwGtpV2ICsManIEIncorrRx=jnxMbgSgwGtpV2ICsManIEIncorrRx, jnxMbgSgwGtpV2ICsReqRejRx=jnxMbgSgwGtpV2ICsReqRejRx, jnxMbgSgwPPPiggybackMsgTx=jnxMbgSgwPPPiggybackMsgTx, jnxMbgSgwPPGtpV2ICsInvLenRx=jnxMbgSgwPPGtpV2ICsInvLenRx, jnxMbgSgwIfGtpV2ICsEIFRNCEnRx=jnxMbgSgwIfGtpV2ICsEIFRNCEnRx, jnxMbgSgwPPBrResFlrIndTx=jnxMbgSgwPPBrResFlrIndTx, jnxMbgSgwIfModBrCmdRx=jnxMbgSgwIfModBrCmdRx, jnxMbgSgwIfDelIndTunRespRx=jnxMbgSgwIfDelIndTunRespRx, jnxMbgSgwGtpV1EchoReqRx=jnxMbgSgwGtpV1EchoReqRx, jnxMbgSgwIfDelBrReqTx=jnxMbgSgwIfDelBrReqTx, jnxMbgSgwIfGtpV2ICsUserAUTHFlTx=jnxMbgSgwIfGtpV2ICsUserAUTHFlTx, jnxMbgSgwIfGtpV2ICsCmpDetRx=jnxMbgSgwIfGtpV2ICsCmpDetRx, jnxMbgSgwIfSuspAckTx=jnxMbgSgwIfSuspAckTx, jnxMbgSgwGtpV2ICsCtxNotFndTx=jnxMbgSgwGtpV2ICsCtxNotFndTx, jnxMbgSgwPPGtpV1ErrIndTx=jnxMbgSgwPPGtpV1ErrIndTx, jnxMbgSgwGtpV2ICsUERefusesTx=jnxMbgSgwGtpV2ICsUERefusesTx, jnxMbgSgwPPCrIndTunRespTx=jnxMbgSgwPPCrIndTunRespTx, jnxMbgSgwPPIPVerErrRx=jnxMbgSgwPPIPVerErrRx, jnxMbgSgwIfUpdBrReqTx=jnxMbgSgwIfUpdBrReqTx, jnxMbgSgwIfGtpV2ICsCtxNotFndRx=jnxMbgSgwIfGtpV2ICsCtxNotFndRx, jnxMbgSgwIfGtpV2ICsTFTSysErrTx=jnxMbgSgwIfGtpV2ICsTFTSysErrTx, jnxMbgSgwGtpV2ICsLclDetTx=jnxMbgSgwGtpV2ICsLclDetTx, jnxMbgSgwPPGtpV2ICsPkFltManErTx=jnxMbgSgwPPGtpV2ICsPkFltManErTx, jnxMbgSgwPPGtpV2ICsUENotRespTx=jnxMbgSgwPPGtpV2ICsUENotRespTx, jnxMbgSgwGtpV1ErrIndRx=jnxMbgSgwGtpV1ErrIndRx, jnxMbgSgwIfModBrFlrIndTx=jnxMbgSgwIfModBrFlrIndTx, jnxMbgSgwPPGtpV2ICsPTMSISigMMTx=jnxMbgSgwPPGtpV2ICsPTMSISigMMTx, jnxMbgSgwIfGtpV2ICsSemErTADTx=jnxMbgSgwIfGtpV2ICsSemErTADTx, jnxMbgSgwPPUnSupportedMsgRx=jnxMbgSgwPPUnSupportedMsgRx, jnxMbgSgwIfDelSessRspTx=jnxMbgSgwIfDelSessRspTx, jnxMbgSgwIfGTPUnknVerRx=jnxMbgSgwIfGTPUnknVerRx, jnxMbgSgwPPGTPPortErrRx=jnxMbgSgwPPGTPPortErrRx, jnxMbgSgwIfGtpV2ICsUERefusesTx=jnxMbgSgwIfGtpV2ICsUERefusesTx, jnxMbgSgwDelBrFlrIndRx=jnxMbgSgwDelBrFlrIndRx, jnxMbgSgwS4PiggybackMsgTx=jnxMbgSgwS4PiggybackMsgTx, jnxMbgSgwIfGtpV1EndMarkerRx=jnxMbgSgwIfGtpV1EndMarkerRx, jnxMbgSgwGtpV2ICsGREKeyNtFdRx=jnxMbgSgwGtpV2ICsGREKeyNtFdRx, jnxMbgSgwGtpV2ICsTFTSMANTErTx=jnxMbgSgwGtpV2ICsTFTSMANTErTx, jnxMbgSgwIfBrResCmdTx=jnxMbgSgwIfBrResCmdTx, jnxMbgSgwPPResumeNotifTx=jnxMbgSgwPPResumeNotifTx, jnxMbgSgwIfGtpV2ICsPTNotSuppRx=jnxMbgSgwIfGtpV2ICsPTNotSuppRx, jnxMbgSgwIfGtpV2ICsSrvNotSuppTx=jnxMbgSgwIfGtpV2ICsSrvNotSuppTx, jnxMbgSgwPPGtpV2ICsInReFRePrTx=jnxMbgSgwPPGtpV2ICsInReFRePrTx, jnxMbgSgwPPDelBrFlrIndTx=jnxMbgSgwPPDelBrFlrIndTx, jnxMbgSgwIfGtpV2ICsTFTSysErrRx=jnxMbgSgwIfGtpV2ICsTFTSysErrRx, jnxMbgSgwIfGTPPortErrRx=jnxMbgSgwIfGTPPortErrRx, jnxMbgSgwPPGtpV2ICsSynErTADRx=jnxMbgSgwPPGtpV2ICsSynErTADRx, jnxMbgSgwPPGtpV2ICsPTMSISigMMRx=jnxMbgSgwPPGtpV2ICsPTMSISigMMRx, jnxMbgSgwGtpV2ICsInvMsgFmtTx=jnxMbgSgwGtpV2ICsInvMsgFmtTx, jnxMbgSgwPPGtpV2ICsInvPrTx=jnxMbgSgwPPGtpV2ICsInvPrTx, jnxMbgSgwIfV2NumBytesTx=jnxMbgSgwIfV2NumBytesTx, jnxMbgSgwIfGtpV2ICsUnPgUESusRx=jnxMbgSgwIfGtpV2ICsUnPgUESusRx, jnxMbgSgwPPGtpV1EchoRespRx=jnxMbgSgwPPGtpV1EchoRespRx, jnxMbgSgwGtpV2ICsPageTx=jnxMbgSgwGtpV2ICsPageTx, jnxMbgSgwGtpV2ICsNewPTSIAdbrRx=jnxMbgSgwGtpV2ICsNewPTSIAdbrRx, jnxMbgSgwIfGtpV2ICsAPNAcsDenRx=jnxMbgSgwIfGtpV2ICsAPNAcsDenRx, jnxMbgSgwIfModBrFlrIndRx=jnxMbgSgwIfModBrFlrIndRx, jnxMbgSgwS5PiggybackMsgRx=jnxMbgSgwS5PiggybackMsgRx, jnxMbgSgwIfGtpV2ICsInvMsgFmtRx=jnxMbgSgwIfGtpV2ICsInvMsgFmtRx, jnxMbgSgwGtpV2ICsPTMSISigMMRx=jnxMbgSgwGtpV2ICsPTMSISigMMRx, jnxMbgSgwIfGtpV2ICsRATChgTx=jnxMbgSgwIfGtpV2ICsRATChgTx, jnxMbgSgwPPGtpV2ICsUnknownRx=jnxMbgSgwPPGtpV2ICsUnknownRx, jnxMbgSgwPPDelSessReqRx=jnxMbgSgwPPDelSessReqRx, jnxMbgSgwPPT3RespTmrExpRx=jnxMbgSgwPPT3RespTmrExpRx, jnxMbgSgwIfGtpV2ICsLclDetTx=jnxMbgSgwIfGtpV2ICsLclDetTx, jnxMbgSgwGtpV2ICsServNotSuppRx=jnxMbgSgwGtpV2ICsServNotSuppRx, jnxMbgSgwPPDelConnSetRspTx=jnxMbgSgwPPDelConnSetRspTx, jnxMbgSgwPacketSendFail=jnxMbgSgwPacketSendFail, jnxMbgSgwIfModBrCmdTx=jnxMbgSgwIfModBrCmdTx, jnxMbgSgwGtpV2ICsNoMemTx=jnxMbgSgwGtpV2ICsNoMemTx, jnxMbgSgwIfGtpV2ICsIMSINotKnTx=jnxMbgSgwIfGtpV2ICsIMSINotKnTx, jnxMbgSgwPPGtpV2ICsVerNotSuppRx=jnxMbgSgwPPGtpV2ICsVerNotSuppRx, jnxMbgSgwGtpV2ICsRMValRcvTx=jnxMbgSgwGtpV2ICsRMValRcvTx, jnxMbgSgwIfGtpV2ICsDtForNtSupRx=jnxMbgSgwIfGtpV2ICsDtForNtSupRx, jnxMbgSgwIfUpdBrReqRx=jnxMbgSgwIfUpdBrReqRx, jnxMbgSgwModBrFlrIndTx=jnxMbgSgwModBrFlrIndTx, jnxMbgSgwDlDataNotifTx=jnxMbgSgwDlDataNotifTx, jnxMbgSgwGtpV2ICsPkFltSynErrRx=jnxMbgSgwGtpV2ICsPkFltSynErrRx, jnxMbgSgwPPGtpV2ICsManIEMissRx=jnxMbgSgwPPGtpV2ICsManIEMissRx, jnxMbgSgwCrIndTunRespTx=jnxMbgSgwCrIndTunRespTx, jnxMbgSgwPPCrtBrReqTx=jnxMbgSgwPPCrtBrReqTx, jnxMbgSgwPPGtpV2ICsServDeniedRx=jnxMbgSgwPPGtpV2ICsServDeniedRx)
mibBuilder.exportSymbols('JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', jnxMbgSgwBrResFlrIndRx=jnxMbgSgwBrResFlrIndRx, jnxMbgSgwPPModBrReqTx=jnxMbgSgwPPModBrReqTx, jnxMbgSgwIfDlDataAckRx=jnxMbgSgwIfDlDataAckRx, jnxMbgSgwIfGtpV2ICsUENotRespTx=jnxMbgSgwIfGtpV2ICsUENotRespTx, jnxMbgSgwGtpV2ICsRelocFailRx=jnxMbgSgwGtpV2ICsRelocFailRx, jnxMbgSgwPPGtpV2ICsNOTFTUECTXTx=jnxMbgSgwPPGtpV2ICsNOTFTUECTXTx, jnxMbgSgwDelConnSetRspRx=jnxMbgSgwDelConnSetRspRx, jnxMbgSgwGtpV1EndMarkerTx=jnxMbgSgwGtpV1EndMarkerTx, jnxMbgSgwPPSuspNotifRx=jnxMbgSgwPPSuspNotifRx, jnxMbgSgwGtpV2ICsUnexpRptIETx=jnxMbgSgwGtpV2ICsUnexpRptIETx, jnxMbgSgwIfGtpV2ICsReqRejRx=jnxMbgSgwIfGtpV2ICsReqRejRx, jnxMbgSgwModBrRspTx=jnxMbgSgwModBrRspTx, jnxMbgSgwGtpV2ICsAcceptPartRx=jnxMbgSgwGtpV2ICsAcceptPartRx, jnxMbgSgwIfSuspNotifRx=jnxMbgSgwIfSuspNotifRx, jnxMbgSgwPPV2NumMsgTx=jnxMbgSgwPPV2NumMsgTx, jnxMbgSgwPPGtpV2ICsNoMemTx=jnxMbgSgwPPGtpV2ICsNoMemTx, jnxMbgSgwIfGtpV2ICsReqAcceptRx=jnxMbgSgwIfGtpV2ICsReqAcceptRx, jnxMbgSgwPPPcktLenErrRx=jnxMbgSgwPPPcktLenErrRx, jnxMbgSgwBrResCmdTx=jnxMbgSgwBrResCmdTx, jnxMbgSgwIfGtpV2ICsCondIEMsTx=jnxMbgSgwIfGtpV2ICsCondIEMsTx, jnxMbgSgwGtpV2ICsInvLenRx=jnxMbgSgwGtpV2ICsInvLenRx, jnxMbgSgwPPGtpV1T3RespTmrExpRx=jnxMbgSgwPPGtpV1T3RespTmrExpRx, jnxMbgSgwPPGtpV2ICsRMValRcvRx=jnxMbgSgwPPGtpV2ICsRMValRcvRx, jnxMbgSgwS5PiggybackMsgTx=jnxMbgSgwS5PiggybackMsgTx, jnxMbgSgwIfDelIndTunReqTx=jnxMbgSgwIfDelIndTunReqTx, jnxMbgSgwIfDelBrCmdTx=jnxMbgSgwIfDelBrCmdTx, jnxMbgSgwIfGtpV2ICsMisUnknAPNRx=jnxMbgSgwIfGtpV2ICsMisUnknAPNRx, jnxMbgSgwPPGtpV2ICsNoMemRx=jnxMbgSgwPPGtpV2ICsNoMemRx, jnxMbgSgwPPUpdConnSetReqRx=jnxMbgSgwPPUpdConnSetReqRx, jnxMbgSgwDlDataNotiFlrIndRx=jnxMbgSgwDlDataNotiFlrIndRx, jnxMbgSgwPPDlDataNotiFlrIndRx=jnxMbgSgwPPDlDataNotiFlrIndRx, jnxMbgSgwIfV2VerNotSupTx=jnxMbgSgwIfV2VerNotSupTx, jnxMbgSgwPPGtpV2ICsIMSINotKnRx=jnxMbgSgwPPGtpV2ICsIMSINotKnRx, jnxMbgSgwPPRelAcsBrReqRx=jnxMbgSgwPPRelAcsBrReqRx, jnxMbgSgwPPGtpV2ICsInReFRePrRx=jnxMbgSgwPPGtpV2ICsInReFRePrRx, jnxMbgSgwGtpV2ICsPageRx=jnxMbgSgwGtpV2ICsPageRx, jnxMbgSgwIfResumeNotifTx=jnxMbgSgwIfResumeNotifTx, jnxMbgSgwPPGtpV2ICsUnabPageUERx=jnxMbgSgwPPGtpV2ICsUnabPageUERx, jnxMbgSgwIfRxPacketsDropped=jnxMbgSgwIfRxPacketsDropped, jnxMbgSgwGtpV1EchoRespTx=jnxMbgSgwGtpV1EchoRespTx, jnxMbgSgwPPGtpV2ICsUserAUTHFlRx=jnxMbgSgwPPGtpV2ICsUserAUTHFlRx, jnxMbgSgwIfCreateSessReqTx=jnxMbgSgwIfCreateSessReqTx, jnxMbgSgwPPDelIndTunReqTx=jnxMbgSgwPPDelIndTunReqTx, jnxMbgSgwIfDelIndTunReqRx=jnxMbgSgwIfDelIndTunReqRx, jnxMbgSgwPPGtpV2ICsAcceptPartRx=jnxMbgSgwPPGtpV2ICsAcceptPartRx, jnxMbgSgwPPV2EchoRespTx=jnxMbgSgwPPV2EchoRespTx, jnxMbgSgwPPGtpV2ICsColNWReqTx=jnxMbgSgwPPGtpV2ICsColNWReqTx, jnxMbgSgwGtpV2ICsCondIEMsRx=jnxMbgSgwGtpV2ICsCondIEMsRx, jnxMbgSgwGTPPortErrRx=jnxMbgSgwGTPPortErrRx, jnxMbgSgwIfGtpV2ICsInReFRePrRx=jnxMbgSgwIfGtpV2ICsInReFRePrRx, jnxMbgSgwPPGtpV2ICsPkFltSynErTx=jnxMbgSgwPPGtpV2ICsPkFltSynErTx, jnxMbgSgwIfGtpV2ICsUENotRespRx=jnxMbgSgwIfGtpV2ICsUENotRespRx, jnxMbgSgwDelBrRspRx=jnxMbgSgwDelBrRspRx, jnxMbgSgwIfType=jnxMbgSgwIfType, jnxMbgSgwIfGtpV2ICsServDeniedTx=jnxMbgSgwIfGtpV2ICsServDeniedTx, jnxMbgSgwSuspAckRx=jnxMbgSgwSuspAckRx, jnxMbgSgwPPGtpV2ICsManIEIncorTx=jnxMbgSgwPPGtpV2ICsManIEIncorTx, jnxMbgSgwIfGtpV2ICsISRDeactRx=jnxMbgSgwIfGtpV2ICsISRDeactRx, jnxMbgSgwGtpIfStatsEntry=jnxMbgSgwGtpIfStatsEntry, jnxMbgSgwIfGtpV2ICsServDeniedRx=jnxMbgSgwIfGtpV2ICsServDeniedRx, jnxMbgSgwGtpV2ICsNoResTx=jnxMbgSgwGtpV2ICsNoResTx, jnxMbgSgwPPGtpV2ICsReqAcceptRx=jnxMbgSgwPPGtpV2ICsReqAcceptRx, jnxMbgSgwDelBrCmdTx=jnxMbgSgwDelBrCmdTx, jnxMbgSgwGtpV2ICsNoMemRx=jnxMbgSgwGtpV2ICsNoMemRx, jnxMbgSgwGtpV2ICsUnPgUESusTx=jnxMbgSgwGtpV2ICsUnPgUESusTx, jnxMbgSgwIfDelConnSetRspRx=jnxMbgSgwIfDelConnSetRspRx, jnxMbgSgwIfGtpV2ICsNOTFTUECTXTx=jnxMbgSgwIfGtpV2ICsNOTFTUECTXTx, jnxMbgSgwPPDelIndTunReqRx=jnxMbgSgwPPDelIndTunReqRx, jnxMbgSgwIfGtpV2ICsPTNotSuppTx=jnxMbgSgwIfGtpV2ICsPTNotSuppTx, jnxMbgSgwCrtBrRspRx=jnxMbgSgwCrtBrRspRx, jnxMbgSgwGtpV2ICsInvLenTx=jnxMbgSgwGtpV2ICsInvLenTx, jnxMbgSgwGtpV2ICsNewPTNPrefRx=jnxMbgSgwGtpV2ICsNewPTNPrefRx, jnxMbgSgwGtpV2ICsIMSINotKnRx=jnxMbgSgwGtpV2ICsIMSINotKnRx, jnxMbgSgwIfCreateSessRspRx=jnxMbgSgwIfCreateSessRspRx, jnxMbgSgwIfDelSessRspRx=jnxMbgSgwIfDelSessRspRx, jnxMbgSgwGtpV2ICsEIFRNCEnTx=jnxMbgSgwGtpV2ICsEIFRNCEnTx, jnxMbgSgwIfBrResFlrIndRx=jnxMbgSgwIfBrResFlrIndRx, jnxMbgSgwIfGtpV2ICsColNWReqRx=jnxMbgSgwIfGtpV2ICsColNWReqRx, jnxMbgSgwIfProtocolErrRx=jnxMbgSgwIfProtocolErrRx, jnxMbgSgwGtpV2ICsInvPrTx=jnxMbgSgwGtpV2ICsInvPrTx, jnxMbgSgwGtpNotifications=jnxMbgSgwGtpNotifications, jnxMbgSgwGtpV2ICsPkFltManErrTx=jnxMbgSgwGtpV2ICsPkFltManErrTx, jnxMbgSgwPPGtpV2ICsNewPTNPrefRx=jnxMbgSgwPPGtpV2ICsNewPTNPrefRx, jnxMbgSgwGtpV2ICsRPrNtRspTx=jnxMbgSgwGtpV2ICsRPrNtRspTx, jnxMbgSgwRelAcsBrRespTx=jnxMbgSgwRelAcsBrRespTx, jnxMbgSgwGtpV2ICsAPNResTIncTx=jnxMbgSgwGtpV2ICsAPNResTIncTx, jnxMbgSgwPPGtpV2ICsCondIEMsTx=jnxMbgSgwPPGtpV2ICsCondIEMsTx, jnxMbgSgwUpdConnSetReqTx=jnxMbgSgwUpdConnSetReqTx, jnxMbgSgwPPGtpV2ICsAPNResTIncRx=jnxMbgSgwPPGtpV2ICsAPNResTIncRx, jnxMbgSgwGtpV2ICsServNotSuppTx=jnxMbgSgwGtpV2ICsServNotSuppTx, jnxMbgSgwUpdBrRspRx=jnxMbgSgwUpdBrRspRx, jnxMbgSgwDelIndTunReqTx=jnxMbgSgwDelIndTunReqTx, jnxMbgSgwIfGtpV2ICsNewPTNPrefRx=jnxMbgSgwIfGtpV2ICsNewPTNPrefRx, jnxMbgSgwDelConnSetReqRx=jnxMbgSgwDelConnSetReqRx, jnxMbgSgwGtpV2ICsInvPrRx=jnxMbgSgwGtpV2ICsInvPrRx, jnxMbgSgwIfGtpV1EndMarkerTx=jnxMbgSgwIfGtpV1EndMarkerTx, jnxMbgSgwBrResFlrIndTx=jnxMbgSgwBrResFlrIndTx, jnxMbgSgwIPVerErrRx=jnxMbgSgwIPVerErrRx, jnxMbgSgwIfGtpV1T3RespTmrExpRx=jnxMbgSgwIfGtpV1T3RespTmrExpRx, jnxMbgSgwIfModBrRspTx=jnxMbgSgwIfModBrRspTx, jnxMbgSgwPPGtpV2ICsProtoNtSupTx=jnxMbgSgwPPGtpV2ICsProtoNtSupTx, jnxMbgSgwIfGtpV2ICsInvMsgFmtTx=jnxMbgSgwIfGtpV2ICsInvMsgFmtTx, jnxMbgSgwPPSuspAckTx=jnxMbgSgwPPSuspAckTx, jnxMbgSgwGtpV2ICsNOTFTUECTXRx=jnxMbgSgwGtpV2ICsNOTFTUECTXRx, jnxMbgSgwPPGtpV2ICsOptIEIncorRx=jnxMbgSgwPPGtpV2ICsOptIEIncorRx, jnxMbgSgwUpdConnSetRspRx=jnxMbgSgwUpdConnSetRspRx, jnxMbgSgwGtpV2ICsPTNotSuppRx=jnxMbgSgwGtpV2ICsPTNotSuppRx, jnxMbgSgwPPGtpV2ICsAPNAcsDenRx=jnxMbgSgwPPGtpV2ICsAPNAcsDenRx, jnxMbgSgwPPGtpV2ICsUnexpRptIERx=jnxMbgSgwPPGtpV2ICsUnexpRptIERx, jnxMbgSgwCreateSessRspRx=jnxMbgSgwCreateSessRspRx, jnxMbgSgwIfGtpV1UnSupMsgRx=jnxMbgSgwIfGtpV1UnSupMsgRx, jnxMbgSgwUpdBrReqTx=jnxMbgSgwUpdBrReqTx, jnxMbgSgwPPGtpV2ICsServNotSupRx=jnxMbgSgwPPGtpV2ICsServNotSupRx, jnxMbgSgwIfGtpV2ICsUERefusesRx=jnxMbgSgwIfGtpV2ICsUERefusesRx, jnxMbgSgwPPGtpV2ICsRPrNtRspTx=jnxMbgSgwPPGtpV2ICsRPrNtRspTx, jnxMbgSgwIfGtpV1EchoReqTx=jnxMbgSgwIfGtpV1EchoReqTx, jnxMbgSgwPPGtpV2ICsCmpDetRx=jnxMbgSgwPPGtpV2ICsCmpDetRx, jnxMbgSgwCrIndTunRespRx=jnxMbgSgwCrIndTunRespRx, jnxMbgSgwIfGtpV2ICsOptIEIncorRx=jnxMbgSgwIfGtpV2ICsOptIEIncorRx, jnxMbgSgwPPGtpV2ICsCmpDetTx=jnxMbgSgwPPGtpV2ICsCmpDetTx, jnxMbgSgwGtpAlarmStatCounter=jnxMbgSgwGtpAlarmStatCounter, jnxMbgSgwPPV2EchoReqRx=jnxMbgSgwPPV2EchoReqRx, jnxMbgSgwDlDataAckRx=jnxMbgSgwDlDataAckRx, jnxMbgSgwIfIPVerErrRx=jnxMbgSgwIfIPVerErrRx, jnxMbgSgwPPStopPagingIndRx=jnxMbgSgwPPStopPagingIndRx, jnxMbgSgwGtpV2ICsInvTotLenTx=jnxMbgSgwGtpV2ICsInvTotLenTx, jnxMbgSgwIfModBrReqTx=jnxMbgSgwIfModBrReqTx, jnxMbgSgwGtpV1ProtocolErrRx=jnxMbgSgwGtpV1ProtocolErrRx, jnxMbgSgwGtpV2ICsUENotRespRx=jnxMbgSgwGtpV2ICsUENotRespRx, jnxMbgSgwIfGtpV2ICsManIEIncorRx=jnxMbgSgwIfGtpV2ICsManIEIncorRx, jnxMbgSgwPPGtpV2ICsUnexpRptIETx=jnxMbgSgwPPGtpV2ICsUnexpRptIETx, jnxMbgSgwIfGtpV2ICsPkFltSynErRx=jnxMbgSgwIfGtpV2ICsPkFltSynErRx, jnxMbgSgwPPDlDataNotifRx=jnxMbgSgwPPDlDataNotifRx, jnxMbgSgwGtpV2ICsCondIEMsTx=jnxMbgSgwGtpV2ICsCondIEMsTx, jnxMbgSgwDelIndTunRespTx=jnxMbgSgwDelIndTunRespTx, jnxMbgSgwPPGtpV2ICsDenINRatRx=jnxMbgSgwPPGtpV2ICsDenINRatRx, jnxMbgSgwGtpPeerGwDnNotif=jnxMbgSgwGtpPeerGwDnNotif, jnxMbgSgwGtpV2ICsPkFltManErrRx=jnxMbgSgwGtpV2ICsPkFltManErrRx, jnxMbgSgwV2NumMsgRx=jnxMbgSgwV2NumMsgRx, jnxMbgSgwPPModBrFlrIndTx=jnxMbgSgwPPModBrFlrIndTx, jnxMbgSgwIfUpdConnSetReqRx=jnxMbgSgwIfUpdConnSetReqRx, jnxMbgSgwGtpObjects=jnxMbgSgwGtpObjects, jnxMbgSgwGtpV2ICsSynErTADTx=jnxMbgSgwGtpV2ICsSynErTADTx, jnxMbgSgwIfPacketAllocFail=jnxMbgSgwIfPacketAllocFail, jnxMbgSgwIfCreateSessReqRx=jnxMbgSgwIfCreateSessReqRx, jnxMbgSgwPPCrIndTunReqRx=jnxMbgSgwPPCrIndTunReqRx, jnxMbgSgwCrtBrRspTx=jnxMbgSgwCrtBrRspTx, jnxMbgSgwPPV2NumBytesTx=jnxMbgSgwPPV2NumBytesTx, jnxMbgSgwGtpIfStatsTable=jnxMbgSgwGtpIfStatsTable, jnxMbgSgwGtpV2ICsColNWReqRx=jnxMbgSgwGtpV2ICsColNWReqRx, jnxMbgSgwPPGtpV2ICsUserAUTHFlTx=jnxMbgSgwPPGtpV2ICsUserAUTHFlTx, jnxMbgSgwIfGtpV2ICsEIFRNCEnTx=jnxMbgSgwIfGtpV2ICsEIFRNCEnTx, jnxMbgSgwPPV2EchoReqTx=jnxMbgSgwPPV2EchoReqTx, jnxMbgSgwDlDataNotifRx=jnxMbgSgwDlDataNotifRx, jnxMbgSgwPPGtpV2ICsRPrNtRspRx=jnxMbgSgwPPGtpV2ICsRPrNtRspRx, jnxMbgSgwS11PiggybackMsgRx=jnxMbgSgwS11PiggybackMsgRx, jnxMbgSgwPPGtpV2ICsSysFailRx=jnxMbgSgwPPGtpV2ICsSysFailRx, jnxMbgSgwGtpV2ICsVerNotSuppRx=jnxMbgSgwGtpV2ICsVerNotSuppRx, jnxMbgSgwDlDataAckTx=jnxMbgSgwDlDataAckTx, jnxMbgSgwPPGtpV2ICsCtxNotFndRx=jnxMbgSgwPPGtpV2ICsCtxNotFndRx, jnxMbgSgwIfGtpV2ICsAlDynAdOccTx=jnxMbgSgwIfGtpV2ICsAlDynAdOccTx, jnxMbgSgwPPGtpV1ProtocolErrRx=jnxMbgSgwPPGtpV1ProtocolErrRx, jnxMbgSgwModBrCmdTx=jnxMbgSgwModBrCmdTx, jnxMbgSgwPPProtocolErrRx=jnxMbgSgwPPProtocolErrRx, jnxMbgSgwPPRelAcsBrReqTx=jnxMbgSgwPPRelAcsBrReqTx, jnxMbgSgwGtpV1UnSupMsgRx=jnxMbgSgwGtpV1UnSupMsgRx, jnxMbgSgwResumeAckTx=jnxMbgSgwResumeAckTx, jnxMbgSgwIfGtpV2ICsSysFailTx=jnxMbgSgwIfGtpV2ICsSysFailTx, jnxMbgSgwIfV2EchoReqTx=jnxMbgSgwIfV2EchoReqTx, jnxMbgSgwIfGtpV2ICsRMValRcvRx=jnxMbgSgwIfGtpV2ICsRMValRcvRx, jnxMbgSgwPPUpdBrRspTx=jnxMbgSgwPPUpdBrRspTx, jnxMbgSgwIfGtpV2ICsSynErTADRx=jnxMbgSgwIfGtpV2ICsSynErTADRx, jnxMbgSgwPPSuspAckRx=jnxMbgSgwPPSuspAckRx, jnxMbgSgwProtocolErrRx=jnxMbgSgwProtocolErrRx, jnxMbgSgwCrtBrReqTx=jnxMbgSgwCrtBrReqTx, jnxMbgSgwIfCrtBrReqRx=jnxMbgSgwIfCrtBrReqRx, jnxMbgSgwIfGtpV2ICsProtoNtSupTx=jnxMbgSgwIfGtpV2ICsProtoNtSupTx, jnxMbgSgwIfGtpV2ICsUserAUTHFlRx=jnxMbgSgwIfGtpV2ICsUserAUTHFlRx, jnxMbgSgwGtpV2ICsSemErTADTx=jnxMbgSgwGtpV2ICsSemErTADTx, jnxMbgSgwGtpV2ICsSysFailTx=jnxMbgSgwGtpV2ICsSysFailTx, jnxMbgSgwGtpV2ICsDtForNtSupTx=jnxMbgSgwGtpV2ICsDtForNtSupTx, jnxMbgSgwPPDelBrFlrIndRx=jnxMbgSgwPPDelBrFlrIndRx, jnxMbgSgwPPGtpV2ICsUnPgUESusTx=jnxMbgSgwPPGtpV2ICsUnPgUESusTx, jnxMbgSgwGtpV2ICsManIEMissTx=jnxMbgSgwGtpV2ICsManIEMissTx, jnxMbgSgwCreateSessReqTx=jnxMbgSgwCreateSessReqTx, jnxMbgSgwPPUpdBrReqTx=jnxMbgSgwPPUpdBrReqTx, jnxMbgSgwIfPiggybackMsgTx=jnxMbgSgwIfPiggybackMsgTx, jnxMbgSgwIfResumeAckRx=jnxMbgSgwIfResumeAckRx, jnxMbgSgwPPGtpV2ICsPageRx=jnxMbgSgwPPGtpV2ICsPageRx, jnxMbgSgwIfGtpV2ICsNOTFTUECTXRx=jnxMbgSgwIfGtpV2ICsNOTFTUECTXRx, jnxMbgSgwIfGtpV2ICsInvTotLenRx=jnxMbgSgwIfGtpV2ICsInvTotLenRx, jnxMbgSgwGTPUnknVerRx=jnxMbgSgwGTPUnknVerRx, jnxMbgSgwV2EchoReqTx=jnxMbgSgwV2EchoReqTx, jnxMbgSgwPPGtpV2ICsManIEMissTx=jnxMbgSgwPPGtpV2ICsManIEMissTx, jnxMbgSgwIfGtpV2ICsAPNResTIncRx=jnxMbgSgwIfGtpV2ICsAPNResTIncRx, jnxMbgSgwIfDlDataNotiFlrIndRx=jnxMbgSgwIfDlDataNotiFlrIndRx, jnxMbgSgwPPGtpV2ICsInvTotLenTx=jnxMbgSgwPPGtpV2ICsInvTotLenTx, jnxMbgSgwGtpV2ICsMisUnknAPNRx=jnxMbgSgwGtpV2ICsMisUnknAPNRx, jnxMbgSgwModBrReqRx=jnxMbgSgwModBrReqRx, jnxMbgSgwModBrReqTx=jnxMbgSgwModBrReqTx, jnxMbgSgwIfGtpV2ICsReqRejTx=jnxMbgSgwIfGtpV2ICsReqRejTx, jnxMbgSgwIfRelAcsBrRespTx=jnxMbgSgwIfRelAcsBrRespTx, jnxMbgSgwCrIndTunReqRx=jnxMbgSgwCrIndTunReqRx, jnxMbgSgwIfGtpV2ICsProtoNtSupRx=jnxMbgSgwIfGtpV2ICsProtoNtSupRx, jnxMbgSgwPPDelBrRspRx=jnxMbgSgwPPDelBrRspRx, jnxMbgSgwPPGtpV2ICsLclDetTx=jnxMbgSgwPPGtpV2ICsLclDetTx, jnxMbgSgwIfGtpV2ICsIMSINotKnRx=jnxMbgSgwIfGtpV2ICsIMSINotKnRx, jnxMbgSgwIfRelAcsBrRespRx=jnxMbgSgwIfRelAcsBrRespRx, jnxMbgSgwPPV2VerNotSupTx=jnxMbgSgwPPV2VerNotSupTx, jnxMbgSgwIfGtpV2ICsPTMSISigMMTx=jnxMbgSgwIfGtpV2ICsPTMSISigMMTx, jnxMbgSgwIfGtpV2ICsRATChgRx=jnxMbgSgwIfGtpV2ICsRATChgRx, jnxMbgSgwGtpGwName=jnxMbgSgwGtpGwName, jnxMbgSgwPPGtpV2ICsUnabPageUETx=jnxMbgSgwPPGtpV2ICsUnabPageUETx, jnxMbgSgwGtpV2ICsNewPTSIAdbrTx=jnxMbgSgwGtpV2ICsNewPTSIAdbrTx, jnxMbgSgwSuspNotifRx=jnxMbgSgwSuspNotifRx, jnxMbgSgwPPV2VerNotSupRx=jnxMbgSgwPPV2VerNotSupRx, jnxMbgSgwIfGtpV2ICsNoMemRx=jnxMbgSgwIfGtpV2ICsNoMemRx, jnxMbgSgwDelBrRspTx=jnxMbgSgwDelBrRspTx, jnxMbgSgwIfGtpV2ICsSynErTADTx=jnxMbgSgwIfGtpV2ICsSynErTADTx, jnxMbgSgwIfIPProtoErrRx=jnxMbgSgwIfIPProtoErrRx, jnxMbgSgwIfGtpV1EchoRespRx=jnxMbgSgwIfGtpV1EchoRespRx, jnxMbgSgwPPGtpV2ICsInvLenTx=jnxMbgSgwPPGtpV2ICsInvLenTx, jnxMbgSgwSuspNotifTx=jnxMbgSgwSuspNotifTx, jnxMbgSgwPPGtpV2ICsColNWReqRx=jnxMbgSgwPPGtpV2ICsColNWReqRx, jnxMbgSgwIfGtpV2ICsCtxNotFndTx=jnxMbgSgwIfGtpV2ICsCtxNotFndTx, jnxMbgSgwIfGtpV1ErrIndRx=jnxMbgSgwIfGtpV1ErrIndRx, jnxMbgSgwPPDelConnSetReqTx=jnxMbgSgwPPDelConnSetReqTx, jnxMbgSgwPPGtpV1EchoRespTx=jnxMbgSgwPPGtpV1EchoRespTx, jnxMbgSgwPPGtpV2ICsServDeniedTx=jnxMbgSgwPPGtpV2ICsServDeniedTx, jnxMbgSgwGtpV2ICsUnknownTx=jnxMbgSgwGtpV2ICsUnknownTx, jnxMbgSgwPPDelConnSetReqRx=jnxMbgSgwPPDelConnSetReqRx, jnxMbgSgwIfDelIndTunRespTx=jnxMbgSgwIfDelIndTunRespTx, jnxMbgSgwIfPiggybackMsgRx=jnxMbgSgwIfPiggybackMsgRx, jnxMbgSgwIfDelBrCmdRx=jnxMbgSgwIfDelBrCmdRx, jnxMbgSgwGtpV1EchoRespRx=jnxMbgSgwGtpV1EchoRespRx, jnxMbgSgwPPGtpLclAddr=jnxMbgSgwPPGtpLclAddr, jnxMbgSgwPPGtpV2ICsPkFltSynErRx=jnxMbgSgwPPGtpV2ICsPkFltSynErRx, jnxMbgSgwPPGtpV2ICsRelocFailTx=jnxMbgSgwPPGtpV2ICsRelocFailTx, jnxMbgSgwGtpV2ICsAPNAcsDenRx=jnxMbgSgwGtpV2ICsAPNAcsDenRx, jnxMbgSgwIfGtpV2ICsUnknownTx=jnxMbgSgwIfGtpV2ICsUnknownTx, jnxMbgSgwPPDelSessRspRx=jnxMbgSgwPPDelSessRspRx, jnxMbgSgwPPGtpV2ICsNewPTNPrefTx=jnxMbgSgwPPGtpV2ICsNewPTNPrefTx, jnxMbgSgwV2EchoRespTx=jnxMbgSgwV2EchoRespTx, jnxMbgSgwPPGtpV2ICsVerNotSuppTx=jnxMbgSgwPPGtpV2ICsVerNotSuppTx, jnxMbgSgwResumeNotifTx=jnxMbgSgwResumeNotifTx, jnxMbgSgwPPCrtBrRspTx=jnxMbgSgwPPCrtBrRspTx, jnxMbgSgwPPGtpV2ICsGREKeyNtFdRx=jnxMbgSgwPPGtpV2ICsGREKeyNtFdRx, jnxMbgSgwPPGtpV2ICsManIEIncorRx=jnxMbgSgwPPGtpV2ICsManIEIncorRx, jnxMbgSgwIfDlDataNotifRx=jnxMbgSgwIfDlDataNotifRx, jnxMbgSgwIfDelConnSetReqRx=jnxMbgSgwIfDelConnSetReqRx, jnxMbgSgwGtpV2ICsAPNResTIncRx=jnxMbgSgwGtpV2ICsAPNResTIncRx, jnxMbgSgwIfGtpV1ProtocolErrRx=jnxMbgSgwIfGtpV1ProtocolErrRx, jnxMbgSgwIfUpdBrRspTx=jnxMbgSgwIfUpdBrRspTx, jnxMbgSgwPPGtpV2ICsTFTSysErrRx=jnxMbgSgwPPGtpV2ICsTFTSysErrRx)
mibBuilder.exportSymbols('JUNIPER-MOBILE-GATEWAY-SGW-GTP-MIB', jnxMbgSgwResumeNotifRx=jnxMbgSgwResumeNotifRx, jnxMbgSgwIfV2EchoReqRx=jnxMbgSgwIfV2EchoReqRx, jnxMbgSgwSuspAckTx=jnxMbgSgwSuspAckTx, jnxMbgSgwGtpV1EndMarkerRx=jnxMbgSgwGtpV1EndMarkerRx, jnxMbgSgwIfGtpV2ICsNoMemTx=jnxMbgSgwIfGtpV2ICsNoMemTx, jnxMbgSgwPPGtpV2ICsNPTSIAdbrRx=jnxMbgSgwPPGtpV2ICsNPTSIAdbrRx, jnxMbgSgwPPGtpV1EndMarkerTx=jnxMbgSgwPPGtpV1EndMarkerTx, jnxMbgSgwPPGtpV2ICsReqRejRx=jnxMbgSgwPPGtpV2ICsReqRejRx, jnxMbgSgwIfSuspAckRx=jnxMbgSgwIfSuspAckRx, jnxMbgSgwIfGtpV2ICsNoResRx=jnxMbgSgwIfGtpV2ICsNoResRx, jnxMbgSgwIfGtpV2ICsInvPrTx=jnxMbgSgwIfGtpV2ICsInvPrTx, jnxMbgSgwGtpV2ICsMisUnknAPNTx=jnxMbgSgwGtpV2ICsMisUnknAPNTx, jnxMbgSgwIfGtpV2ICsNPTSIAdbrTx=jnxMbgSgwIfGtpV2ICsNPTSIAdbrTx, jnxMbgSgwPPGtpV2ICsEIFRNCEnRx=jnxMbgSgwPPGtpV2ICsEIFRNCEnRx, jnxMbgSgwUpdConnSetReqRx=jnxMbgSgwUpdConnSetReqRx, jnxMbgSgwGtpV2ICsAllDynAdOccTx=jnxMbgSgwGtpV2ICsAllDynAdOccTx, jnxMbgSgwIfResumeNotifRx=jnxMbgSgwIfResumeNotifRx, jnxMbgSgwGtpV2ICsRATChgTx=jnxMbgSgwGtpV2ICsRATChgTx, jnxMbgSgwGtpV1ErrIndTx=jnxMbgSgwGtpV1ErrIndTx, jnxMbgSgwIfSuspNotifTx=jnxMbgSgwIfSuspNotifTx, jnxMbgSgwIfGtpV2ICsAlDynAdOccRx=jnxMbgSgwIfGtpV2ICsAlDynAdOccRx, jnxMbgSgwIfUnknMsgRx=jnxMbgSgwIfUnknMsgRx, jnxMbgSgwPPDlDataAckRx=jnxMbgSgwPPDlDataAckRx, jnxMbgSgwIfGtpV2ICsNoResTx=jnxMbgSgwIfGtpV2ICsNoResTx, jnxMbgSgwPPGtpV2ICsTFTSMANTErTx=jnxMbgSgwPPGtpV2ICsTFTSMANTErTx, jnxMbgSgwIfGtpV2ICsTFTSMANTErTx=jnxMbgSgwIfGtpV2ICsTFTSMANTErTx, jnxMbgSgwIfV2NumBytesRx=jnxMbgSgwIfV2NumBytesRx, jnxMbgSgwPPPacketSendFail=jnxMbgSgwPPPacketSendFail, jnxMbgSgwModBrRspRx=jnxMbgSgwModBrRspRx, jnxMbgSgwPPCrIndTunReqTx=jnxMbgSgwPPCrIndTunReqTx, jnxMbgSgwRelAcsBrReqRx=jnxMbgSgwRelAcsBrReqRx, jnxMbgSgwPPGtpV2ICsCondIEMsRx=jnxMbgSgwPPGtpV2ICsCondIEMsRx, jnxMbgSgwIfDelBrFlrIndRx=jnxMbgSgwIfDelBrFlrIndRx, jnxMbgSgwV2NumBytesRx=jnxMbgSgwV2NumBytesRx, jnxMbgSgwPPGtpV2ICsUENotRespRx=jnxMbgSgwPPGtpV2ICsUENotRespRx, jnxMbgSgwPPGtpV2ICsDtForNtSupTx=jnxMbgSgwPPGtpV2ICsDtForNtSupTx, jnxMbgSgwGtpNotificationVars=jnxMbgSgwGtpNotificationVars, jnxMbgSgwPPV2EchoRespRx=jnxMbgSgwPPV2EchoRespRx, jnxMbgSgwPPGtpV2ICsTFTSysErrTx=jnxMbgSgwPPGtpV2ICsTFTSysErrTx, jnxMbgSgwGtpV2ICsVerNotSuppTx=jnxMbgSgwGtpV2ICsVerNotSuppTx, jnxMbgSgwIfGtpV1EchoReqRx=jnxMbgSgwIfGtpV1EchoReqRx, jnxMbgSgwIfCreateSessRspTx=jnxMbgSgwIfCreateSessRspTx, jnxMbgSgwGtpPerPeerStatsEntry=jnxMbgSgwGtpPerPeerStatsEntry, jnxMbgSgwPPGtpV2ICsUnknownTx=jnxMbgSgwPPGtpV2ICsUnknownTx, jnxMbgSgwIfGtpV2ICsPTMSISigMMRx=jnxMbgSgwIfGtpV2ICsPTMSISigMMRx, jnxMbgSgwGtpGwIndex=jnxMbgSgwGtpGwIndex, jnxMbgSgwModBrCmdRx=jnxMbgSgwModBrCmdRx, jnxMbgSgwPPDelSessRspTx=jnxMbgSgwPPDelSessRspTx, jnxMbgSgwIfV2NumMsgRx=jnxMbgSgwIfV2NumMsgRx, jnxMbgSgwIfBrResCmdRx=jnxMbgSgwIfBrResCmdRx, jnxMbgSgwPPGtpV2ICsAllDynAdOcTx=jnxMbgSgwPPGtpV2ICsAllDynAdOcTx, jnxMbgSgwIfV2VerNotSupRx=jnxMbgSgwIfV2VerNotSupRx, jnxMbgSgwPPGtpV2ICsPageTx=jnxMbgSgwPPGtpV2ICsPageTx, jnxMbgSgwPPGtpV2ICsSemErTADTx=jnxMbgSgwPPGtpV2ICsSemErTADTx, jnxMbgSgwPPResumeAckRx=jnxMbgSgwPPResumeAckRx, jnxMbgSgwGtpV2ICsPTNotSuppTx=jnxMbgSgwGtpV2ICsPTNotSuppTx, jnxMbgSgwGtpV2ICsSysFailRx=jnxMbgSgwGtpV2ICsSysFailRx, jnxMbgSgwPPUnknMsgRx=jnxMbgSgwPPUnknMsgRx, jnxMbgSgwGtpV2ICsNOTFTUECTXTx=jnxMbgSgwGtpV2ICsNOTFTUECTXTx, jnxMbgSgwPPDelBrReqRx=jnxMbgSgwPPDelBrReqRx, jnxMbgSgwGtpV2ICsManIEMissRx=jnxMbgSgwGtpV2ICsManIEMissRx, jnxMbgSgwDelIndTunReqRx=jnxMbgSgwDelIndTunReqRx, jnxMbgSgwGtpV2ICsReqAcceptRx=jnxMbgSgwGtpV2ICsReqAcceptRx, jnxMbgSgwPPUpdBrRspRx=jnxMbgSgwPPUpdBrRspRx, jnxMbgSgwIfGtpV2ICsMisUnknAPNTx=jnxMbgSgwIfGtpV2ICsMisUnknAPNTx, jnxMbgSgwPPGtpV1ErrIndRx=jnxMbgSgwPPGtpV1ErrIndRx, jnxMbgSgwGtpPeerName=jnxMbgSgwGtpPeerName, jnxMbgSgwDelBrReqTx=jnxMbgSgwDelBrReqTx, jnxMbgSgwIfGtpV2ICsManIEIncorTx=jnxMbgSgwIfGtpV2ICsManIEIncorTx, jnxMbgSgwIfGtpV2ICsSemErTADRx=jnxMbgSgwIfGtpV2ICsSemErTADRx, jnxMbgSgwIfGtpV2ICsDenINRatRx=jnxMbgSgwIfGtpV2ICsDenINRatRx, jnxMbgSgwIfUpdBrRspRx=jnxMbgSgwIfUpdBrRspRx, jnxMbgSgwPPCrtBrReqRx=jnxMbgSgwPPCrtBrReqRx, jnxMbgSgwGtpV2ICsTFTSysErrTx=jnxMbgSgwGtpV2ICsTFTSysErrTx, jnxMbgSgwIfPcktLenErrRx=jnxMbgSgwIfPcktLenErrRx, jnxMbgSgwIfGtpV2ICsRelocFailTx=jnxMbgSgwIfGtpV2ICsRelocFailTx, jnxMbgSgwIfGtpV2ICsReqAcceptTx=jnxMbgSgwIfGtpV2ICsReqAcceptTx, jnxMbgSgwPPPiggybackMsgRx=jnxMbgSgwPPPiggybackMsgRx, jnxMbgSgwDelSessRspTx=jnxMbgSgwDelSessRspTx, jnxMbgSgwPPDelBrReqTx=jnxMbgSgwPPDelBrReqTx, jnxMbgSgwGtpV2ICsTFTSMANTErRx=jnxMbgSgwGtpV2ICsTFTSMANTErRx, jnxMbgSgwPPGtpV2ICsUERefusesTx=jnxMbgSgwPPGtpV2ICsUERefusesTx, jnxMbgSgwGtpV2ICsNoResRx=jnxMbgSgwGtpV2ICsNoResRx, jnxMbgSgwIfDelBrReqRx=jnxMbgSgwIfDelBrReqRx, jnxMbgSgwGtpV2ICsRMValRcvRx=jnxMbgSgwGtpV2ICsRMValRcvRx, jnxMbgSgwGtpV2ICsUnabPageUERx=jnxMbgSgwGtpV2ICsUnabPageUERx, jnxMbgSgwIfGtpV2ICsNewPTNPrefTx=jnxMbgSgwIfGtpV2ICsNewPTNPrefTx, jnxMbgSgwPPBrResCmdTx=jnxMbgSgwPPBrResCmdTx, jnxMbgSgwIfDlDataNotifTx=jnxMbgSgwIfDlDataNotifTx, jnxMbgSgwPacketAllocFail=jnxMbgSgwPacketAllocFail, jnxMbgSgwPPGtpV2ICsSemErTADRx=jnxMbgSgwPPGtpV2ICsSemErTADRx, jnxMbgSgwPPDlDataNotiFlrIndTx=jnxMbgSgwPPDlDataNotiFlrIndTx, jnxMbgSgwIfUpdConnSetRspTx=jnxMbgSgwIfUpdConnSetRspTx, jnxMbgSgwGtpV2ICsIMSINotKnTx=jnxMbgSgwGtpV2ICsIMSINotKnTx, jnxMbgSgwGtpV2ICsSemErTADRx=jnxMbgSgwGtpV2ICsSemErTADRx, jnxMbgSgwPPGtpV2ICsLclDetRx=jnxMbgSgwPPGtpV2ICsLclDetRx, jnxMbgSgwIfUpdConnSetReqTx=jnxMbgSgwIfUpdConnSetReqTx, jnxMbgSgwIfPacketSendFail=jnxMbgSgwIfPacketSendFail, jnxMbgSgwIfGtpV2ICsNPTSIAdbrRx=jnxMbgSgwIfGtpV2ICsNPTSIAdbrRx, jnxMbgSgwIfGtpV2ICsAcceptPartTx=jnxMbgSgwIfGtpV2ICsAcceptPartTx, jnxMbgSgwPPUpdConnSetRspRx=jnxMbgSgwPPUpdConnSetRspRx, jnxMbgSgwDelIndTunRespRx=jnxMbgSgwDelIndTunRespRx, jnxMbgSgwPPSuspNotifTx=jnxMbgSgwPPSuspNotifTx, jnxMbgSgwIfUpdConnSetRspRx=jnxMbgSgwIfUpdConnSetRspRx, jnxMbgSgwGtpV2ICsInvMsgFmtRx=jnxMbgSgwGtpV2ICsInvMsgFmtRx, jnxMbgSgwIfGtpV2ICsAPNAcsDenTx=jnxMbgSgwIfGtpV2ICsAPNAcsDenTx, jnxMbgSgwDelBrFlrIndTx=jnxMbgSgwDelBrFlrIndTx, jnxMbgSgwIfIndex=jnxMbgSgwIfIndex, jnxMbgSgwGtpV1T3RespTmrExpRx=jnxMbgSgwGtpV1T3RespTmrExpRx, jnxMbgSgwPPCreateSessRspTx=jnxMbgSgwPPCreateSessRspTx, jnxMbgSgwPPDelBrCmdTx=jnxMbgSgwPPDelBrCmdTx, jnxMbgSgwIfStopPagingIndTx=jnxMbgSgwIfStopPagingIndTx, jnxMbgSgwPPGtpV2ICsRelocFailRx=jnxMbgSgwPPGtpV2ICsRelocFailRx, jnxMbgSgwPPGtpV2ICsInvMsgFmtTx=jnxMbgSgwPPGtpV2ICsInvMsgFmtTx, jnxMbgSgwIfGtpV2ICsDenINRatTx=jnxMbgSgwIfGtpV2ICsDenINRatTx, jnxMbgSgwPPGtpV2ICsISRDeactRx=jnxMbgSgwPPGtpV2ICsISRDeactRx, jnxMbgSgwPPBrResCmdRx=jnxMbgSgwPPBrResCmdRx, jnxMbgSgwPPGtpV2ICsNoResTx=jnxMbgSgwPPGtpV2ICsNoResTx, jnxMbgSgwPPGtpV2ICsAllDynAdOcRx=jnxMbgSgwPPGtpV2ICsAllDynAdOcRx, jnxMbgSgwIfGtpV2ICsDtForNtSupTx=jnxMbgSgwIfGtpV2ICsDtForNtSupTx, jnxMbgSgwIfV2NumMsgTx=jnxMbgSgwIfV2NumMsgTx, jnxMbgSgwIfGtpV2ICsInvLenTx=jnxMbgSgwIfGtpV2ICsInvLenTx, jnxMbgSgwDlDataNotiFlrIndTx=jnxMbgSgwDlDataNotiFlrIndTx, jnxMbgSgwIfGtpV2ICsRPrNtRspTx=jnxMbgSgwIfGtpV2ICsRPrNtRspTx, jnxMbgSgwGtpV2ICsDeniedINRatTx=jnxMbgSgwGtpV2ICsDeniedINRatTx, jnxMbgSgwGtpV2ICsProtoNtSupRx=jnxMbgSgwGtpV2ICsProtoNtSupRx, jnxMbgSgwPPModBrFlrIndRx=jnxMbgSgwPPModBrFlrIndRx, jnxMbgSgwV2VerNotSupRx=jnxMbgSgwV2VerNotSupRx, jnxMbgSgwPPGtpV1EndMarkerRx=jnxMbgSgwPPGtpV1EndMarkerRx, jnxMbgSgwGtpV2ICsISRDeactTx=jnxMbgSgwGtpV2ICsISRDeactTx, jnxMbgSgwGtpV2ICsServDeniedRx=jnxMbgSgwGtpV2ICsServDeniedRx, jnxMbgSgwIfDlDataNotiFlrIndTx=jnxMbgSgwIfDlDataNotiFlrIndTx, jnxMbgSgwCrIndTunReqTx=jnxMbgSgwCrIndTunReqTx, jnxMbgSgwGtpV2ICsUserAUTHFlTx=jnxMbgSgwGtpV2ICsUserAUTHFlTx, jnxMbgSgwPPV2NumBytesRx=jnxMbgSgwPPV2NumBytesRx, jnxMbgSgwS4PiggybackMsgRx=jnxMbgSgwS4PiggybackMsgRx, jnxMbgSgwIfDlDataAckTx=jnxMbgSgwIfDlDataAckTx, jnxMbgSgwIfGtpV2ICsGREKeyNtFdRx=jnxMbgSgwIfGtpV2ICsGREKeyNtFdRx, jnxMbgSgwGtpV2ICsISRDeactRx=jnxMbgSgwGtpV2ICsISRDeactRx, jnxMbgSgwIfDelSessReqTx=jnxMbgSgwIfDelSessReqTx, jnxMbgSgwIfRelAcsBrReqTx=jnxMbgSgwIfRelAcsBrReqTx, jnxMbgSgwDelSessRspRx=jnxMbgSgwDelSessRspRx, jnxMbgSgwPPModBrRspTx=jnxMbgSgwPPModBrRspTx, jnxMbgSgwIfV2EchoRespRx=jnxMbgSgwIfV2EchoRespRx, jnxMbgSgwBrResCmdRx=jnxMbgSgwBrResCmdRx, jnxMbgSgwPPGtpV2ICsAPNResTIncTx=jnxMbgSgwPPGtpV2ICsAPNResTIncTx, jnxMbgSgwPPGtpV2ICsInvTotLenRx=jnxMbgSgwPPGtpV2ICsInvTotLenRx, jnxMbgSgwGtpV2ICsUnPgUESusRx=jnxMbgSgwGtpV2ICsUnPgUESusRx, jnxMbgSgwIfGtpV2ICsOptIEIncorTx=jnxMbgSgwIfGtpV2ICsOptIEIncorTx, jnxMbgSgwGtpV2ICsCmpDetTx=jnxMbgSgwGtpV2ICsCmpDetTx, jnxMbgSgwModBrFlrIndRx=jnxMbgSgwModBrFlrIndRx, jnxMbgSgwIfGtpV2ICsRMValRcvTx=jnxMbgSgwIfGtpV2ICsRMValRcvTx, jnxMbgSgwGtpCPerPeerStatsTable=jnxMbgSgwGtpCPerPeerStatsTable, jnxMbgSgwGtpInterfaceType=jnxMbgSgwGtpInterfaceType, jnxMbgSgwPPGtpV2ICsServNotSupTx=jnxMbgSgwPPGtpV2ICsServNotSupTx, jnxMbgSgwPPBrResFlrIndRx=jnxMbgSgwPPBrResFlrIndRx, jnxMbgSgwIfGtpV2ICsCondIEMsRx=jnxMbgSgwIfGtpV2ICsCondIEMsRx, jnxMbgSgwIfGtpV2ICsAPNResTIncTx=jnxMbgSgwIfGtpV2ICsAPNResTIncTx, jnxMbgSgwIfGtpV2ICsISRDeactTx=jnxMbgSgwIfGtpV2ICsISRDeactTx, jnxMbgSgwUpdBrReqRx=jnxMbgSgwUpdBrReqRx, jnxMbgSgwV2EchoRespRx=jnxMbgSgwV2EchoRespRx, jnxMbgSgwIfGtpV2ICsUnabPageUETx=jnxMbgSgwIfGtpV2ICsUnabPageUETx, jnxMbgSgwV2NumBytesTx=jnxMbgSgwV2NumBytesTx, jnxMbgSgwIfBrResFlrIndTx=jnxMbgSgwIfBrResFlrIndTx, jnxMbgSgwPPCreateSessRspRx=jnxMbgSgwPPCreateSessRspRx, jnxMbgSgwPPGtpV2ICsReqAcceptTx=jnxMbgSgwPPGtpV2ICsReqAcceptTx, jnxMbgSgwIfGtpV2ICsVerNotSuppRx=jnxMbgSgwIfGtpV2ICsVerNotSuppRx, jnxMbgSgwPPGtpV2ICsReqRejTx=jnxMbgSgwPPGtpV2ICsReqRejTx, jnxMbgSgwIfT3RespTmrExpRx=jnxMbgSgwIfT3RespTmrExpRx, jnxMbgSgwPPUpdConnSetRspTx=jnxMbgSgwPPUpdConnSetRspTx, jnxMbgSgwPPGtpRmtAddr=jnxMbgSgwPPGtpRmtAddr, jnxMbgSgwGtpGlbStatsEntry=jnxMbgSgwGtpGlbStatsEntry, jnxMbgSgwGtpV2ICsEIFRNCEnRx=jnxMbgSgwGtpV2ICsEIFRNCEnRx, jnxMbgSgwIfCrIndTunRespRx=jnxMbgSgwIfCrIndTunRespRx, jnxMbgSgwGtpV2ICsRPrNtRspRx=jnxMbgSgwGtpV2ICsRPrNtRspRx, jnxMbgSgwPPGtpRtgInst=jnxMbgSgwPPGtpRtgInst)
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file")
BAZEL_INSTALLER = struct(
revision = "4.0.0",
sha256 = "bd7a3a583a18640f58308c26e654239d412adaa833b6b6a7b57a216ab62fabc2",
)
DEBS_TARBALL = struct(
revision = "1608132805",
sha256 = "7ed2d4869f19c11d8c39345bd75f908a51410bf4e512e9fc368ad0c2bbf43e28",
)
def deps():
"""Download deps"""
excludes = native.existing_rules().keys()
if "ubuntu1604_bazel_installer" not in excludes:
http_file(
name = "ubuntu1604_bazel_installer",
downloaded_file_path = "bazel-installer.sh",
sha256 = BAZEL_INSTALLER.sha256,
urls = [
"https://releases.bazel.build/" + BAZEL_INSTALLER.revision + "/release/bazel-" + BAZEL_INSTALLER.revision + "-installer-linux-x86_64.sh",
"https://github.com/bazelbuild/bazel/releases/download/" + BAZEL_INSTALLER.revision + "/bazel-" + BAZEL_INSTALLER.revision + "-installer-linux-x86_64.sh",
],
)
if "ubuntu1604_bazel_debs" not in excludes:
http_file(
name = "ubuntu1604_bazel_debs",
downloaded_file_path = DEBS_TARBALL.revision + "_bazel_debs.tar",
sha256 = DEBS_TARBALL.sha256,
urls = [
"https://storage.googleapis.com/layer-deps/ubuntu1604/bazel/debs/" + DEBS_TARBALL.revision + "_bazel_debs.tar",
],
)
|
load('@bazel_tools//tools/build_defs/repo:http.bzl', 'http_file')
bazel_installer = struct(revision='4.0.0', sha256='bd7a3a583a18640f58308c26e654239d412adaa833b6b6a7b57a216ab62fabc2')
debs_tarball = struct(revision='1608132805', sha256='7ed2d4869f19c11d8c39345bd75f908a51410bf4e512e9fc368ad0c2bbf43e28')
def deps():
"""Download deps"""
excludes = native.existing_rules().keys()
if 'ubuntu1604_bazel_installer' not in excludes:
http_file(name='ubuntu1604_bazel_installer', downloaded_file_path='bazel-installer.sh', sha256=BAZEL_INSTALLER.sha256, urls=['https://releases.bazel.build/' + BAZEL_INSTALLER.revision + '/release/bazel-' + BAZEL_INSTALLER.revision + '-installer-linux-x86_64.sh', 'https://github.com/bazelbuild/bazel/releases/download/' + BAZEL_INSTALLER.revision + '/bazel-' + BAZEL_INSTALLER.revision + '-installer-linux-x86_64.sh'])
if 'ubuntu1604_bazel_debs' not in excludes:
http_file(name='ubuntu1604_bazel_debs', downloaded_file_path=DEBS_TARBALL.revision + '_bazel_debs.tar', sha256=DEBS_TARBALL.sha256, urls=['https://storage.googleapis.com/layer-deps/ubuntu1604/bazel/debs/' + DEBS_TARBALL.revision + '_bazel_debs.tar'])
|
if __name__ == '__main__':
n = int(input())
s = set()
for i in range (n):
s.add(input())
print((len(s)))
|
if __name__ == '__main__':
n = int(input())
s = set()
for i in range(n):
s.add(input())
print(len(s))
|
"""
Functions to anglicize integers in the range 1..19
This is a simple example for now. We will see a more complex
version of this later.
Author: Walker M. White
Date: March 30, 2019
"""
def anglicize(n):
"""
Returns: English equiv of n.
Parameter: the integer to anglicize
Precondition: n in 1..19
"""
if n == 1:
return 'one'
elif n == 2:
return 'two'
elif n == 3:
return 'three'
elif n == 4:
return 'four'
elif n == 5:
return 'five'
elif n == 6:
return 'six'
elif n == 7:
return 'seven'
elif n == 8:
return 'eight'
elif n == 9:
return 'nine'
elif n == 10:
return 'ten'
elif n == 11:
return 'eleven'
elif n == 12:
return 'twelve'
elif n == 13:
return 'thirteen'
elif n == 14:
return 'fourteen'
elif n == 15:
return 'fifteen'
elif n == 16:
return 'sixteen'
elif n == 17:
return 'seventeen'
elif n == 18:
return 'eighteen'
# n = 19
return 'nineteen'
|
"""
Functions to anglicize integers in the range 1..19
This is a simple example for now. We will see a more complex
version of this later.
Author: Walker M. White
Date: March 30, 2019
"""
def anglicize(n):
"""
Returns: English equiv of n.
Parameter: the integer to anglicize
Precondition: n in 1..19
"""
if n == 1:
return 'one'
elif n == 2:
return 'two'
elif n == 3:
return 'three'
elif n == 4:
return 'four'
elif n == 5:
return 'five'
elif n == 6:
return 'six'
elif n == 7:
return 'seven'
elif n == 8:
return 'eight'
elif n == 9:
return 'nine'
elif n == 10:
return 'ten'
elif n == 11:
return 'eleven'
elif n == 12:
return 'twelve'
elif n == 13:
return 'thirteen'
elif n == 14:
return 'fourteen'
elif n == 15:
return 'fifteen'
elif n == 16:
return 'sixteen'
elif n == 17:
return 'seventeen'
elif n == 18:
return 'eighteen'
return 'nineteen'
|
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution:
def distanceK(self, root, target, K):
"""
:type root: TreeNode
:type target: TreeNode
:type K: int
:rtype: List[int]
"""
|
class Solution:
def distance_k(self, root, target, K):
"""
:type root: TreeNode
:type target: TreeNode
:type K: int
:rtype: List[int]
"""
|
# -*- coding:utf-8 -*-
# @Time:2020/6/15 11:38
# @Author:TimVan
# @File:leetcode.py
# @Software:PyCharm
# Definition for singly-linked list.
# for j in range(10, 5, -1):
# print(j)
print('a'.find(' '))
|
print('a'.find(' '))
|
arguments = ["self", "info", "args"]
helpstring = "lurk"
minlevel = 3
def main(connection, info, args) :
"""Deops and voices the sender"""
connection.rawsend("MODE %s -o+v %s %s\n" % (info["channel"], info["sender"], info["sender"]))
|
arguments = ['self', 'info', 'args']
helpstring = 'lurk'
minlevel = 3
def main(connection, info, args):
"""Deops and voices the sender"""
connection.rawsend('MODE %s -o+v %s %s\n' % (info['channel'], info['sender'], info['sender']))
|
def main():
a = ["a", 1, "5", 2.3, 1.2j]
some_condition = True
for x in a:
# If it's all isinstance, we can use a type switch
if isinstance(x, (str, float)):
print("String or float!")
elif isinstance(x, int):
print("Integer!")
else:
print("Dunno!")
print(":)")
# If it's got mixed expressions, we will inline a switch for the isinstance expression
if isinstance(x, str) and some_condition:
print("String")
elif isinstance(x, int):
print("Integer!")
else:
print("Dunno!!")
print(":O")
if __name__ == '__main__':
main()
|
def main():
a = ['a', 1, '5', 2.3, 1.2j]
some_condition = True
for x in a:
if isinstance(x, (str, float)):
print('String or float!')
elif isinstance(x, int):
print('Integer!')
else:
print('Dunno!')
print(':)')
if isinstance(x, str) and some_condition:
print('String')
elif isinstance(x, int):
print('Integer!')
else:
print('Dunno!!')
print(':O')
if __name__ == '__main__':
main()
|
"""
Created By: Alex J. Gatz
Date: 06/07/2018
This is some code playing with the usage of a python
"Generator" which is really very cool. Another use case
I want to play with is properly ordering installation of
packages to ensure that if there are dependencies that they are installed in the proper order.
Created a recursive fibonacci function.
"""
# Fibonacci generator
def fibonacci(n):
a, b, counter = 0, 1, 0
while True:
if (counter > n):
return
yield a
a, b = b, a + b
counter += 1
# How many values donyou want?
f = fibonacci(30)
# Iterate multiple calls of the fibonacci generator
for x in f:
print(x, " ", end="")
|
"""
Created By: Alex J. Gatz
Date: 06/07/2018
This is some code playing with the usage of a python
"Generator" which is really very cool. Another use case
I want to play with is properly ordering installation of
packages to ensure that if there are dependencies that they are installed in the proper order.
Created a recursive fibonacci function.
"""
def fibonacci(n):
(a, b, counter) = (0, 1, 0)
while True:
if counter > n:
return
yield a
(a, b) = (b, a + b)
counter += 1
f = fibonacci(30)
for x in f:
print(x, ' ', end='')
|
___assertIs(isinstance(True, bool), True)
___assertIs(isinstance(False, bool), True)
___assertIs(isinstance(True, int), True)
___assertIs(isinstance(False, int), True)
___assertIs(isinstance(1, bool), False)
___assertIs(isinstance(0, bool), False)
|
___assert_is(isinstance(True, bool), True)
___assert_is(isinstance(False, bool), True)
___assert_is(isinstance(True, int), True)
___assert_is(isinstance(False, int), True)
___assert_is(isinstance(1, bool), False)
___assert_is(isinstance(0, bool), False)
|
# -*- coding: utf-8 -*-
"""Top-level package for stocks."""
__author__ = """Jianye Xu"""
__email__ = 'jianye.xu.stats@gmail.com'
__version__ = '0.1.0'
|
"""Top-level package for stocks."""
__author__ = 'Jianye Xu'
__email__ = 'jianye.xu.stats@gmail.com'
__version__ = '0.1.0'
|
"""
Replace With Alphabet Position
Welcome.
In this kata you are required to, given a string, replace every letter with its position in the alphabet.
If anything in the text isn't a letter, ignore it and don't return it.
"a" = 1, "b" = 2, etc.
Example
alphabet_position("The sunset sets at twelve o' clock.")
Should return "20 8 5 19 21 14 19 5 20 19 5 20 19 1 20 20 23 5 12 22 5 15 3 12 15 3 11" (as a string)
"""
def alphabet_position(text):
alphabet = 'abcdefghijklmnopqrstuvwxyz'
return ' '.join(str(alphabet.find(char)+1) for char in text.casefold() if char in alphabet)
|
"""
Replace With Alphabet Position
Welcome.
In this kata you are required to, given a string, replace every letter with its position in the alphabet.
If anything in the text isn't a letter, ignore it and don't return it.
"a" = 1, "b" = 2, etc.
Example
alphabet_position("The sunset sets at twelve o' clock.")
Should return "20 8 5 19 21 14 19 5 20 19 5 20 19 1 20 20 23 5 12 22 5 15 3 12 15 3 11" (as a string)
"""
def alphabet_position(text):
alphabet = 'abcdefghijklmnopqrstuvwxyz'
return ' '.join((str(alphabet.find(char) + 1) for char in text.casefold() if char in alphabet))
|
# Copyright (c) 2013 Huan Do, http://huan.do
class Declaration(object):
def __init__(self, name):
self.name = name
self.delete = False
self._conditional = None
@property
def conditional(self):
assert self._conditional is not None
return self.delete or self._conditional
def generator():
_ = '_'
while True:
# yield Declaration('_' + str(len(_)))
yield Declaration(_)
_ += '_'
|
class Declaration(object):
def __init__(self, name):
self.name = name
self.delete = False
self._conditional = None
@property
def conditional(self):
assert self._conditional is not None
return self.delete or self._conditional
def generator():
_ = '_'
while True:
yield declaration(_)
_ += '_'
|
"""
3.Question 3
In this programming problem you'll code up Prim's minimum spanning tree algorithm.
This file (edges.txt) describes an undirected graph with integer edge costs. It has the format
[number_of_nodes] [number_of_edges]
[one_node_of_edge_1] [other_node_of_edge_1] [edge_1_cost]
[one_node_of_edge_2] [other_node_of_edge_2] [edge_2_cost]
...
For example, the third line of the file is "2 3 -8874", indicating that there is an edge connecting vertex #2 and vertex #3 that has cost -8874.
You should NOT assume that edge costs are positive, nor should you assume that they are distinct.
Your task is to run Prim's minimum spanning tree algorithm on this graph. You should report the overall cost of a minimum spanning tree --- an integer, which may or may not be negative --- in the box below.
IMPLEMENTATION NOTES: This graph is small enough that the straightforward O(mn) time implementation of Prim's algorithm should work fine. OPTIONAL: For those of you seeking an additional challenge, try implementing a heap-based version. The simpler approach, which should already give you a healthy speed-up, is to maintain relevant edges in a heap (with keys = edge costs). The superior approach stores the unprocessed vertices in the heap, as described in lecture. Note this requires a heap that supports deletions, and you'll probably need to maintain some kind of mapping between vertices and their positions in the heap.
"""
class Node(object):
def __init__(self, index):
self.index = index
self.connections = []
def dataReader(filePath):
with open(filePath) as f:
data = f.readlines()
for index, item in enumerate(data):
if index == 0:
numNodes, numEdges = list(map(int, item.split()))
nodes = [Node(index) for index in range(numNodes + 1)]
else:
node1, node2, cost = list(map(int, item.split()))
nodes[node1].connections.append((node2, cost))
nodes[node2].connections.append((node1, cost))
return numNodes, numEdges, nodes
def PRIM_minimumSpanningTree(nodes):
totalCost = 0
visited = [False] * len(nodes)
visitedNodes = []
# randomly choose starting node, here choose node 1
visited[1] = True
visitedNodes.append(nodes[1])
while len(visitedNodes) != len(nodes) - 1:
minCost = None
minNode = None
# using Brute Force to search the minimum cost
for node in visitedNodes:
for otherNodeIndex, otherCost in node.connections:
if not visited[otherNodeIndex] and (minCost == None or otherCost < minCost):
minCost = otherCost
minNode = nodes[otherNodeIndex]
if minNode:
visited[minNode.index] = True
visitedNodes.append(minNode)
totalCost += minCost
else:
break
if len(visitedNodes) == len(nodes) - 1:
print("The graph is connected.")
else:
print("The graph is not connected.")
return totalCost
def main():
filePath = "data/edges.txt"
numNodes, numEdges, nodes = dataReader(filePath)
totalCost = PRIM_minimumSpanningTree(nodes)
print("Total cost of MST: ", totalCost)
if __name__ == "__main__":
main()
|
"""
3.Question 3
In this programming problem you'll code up Prim's minimum spanning tree algorithm.
This file (edges.txt) describes an undirected graph with integer edge costs. It has the format
[number_of_nodes] [number_of_edges]
[one_node_of_edge_1] [other_node_of_edge_1] [edge_1_cost]
[one_node_of_edge_2] [other_node_of_edge_2] [edge_2_cost]
...
For example, the third line of the file is "2 3 -8874", indicating that there is an edge connecting vertex #2 and vertex #3 that has cost -8874.
You should NOT assume that edge costs are positive, nor should you assume that they are distinct.
Your task is to run Prim's minimum spanning tree algorithm on this graph. You should report the overall cost of a minimum spanning tree --- an integer, which may or may not be negative --- in the box below.
IMPLEMENTATION NOTES: This graph is small enough that the straightforward O(mn) time implementation of Prim's algorithm should work fine. OPTIONAL: For those of you seeking an additional challenge, try implementing a heap-based version. The simpler approach, which should already give you a healthy speed-up, is to maintain relevant edges in a heap (with keys = edge costs). The superior approach stores the unprocessed vertices in the heap, as described in lecture. Note this requires a heap that supports deletions, and you'll probably need to maintain some kind of mapping between vertices and their positions in the heap.
"""
class Node(object):
def __init__(self, index):
self.index = index
self.connections = []
def data_reader(filePath):
with open(filePath) as f:
data = f.readlines()
for (index, item) in enumerate(data):
if index == 0:
(num_nodes, num_edges) = list(map(int, item.split()))
nodes = [node(index) for index in range(numNodes + 1)]
else:
(node1, node2, cost) = list(map(int, item.split()))
nodes[node1].connections.append((node2, cost))
nodes[node2].connections.append((node1, cost))
return (numNodes, numEdges, nodes)
def prim_minimum_spanning_tree(nodes):
total_cost = 0
visited = [False] * len(nodes)
visited_nodes = []
visited[1] = True
visitedNodes.append(nodes[1])
while len(visitedNodes) != len(nodes) - 1:
min_cost = None
min_node = None
for node in visitedNodes:
for (other_node_index, other_cost) in node.connections:
if not visited[otherNodeIndex] and (minCost == None or otherCost < minCost):
min_cost = otherCost
min_node = nodes[otherNodeIndex]
if minNode:
visited[minNode.index] = True
visitedNodes.append(minNode)
total_cost += minCost
else:
break
if len(visitedNodes) == len(nodes) - 1:
print('The graph is connected.')
else:
print('The graph is not connected.')
return totalCost
def main():
file_path = 'data/edges.txt'
(num_nodes, num_edges, nodes) = data_reader(filePath)
total_cost = prim_minimum_spanning_tree(nodes)
print('Total cost of MST: ', totalCost)
if __name__ == '__main__':
main()
|
description = 'Verify the user can add an action to the teardown'
pages = ['common',
'index',
'tests',
'test_builder']
def setup(data):
common.access_golem(data.env.url, data.env.admin)
index.create_access_project('test')
common.navigate_menu('Tests')
tests.create_access_random_test()
def test(data):
test_builder.add_action('click', where='teardown')
test_builder.save_test()
refresh_page()
test_builder.verify_last_action('click', where='teardown')
|
description = 'Verify the user can add an action to the teardown'
pages = ['common', 'index', 'tests', 'test_builder']
def setup(data):
common.access_golem(data.env.url, data.env.admin)
index.create_access_project('test')
common.navigate_menu('Tests')
tests.create_access_random_test()
def test(data):
test_builder.add_action('click', where='teardown')
test_builder.save_test()
refresh_page()
test_builder.verify_last_action('click', where='teardown')
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.