content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
mys1 = {1,2,3,4}
mys2 = {1,2,3,4,5,6}
print(mys2.issuperset(mys1)) # ISUP1
mys3 = {'a','b','c','d'}
mys4 = {'d','w','f','g'}
mys5 = {'a','b', 'c', 'd','v','w','x','z'}
print(mys3.issuperset(mys4)) # ISUP2
print(mys4.issuperset(mys5)) # ISUP3
print(mys5.issuperset(mys3)) # ISUP4 | mys1 = {1, 2, 3, 4}
mys2 = {1, 2, 3, 4, 5, 6}
print(mys2.issuperset(mys1))
mys3 = {'a', 'b', 'c', 'd'}
mys4 = {'d', 'w', 'f', 'g'}
mys5 = {'a', 'b', 'c', 'd', 'v', 'w', 'x', 'z'}
print(mys3.issuperset(mys4))
print(mys4.issuperset(mys5))
print(mys5.issuperset(mys3)) |
fa=open('MGI_HGNC_homologene.rpt')
L={}
fa.readline()
for line in fa:
seq=line.rstrip().split('\t')
try:
l= abs(float(seq[11])-float(seq[12]))
L[seq[1]]=l
except Exception as e:
pass
fi=open('GSE109125_Gene_count_table.csv.uniq')
fo=open('GSE109125_Gene_count_table.csv.uniq.rpk','w')
fo.write(fi.readline())
for line in fi:
seq=line.rstrip().split('\t')
if seq[0] in L:
l=L[seq[0]]
fo.write(seq[0])
for one in seq[1:]:
rpk=float(one)/l * 1000
fo.write('\t'+str(rpk))
fo.write('\n')
| fa = open('MGI_HGNC_homologene.rpt')
l = {}
fa.readline()
for line in fa:
seq = line.rstrip().split('\t')
try:
l = abs(float(seq[11]) - float(seq[12]))
L[seq[1]] = l
except Exception as e:
pass
fi = open('GSE109125_Gene_count_table.csv.uniq')
fo = open('GSE109125_Gene_count_table.csv.uniq.rpk', 'w')
fo.write(fi.readline())
for line in fi:
seq = line.rstrip().split('\t')
if seq[0] in L:
l = L[seq[0]]
fo.write(seq[0])
for one in seq[1:]:
rpk = float(one) / l * 1000
fo.write('\t' + str(rpk))
fo.write('\n') |
#
# @lc app=leetcode id=215 lang=python3
#
# [215] Kth Largest Element in an Array
#
# https://leetcode.com/problems/kth-largest-element-in-an-array/description/
#
# algorithms
# Medium (59.69%)
# Likes: 6114
# Dislikes: 378
# Total Accepted: 944.8K
# Total Submissions: 1.6M
# Testcase Example: '[3,2,1,5,6,4]\n2'
#
# Given an integer array nums and an integer k, return the k^th largest element
# in the array.
#
# Note that it is the k^th largest element in the sorted order, not the k^th
# distinct element.
#
#
# Example 1:
# Input: nums = [3,2,1,5,6,4], k = 2
# Output: 5
# Example 2:
# Input: nums = [3,2,3,1,2,4,5,5,6], k = 4
# Output: 4
#
#
# Constraints:
#
#
# 1 <= k <= nums.length <= 10^4
# -10^4 <= nums[i] <= 10^4
#
#
#
# @lc code=start
class Solution:
def findKthLargest(self, nums: List[int], k: int) -> int:
nums.sort()
return nums[-k]
# @lc code=end
| class Solution:
def find_kth_largest(self, nums: List[int], k: int) -> int:
nums.sort()
return nums[-k] |
blog_list = [
{"date": "Dec 2018",
"title": "Starcraft II A.I. Bot",
"content": "Industria is a mixture of role-based A.I. with an deep learning decision process enhancement. While most of it's actions are scripted, it decides about an army composition.",
"keywords": ['starcraft-ii','bot','artificial-intelligence','q-learning','reinforcement-learning'],
"img": "https://user-images.githubusercontent.com/26208598/47260876-9d6ded00-d4bb-11e8-94bd-3d718231d34b.PNG",
"link": "https://github.com/LukaszMalucha/Starcraf2-A.I.-Bot"
},
{"date": "Feb 2019",
"title": "Twitter Dashboard",
"content": "Project Goal was to create fully functional interface for Twitter API. Flask App allows user to find out what is currently trending and extract data sample to MongoDB. "
"Once data sample is extracted, next step is to pre-process it and load to SQL database. Final step is to apply "
"Keras LSTM model on processed tweets to find out what's the dominating sentiment among conversation participants - positive, negative or neutral.",
"keywords": [
'twitter-api',
'mongodb',
'sentiment-analysis',
'flask',
'python',
],
"img": "https://user-images.githubusercontent.com/26208598/48212361-5749d200-e373-11e8-9e1c-de0939c4b5b0.PNG",
"link": "https://github.com/LukaszMalucha/Twitter-Flask"
},
{"date": "Feb 2019",
"title": "ML Library Project",
"content": "Goal of the project is to create robust, fully-responsive, open-source URL platform where user will be "
"able to find information about particular machine learning algorithm. Data will be easily accessible and in the compact form. "
"It will be ML cheat sheet in a form of a website. Project will be stored on GitHub.",
"keywords": [
'html',
'css',
'bootstrap',
'material-design',
],
"img": "https://user-images.githubusercontent.com/26208598/45377204-cfa14a80-b5f1-11e8-88a5-106b311f541f.JPG",
"link": "https://github.com/LukaszMalucha/ML-Library"
},
{"date": "Feb 2019",
"title": "RestBank API",
"content": "Django RESTful banking application for asset management. With integrated Token authorization and view permissions App allows bank customer safely interact with his Asset Portfolio. "
"User can buy and sell financial instruments, top up his cash balance. It also allows bank staff members to create or delete available instruments and also update current price.",
"keywords": [
'django-rest -framework',
'python',
'banking',
'django'
],
"img": "https://user-images.githubusercontent.com/26208598/53289476-45f3cc80-378e-11e9-8c19-36568d8f95ed.JPG",
"link": "https://github.com/LukaszMalucha/RESTBank-App"
},
{"date": "Mar 2019",
"title": "Springboard Analytics",
"content": "Django App that allows user to: Scrape and clean course data from Springboardcourses.ie. "
"Visualize course data in order to get some useful insights. Apply machine learning apriori algorithm on gathered information. "
"Extract course data from Django Postgres db with a handy RESTful Backend.",
"keywords": [
'django'
'data-preprocessing',
'rest-api',
'restful-api',
'rest',
'pandas',
'django-rest-framework'
],
"img": "https://user-images.githubusercontent.com/26208598/53902093-57fc2780-4038-11e9-81db-517067de0c2f.jpg",
"link": "https://github.com/LukaszMalucha/Springboard-Insights"
},
{"date": "Mar 2019",
"title": "Data Labs with Python & Tableau",
"content": "What is a current value of you property? We'll determine most attractive investments in the area. "
"Also we'll answer the question what's the ultimate toolbox for Data Science based on scraped Linkedin profiles.",
"keywords": [
'tableau',
'django',
'pandas',
'restful-api',
'machine-learning'
],
"img": "https://user-images.githubusercontent.com/26208598/54075691-1f5b8880-429a-11e9-8919-baf9744a40b4.JPG",
"link": "https://github.com/LukaszMalucha/Data-Labs-with-Python-Tableau"
},
{"date": "Mar 2019",
"title": "Project Management Dashboard",
"content": "Project management Dashboard made with Django."
" This Project is a simulation of work environment, "
"where more traditional agile techniques are blended with key gamification concepts of 'reward' and 'role'. ",
"keywords": [
'django',
'agile',
'project-management',
'docker',
'postgresql',
'python',
'heroku',
'gamification',
],
"img": "https://user-images.githubusercontent.com/26208598/54495673-ecd70e80-48dd-11e9-81b4-7c8634ed8a6a.JPG",
"link": "https://github.com/LukaszMalucha/Project-Dashboard-with-Django"
},
{"date": "Mar 2019",
"title": "Twitter API Dashboard",
"content": "Flask application hosting Twitter API. Main functionality allows user to find out what is currently trending and extract data sample to MongoDB. Once data sample is extracted, next step is to pre-process it and load to SQL database. "
"Final step is to apply Keras LSTM model on processed tweets to find out what's the dominating sentiment among conversation participants - positive, negative or neutral.",
"keywords": [
'flask',
'twitter',
'sentiment-analysis',
'selenium',
'api',
'python',
'tweepy',
],
"img": "https://user-images.githubusercontent.com/26208598/52292307-57ef0600-296c-11e9-872b-f8ccdf31c024.JPG",
"link": "https://github.com/LukaszMalucha/Twitter-API-Dashboard"
},
{"date": "Apr 2019",
"title": "Geocoder IE",
"content": "Coding Assignment. We received list of approx. "
"3000 Irish addresses from one of our Customers. Our customer wants those addresses to be geocoded. "
"Regarding accuracy they expect each geocode to be accurate at least at county level. ",
"keywords": [
'geocoder',
'dataset',
'pandas',
'geocode-data',
'flask',
'leafletjs',
'csv',
'rest-api',
],
"img": "https://user-images.githubusercontent.com/26208598/55428834-e4d7c980-5581-11e9-991a-da9bf0a1a9f5.JPG",
"link": "https://github.com/LukaszMalucha/Geocoder-IE"
},
{"date": "Apr 2019",
"title": "Flask Js Survey",
"content": "It's hard to decide if you have so many different algorithms to your disposal. But with certain information given about analyzed dataset, "
"we can narrow that choice to few best matches. Project is also an example of building connection between MongoDB database, "
"Flask Backend, and jQuery frontend.",
"keywords": [
'algorithm',
'mongodb',
'flask',
'python',
'jquery',
'ajax',
'sqlite3',
'rest-api',
],
"img": "https://user-images.githubusercontent.com/26208598/55672680-a568f000-5895-11e9-94d2-92aff7f8984a.JPG",
"link": "https://github.com/LukaszMalucha/Flask-Js-Survey"
},
{"date": "Apr 2019",
"title": "Cat vs. Dog Image Classifier",
"content": "Image classifier trained to distinct between cats and dogs images. "
"Convolutional Neural Network was built with Keras & Tensorflow(GPU). Heroku-hosted web application was built with Flask framework. ",
"keywords": [
'image-classifier',
'flask',
'convolutional-neural-networks',
'gpu',
'tensorflow',
'numpy',
],
"img": "https://user-images.githubusercontent.com/26208598/55568076-e24ab080-56f6-11e9-82e2-ed877c52ff6b.JPG",
"link": "https://github.com/LukaszMalucha/Cat-vs.-Dog-Classifier"
},
{"date": "Apr 2019",
"title": "Digit Recognition with Keras",
"content": "Hand-Written Digit Recognition based on MNIST Dataset. "
"Convolutional Neural Network was built with Keras & Tensorflow(GPU). Heroku-hosted web application was built with Flask framework, Ajax & FileSaver. ",
"keywords": [
'digit-recognition',
'flask',
'dataset',
'mnist-dataset',
'convolutional-neural-networks',
'tensorflow',
'keras',
'jquery',
'ajax',
],
"img": "https://user-images.githubusercontent.com/26208598/55821040-756b5800-5af4-11e9-9b8b-0d1f5455d17a.JPG",
"link": "https://github.com/LukaszMalucha/Digit-Recognition"
},
{"date": "Apr 2019",
"title": "A.I. Sommelier",
"content": "Can A.I. accurately predict red wine quality rating? Anyway, what is quality if not how wine taster's tongue precepts wine's chemical components?"
"Let's try to answer that question with machine learning approach, where various classifier algorithms will try to discover all the patters in wine rating process. "
"As a last part of a project, let's build some artificial sommeliers and let them handle real-world wine samples. Everything in a form of python flask application.",
"keywords": [
'classifier',
'flask',
'machine-learning',
'sklearn',
'pandas',
'wine-quality',
'xgboost',
'random-forest',
],
"img": "https://user-images.githubusercontent.com/26208598/55909851-e41fe280-5bd4-11e9-9390-f34556a2f978.JPG",
"link": "https://github.com/LukaszMalucha/Flask-Wine-Quality"
},
{"date": "Apr 2019",
"title": "Blockchain Environment Simulation",
"content": "Flask App simulation of a Blockchain. Great for getting your head around basic concepts of a Technology: blockchain: "
"Mining Block | Proof of Work | Hash | Validation Check | Blockchain Token ICO. "
"Happy mining!",
"keywords": [
'blockchain',
'flask',
'solidity',
'jquery',
'ajax',
'bitcoin',
'mining',
'sqlite3',
],
"img": "https://user-images.githubusercontent.com/26208598/56019047-94880680-5cfb-11e9-948a-8d84275c4f72.JPG",
"link": "https://github.com/LukaszMalucha/Blockchain-Simulation"
},
{"date": "Apr 2019",
"title": "Pathfinder AI",
"content": "Practical application of Q-Learning algorithm on pathfinding problem. "
"Additionally, project includes algorithm that generate an array of all the possible moves in 8x8 grid, easily adjustable.",
"keywords": [
'artificial-intelligence',
'flask',
'q-learning',
'reinforcement-learning',
'numpy',
'algorithm',
'rest-api',
'jquery',
'ajax'
],
"img": "https://user-images.githubusercontent.com/26208598/56038938-12afd180-5d2b-11e9-92ab-7faa8ff5e32d.JPG",
"link": "https://github.com/LukaszMalucha/Pathfinder-AI"
},
]
| blog_list = [{'date': 'Dec 2018', 'title': 'Starcraft II A.I. Bot', 'content': "Industria is a mixture of role-based A.I. with an deep learning decision process enhancement. While most of it's actions are scripted, it decides about an army composition.", 'keywords': ['starcraft-ii', 'bot', 'artificial-intelligence', 'q-learning', 'reinforcement-learning'], 'img': 'https://user-images.githubusercontent.com/26208598/47260876-9d6ded00-d4bb-11e8-94bd-3d718231d34b.PNG', 'link': 'https://github.com/LukaszMalucha/Starcraf2-A.I.-Bot'}, {'date': 'Feb 2019', 'title': 'Twitter Dashboard', 'content': "Project Goal was to create fully functional interface for Twitter API. Flask App allows user to find out what is currently trending and extract data sample to MongoDB. Once data sample is extracted, next step is to pre-process it and load to SQL database. Final step is to apply Keras LSTM model on processed tweets to find out what's the dominating sentiment among conversation participants - positive, negative or neutral.", 'keywords': ['twitter-api', 'mongodb', 'sentiment-analysis', 'flask', 'python'], 'img': 'https://user-images.githubusercontent.com/26208598/48212361-5749d200-e373-11e8-9e1c-de0939c4b5b0.PNG', 'link': 'https://github.com/LukaszMalucha/Twitter-Flask'}, {'date': 'Feb 2019', 'title': 'ML Library Project', 'content': 'Goal of the project is to create robust, fully-responsive, open-source URL platform where user will be able to find information about particular machine learning algorithm. Data will be easily accessible and in the compact form. It will be ML cheat sheet in a form of a website. Project will be stored on GitHub.', 'keywords': ['html', 'css', 'bootstrap', 'material-design'], 'img': 'https://user-images.githubusercontent.com/26208598/45377204-cfa14a80-b5f1-11e8-88a5-106b311f541f.JPG', 'link': 'https://github.com/LukaszMalucha/ML-Library'}, {'date': 'Feb 2019', 'title': 'RestBank API', 'content': 'Django RESTful banking application for asset management. With integrated Token authorization and view permissions App allows bank customer safely interact with his Asset Portfolio. User can buy and sell financial instruments, top up his cash balance. It also allows bank staff members to create or delete available instruments and also update current price.', 'keywords': ['django-rest -framework', 'python', 'banking', 'django'], 'img': 'https://user-images.githubusercontent.com/26208598/53289476-45f3cc80-378e-11e9-8c19-36568d8f95ed.JPG', 'link': 'https://github.com/LukaszMalucha/RESTBank-App'}, {'date': 'Mar 2019', 'title': 'Springboard Analytics', 'content': 'Django App that allows user to: Scrape and clean course data from Springboardcourses.ie. Visualize course data in order to get some useful insights. Apply machine learning apriori algorithm on gathered information. Extract course data from Django Postgres db with a handy RESTful Backend.', 'keywords': ['djangodata-preprocessing', 'rest-api', 'restful-api', 'rest', 'pandas', 'django-rest-framework'], 'img': 'https://user-images.githubusercontent.com/26208598/53902093-57fc2780-4038-11e9-81db-517067de0c2f.jpg', 'link': 'https://github.com/LukaszMalucha/Springboard-Insights'}, {'date': 'Mar 2019', 'title': 'Data Labs with Python & Tableau', 'content': "What is a current value of you property? We'll determine most attractive investments in the area. Also we'll answer the question what's the ultimate toolbox for Data Science based on scraped Linkedin profiles.", 'keywords': ['tableau', 'django', 'pandas', 'restful-api', 'machine-learning'], 'img': 'https://user-images.githubusercontent.com/26208598/54075691-1f5b8880-429a-11e9-8919-baf9744a40b4.JPG', 'link': 'https://github.com/LukaszMalucha/Data-Labs-with-Python-Tableau'}, {'date': 'Mar 2019', 'title': 'Project Management Dashboard', 'content': "Project management Dashboard made with Django. This Project is a simulation of work environment, where more traditional agile techniques are blended with key gamification concepts of 'reward' and 'role'. ", 'keywords': ['django', 'agile', 'project-management', 'docker', 'postgresql', 'python', 'heroku', 'gamification'], 'img': 'https://user-images.githubusercontent.com/26208598/54495673-ecd70e80-48dd-11e9-81b4-7c8634ed8a6a.JPG', 'link': 'https://github.com/LukaszMalucha/Project-Dashboard-with-Django'}, {'date': 'Mar 2019', 'title': 'Twitter API Dashboard', 'content': "Flask application hosting Twitter API. Main functionality allows user to find out what is currently trending and extract data sample to MongoDB. Once data sample is extracted, next step is to pre-process it and load to SQL database. Final step is to apply Keras LSTM model on processed tweets to find out what's the dominating sentiment among conversation participants - positive, negative or neutral.", 'keywords': ['flask', 'twitter', 'sentiment-analysis', 'selenium', 'api', 'python', 'tweepy'], 'img': 'https://user-images.githubusercontent.com/26208598/52292307-57ef0600-296c-11e9-872b-f8ccdf31c024.JPG', 'link': 'https://github.com/LukaszMalucha/Twitter-API-Dashboard'}, {'date': 'Apr 2019', 'title': 'Geocoder IE', 'content': 'Coding Assignment. We received list of approx. 3000 Irish addresses from one of our Customers. Our customer wants those addresses to be geocoded. Regarding accuracy they expect each geocode to be accurate at least at county level. ', 'keywords': ['geocoder', 'dataset', 'pandas', 'geocode-data', 'flask', 'leafletjs', 'csv', 'rest-api'], 'img': 'https://user-images.githubusercontent.com/26208598/55428834-e4d7c980-5581-11e9-991a-da9bf0a1a9f5.JPG', 'link': 'https://github.com/LukaszMalucha/Geocoder-IE'}, {'date': 'Apr 2019', 'title': 'Flask Js Survey', 'content': "It's hard to decide if you have so many different algorithms to your disposal. But with certain information given about analyzed dataset, we can narrow that choice to few best matches. Project is also an example of building connection between MongoDB database, Flask Backend, and jQuery frontend.", 'keywords': ['algorithm', 'mongodb', 'flask', 'python', 'jquery', 'ajax', 'sqlite3', 'rest-api'], 'img': 'https://user-images.githubusercontent.com/26208598/55672680-a568f000-5895-11e9-94d2-92aff7f8984a.JPG', 'link': 'https://github.com/LukaszMalucha/Flask-Js-Survey'}, {'date': 'Apr 2019', 'title': 'Cat vs. Dog Image Classifier', 'content': 'Image classifier trained to distinct between cats and dogs images. Convolutional Neural Network was built with Keras & Tensorflow(GPU). Heroku-hosted web application was built with Flask framework. ', 'keywords': ['image-classifier', 'flask', 'convolutional-neural-networks', 'gpu', 'tensorflow', 'numpy'], 'img': 'https://user-images.githubusercontent.com/26208598/55568076-e24ab080-56f6-11e9-82e2-ed877c52ff6b.JPG', 'link': 'https://github.com/LukaszMalucha/Cat-vs.-Dog-Classifier'}, {'date': 'Apr 2019', 'title': 'Digit Recognition with Keras', 'content': 'Hand-Written Digit Recognition based on MNIST Dataset. Convolutional Neural Network was built with Keras & Tensorflow(GPU). Heroku-hosted web application was built with Flask framework, Ajax & FileSaver. ', 'keywords': ['digit-recognition', 'flask', 'dataset', 'mnist-dataset', 'convolutional-neural-networks', 'tensorflow', 'keras', 'jquery', 'ajax'], 'img': 'https://user-images.githubusercontent.com/26208598/55821040-756b5800-5af4-11e9-9b8b-0d1f5455d17a.JPG', 'link': 'https://github.com/LukaszMalucha/Digit-Recognition'}, {'date': 'Apr 2019', 'title': 'A.I. Sommelier', 'content': "Can A.I. accurately predict red wine quality rating? Anyway, what is quality if not how wine taster's tongue precepts wine's chemical components?Let's try to answer that question with machine learning approach, where various classifier algorithms will try to discover all the patters in wine rating process. As a last part of a project, let's build some artificial sommeliers and let them handle real-world wine samples. Everything in a form of python flask application.", 'keywords': ['classifier', 'flask', 'machine-learning', 'sklearn', 'pandas', 'wine-quality', 'xgboost', 'random-forest'], 'img': 'https://user-images.githubusercontent.com/26208598/55909851-e41fe280-5bd4-11e9-9390-f34556a2f978.JPG', 'link': 'https://github.com/LukaszMalucha/Flask-Wine-Quality'}, {'date': 'Apr 2019', 'title': 'Blockchain Environment Simulation', 'content': 'Flask App simulation of a Blockchain. Great for getting your head around basic concepts of a Technology: blockchain: Mining Block | Proof of Work | Hash | Validation Check | Blockchain Token ICO. Happy mining!', 'keywords': ['blockchain', 'flask', 'solidity', 'jquery', 'ajax', 'bitcoin', 'mining', 'sqlite3'], 'img': 'https://user-images.githubusercontent.com/26208598/56019047-94880680-5cfb-11e9-948a-8d84275c4f72.JPG', 'link': 'https://github.com/LukaszMalucha/Blockchain-Simulation'}, {'date': 'Apr 2019', 'title': 'Pathfinder AI', 'content': 'Practical application of Q-Learning algorithm on pathfinding problem. Additionally, project includes algorithm that generate an array of all the possible moves in 8x8 grid, easily adjustable.', 'keywords': ['artificial-intelligence', 'flask', 'q-learning', 'reinforcement-learning', 'numpy', 'algorithm', 'rest-api', 'jquery', 'ajax'], 'img': 'https://user-images.githubusercontent.com/26208598/56038938-12afd180-5d2b-11e9-92ab-7faa8ff5e32d.JPG', 'link': 'https://github.com/LukaszMalucha/Pathfinder-AI'}] |
def reduceBlue(picture, amount):
for pixel in getPixels(picture):
newBlue = getBlue(pixel) * amount
setBlue(pixel, newBlue)
repaint(picture)
def swapRedBlue(picture):
for pixel in getPixels(picture):
swapBlue = getRed(pixel)
swapRed = getBlue(pixel)
setRed(pixel, swapRed)
setBlue(pixel, swapBlue)
repaint(picture)
def makeSunset(picture):
for pixel in getPixels(picture):
setGreen(pixel, getGreen(pixel) * .6)
setBlue(pixel, getBlue(pixel) * .6)
repaint(picture)
def makeNegative(picture):
for pixel in getPixels(picture):
newRed = 255 - getRed(pixel)
newGreen = 255 - getGreen(pixel)
newBlue = 255 - getBlue(pixel)
newColor = makeColor(newRed, newGreen, newBlue)
setColor(pixel, newColor)
repaint(picture)
def makeGrayscale(picture):
for pixel in getPixels(picture):
r = getRed(pixel)
g = getGreen(pixel)
b = getBlue(pixel)
avg = (r + g + b) / 3
newColor = makeColor(avg, avg, avg)
setColor(pixel, newColor)
repaint(picture)
| def reduce_blue(picture, amount):
for pixel in get_pixels(picture):
new_blue = get_blue(pixel) * amount
set_blue(pixel, newBlue)
repaint(picture)
def swap_red_blue(picture):
for pixel in get_pixels(picture):
swap_blue = get_red(pixel)
swap_red = get_blue(pixel)
set_red(pixel, swapRed)
set_blue(pixel, swapBlue)
repaint(picture)
def make_sunset(picture):
for pixel in get_pixels(picture):
set_green(pixel, get_green(pixel) * 0.6)
set_blue(pixel, get_blue(pixel) * 0.6)
repaint(picture)
def make_negative(picture):
for pixel in get_pixels(picture):
new_red = 255 - get_red(pixel)
new_green = 255 - get_green(pixel)
new_blue = 255 - get_blue(pixel)
new_color = make_color(newRed, newGreen, newBlue)
set_color(pixel, newColor)
repaint(picture)
def make_grayscale(picture):
for pixel in get_pixels(picture):
r = get_red(pixel)
g = get_green(pixel)
b = get_blue(pixel)
avg = (r + g + b) / 3
new_color = make_color(avg, avg, avg)
set_color(pixel, newColor)
repaint(picture) |
n, _ = input().split()
n = int(n)
l = [[] for i in range(n)]
while True:
try:
a, b = input().split()
a = int(a)
b = int(b)
l[a].append(b)
except Exception as e:
break
for r in range(len(l)):
for i in l[r]:
print(r+1, i+1)
| (n, _) = input().split()
n = int(n)
l = [[] for i in range(n)]
while True:
try:
(a, b) = input().split()
a = int(a)
b = int(b)
l[a].append(b)
except Exception as e:
break
for r in range(len(l)):
for i in l[r]:
print(r + 1, i + 1) |
#!/usr/bin/python3
update_dictionary = __import__('7-update_dictionary').update_dictionary
print_sorted_dictionary = __import__('6-print_sorted_dictionary').print_sorted_dictionary
a_dictionary = { 'language': "C", 'number': 89, 'track': "Low level" }
new_dict = update_dictionary(a_dictionary, 'language', "Python")
print_sorted_dictionary(new_dict)
print("--")
print_sorted_dictionary(a_dictionary)
print("--")
print("--")
new_dict = update_dictionary(a_dictionary, 'city', "San Francisco")
print_sorted_dictionary(new_dict)
print("--")
print_sorted_dictionary(a_dictionary)
| update_dictionary = __import__('7-update_dictionary').update_dictionary
print_sorted_dictionary = __import__('6-print_sorted_dictionary').print_sorted_dictionary
a_dictionary = {'language': 'C', 'number': 89, 'track': 'Low level'}
new_dict = update_dictionary(a_dictionary, 'language', 'Python')
print_sorted_dictionary(new_dict)
print('--')
print_sorted_dictionary(a_dictionary)
print('--')
print('--')
new_dict = update_dictionary(a_dictionary, 'city', 'San Francisco')
print_sorted_dictionary(new_dict)
print('--')
print_sorted_dictionary(a_dictionary) |
pumpvalues = [119.480003,119.699997,119.830002,119.900002,119.949997,119.980003,119.989998,120.0,120.0,120.0,120.0,120.010002,120.010002,120.010002,120.010002,120.010002,120.010002,120.010002,120.010002,120.0,119.989998,119.949997,119.900002,119.800003,119.629997,119.360001,118.949997,118.389999,117.68,116.889999,116.089996,115.349998,114.730003,114.25,113.900002,113.650002,113.489998,113.379997,113.309998,113.260002,113.230003,113.209999,113.199997,113.199997,113.190002,113.190002,
118.779999,119.279999,119.580002,119.760002,119.870003,119.93,119.959999,119.980003,119.989998,120.0,120.0,120.0,120.010002,120.010002,120.010002,120.010002,120.010002,120.010002,120.010002,120.010002,120.0,119.980003,119.949997,119.889999,119.790001,119.629997,119.379997,119.019997,118.580002,118.099998,117.610001,117.160004,116.790001,116.510002,116.309998,116.169998,116.080002,116.010002,115.980003,115.949997,115.93,115.919998,115.919998,115.910004,115.910004,115.910004,
117.349998,118.360001,119.019997,119.419998,119.669998,119.809998,119.900002,119.949997,119.970001,119.989998,120.0,120.0,120.0,120.0,120.010002,120.010002,120.010002,120.010002,120.010002,120.0,120.0,120.0,119.980003,119.949997,119.900002,119.809998,119.660004,119.449997,119.199997,118.910004,118.620003,118.370003,118.160004,118.0,117.879997,117.809998,117.75,117.720001,117.699997,117.68,117.669998,117.669998,117.669998,117.660004,117.660004,117.660004,
114.519997,116.489998,117.800003,118.660004,119.199997,119.540001,119.739998,119.860001,119.93,119.959999,119.989998,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.010002,120.0,120.010002,120.0,120.0,119.980003,119.959999,119.910004,119.839996,119.730003,119.580002,119.43,119.269997,119.129997,119.019997,118.93,118.870003,118.830002,118.800003,118.779999,118.769997,118.760002,118.760002,118.75,118.75,118.75,118.75,118.75,
109.309998,112.910004,115.389999,117.07,118.18,118.900002,119.349998,119.629997,119.800003,119.900002,119.949997,119.980003,119.989998,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,119.989998,119.970001,119.93,119.879997,119.809998,119.730003,119.650002,119.580002,119.529999,119.480003,119.449997,119.43,119.419998,119.410004,119.400002,119.400002,119.389999,119.389999,119.389999,119.389999,119.389999,119.389999,
100.339996,106.489998,110.900002,113.989998,116.120003,117.550003,118.489998,119.110001,119.489998,119.720001,119.849998,119.93,119.959999,119.989998,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,119.989998,119.980003,119.959999,119.93,119.889999,119.860001,119.830002,119.800003,119.779999,119.769997,119.75,119.75,119.739998,119.739998,119.739998,119.739998,119.739998,119.739998,119.739998,119.739998,119.739998,
85.866997,95.662003,103.010002,108.379997,112.199997,114.889999,116.720001,117.959999,118.769997,119.290001,119.610001,119.790001,119.900002,119.949997,119.980003,119.989998,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,119.989998,119.980003,119.970001,119.949997,119.940002,119.93,119.919998,119.919998,119.910004,119.910004,119.910004,119.910004,119.910004,119.910004,119.910004,119.910004,119.910004,119.910004,119.910004,
64.337997,78.625999,90.030998,98.758003,105.25,109.959999,113.309998,115.650002,117.260002,118.32,119.0,119.440002,119.690002,119.839996,119.93,119.970001,119.980003,119.989998,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,119.989998,119.989998,119.989998,119.980003,119.980003,119.980003,119.980003,119.980003,119.970001,119.970001,119.970001,119.970001,119.970001,119.970001,119.970001,119.970001,119.980003,
35.59,54.111,70.158997,83.304001,93.600998,101.389999,107.150002,111.32,114.260002,116.32,117.699997,118.629997,119.199997,119.559998,119.769997,119.879997,119.949997,119.980003,119.989998,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,
2.0524,22.681,42.555,60.358002,75.347,87.371002,96.669998,103.650002,108.790001,112.489998,115.089996,116.879997,118.080002,118.870003,119.349998,119.650002,119.82,119.919998,119.959999,119.980003,119.989998,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,
-31.610001,-12.185,8.7734,29.719,49.147999,66.022003,79.918999,90.905998,99.316002,105.610001,110.190002,113.470001,115.769997,117.339996,118.370003,119.029999,119.459999,119.709999,119.839996,119.93,119.959999,119.989998,119.989998,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,
-60.794998,-45.25,-26.669001,-5.8685,15.744,36.556,55.254002,71.103996,83.932999,93.958,101.589996,107.230003,111.330002,114.25,116.279999,117.660004,118.559998,119.150002,119.510002,119.739998,119.860001,119.93,119.970001,119.989998,119.989998,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,
-83.192001,-72.330002,-58.290001,-40.959999,-20.837,0.91646,22.708,43.021999,60.799,75.577003,87.383003,96.521004,103.43,108.510002,112.190002,114.82,116.629997,117.860001,118.68,119.209999,119.540001,119.739998,119.860001,119.93,119.970001,119.980003,119.989998,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,120.0,
-98.944,-92.044998,-82.708,-70.338997,-54.591999,-35.632999,-14.328,7.904,29.438,48.959999,65.678001,79.360001,90.189003,98.512001,104.779999,109.389999,112.739998,115.129997,116.790001,117.93,118.690002,119.190002,119.510002,119.709999,119.830002,119.900002,119.940002,119.970001,119.980003,119.989998,119.989998,119.989998,119.989998,120.0,120.0,120.0,120.0,120.0,119.989998,120.0,120.0,120.0,120.0,120.0,120.0,120.0,
-109.459999,-105.32,-99.608002,-91.738998,-81.073997,-67.108002,-49.728001,-29.437,-7.4079,14.809,35.691002,54.164001,69.714996,82.317001,92.220001,99.834,105.57,109.82,112.919998,115.150002,116.709999,117.809998,118.550003,119.050003,119.379997,119.589996,119.720001,119.809998,119.860001,119.889999,119.910004,119.93,119.940002,119.940002,119.940002,119.949997,119.949997,119.949997,119.949997,119.949997,119.949997,119.949997,119.949997,119.949997,119.949997,119.949997,
-116.330002,-113.889999,-110.540001,-105.879997,-99.337997,-90.300003,-78.170998,-62.615002,-43.805,-22.594,-0.36559,21.319,41.169998,58.384998,72.710999,84.258003,93.336998,100.339996,105.639999,109.620003,112.550003,114.68,116.209999,117.300003,118.07,118.589996,118.949997,119.190002,119.349998,119.459999,119.529999,119.57,119.599998,119.620003,119.629997,119.639999,119.639999,119.650002,119.650002,119.650002,119.650002,119.650002,119.650002,119.650002,119.650002,119.650002,
-120.800003,-119.349998,-117.410004,-114.730003,-110.940002,-105.550003,-97.970001,-87.579002,-73.906998,-56.862999,-36.973999,-15.381,6.4336,27.070999,45.522999,61.308998,74.362999,84.880997,93.185997,99.638,104.580002,108.339996,111.150002,113.230003,114.75,115.849998,116.639999,117.190002,117.559998,117.82,117.989998,118.099998,118.169998,118.220001,118.25,118.269997,118.279999,118.290001,118.290001,118.290001,118.300003,118.300003,118.300003,118.300003,118.300003,118.300003,
-123.739998,-122.870003,-121.730003,-120.18,-118.019997,-114.93,-110.480003,-104.139999,-95.285004,-83.385002,-68.165001,-49.897999,-29.454,-8.1684,12.564,31.631001,48.367001,62.533001,74.206001,83.625,91.095001,96.943001,101.459999,104.900002,107.489998,109.410004,110.800003,111.779999,112.459999,112.919998,113.230003,113.43,113.559998,113.639999,113.699997,113.730003,113.75,113.769997,113.769997,113.779999,113.779999,113.790001,113.790001,113.790001,113.790001,113.790001,
-125.739998,-125.18,-124.489998,-123.580002,-122.339996,-120.57,-118.019997,-114.309998,-108.949997,-101.370003,-90.998001,-77.475998,-60.887001,-41.888,-21.627001,-1.4352,17.542999,34.541,49.189999,61.450001,71.472,79.508003,85.833,90.724998,94.431,97.176003,99.156998,100.550003,101.5,102.139999,102.559998,102.839996,103.010002,103.120003,103.190002,103.239998,103.269997,103.290001,103.300003,103.300003,103.309998,103.309998,103.309998,103.309998,103.32,103.32,
-127.139999,-126.760002,-126.32,-125.769997,-125.029999,-124.0,-122.519997,-120.370003,-117.209999,-112.589996,-105.989998,-96.842003,-84.754997,-69.703003,-52.191002,-33.219002,-14.018,4.2855,20.868,35.292999,47.424999,57.348999,65.255997,71.398003,76.041,79.452003,81.883003,83.568001,84.706001,85.459,85.950996,86.267998,86.471001,86.599998,86.681999,86.734001,86.766998,86.788002,86.800003,86.808998,86.814003,86.817001,86.82,86.820999,86.820999,86.821999,
-128.169998,-127.889999,-127.589996,-127.239998,-126.779999,-126.160004,-125.290001,-124.010002,-122.129997,-119.349998,-115.25,-109.339996,-101.099998,-90.117996,-76.330002,-60.154999,-42.487,-24.476,-7.2115,8.4766,22.114,33.521999,42.740002,49.945,55.391998,59.375,62.194,64.132004,65.431999,66.287003,66.842003,67.198997,67.427002,67.571999,67.664001,67.722,67.759003,67.781998,67.796997,67.806,67.811996,67.815002,67.818001,67.82,67.82,67.820999,
-128.970001,-128.75,-128.529999,-128.279999,-127.980003,-127.589996,-127.050003,-126.269997,-125.129997,-123.419998,-120.870003,-117.099998,-111.629997,-103.980003,-93.757004,-80.902,-65.796997,-49.283001,-32.450001,-16.348,-1.7805,10.776,21.139999,29.356001,35.619999,40.220001,43.481998,45.723999,47.228001,48.216999,48.859001,49.271,49.534,49.701,49.807999,49.875,49.917,49.944,49.960999,49.971001,49.978001,49.983002,49.985001,49.987,49.987999,49.988998,
-129.630005,-129.440002,-129.25,-129.070007,-128.860001,-128.600006,-128.25,-127.760002,-127.029999,-125.959999,-124.330002,-121.900002,-118.279999,-113.029999,-105.68,-95.903999,-83.640999,-69.300003,-53.708,-37.917999,-22.933001,-9.5146,1.8967,11.152,18.334,23.677999,27.504999,30.157,31.944,33.124001,33.890999,34.384998,34.700001,34.901001,35.028999,35.109001,35.16,35.192001,35.213001,35.226002,35.234001,35.238998,35.242001,35.243999,35.245998,35.245998,
-130.190002,-130.009995,-129.850006,-129.699997,-129.539993,-129.350006,-129.119995,-128.789993,-128.320007,-127.610001,-126.550003,-124.940002,-122.510002,-118.889999,-113.669998,-106.389999,-96.758003,-84.786003,-70.921997,-56.014999,-41.091,-27.107,-14.762,-4.437,3.7798,10.024,14.572,17.764999,19.938999,21.385,22.33,22.940001,23.330999,23.58,23.738001,23.837999,23.902,23.941999,23.966999,23.983,23.993,23.999001,24.003,24.006001,24.007,24.007999,
-130.679993,-130.5,-130.350006,-130.220001,-130.089996,-129.949997,-129.779999,-129.559998,-129.229996,-128.759995,-128.039993,-126.940002,-125.279999,-122.760002,-119.019997,-113.639999,-106.220001,-96.487999,-84.553001,-70.934998,-56.512001,-42.303001,-29.204,-17.836,-8.4986,-1.211,4.2194,8.1023,10.785,12.588,13.775,14.546,15.041,15.358,15.559,15.686,15.767,15.818,15.85,15.871,15.884,15.892,15.897,15.9,15.902,15.903,
-131.130005,-130.940002,-130.800003,-130.669998,-130.559998,-130.449997,-130.320007,-130.160004,-129.929993,-129.600006,-129.100006,-128.330002,-127.160004,-125.370003,-122.669998,-118.690002,-113.010002,-105.239998,-95.213997,-83.125,-69.583,-55.518002,-41.923,-29.625999,-19.157,-10.724,-4.267,0.45675,3.7806,6.0459,7.5532,8.5387,9.1751,9.5828,9.8424,10.007,10.112,10.178,10.22,10.246,10.263,10.273,10.28,10.284,10.287,10.288,
-131.539993,-131.350006,-131.199997,-131.080002,-130.979996,-130.889999,-130.789993,-130.660004,-130.490005,-130.25,-129.889999,-129.339996,-128.5,-127.199997,-125.230003,-122.260002,-117.910004,-111.769997,-103.5,-93.014,-80.638,-67.082001,-53.314999,-40.296001,-28.768999,-19.156,-11.568,-5.8692,-1.7708,1.071,2.9861,4.2495,5.0705,5.5985,5.9359,6.1504,6.2865,6.3727,6.4271,6.4615,6.4832,6.4969,6.5056,6.5111,6.5145,6.5167,
-131.929993,-131.720001,-131.570007,-131.460007,-131.360001,-131.270004,-131.190002,-131.089996,-130.960007,-130.779999,-130.520004,-130.119995,-129.5,-128.539993,-127.07,-124.830002,-121.489998,-116.650002,-109.910004,-100.989998,-89.934998,-77.198997,-63.606998,-50.146999,-37.727001,-26.981001,-18.216,-11.44,-6.4466,-2.9144,-0.49777,1.1145,2.1703,2.853,3.2907,3.5697,3.7469,3.8591,3.9301,3.975,4.0034,4.0212,4.0326,4.0397,4.0442,4.047,
-132.289993,-132.070007,-131.919998,-131.800003,-131.699997,-131.630005,-131.550003,-131.470001,-131.369995,-131.240005,-131.039993,-130.729996,-130.270004,-129.550003,-128.440002,-126.730003,-124.150002,-120.330002,-114.860001,-107.360001,-97.681999,-85.989998,-72.894997,-59.313,-46.234001,-34.478001,-24.558001,-16.653,-10.672,-6.3464,-3.3347,-1.2991,0.046546,0.92228,1.4861,1.8465,2.0758,2.2212,2.3133,2.3715,2.4083,2.4315,2.4462,2.4554,2.4613,2.465,
-132.630005,-132.410004,-132.240005,-132.119995,-132.029999,-131.949997,-131.880005,-131.809998,-131.729996,-131.630005,-131.470001,-131.240005,-130.889999,-130.339996,-129.479996,-128.160004,-126.139999,-123.110001,-118.68,-112.440002,-104.07,-93.540001,-81.195,-67.802002,-54.345001,-41.77,-30.781,-21.749001,-14.725,-9.5245,-5.8337,-3.3018,-1.6097,-0.50023,0.21777,0.67828,0.97192,1.1585,1.2767,1.3514,1.3987,1.4285,1.4474,1.4593,1.4668,1.4715,
-132.970001,-132.720001,-132.550003,-132.419998,-132.330002,-132.25,-132.190002,-132.130005,-132.059998,-131.979996,-131.850006,-131.669998,-131.399994,-130.970001,-130.300003,-129.259995,-127.669998,-125.239998,-121.639999,-116.449997,-109.290001,-99.929001,-88.508003,-75.571999,-62.015999,-48.852001,-36.941002,-26.837999,-18.76,-12.634,-8.1959,-5.1023,-3.0097,-1.6257,-0.72468,-0.14446,0.22646,0.46247,0.61218,0.70697,0.7669,0.80476,0.82868,0.84377,0.8533,0.85932]
| pumpvalues = [119.480003, 119.699997, 119.830002, 119.900002, 119.949997, 119.980003, 119.989998, 120.0, 120.0, 120.0, 120.0, 120.010002, 120.010002, 120.010002, 120.010002, 120.010002, 120.010002, 120.010002, 120.010002, 120.0, 119.989998, 119.949997, 119.900002, 119.800003, 119.629997, 119.360001, 118.949997, 118.389999, 117.68, 116.889999, 116.089996, 115.349998, 114.730003, 114.25, 113.900002, 113.650002, 113.489998, 113.379997, 113.309998, 113.260002, 113.230003, 113.209999, 113.199997, 113.199997, 113.190002, 113.190002, 118.779999, 119.279999, 119.580002, 119.760002, 119.870003, 119.93, 119.959999, 119.980003, 119.989998, 120.0, 120.0, 120.0, 120.010002, 120.010002, 120.010002, 120.010002, 120.010002, 120.010002, 120.010002, 120.010002, 120.0, 119.980003, 119.949997, 119.889999, 119.790001, 119.629997, 119.379997, 119.019997, 118.580002, 118.099998, 117.610001, 117.160004, 116.790001, 116.510002, 116.309998, 116.169998, 116.080002, 116.010002, 115.980003, 115.949997, 115.93, 115.919998, 115.919998, 115.910004, 115.910004, 115.910004, 117.349998, 118.360001, 119.019997, 119.419998, 119.669998, 119.809998, 119.900002, 119.949997, 119.970001, 119.989998, 120.0, 120.0, 120.0, 120.0, 120.010002, 120.010002, 120.010002, 120.010002, 120.010002, 120.0, 120.0, 120.0, 119.980003, 119.949997, 119.900002, 119.809998, 119.660004, 119.449997, 119.199997, 118.910004, 118.620003, 118.370003, 118.160004, 118.0, 117.879997, 117.809998, 117.75, 117.720001, 117.699997, 117.68, 117.669998, 117.669998, 117.669998, 117.660004, 117.660004, 117.660004, 114.519997, 116.489998, 117.800003, 118.660004, 119.199997, 119.540001, 119.739998, 119.860001, 119.93, 119.959999, 119.989998, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.010002, 120.0, 120.010002, 120.0, 120.0, 119.980003, 119.959999, 119.910004, 119.839996, 119.730003, 119.580002, 119.43, 119.269997, 119.129997, 119.019997, 118.93, 118.870003, 118.830002, 118.800003, 118.779999, 118.769997, 118.760002, 118.760002, 118.75, 118.75, 118.75, 118.75, 118.75, 109.309998, 112.910004, 115.389999, 117.07, 118.18, 118.900002, 119.349998, 119.629997, 119.800003, 119.900002, 119.949997, 119.980003, 119.989998, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 119.989998, 119.970001, 119.93, 119.879997, 119.809998, 119.730003, 119.650002, 119.580002, 119.529999, 119.480003, 119.449997, 119.43, 119.419998, 119.410004, 119.400002, 119.400002, 119.389999, 119.389999, 119.389999, 119.389999, 119.389999, 119.389999, 100.339996, 106.489998, 110.900002, 113.989998, 116.120003, 117.550003, 118.489998, 119.110001, 119.489998, 119.720001, 119.849998, 119.93, 119.959999, 119.989998, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 119.989998, 119.980003, 119.959999, 119.93, 119.889999, 119.860001, 119.830002, 119.800003, 119.779999, 119.769997, 119.75, 119.75, 119.739998, 119.739998, 119.739998, 119.739998, 119.739998, 119.739998, 119.739998, 119.739998, 119.739998, 85.866997, 95.662003, 103.010002, 108.379997, 112.199997, 114.889999, 116.720001, 117.959999, 118.769997, 119.290001, 119.610001, 119.790001, 119.900002, 119.949997, 119.980003, 119.989998, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 119.989998, 119.980003, 119.970001, 119.949997, 119.940002, 119.93, 119.919998, 119.919998, 119.910004, 119.910004, 119.910004, 119.910004, 119.910004, 119.910004, 119.910004, 119.910004, 119.910004, 119.910004, 119.910004, 64.337997, 78.625999, 90.030998, 98.758003, 105.25, 109.959999, 113.309998, 115.650002, 117.260002, 118.32, 119.0, 119.440002, 119.690002, 119.839996, 119.93, 119.970001, 119.980003, 119.989998, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 119.989998, 119.989998, 119.989998, 119.980003, 119.980003, 119.980003, 119.980003, 119.980003, 119.970001, 119.970001, 119.970001, 119.970001, 119.970001, 119.970001, 119.970001, 119.970001, 119.980003, 35.59, 54.111, 70.158997, 83.304001, 93.600998, 101.389999, 107.150002, 111.32, 114.260002, 116.32, 117.699997, 118.629997, 119.199997, 119.559998, 119.769997, 119.879997, 119.949997, 119.980003, 119.989998, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 2.0524, 22.681, 42.555, 60.358002, 75.347, 87.371002, 96.669998, 103.650002, 108.790001, 112.489998, 115.089996, 116.879997, 118.080002, 118.870003, 119.349998, 119.650002, 119.82, 119.919998, 119.959999, 119.980003, 119.989998, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, -31.610001, -12.185, 8.7734, 29.719, 49.147999, 66.022003, 79.918999, 90.905998, 99.316002, 105.610001, 110.190002, 113.470001, 115.769997, 117.339996, 118.370003, 119.029999, 119.459999, 119.709999, 119.839996, 119.93, 119.959999, 119.989998, 119.989998, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, -60.794998, -45.25, -26.669001, -5.8685, 15.744, 36.556, 55.254002, 71.103996, 83.932999, 93.958, 101.589996, 107.230003, 111.330002, 114.25, 116.279999, 117.660004, 118.559998, 119.150002, 119.510002, 119.739998, 119.860001, 119.93, 119.970001, 119.989998, 119.989998, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, -83.192001, -72.330002, -58.290001, -40.959999, -20.837, 0.91646, 22.708, 43.021999, 60.799, 75.577003, 87.383003, 96.521004, 103.43, 108.510002, 112.190002, 114.82, 116.629997, 117.860001, 118.68, 119.209999, 119.540001, 119.739998, 119.860001, 119.93, 119.970001, 119.980003, 119.989998, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, -98.944, -92.044998, -82.708, -70.338997, -54.591999, -35.632999, -14.328, 7.904, 29.438, 48.959999, 65.678001, 79.360001, 90.189003, 98.512001, 104.779999, 109.389999, 112.739998, 115.129997, 116.790001, 117.93, 118.690002, 119.190002, 119.510002, 119.709999, 119.830002, 119.900002, 119.940002, 119.970001, 119.980003, 119.989998, 119.989998, 119.989998, 119.989998, 120.0, 120.0, 120.0, 120.0, 120.0, 119.989998, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, 120.0, -109.459999, -105.32, -99.608002, -91.738998, -81.073997, -67.108002, -49.728001, -29.437, -7.4079, 14.809, 35.691002, 54.164001, 69.714996, 82.317001, 92.220001, 99.834, 105.57, 109.82, 112.919998, 115.150002, 116.709999, 117.809998, 118.550003, 119.050003, 119.379997, 119.589996, 119.720001, 119.809998, 119.860001, 119.889999, 119.910004, 119.93, 119.940002, 119.940002, 119.940002, 119.949997, 119.949997, 119.949997, 119.949997, 119.949997, 119.949997, 119.949997, 119.949997, 119.949997, 119.949997, 119.949997, -116.330002, -113.889999, -110.540001, -105.879997, -99.337997, -90.300003, -78.170998, -62.615002, -43.805, -22.594, -0.36559, 21.319, 41.169998, 58.384998, 72.710999, 84.258003, 93.336998, 100.339996, 105.639999, 109.620003, 112.550003, 114.68, 116.209999, 117.300003, 118.07, 118.589996, 118.949997, 119.190002, 119.349998, 119.459999, 119.529999, 119.57, 119.599998, 119.620003, 119.629997, 119.639999, 119.639999, 119.650002, 119.650002, 119.650002, 119.650002, 119.650002, 119.650002, 119.650002, 119.650002, 119.650002, -120.800003, -119.349998, -117.410004, -114.730003, -110.940002, -105.550003, -97.970001, -87.579002, -73.906998, -56.862999, -36.973999, -15.381, 6.4336, 27.070999, 45.522999, 61.308998, 74.362999, 84.880997, 93.185997, 99.638, 104.580002, 108.339996, 111.150002, 113.230003, 114.75, 115.849998, 116.639999, 117.190002, 117.559998, 117.82, 117.989998, 118.099998, 118.169998, 118.220001, 118.25, 118.269997, 118.279999, 118.290001, 118.290001, 118.290001, 118.300003, 118.300003, 118.300003, 118.300003, 118.300003, 118.300003, -123.739998, -122.870003, -121.730003, -120.18, -118.019997, -114.93, -110.480003, -104.139999, -95.285004, -83.385002, -68.165001, -49.897999, -29.454, -8.1684, 12.564, 31.631001, 48.367001, 62.533001, 74.206001, 83.625, 91.095001, 96.943001, 101.459999, 104.900002, 107.489998, 109.410004, 110.800003, 111.779999, 112.459999, 112.919998, 113.230003, 113.43, 113.559998, 113.639999, 113.699997, 113.730003, 113.75, 113.769997, 113.769997, 113.779999, 113.779999, 113.790001, 113.790001, 113.790001, 113.790001, 113.790001, -125.739998, -125.18, -124.489998, -123.580002, -122.339996, -120.57, -118.019997, -114.309998, -108.949997, -101.370003, -90.998001, -77.475998, -60.887001, -41.888, -21.627001, -1.4352, 17.542999, 34.541, 49.189999, 61.450001, 71.472, 79.508003, 85.833, 90.724998, 94.431, 97.176003, 99.156998, 100.550003, 101.5, 102.139999, 102.559998, 102.839996, 103.010002, 103.120003, 103.190002, 103.239998, 103.269997, 103.290001, 103.300003, 103.300003, 103.309998, 103.309998, 103.309998, 103.309998, 103.32, 103.32, -127.139999, -126.760002, -126.32, -125.769997, -125.029999, -124.0, -122.519997, -120.370003, -117.209999, -112.589996, -105.989998, -96.842003, -84.754997, -69.703003, -52.191002, -33.219002, -14.018, 4.2855, 20.868, 35.292999, 47.424999, 57.348999, 65.255997, 71.398003, 76.041, 79.452003, 81.883003, 83.568001, 84.706001, 85.459, 85.950996, 86.267998, 86.471001, 86.599998, 86.681999, 86.734001, 86.766998, 86.788002, 86.800003, 86.808998, 86.814003, 86.817001, 86.82, 86.820999, 86.820999, 86.821999, -128.169998, -127.889999, -127.589996, -127.239998, -126.779999, -126.160004, -125.290001, -124.010002, -122.129997, -119.349998, -115.25, -109.339996, -101.099998, -90.117996, -76.330002, -60.154999, -42.487, -24.476, -7.2115, 8.4766, 22.114, 33.521999, 42.740002, 49.945, 55.391998, 59.375, 62.194, 64.132004, 65.431999, 66.287003, 66.842003, 67.198997, 67.427002, 67.571999, 67.664001, 67.722, 67.759003, 67.781998, 67.796997, 67.806, 67.811996, 67.815002, 67.818001, 67.82, 67.82, 67.820999, -128.970001, -128.75, -128.529999, -128.279999, -127.980003, -127.589996, -127.050003, -126.269997, -125.129997, -123.419998, -120.870003, -117.099998, -111.629997, -103.980003, -93.757004, -80.902, -65.796997, -49.283001, -32.450001, -16.348, -1.7805, 10.776, 21.139999, 29.356001, 35.619999, 40.220001, 43.481998, 45.723999, 47.228001, 48.216999, 48.859001, 49.271, 49.534, 49.701, 49.807999, 49.875, 49.917, 49.944, 49.960999, 49.971001, 49.978001, 49.983002, 49.985001, 49.987, 49.987999, 49.988998, -129.630005, -129.440002, -129.25, -129.070007, -128.860001, -128.600006, -128.25, -127.760002, -127.029999, -125.959999, -124.330002, -121.900002, -118.279999, -113.029999, -105.68, -95.903999, -83.640999, -69.300003, -53.708, -37.917999, -22.933001, -9.5146, 1.8967, 11.152, 18.334, 23.677999, 27.504999, 30.157, 31.944, 33.124001, 33.890999, 34.384998, 34.700001, 34.901001, 35.028999, 35.109001, 35.16, 35.192001, 35.213001, 35.226002, 35.234001, 35.238998, 35.242001, 35.243999, 35.245998, 35.245998, -130.190002, -130.009995, -129.850006, -129.699997, -129.539993, -129.350006, -129.119995, -128.789993, -128.320007, -127.610001, -126.550003, -124.940002, -122.510002, -118.889999, -113.669998, -106.389999, -96.758003, -84.786003, -70.921997, -56.014999, -41.091, -27.107, -14.762, -4.437, 3.7798, 10.024, 14.572, 17.764999, 19.938999, 21.385, 22.33, 22.940001, 23.330999, 23.58, 23.738001, 23.837999, 23.902, 23.941999, 23.966999, 23.983, 23.993, 23.999001, 24.003, 24.006001, 24.007, 24.007999, -130.679993, -130.5, -130.350006, -130.220001, -130.089996, -129.949997, -129.779999, -129.559998, -129.229996, -128.759995, -128.039993, -126.940002, -125.279999, -122.760002, -119.019997, -113.639999, -106.220001, -96.487999, -84.553001, -70.934998, -56.512001, -42.303001, -29.204, -17.836, -8.4986, -1.211, 4.2194, 8.1023, 10.785, 12.588, 13.775, 14.546, 15.041, 15.358, 15.559, 15.686, 15.767, 15.818, 15.85, 15.871, 15.884, 15.892, 15.897, 15.9, 15.902, 15.903, -131.130005, -130.940002, -130.800003, -130.669998, -130.559998, -130.449997, -130.320007, -130.160004, -129.929993, -129.600006, -129.100006, -128.330002, -127.160004, -125.370003, -122.669998, -118.690002, -113.010002, -105.239998, -95.213997, -83.125, -69.583, -55.518002, -41.923, -29.625999, -19.157, -10.724, -4.267, 0.45675, 3.7806, 6.0459, 7.5532, 8.5387, 9.1751, 9.5828, 9.8424, 10.007, 10.112, 10.178, 10.22, 10.246, 10.263, 10.273, 10.28, 10.284, 10.287, 10.288, -131.539993, -131.350006, -131.199997, -131.080002, -130.979996, -130.889999, -130.789993, -130.660004, -130.490005, -130.25, -129.889999, -129.339996, -128.5, -127.199997, -125.230003, -122.260002, -117.910004, -111.769997, -103.5, -93.014, -80.638, -67.082001, -53.314999, -40.296001, -28.768999, -19.156, -11.568, -5.8692, -1.7708, 1.071, 2.9861, 4.2495, 5.0705, 5.5985, 5.9359, 6.1504, 6.2865, 6.3727, 6.4271, 6.4615, 6.4832, 6.4969, 6.5056, 6.5111, 6.5145, 6.5167, -131.929993, -131.720001, -131.570007, -131.460007, -131.360001, -131.270004, -131.190002, -131.089996, -130.960007, -130.779999, -130.520004, -130.119995, -129.5, -128.539993, -127.07, -124.830002, -121.489998, -116.650002, -109.910004, -100.989998, -89.934998, -77.198997, -63.606998, -50.146999, -37.727001, -26.981001, -18.216, -11.44, -6.4466, -2.9144, -0.49777, 1.1145, 2.1703, 2.853, 3.2907, 3.5697, 3.7469, 3.8591, 3.9301, 3.975, 4.0034, 4.0212, 4.0326, 4.0397, 4.0442, 4.047, -132.289993, -132.070007, -131.919998, -131.800003, -131.699997, -131.630005, -131.550003, -131.470001, -131.369995, -131.240005, -131.039993, -130.729996, -130.270004, -129.550003, -128.440002, -126.730003, -124.150002, -120.330002, -114.860001, -107.360001, -97.681999, -85.989998, -72.894997, -59.313, -46.234001, -34.478001, -24.558001, -16.653, -10.672, -6.3464, -3.3347, -1.2991, 0.046546, 0.92228, 1.4861, 1.8465, 2.0758, 2.2212, 2.3133, 2.3715, 2.4083, 2.4315, 2.4462, 2.4554, 2.4613, 2.465, -132.630005, -132.410004, -132.240005, -132.119995, -132.029999, -131.949997, -131.880005, -131.809998, -131.729996, -131.630005, -131.470001, -131.240005, -130.889999, -130.339996, -129.479996, -128.160004, -126.139999, -123.110001, -118.68, -112.440002, -104.07, -93.540001, -81.195, -67.802002, -54.345001, -41.77, -30.781, -21.749001, -14.725, -9.5245, -5.8337, -3.3018, -1.6097, -0.50023, 0.21777, 0.67828, 0.97192, 1.1585, 1.2767, 1.3514, 1.3987, 1.4285, 1.4474, 1.4593, 1.4668, 1.4715, -132.970001, -132.720001, -132.550003, -132.419998, -132.330002, -132.25, -132.190002, -132.130005, -132.059998, -131.979996, -131.850006, -131.669998, -131.399994, -130.970001, -130.300003, -129.259995, -127.669998, -125.239998, -121.639999, -116.449997, -109.290001, -99.929001, -88.508003, -75.571999, -62.015999, -48.852001, -36.941002, -26.837999, -18.76, -12.634, -8.1959, -5.1023, -3.0097, -1.6257, -0.72468, -0.14446, 0.22646, 0.46247, 0.61218, 0.70697, 0.7669, 0.80476, 0.82868, 0.84377, 0.8533, 0.85932] |
config = {
# Fallback default used when a terminal width cannot be inferred.
"display.fallback_width": 88,
# Human-friendly line width for paragraphs.
"display.text_width": 88,
}
| config = {'display.fallback_width': 88, 'display.text_width': 88} |
rooms = {
1 : { 'name' : '1. room', 'description': 'first room', 'completed': False},
2 : { 'name' : '2. room', 'description': 'second room', 'completed': False},
3 : { 'name' : '3. room', 'description': 'third room', 'completed': False}
} | rooms = {1: {'name': '1. room', 'description': 'first room', 'completed': False}, 2: {'name': '2. room', 'description': 'second room', 'completed': False}, 3: {'name': '3. room', 'description': 'third room', 'completed': False}} |
class Error(Exception):
pass
class ConcreateError(Error):
pass
| class Error(Exception):
pass
class Concreateerror(Error):
pass |
#
# PySNMP MIB module CADANT-HW-MEAS-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CADANT-HW-MEAS-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 17:28:20 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)
#
OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueSizeConstraint, ConstraintsUnion, SingleValueConstraint, ConstraintsIntersection, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "ConstraintsUnion", "SingleValueConstraint", "ConstraintsIntersection", "ValueRangeConstraint")
cadIf3CmtsCmUsStatusChIfIndex, = mibBuilder.importSymbols("CADANT-CMTS-IF3-MIB", "cadIf3CmtsCmUsStatusChIfIndex")
cadIfMacDomainIfIndex, = mibBuilder.importSymbols("CADANT-CMTS-LAYER2CMTS-MIB", "cadIfMacDomainIfIndex")
cadIfCmtsCmStatusMacAddress, = mibBuilder.importSymbols("CADANT-CMTS-MAC-MIB", "cadIfCmtsCmStatusMacAddress")
cadEquipment, = mibBuilder.importSymbols("CADANT-PRODUCTS-MIB", "cadEquipment")
CardId, CadIfDirection, PortId = mibBuilder.importSymbols("CADANT-TC", "CardId", "CadIfDirection", "PortId")
TenthdB, = mibBuilder.importSymbols("DOCS-IF-MIB", "TenthdB")
IfDirection, = mibBuilder.importSymbols("DOCS-QOS3-MIB", "IfDirection")
docsSubmgt3FilterGrpEntry, = mibBuilder.importSymbols("DOCS-SUBMGT3-MIB", "docsSubmgt3FilterGrpEntry")
ifIndex, InterfaceIndex = mibBuilder.importSymbols("IF-MIB", "ifIndex", "InterfaceIndex")
pktcEScTapStreamIndex, pktcEScTapMediationContentId = mibBuilder.importSymbols("PKTC-ES-TAP-MIB", "pktcEScTapStreamIndex", "pktcEScTapMediationContentId")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
TimeTicks, MibIdentifier, Counter32, ObjectIdentity, ModuleIdentity, Counter64, NotificationType, Bits, Integer32, IpAddress, Gauge32, MibScalar, MibTable, MibTableRow, MibTableColumn, iso, Unsigned32 = mibBuilder.importSymbols("SNMPv2-SMI", "TimeTicks", "MibIdentifier", "Counter32", "ObjectIdentity", "ModuleIdentity", "Counter64", "NotificationType", "Bits", "Integer32", "IpAddress", "Gauge32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "iso", "Unsigned32")
TruthValue, DisplayString, TimeStamp, MacAddress, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "TruthValue", "DisplayString", "TimeStamp", "MacAddress", "TextualConvention")
cadHardwareMeasMib = ModuleIdentity((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2))
cadHardwareMeasMib.setRevisions(('2015-08-27 00:00', '2015-07-13 00:00', '2015-06-03 00:00', '2014-10-14 00:00', '2014-06-13 00:00', '2014-06-04 00:00', '2013-11-22 00:00', '2012-10-30 00:00', '2012-05-09 00:00', '2011-08-31 00:00', '2011-06-29 00:00', '2011-02-28 00:00', '2011-02-24 00:00', '2011-02-18 00:00', '2010-11-22 00:00', '2010-03-09 00:00', '2008-11-24 00:00', '2008-11-21 00:00', '2008-11-05 00:00', '2008-04-24 00:00', '2006-09-14 00:00', '2006-04-14 00:00', '2005-07-13 00:00', '2004-12-10 00:00', '2004-08-31 00:00', '2004-04-09 00:00', '2004-03-09 00:00', '2004-02-23 00:00', '2004-02-18 00:00', '2004-02-15 00:00', '2004-01-24 00:00', '2003-12-18 00:00', '2003-12-10 00:00', '2003-09-19 00:00', '2003-08-26 00:00', '2003-07-30 00:00', '2002-05-06 00:00',))
if mibBuilder.loadTexts: cadHardwareMeasMib.setLastUpdated('201508270000Z')
if mibBuilder.loadTexts: cadHardwareMeasMib.setOrganization('Arris International, Inc.')
class DFIDIndex(TextualConvention, Unsigned32):
status = 'current'
subtypeSpec = Unsigned32.subtypeSpec + ValueRangeConstraint(1, 4294967295)
class PktClassId(TextualConvention, Integer32):
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ValueRangeConstraint(1, 65535)
class SFIDIndex(TextualConvention, Integer32):
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ValueRangeConstraint(1, 2147483647)
class UFIDIndex(TextualConvention, Integer32):
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ValueRangeConstraint(1, 32768)
class SIDValue(TextualConvention, Integer32):
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ValueRangeConstraint(0, 16384)
class TMSide(TextualConvention, Integer32):
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("tma", 1), ("tmb", 2))
cadantHWMeasGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 1))
cadantFabActualDepth = MibScalar((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantFabActualDepth.setStatus('current')
cadantFabAvgDepth = MibScalar((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantFabAvgDepth.setStatus('current')
cadantUPortMeasTable = MibTable((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3), )
if mibBuilder.loadTexts: cadantUPortMeasTable.setStatus('current')
cadantUPortMeasEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1), ).setIndexNames((0, "CADANT-HW-MEAS-MIB", "cadantUPortMeasCardId"), (0, "CADANT-HW-MEAS-MIB", "cadantUPortMeasPortId"))
if mibBuilder.loadTexts: cadantUPortMeasEntry.setStatus('current')
cadantUPortMeasCardId = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 1), CardId())
if mibBuilder.loadTexts: cadantUPortMeasCardId.setStatus('current')
cadantUPortMeasPortId = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 2), PortId())
if mibBuilder.loadTexts: cadantUPortMeasPortId.setStatus('current')
cadantUPortMeasUcastFrms = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUPortMeasUcastFrms.setStatus('current')
cadantUPortMeasMcastFrms = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 4), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUPortMeasMcastFrms.setStatus('current')
cadantUPortMeasBcastFrms = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 5), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUPortMeasBcastFrms.setStatus('current')
cadantUPortMeasUcastDataFrms = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 6), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUPortMeasUcastDataFrms.setStatus('current')
cadantUPortMeasMcastDataFrms = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 7), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUPortMeasMcastDataFrms.setStatus('current')
cadantUPortMeasBcastDataFrms = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 8), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUPortMeasBcastDataFrms.setStatus('current')
cadantUPortMeasDiscardFrms = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 9), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUPortMeasDiscardFrms.setStatus('current')
cadantUPortMeasIfInOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 10), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUPortMeasIfInOctets.setStatus('current')
cadantUPortMeasIfInDataOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 11), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUPortMeasIfInDataOctets.setStatus('current')
cadantUPortMeasIfInUnknownProtos = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 12), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUPortMeasIfInUnknownProtos.setStatus('current')
cadantUPortMeasAppMinusBWReqFrms = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 13), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUPortMeasAppMinusBWReqFrms.setStatus('current')
cadantUPortMeasErroredFrms = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 15), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUPortMeasErroredFrms.setStatus('current')
cadantUPortMeasFilteredFrms = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 16), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUPortMeasFilteredFrms.setStatus('current')
cadantUPortMeasBcastReqOpps = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 17), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUPortMeasBcastReqOpps.setStatus('current')
cadantUPortMeasBcastReqColls = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 18), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUPortMeasBcastReqColls.setStatus('current')
cadantUPortMeasBcastReqNoEnergies = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 19), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUPortMeasBcastReqNoEnergies.setStatus('current')
cadantUPortMeasBcastReqRxPwr1s = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 20), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUPortMeasBcastReqRxPwr1s.setStatus('current')
cadantUPortMeasBcastReqRxPwr2s = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 21), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUPortMeasBcastReqRxPwr2s.setStatus('current')
cadantUPortMeasInitMaintOpps = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 22), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUPortMeasInitMaintOpps.setStatus('current')
cadantUPortMeasInitMaintColls = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 23), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUPortMeasInitMaintColls.setStatus('current')
cadantUPortMeasInitMaintNoEnergies = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 24), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUPortMeasInitMaintNoEnergies.setStatus('current')
cadantUPortMeasInitMaintRxPwr1s = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 25), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUPortMeasInitMaintRxPwr1s.setStatus('current')
cadantUPortMeasInitMaintRxPwr2s = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 26), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUPortMeasInitMaintRxPwr2s.setStatus('current')
cadantDPortMeasTable = MibTable((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4), )
if mibBuilder.loadTexts: cadantDPortMeasTable.setStatus('current')
cadantDPortMeasEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1), ).setIndexNames((0, "CADANT-HW-MEAS-MIB", "cadantDPortMeasCardId"), (0, "CADANT-HW-MEAS-MIB", "cadantDPortMeasPortId"))
if mibBuilder.loadTexts: cadantDPortMeasEntry.setStatus('current')
cadantDPortMeasCardId = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 1), CardId())
if mibBuilder.loadTexts: cadantDPortMeasCardId.setStatus('current')
cadantDPortMeasPortId = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 2), PortId())
if mibBuilder.loadTexts: cadantDPortMeasPortId.setStatus('current')
cadantDPortMeasIfOutOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantDPortMeasIfOutOctets.setStatus('current')
cadantDPortMeasIfOutUcastPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 4), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantDPortMeasIfOutUcastPkts.setStatus('current')
cadantDPortMeasIfOutMcastPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 5), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantDPortMeasIfOutMcastPkts.setStatus('current')
cadantDPortMeasIfOutBcastPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 6), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantDPortMeasIfOutBcastPkts.setStatus('current')
cadantDPortMeasIfOutDataOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 7), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantDPortMeasIfOutDataOctets.setStatus('current')
cadantDPortMeasIfOutUcastDataPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 8), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantDPortMeasIfOutUcastDataPkts.setStatus('current')
cadantDPortMeasIfOutMcastDataPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 9), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantDPortMeasIfOutMcastDataPkts.setStatus('current')
cadantDPortMeasIfOutBcastDataPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 10), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantDPortMeasIfOutBcastDataPkts.setStatus('current')
cadantDPortMeasGotNoDMACs = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 11), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantDPortMeasGotNoDMACs.setStatus('current')
cadantDPortMeasGotNoClasses = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 12), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantDPortMeasGotNoClasses.setStatus('current')
cadantDPortMeasSyncPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 13), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantDPortMeasSyncPkts.setStatus('current')
cadantDPortMeasAppUcastPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 14), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantDPortMeasAppUcastPkts.setStatus('current')
cadantDPortMeasAppMcastPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 15), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantDPortMeasAppMcastPkts.setStatus('current')
cadantDPortMeasIfOutTotalOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 16), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantDPortMeasIfOutTotalOctets.setStatus('current')
cadantDPortMeasOfdmIfSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 17), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantDPortMeasOfdmIfSpeed.setStatus('current')
cadantDPortMeasOfdmHighestAvgBitsPerSubc = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 18), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantDPortMeasOfdmHighestAvgBitsPerSubc.setStatus('current')
cadantDPortMeasOfdmNumDataSubc = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 19), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantDPortMeasOfdmNumDataSubc.setStatus('current')
cadantDPortMeasOfdmChanUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('percent').setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantDPortMeasOfdmChanUtilization.setStatus('current')
cadantUFIDMeasTable = MibTable((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6), )
if mibBuilder.loadTexts: cadantUFIDMeasTable.setStatus('current')
cadantUFIDMeasEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CADANT-HW-MEAS-MIB", "cadantUFIDMeasSID"))
if mibBuilder.loadTexts: cadantUFIDMeasEntry.setStatus('current')
cadantUFIDMeasSID = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 3), SIDValue())
if mibBuilder.loadTexts: cadantUFIDMeasSID.setStatus('current')
cadantUFIDMeasPktsSGreedyDrop = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 4), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasPktsSGreedyDrop.setStatus('current')
cadantUFIDMeasBytsOtherDrop = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 5), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasBytsOtherDrop.setStatus('current')
cadantUFIDMeasBytsArrived = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 6), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasBytsArrived.setStatus('current')
cadantUFIDMeasPktsArrived = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 7), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasPktsArrived.setStatus('current')
cadantUFIDMeasSIDCorrecteds = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 8), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasSIDCorrecteds.setStatus('current')
cadantUFIDMeasSIDUnerroreds = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 9), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasSIDUnerroreds.setStatus('current')
cadantUFIDMeasSIDUnCorrecteds = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 10), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasSIDUnCorrecteds.setStatus('current')
cadantUFIDMeasSIDNoUniqueWordDetecteds = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 11), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasSIDNoUniqueWordDetecteds.setStatus('current')
cadantUFIDMeasSIDCollidedBursts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 12), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasSIDCollidedBursts.setStatus('current')
cadantUFIDMeasSIDNoEnergyDetecteds = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 13), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasSIDNoEnergyDetecteds.setStatus('current')
cadantUFIDMeasSIDLengthErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 14), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasSIDLengthErrors.setStatus('current')
cadantUFIDMeasSIDMACErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 15), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasSIDMACErrors.setStatus('current')
cadantUFIDMeasMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 17), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasMacAddress.setStatus('current')
cadantUFIDMeasSCN = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 18), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasSCN.setStatus('current')
cadantUFIDMeasSFID = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 19), SFIDIndex()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasSFID.setStatus('current')
cadantUFIDMeasPHSUnknowns = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 20), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasPHSUnknowns.setStatus('current')
cadantUFIDMeasFragPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 21), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasFragPkts.setStatus('current')
cadantUFIDMeasIncompletePkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 22), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasIncompletePkts.setStatus('current')
cadantUFIDMeasConcatBursts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 23), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasConcatBursts.setStatus('current')
cadantUFIDMeasSIDSignalNoise = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 24), TenthdB()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasSIDSignalNoise.setStatus('current')
cadantUFIDMeasSIDMicroreflections = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 25), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasSIDMicroreflections.setStatus('current')
cadantUFIDMeasSIDHCSErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 26), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasSIDHCSErrors.setStatus('current')
cadantUFIDMeasSIDCRCErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 27), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasSIDCRCErrors.setStatus('current')
cadantUFIDMeasUFIDIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 28), UFIDIndex()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasUFIDIndex.setStatus('current')
cadantUFIDMeasGateID = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 29), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasGateID.setStatus('current')
cadantUFIDMeasSIDMacIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 30), InterfaceIndex()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasSIDMacIfIndex.setStatus('current')
cadantUFIDMeasSIDBonded = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 31), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasSIDBonded.setStatus('current')
cadantUFIDMeasCcfStatsSgmtValids = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 32), Counter32()).setUnits('segments').setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasCcfStatsSgmtValids.setStatus('current')
cadantUFIDMeasCcfStatsSgmtLost = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 33), Counter32()).setUnits('segments').setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasCcfStatsSgmtLost.setStatus('current')
cadantUFIDMeasCcfStatsSgmtDrop = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 34), Counter32()).setUnits('segments').setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantUFIDMeasCcfStatsSgmtDrop.setStatus('current')
cadantEtherPhyMeasTable = MibTable((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10), )
if mibBuilder.loadTexts: cadantEtherPhyMeasTable.setStatus('current')
cadantEtherPhyMeasEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1), ).setIndexNames((0, "CADANT-HW-MEAS-MIB", "cadantEtherPhyMeasCardId"), (0, "CADANT-HW-MEAS-MIB", "cadantEtherPhyMeasPortId"))
if mibBuilder.loadTexts: cadantEtherPhyMeasEntry.setStatus('current')
cadantEtherPhyMeasCardId = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 1), CardId())
if mibBuilder.loadTexts: cadantEtherPhyMeasCardId.setStatus('current')
cadantEtherPhyMeasPortId = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 2), PortId())
if mibBuilder.loadTexts: cadantEtherPhyMeasPortId.setStatus('current')
cadantEtherPhyMeasRxOctOK = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasRxOctOK.setStatus('current')
cadantEtherPhyMeasRxUniOK = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 4), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasRxUniOK.setStatus('current')
cadantEtherPhyMeasRxMultiOK = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 5), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasRxMultiOK.setStatus('current')
cadantEtherPhyMeasRxBroadOK = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 6), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasRxBroadOK.setStatus('current')
cadantEtherPhyMeasRxOverflow = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 7), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasRxOverflow.setStatus('current')
cadantEtherPhyMeasRxNormAlign = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 8), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasRxNormAlign.setStatus('current')
cadantEtherPhyMeasRxNormCRC = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 9), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasRxNormCRC.setStatus('current')
cadantEtherPhyMeasRxLongOK = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 10), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasRxLongOK.setStatus('current')
cadantEtherPhyMeasRxLongCRC = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 11), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasRxLongCRC.setStatus('current')
cadantEtherPhyMeasRxFalsCRS = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 12), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasRxFalsCRS.setStatus('current')
cadantEtherPhyMeasRxSymbolErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 13), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasRxSymbolErrors.setStatus('current')
cadantEtherPhyMeasRxPause = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 14), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasRxPause.setStatus('current')
cadantEtherPhyMeasTxOctOK = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 15), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasTxOctOK.setStatus('current')
cadantEtherPhyMeasTxUniOK = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 16), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasTxUniOK.setStatus('current')
cadantEtherPhyMeasTxMultiOK = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 17), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasTxMultiOK.setStatus('current')
cadantEtherPhyMeasTxBroadOK = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 18), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasTxBroadOK.setStatus('current')
cadantEtherPhyMeasTxScol = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 19), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasTxScol.setStatus('current')
cadantEtherPhyMeasTxMcol = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 20), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasTxMcol.setStatus('current')
cadantEtherPhyMeasTxDeferred = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 21), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasTxDeferred.setStatus('current')
cadantEtherPhyMeasTxLcol = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 22), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasTxLcol.setStatus('current')
cadantEtherPhyMeasTxCcol = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 23), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasTxCcol.setStatus('current')
cadantEtherPhyMeasTxErr = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 24), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasTxErr.setStatus('current')
cadantEtherPhyMeasTxPause = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 25), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasTxPause.setStatus('current')
cadantEtherPhyMeasRxShortOK = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 26), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasRxShortOK.setStatus('current')
cadantEtherPhyMeasRxShortCRC = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 27), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasRxShortCRC.setStatus('current')
cadantEtherPhyMeasRxRunt = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 28), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasRxRunt.setStatus('current')
cadantEtherPhyMeasRxOctBad = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 29), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadantEtherPhyMeasRxOctBad.setStatus('current')
cadDFIDMeasTable = MibTable((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14), )
if mibBuilder.loadTexts: cadDFIDMeasTable.setStatus('current')
cadDFIDMeasEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CADANT-HW-MEAS-MIB", "cadDFIDMeasIndex"))
if mibBuilder.loadTexts: cadDFIDMeasEntry.setStatus('current')
cadDFIDMeasIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 3), SFIDIndex())
if mibBuilder.loadTexts: cadDFIDMeasIndex.setStatus('current')
cadDFIDMeasBytsArrived = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 4), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadDFIDMeasBytsArrived.setStatus('current')
cadDFIDMeasPktsArrived = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 5), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadDFIDMeasPktsArrived.setStatus('current')
cadDFIDMeasBytsDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 6), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadDFIDMeasBytsDropped.setStatus('current')
cadDFIDMeasPktsDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 7), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadDFIDMeasPktsDropped.setStatus('current')
cadDFIDMeasBytsUnkDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 8), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadDFIDMeasBytsUnkDropped.setStatus('current')
cadDFIDMeasDFID = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 9), DFIDIndex()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadDFIDMeasDFID.setStatus('current')
cadDFIDMeasPHSUnknowns = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 10), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadDFIDMeasPHSUnknowns.setStatus('current')
cadDFIDMeasMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 11), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadDFIDMeasMacAddress.setStatus('current')
cadDFIDMeasSCN = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 12), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadDFIDMeasSCN.setStatus('current')
cadDFIDMeasPolicedDelayPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 13), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadDFIDMeasPolicedDelayPkts.setStatus('current')
cadDFIDMeasGateID = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 14), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadDFIDMeasGateID.setStatus('current')
cadQosPktClassMeasTable = MibTable((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 16), )
if mibBuilder.loadTexts: cadQosPktClassMeasTable.setStatus('current')
cadQosPktClassMeasEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 16, 1), ).setIndexNames((0, "CADANT-HW-MEAS-MIB", "cadQosPktClassMeasIfIndex"), (0, "CADANT-HW-MEAS-MIB", "cadQosPktClassMeasSFID"), (0, "CADANT-HW-MEAS-MIB", "cadQosPktClassMeasPktClassId"))
if mibBuilder.loadTexts: cadQosPktClassMeasEntry.setStatus('current')
cadQosPktClassMeasIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 16, 1, 1), InterfaceIndex())
if mibBuilder.loadTexts: cadQosPktClassMeasIfIndex.setStatus('current')
cadQosPktClassMeasSFID = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 16, 1, 2), SFIDIndex())
if mibBuilder.loadTexts: cadQosPktClassMeasSFID.setStatus('current')
cadQosPktClassMeasPktClassId = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 16, 1, 3), PktClassId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadQosPktClassMeasPktClassId.setStatus('current')
cadQosPktClassMeasPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 16, 1, 4), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadQosPktClassMeasPkts.setStatus('current')
cadIfMeasTable = MibTable((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18), )
if mibBuilder.loadTexts: cadIfMeasTable.setStatus('current')
cadIfMeasEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: cadIfMeasEntry.setStatus('current')
cadIfInOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 1), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadIfInOctets.setStatus('current')
cadIfInUcastPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 2), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadIfInUcastPkts.setStatus('current')
cadIfInMulticastPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadIfInMulticastPkts.setStatus('current')
cadIfInBroadcastPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 4), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadIfInBroadcastPkts.setStatus('current')
cadIfInDiscards = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 5), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadIfInDiscards.setStatus('current')
cadIfInErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 6), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadIfInErrors.setStatus('current')
cadIfInUnknownProtos = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 7), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadIfInUnknownProtos.setStatus('current')
cadIfOutOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 8), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadIfOutOctets.setStatus('current')
cadIfOutUcastPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 9), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadIfOutUcastPkts.setStatus('current')
cadIfOutMulticastPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 10), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadIfOutMulticastPkts.setStatus('current')
cadIfOutBroadcastPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 11), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadIfOutBroadcastPkts.setStatus('current')
cadIfOutDiscards = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 12), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadIfOutDiscards.setStatus('current')
cadIfOutErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 13), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadIfOutErrors.setStatus('current')
cadDCardMeasTable = MibTable((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 20), )
if mibBuilder.loadTexts: cadDCardMeasTable.setStatus('current')
cadDCardMeasEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 20, 1), ).setIndexNames((0, "CADANT-HW-MEAS-MIB", "cadDCardMeasCardId"))
if mibBuilder.loadTexts: cadDCardMeasEntry.setStatus('current')
cadDCardMeasCardId = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 20, 1, 1), CardId())
if mibBuilder.loadTexts: cadDCardMeasCardId.setStatus('current')
cadDCardIpInReceives = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 20, 1, 2), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadDCardIpInReceives.setStatus('current')
cadDCardIpInHdrErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 20, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadDCardIpInHdrErrors.setStatus('current')
cadDCardIpInAddrErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 20, 1, 4), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadDCardIpInAddrErrors.setStatus('current')
cadDCardDhcpThrottleDropPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 20, 1, 5), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadDCardDhcpThrottleDropPkts.setStatus('current')
cadDCardArpThrottleDropPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 20, 1, 6), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadDCardArpThrottleDropPkts.setStatus('current')
cadDCardDhcpV6ThrottleDropPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 20, 1, 7), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadDCardDhcpV6ThrottleDropPkts.setStatus('current')
cadDCardNdThrottleDropPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 20, 1, 8), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadDCardNdThrottleDropPkts.setStatus('current')
cadDCardIgmpThrottleDropPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 20, 1, 9), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadDCardIgmpThrottleDropPkts.setStatus('current')
cadInterfaceUtilizationTable = MibTable((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 23), )
if mibBuilder.loadTexts: cadInterfaceUtilizationTable.setStatus('current')
cadInterfaceUtilizationEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 23, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CADANT-HW-MEAS-MIB", "cadInterfaceUtilizationDirection"))
if mibBuilder.loadTexts: cadInterfaceUtilizationEntry.setStatus('current')
cadInterfaceUtilizationDirection = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 23, 1, 1), CadIfDirection())
if mibBuilder.loadTexts: cadInterfaceUtilizationDirection.setStatus('current')
cadInterfaceUtilizationPercentage = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 23, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('percent').setMaxAccess("readonly")
if mibBuilder.loadTexts: cadInterfaceUtilizationPercentage.setStatus('current')
cadInterfaceUtilizationAvgContSlots = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 23, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('percent').setMaxAccess("readonly")
if mibBuilder.loadTexts: cadInterfaceUtilizationAvgContSlots.setStatus('current')
cadInterfaceHighResUtilizationPercentage = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 23, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 10000))).setUnits('Hundredth of a percent').setMaxAccess("readonly")
if mibBuilder.loadTexts: cadInterfaceHighResUtilizationPercentage.setStatus('current')
cadInterfaceIntervalOctetsForwarded = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 23, 1, 5), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadInterfaceIntervalOctetsForwarded.setStatus('current')
cadSubMgtPktFilterExtTable = MibTable((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 25), )
if mibBuilder.loadTexts: cadSubMgtPktFilterExtTable.setStatus('current')
cadSubMgtPktFilterExtEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 25, 1), )
docsSubmgt3FilterGrpEntry.registerAugmentions(("CADANT-HW-MEAS-MIB", "cadSubMgtPktFilterExtEntry"))
cadSubMgtPktFilterExtEntry.setIndexNames(*docsSubmgt3FilterGrpEntry.getIndexNames())
if mibBuilder.loadTexts: cadSubMgtPktFilterExtEntry.setStatus('current')
cadSubMgtPktFilterMatchesReset = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 25, 1, 1), TruthValue().clone('false')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cadSubMgtPktFilterMatchesReset.setStatus('current')
cadSubMgtPktFilterLastChanged = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 25, 1, 2), TimeStamp()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadSubMgtPktFilterLastChanged.setStatus('current')
cadSubMgtPktFilterCaptureEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 25, 1, 3), TruthValue().clone('false')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cadSubMgtPktFilterCaptureEnabled.setStatus('current')
cadLaesCountTable = MibTable((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 26), )
if mibBuilder.loadTexts: cadLaesCountTable.setStatus('current')
cadLaesCountEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 26, 1), ).setIndexNames((0, "PKTC-ES-TAP-MIB", "pktcEScTapMediationContentId"), (0, "PKTC-ES-TAP-MIB", "pktcEScTapStreamIndex"))
if mibBuilder.loadTexts: cadLaesCountEntry.setStatus('current')
cadLaesCountMacDomainIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 26, 1, 1), InterfaceIndex()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadLaesCountMacDomainIfIndex.setStatus('current')
cadLaesCountStreamDirection = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 26, 1, 2), IfDirection()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadLaesCountStreamDirection.setStatus('current')
cadLaesCountInterceptedPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 26, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadLaesCountInterceptedPackets.setStatus('current')
cadLaesCountInterceptDrops = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 26, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadLaesCountInterceptDrops.setStatus('current')
cadFftUpstreamChannelTable = MibTable((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 24), )
if mibBuilder.loadTexts: cadFftUpstreamChannelTable.setStatus('current')
cadFftUpstreamChannelEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 24, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: cadFftUpstreamChannelEntry.setStatus('current')
cadFftInProgress = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 24, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadFftInProgress.setStatus('current')
cadFftCurrentTriggers = MibTableColumn((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 24, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cadFftCurrentTriggers.setStatus('current')
mibBuilder.exportSymbols("CADANT-HW-MEAS-MIB", cadantDPortMeasOfdmNumDataSubc=cadantDPortMeasOfdmNumDataSubc, cadIfInUcastPkts=cadIfInUcastPkts, cadDCardDhcpV6ThrottleDropPkts=cadDCardDhcpV6ThrottleDropPkts, cadIfInMulticastPkts=cadIfInMulticastPkts, cadSubMgtPktFilterCaptureEnabled=cadSubMgtPktFilterCaptureEnabled, cadLaesCountMacDomainIfIndex=cadLaesCountMacDomainIfIndex, cadFftUpstreamChannelEntry=cadFftUpstreamChannelEntry, cadIfInOctets=cadIfInOctets, cadantEtherPhyMeasRxOctOK=cadantEtherPhyMeasRxOctOK, cadantEtherPhyMeasRxLongCRC=cadantEtherPhyMeasRxLongCRC, cadantUPortMeasMcastFrms=cadantUPortMeasMcastFrms, cadantUFIDMeasPHSUnknowns=cadantUFIDMeasPHSUnknowns, cadantUFIDMeasSIDUnerroreds=cadantUFIDMeasSIDUnerroreds, cadantEtherPhyMeasTxUniOK=cadantEtherPhyMeasTxUniOK, cadantEtherPhyMeasRxMultiOK=cadantEtherPhyMeasRxMultiOK, cadSubMgtPktFilterExtEntry=cadSubMgtPktFilterExtEntry, cadantEtherPhyMeasRxFalsCRS=cadantEtherPhyMeasRxFalsCRS, cadantUPortMeasUcastFrms=cadantUPortMeasUcastFrms, cadantEtherPhyMeasRxSymbolErrors=cadantEtherPhyMeasRxSymbolErrors, cadantUPortMeasIfInOctets=cadantUPortMeasIfInOctets, cadLaesCountEntry=cadLaesCountEntry, cadantUFIDMeasIncompletePkts=cadantUFIDMeasIncompletePkts, cadantEtherPhyMeasRxOctBad=cadantEtherPhyMeasRxOctBad, DFIDIndex=DFIDIndex, cadantUPortMeasMcastDataFrms=cadantUPortMeasMcastDataFrms, cadLaesCountInterceptDrops=cadLaesCountInterceptDrops, cadantUPortMeasBcastDataFrms=cadantUPortMeasBcastDataFrms, cadantDPortMeasGotNoDMACs=cadantDPortMeasGotNoDMACs, cadInterfaceHighResUtilizationPercentage=cadInterfaceHighResUtilizationPercentage, cadantUFIDMeasSIDCorrecteds=cadantUFIDMeasSIDCorrecteds, cadantEtherPhyMeasTxMultiOK=cadantEtherPhyMeasTxMultiOK, cadantUPortMeasTable=cadantUPortMeasTable, cadantFabAvgDepth=cadantFabAvgDepth, cadantDPortMeasIfOutBcastPkts=cadantDPortMeasIfOutBcastPkts, cadantUFIDMeasBytsArrived=cadantUFIDMeasBytsArrived, cadIfOutOctets=cadIfOutOctets, cadInterfaceIntervalOctetsForwarded=cadInterfaceIntervalOctetsForwarded, cadantUPortMeasEntry=cadantUPortMeasEntry, cadLaesCountTable=cadLaesCountTable, cadantDPortMeasPortId=cadantDPortMeasPortId, cadIfInDiscards=cadIfInDiscards, cadantEtherPhyMeasRxShortOK=cadantEtherPhyMeasRxShortOK, cadantEtherPhyMeasRxPause=cadantEtherPhyMeasRxPause, cadDFIDMeasSCN=cadDFIDMeasSCN, cadDCardNdThrottleDropPkts=cadDCardNdThrottleDropPkts, cadantUFIDMeasPktsArrived=cadantUFIDMeasPktsArrived, cadantDPortMeasIfOutMcastDataPkts=cadantDPortMeasIfOutMcastDataPkts, cadantUFIDMeasFragPkts=cadantUFIDMeasFragPkts, cadantEtherPhyMeasTxCcol=cadantEtherPhyMeasTxCcol, cadSubMgtPktFilterExtTable=cadSubMgtPktFilterExtTable, cadantUFIDMeasBytsOtherDrop=cadantUFIDMeasBytsOtherDrop, cadantDPortMeasIfOutUcastDataPkts=cadantDPortMeasIfOutUcastDataPkts, cadantUFIDMeasEntry=cadantUFIDMeasEntry, cadDFIDMeasBytsArrived=cadDFIDMeasBytsArrived, cadantUPortMeasIfInDataOctets=cadantUPortMeasIfInDataOctets, cadantUFIDMeasSFID=cadantUFIDMeasSFID, cadDCardMeasEntry=cadDCardMeasEntry, cadantDPortMeasIfOutDataOctets=cadantDPortMeasIfOutDataOctets, cadHardwareMeasMib=cadHardwareMeasMib, cadantUFIDMeasCcfStatsSgmtLost=cadantUFIDMeasCcfStatsSgmtLost, cadantUFIDMeasPktsSGreedyDrop=cadantUFIDMeasPktsSGreedyDrop, cadantUFIDMeasSIDMicroreflections=cadantUFIDMeasSIDMicroreflections, cadIfOutDiscards=cadIfOutDiscards, UFIDIndex=UFIDIndex, cadantUFIDMeasSIDBonded=cadantUFIDMeasSIDBonded, cadantEtherPhyMeasRxBroadOK=cadantEtherPhyMeasRxBroadOK, cadantEtherPhyMeasRxOverflow=cadantEtherPhyMeasRxOverflow, cadantEtherPhyMeasRxShortCRC=cadantEtherPhyMeasRxShortCRC, cadDCardArpThrottleDropPkts=cadDCardArpThrottleDropPkts, cadantUFIDMeasSIDHCSErrors=cadantUFIDMeasSIDHCSErrors, cadantUFIDMeasConcatBursts=cadantUFIDMeasConcatBursts, cadInterfaceUtilizationPercentage=cadInterfaceUtilizationPercentage, cadantEtherPhyMeasPortId=cadantEtherPhyMeasPortId, cadInterfaceUtilizationEntry=cadInterfaceUtilizationEntry, cadantUFIDMeasSIDNoUniqueWordDetecteds=cadantUFIDMeasSIDNoUniqueWordDetecteds, cadantUPortMeasInitMaintColls=cadantUPortMeasInitMaintColls, cadantDPortMeasIfOutBcastDataPkts=cadantDPortMeasIfOutBcastDataPkts, cadantEtherPhyMeasTxBroadOK=cadantEtherPhyMeasTxBroadOK, cadantDPortMeasEntry=cadantDPortMeasEntry, cadIfInUnknownProtos=cadIfInUnknownProtos, cadantDPortMeasIfOutOctets=cadantDPortMeasIfOutOctets, cadDCardIpInHdrErrors=cadDCardIpInHdrErrors, cadantUPortMeasBcastFrms=cadantUPortMeasBcastFrms, cadDCardDhcpThrottleDropPkts=cadDCardDhcpThrottleDropPkts, cadDFIDMeasIndex=cadDFIDMeasIndex, cadantEtherPhyMeasRxNormAlign=cadantEtherPhyMeasRxNormAlign, cadantEtherPhyMeasTxLcol=cadantEtherPhyMeasTxLcol, cadantEtherPhyMeasCardId=cadantEtherPhyMeasCardId, cadantDPortMeasIfOutUcastPkts=cadantDPortMeasIfOutUcastPkts, cadantDPortMeasAppMcastPkts=cadantDPortMeasAppMcastPkts, cadantUFIDMeasCcfStatsSgmtDrop=cadantUFIDMeasCcfStatsSgmtDrop, cadantEtherPhyMeasEntry=cadantEtherPhyMeasEntry, cadIfInErrors=cadIfInErrors, cadantEtherPhyMeasRxUniOK=cadantEtherPhyMeasRxUniOK, cadantUFIDMeasSIDSignalNoise=cadantUFIDMeasSIDSignalNoise, cadLaesCountInterceptedPackets=cadLaesCountInterceptedPackets, cadantUPortMeasFilteredFrms=cadantUPortMeasFilteredFrms, cadantEtherPhyMeasRxLongOK=cadantEtherPhyMeasRxLongOK, cadFftUpstreamChannelTable=cadFftUpstreamChannelTable, cadDCardIpInReceives=cadDCardIpInReceives, cadQosPktClassMeasPkts=cadQosPktClassMeasPkts, cadIfMeasEntry=cadIfMeasEntry, cadantUFIDMeasMacAddress=cadantUFIDMeasMacAddress, cadantDPortMeasOfdmIfSpeed=cadantDPortMeasOfdmIfSpeed, cadIfOutMulticastPkts=cadIfOutMulticastPkts, cadantUPortMeasIfInUnknownProtos=cadantUPortMeasIfInUnknownProtos, cadIfInBroadcastPkts=cadIfInBroadcastPkts, PYSNMP_MODULE_ID=cadHardwareMeasMib, cadantHWMeasGeneral=cadantHWMeasGeneral, cadantUPortMeasBcastReqOpps=cadantUPortMeasBcastReqOpps, cadantUPortMeasCardId=cadantUPortMeasCardId, cadantUFIDMeasSIDUnCorrecteds=cadantUFIDMeasSIDUnCorrecteds, cadantUPortMeasPortId=cadantUPortMeasPortId, cadantEtherPhyMeasTxOctOK=cadantEtherPhyMeasTxOctOK, cadantUFIDMeasCcfStatsSgmtValids=cadantUFIDMeasCcfStatsSgmtValids, cadIfOutUcastPkts=cadIfOutUcastPkts, cadDFIDMeasMacAddress=cadDFIDMeasMacAddress, cadantUFIDMeasSIDMACErrors=cadantUFIDMeasSIDMACErrors, cadantUPortMeasBcastReqRxPwr2s=cadantUPortMeasBcastReqRxPwr2s, cadIfMeasTable=cadIfMeasTable, cadFftCurrentTriggers=cadFftCurrentTriggers, cadantUFIDMeasTable=cadantUFIDMeasTable, cadantEtherPhyMeasTxErr=cadantEtherPhyMeasTxErr, cadDFIDMeasTable=cadDFIDMeasTable, cadantUFIDMeasSCN=cadantUFIDMeasSCN, SIDValue=SIDValue, cadSubMgtPktFilterMatchesReset=cadSubMgtPktFilterMatchesReset, cadantDPortMeasIfOutMcastPkts=cadantDPortMeasIfOutMcastPkts, cadantDPortMeasOfdmHighestAvgBitsPerSubc=cadantDPortMeasOfdmHighestAvgBitsPerSubc, cadDCardMeasTable=cadDCardMeasTable, cadDFIDMeasBytsDropped=cadDFIDMeasBytsDropped, cadIfOutBroadcastPkts=cadIfOutBroadcastPkts, cadantUFIDMeasSIDMacIfIndex=cadantUFIDMeasSIDMacIfIndex, cadDFIDMeasDFID=cadDFIDMeasDFID, cadantUPortMeasAppMinusBWReqFrms=cadantUPortMeasAppMinusBWReqFrms, cadantDPortMeasCardId=cadantDPortMeasCardId, cadantUFIDMeasSIDLengthErrors=cadantUFIDMeasSIDLengthErrors, cadantEtherPhyMeasTxPause=cadantEtherPhyMeasTxPause, cadantEtherPhyMeasRxNormCRC=cadantEtherPhyMeasRxNormCRC, cadantUPortMeasBcastReqNoEnergies=cadantUPortMeasBcastReqNoEnergies, cadantUPortMeasBcastReqRxPwr1s=cadantUPortMeasBcastReqRxPwr1s, cadDFIDMeasPktsArrived=cadDFIDMeasPktsArrived, cadantFabActualDepth=cadantFabActualDepth, cadantUFIDMeasSID=cadantUFIDMeasSID, cadIfOutErrors=cadIfOutErrors, cadQosPktClassMeasPktClassId=cadQosPktClassMeasPktClassId, PktClassId=PktClassId, cadantUPortMeasInitMaintOpps=cadantUPortMeasInitMaintOpps, cadDFIDMeasPolicedDelayPkts=cadDFIDMeasPolicedDelayPkts, cadInterfaceUtilizationTable=cadInterfaceUtilizationTable, cadInterfaceUtilizationAvgContSlots=cadInterfaceUtilizationAvgContSlots, cadantEtherPhyMeasTxDeferred=cadantEtherPhyMeasTxDeferred, cadantUFIDMeasSIDCRCErrors=cadantUFIDMeasSIDCRCErrors, cadantUPortMeasErroredFrms=cadantUPortMeasErroredFrms, cadantDPortMeasOfdmChanUtilization=cadantDPortMeasOfdmChanUtilization, TMSide=TMSide, cadQosPktClassMeasSFID=cadQosPktClassMeasSFID, cadantUPortMeasDiscardFrms=cadantUPortMeasDiscardFrms, cadantDPortMeasIfOutTotalOctets=cadantDPortMeasIfOutTotalOctets, cadantUPortMeasInitMaintRxPwr1s=cadantUPortMeasInitMaintRxPwr1s, cadQosPktClassMeasIfIndex=cadQosPktClassMeasIfIndex, cadantUFIDMeasUFIDIndex=cadantUFIDMeasUFIDIndex, SFIDIndex=SFIDIndex, cadSubMgtPktFilterLastChanged=cadSubMgtPktFilterLastChanged, cadantEtherPhyMeasTxScol=cadantEtherPhyMeasTxScol, cadantDPortMeasSyncPkts=cadantDPortMeasSyncPkts, cadDFIDMeasPktsDropped=cadDFIDMeasPktsDropped, cadDCardMeasCardId=cadDCardMeasCardId, cadantEtherPhyMeasTxMcol=cadantEtherPhyMeasTxMcol, cadantEtherPhyMeasTable=cadantEtherPhyMeasTable, cadQosPktClassMeasTable=cadQosPktClassMeasTable, cadFftInProgress=cadFftInProgress, cadantUPortMeasBcastReqColls=cadantUPortMeasBcastReqColls, cadantDPortMeasGotNoClasses=cadantDPortMeasGotNoClasses, cadantUFIDMeasSIDCollidedBursts=cadantUFIDMeasSIDCollidedBursts, cadQosPktClassMeasEntry=cadQosPktClassMeasEntry, cadantDPortMeasTable=cadantDPortMeasTable, cadLaesCountStreamDirection=cadLaesCountStreamDirection, cadantDPortMeasAppUcastPkts=cadantDPortMeasAppUcastPkts, cadDFIDMeasEntry=cadDFIDMeasEntry, cadDFIDMeasBytsUnkDropped=cadDFIDMeasBytsUnkDropped, cadantUFIDMeasGateID=cadantUFIDMeasGateID, cadDFIDMeasGateID=cadDFIDMeasGateID, cadantUFIDMeasSIDNoEnergyDetecteds=cadantUFIDMeasSIDNoEnergyDetecteds, cadantUPortMeasInitMaintRxPwr2s=cadantUPortMeasInitMaintRxPwr2s, cadDCardIgmpThrottleDropPkts=cadDCardIgmpThrottleDropPkts, cadInterfaceUtilizationDirection=cadInterfaceUtilizationDirection, cadantUPortMeasUcastDataFrms=cadantUPortMeasUcastDataFrms, cadantEtherPhyMeasRxRunt=cadantEtherPhyMeasRxRunt, cadDFIDMeasPHSUnknowns=cadDFIDMeasPHSUnknowns, cadDCardIpInAddrErrors=cadDCardIpInAddrErrors, cadantUPortMeasInitMaintNoEnergies=cadantUPortMeasInitMaintNoEnergies)
| (octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_size_constraint, constraints_union, single_value_constraint, constraints_intersection, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'ConstraintsUnion', 'SingleValueConstraint', 'ConstraintsIntersection', 'ValueRangeConstraint')
(cad_if3_cmts_cm_us_status_ch_if_index,) = mibBuilder.importSymbols('CADANT-CMTS-IF3-MIB', 'cadIf3CmtsCmUsStatusChIfIndex')
(cad_if_mac_domain_if_index,) = mibBuilder.importSymbols('CADANT-CMTS-LAYER2CMTS-MIB', 'cadIfMacDomainIfIndex')
(cad_if_cmts_cm_status_mac_address,) = mibBuilder.importSymbols('CADANT-CMTS-MAC-MIB', 'cadIfCmtsCmStatusMacAddress')
(cad_equipment,) = mibBuilder.importSymbols('CADANT-PRODUCTS-MIB', 'cadEquipment')
(card_id, cad_if_direction, port_id) = mibBuilder.importSymbols('CADANT-TC', 'CardId', 'CadIfDirection', 'PortId')
(tenthd_b,) = mibBuilder.importSymbols('DOCS-IF-MIB', 'TenthdB')
(if_direction,) = mibBuilder.importSymbols('DOCS-QOS3-MIB', 'IfDirection')
(docs_submgt3_filter_grp_entry,) = mibBuilder.importSymbols('DOCS-SUBMGT3-MIB', 'docsSubmgt3FilterGrpEntry')
(if_index, interface_index) = mibBuilder.importSymbols('IF-MIB', 'ifIndex', 'InterfaceIndex')
(pktc_e_sc_tap_stream_index, pktc_e_sc_tap_mediation_content_id) = mibBuilder.importSymbols('PKTC-ES-TAP-MIB', 'pktcEScTapStreamIndex', 'pktcEScTapMediationContentId')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(time_ticks, mib_identifier, counter32, object_identity, module_identity, counter64, notification_type, bits, integer32, ip_address, gauge32, mib_scalar, mib_table, mib_table_row, mib_table_column, iso, unsigned32) = mibBuilder.importSymbols('SNMPv2-SMI', 'TimeTicks', 'MibIdentifier', 'Counter32', 'ObjectIdentity', 'ModuleIdentity', 'Counter64', 'NotificationType', 'Bits', 'Integer32', 'IpAddress', 'Gauge32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'iso', 'Unsigned32')
(truth_value, display_string, time_stamp, mac_address, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'TruthValue', 'DisplayString', 'TimeStamp', 'MacAddress', 'TextualConvention')
cad_hardware_meas_mib = module_identity((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2))
cadHardwareMeasMib.setRevisions(('2015-08-27 00:00', '2015-07-13 00:00', '2015-06-03 00:00', '2014-10-14 00:00', '2014-06-13 00:00', '2014-06-04 00:00', '2013-11-22 00:00', '2012-10-30 00:00', '2012-05-09 00:00', '2011-08-31 00:00', '2011-06-29 00:00', '2011-02-28 00:00', '2011-02-24 00:00', '2011-02-18 00:00', '2010-11-22 00:00', '2010-03-09 00:00', '2008-11-24 00:00', '2008-11-21 00:00', '2008-11-05 00:00', '2008-04-24 00:00', '2006-09-14 00:00', '2006-04-14 00:00', '2005-07-13 00:00', '2004-12-10 00:00', '2004-08-31 00:00', '2004-04-09 00:00', '2004-03-09 00:00', '2004-02-23 00:00', '2004-02-18 00:00', '2004-02-15 00:00', '2004-01-24 00:00', '2003-12-18 00:00', '2003-12-10 00:00', '2003-09-19 00:00', '2003-08-26 00:00', '2003-07-30 00:00', '2002-05-06 00:00'))
if mibBuilder.loadTexts:
cadHardwareMeasMib.setLastUpdated('201508270000Z')
if mibBuilder.loadTexts:
cadHardwareMeasMib.setOrganization('Arris International, Inc.')
class Dfidindex(TextualConvention, Unsigned32):
status = 'current'
subtype_spec = Unsigned32.subtypeSpec + value_range_constraint(1, 4294967295)
class Pktclassid(TextualConvention, Integer32):
status = 'current'
subtype_spec = Integer32.subtypeSpec + value_range_constraint(1, 65535)
class Sfidindex(TextualConvention, Integer32):
status = 'current'
subtype_spec = Integer32.subtypeSpec + value_range_constraint(1, 2147483647)
class Ufidindex(TextualConvention, Integer32):
status = 'current'
subtype_spec = Integer32.subtypeSpec + value_range_constraint(1, 32768)
class Sidvalue(TextualConvention, Integer32):
status = 'current'
subtype_spec = Integer32.subtypeSpec + value_range_constraint(0, 16384)
class Tmside(TextualConvention, Integer32):
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('tma', 1), ('tmb', 2))
cadant_hw_meas_general = mib_identifier((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 1))
cadant_fab_actual_depth = mib_scalar((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantFabActualDepth.setStatus('current')
cadant_fab_avg_depth = mib_scalar((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantFabAvgDepth.setStatus('current')
cadant_u_port_meas_table = mib_table((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3))
if mibBuilder.loadTexts:
cadantUPortMeasTable.setStatus('current')
cadant_u_port_meas_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1)).setIndexNames((0, 'CADANT-HW-MEAS-MIB', 'cadantUPortMeasCardId'), (0, 'CADANT-HW-MEAS-MIB', 'cadantUPortMeasPortId'))
if mibBuilder.loadTexts:
cadantUPortMeasEntry.setStatus('current')
cadant_u_port_meas_card_id = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 1), card_id())
if mibBuilder.loadTexts:
cadantUPortMeasCardId.setStatus('current')
cadant_u_port_meas_port_id = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 2), port_id())
if mibBuilder.loadTexts:
cadantUPortMeasPortId.setStatus('current')
cadant_u_port_meas_ucast_frms = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUPortMeasUcastFrms.setStatus('current')
cadant_u_port_meas_mcast_frms = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 4), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUPortMeasMcastFrms.setStatus('current')
cadant_u_port_meas_bcast_frms = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 5), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUPortMeasBcastFrms.setStatus('current')
cadant_u_port_meas_ucast_data_frms = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 6), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUPortMeasUcastDataFrms.setStatus('current')
cadant_u_port_meas_mcast_data_frms = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 7), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUPortMeasMcastDataFrms.setStatus('current')
cadant_u_port_meas_bcast_data_frms = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 8), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUPortMeasBcastDataFrms.setStatus('current')
cadant_u_port_meas_discard_frms = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 9), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUPortMeasDiscardFrms.setStatus('current')
cadant_u_port_meas_if_in_octets = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 10), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUPortMeasIfInOctets.setStatus('current')
cadant_u_port_meas_if_in_data_octets = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 11), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUPortMeasIfInDataOctets.setStatus('current')
cadant_u_port_meas_if_in_unknown_protos = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 12), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUPortMeasIfInUnknownProtos.setStatus('current')
cadant_u_port_meas_app_minus_bw_req_frms = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 13), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUPortMeasAppMinusBWReqFrms.setStatus('current')
cadant_u_port_meas_errored_frms = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 15), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUPortMeasErroredFrms.setStatus('current')
cadant_u_port_meas_filtered_frms = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 16), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUPortMeasFilteredFrms.setStatus('current')
cadant_u_port_meas_bcast_req_opps = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 17), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUPortMeasBcastReqOpps.setStatus('current')
cadant_u_port_meas_bcast_req_colls = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 18), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUPortMeasBcastReqColls.setStatus('current')
cadant_u_port_meas_bcast_req_no_energies = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 19), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUPortMeasBcastReqNoEnergies.setStatus('current')
cadant_u_port_meas_bcast_req_rx_pwr1s = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 20), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUPortMeasBcastReqRxPwr1s.setStatus('current')
cadant_u_port_meas_bcast_req_rx_pwr2s = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 21), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUPortMeasBcastReqRxPwr2s.setStatus('current')
cadant_u_port_meas_init_maint_opps = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 22), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUPortMeasInitMaintOpps.setStatus('current')
cadant_u_port_meas_init_maint_colls = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 23), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUPortMeasInitMaintColls.setStatus('current')
cadant_u_port_meas_init_maint_no_energies = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 24), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUPortMeasInitMaintNoEnergies.setStatus('current')
cadant_u_port_meas_init_maint_rx_pwr1s = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 25), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUPortMeasInitMaintRxPwr1s.setStatus('current')
cadant_u_port_meas_init_maint_rx_pwr2s = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 3, 1, 26), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUPortMeasInitMaintRxPwr2s.setStatus('current')
cadant_d_port_meas_table = mib_table((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4))
if mibBuilder.loadTexts:
cadantDPortMeasTable.setStatus('current')
cadant_d_port_meas_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1)).setIndexNames((0, 'CADANT-HW-MEAS-MIB', 'cadantDPortMeasCardId'), (0, 'CADANT-HW-MEAS-MIB', 'cadantDPortMeasPortId'))
if mibBuilder.loadTexts:
cadantDPortMeasEntry.setStatus('current')
cadant_d_port_meas_card_id = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 1), card_id())
if mibBuilder.loadTexts:
cadantDPortMeasCardId.setStatus('current')
cadant_d_port_meas_port_id = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 2), port_id())
if mibBuilder.loadTexts:
cadantDPortMeasPortId.setStatus('current')
cadant_d_port_meas_if_out_octets = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantDPortMeasIfOutOctets.setStatus('current')
cadant_d_port_meas_if_out_ucast_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 4), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantDPortMeasIfOutUcastPkts.setStatus('current')
cadant_d_port_meas_if_out_mcast_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 5), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantDPortMeasIfOutMcastPkts.setStatus('current')
cadant_d_port_meas_if_out_bcast_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 6), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantDPortMeasIfOutBcastPkts.setStatus('current')
cadant_d_port_meas_if_out_data_octets = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 7), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantDPortMeasIfOutDataOctets.setStatus('current')
cadant_d_port_meas_if_out_ucast_data_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 8), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantDPortMeasIfOutUcastDataPkts.setStatus('current')
cadant_d_port_meas_if_out_mcast_data_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 9), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantDPortMeasIfOutMcastDataPkts.setStatus('current')
cadant_d_port_meas_if_out_bcast_data_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 10), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantDPortMeasIfOutBcastDataPkts.setStatus('current')
cadant_d_port_meas_got_no_dma_cs = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 11), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantDPortMeasGotNoDMACs.setStatus('current')
cadant_d_port_meas_got_no_classes = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 12), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantDPortMeasGotNoClasses.setStatus('current')
cadant_d_port_meas_sync_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 13), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantDPortMeasSyncPkts.setStatus('current')
cadant_d_port_meas_app_ucast_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 14), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantDPortMeasAppUcastPkts.setStatus('current')
cadant_d_port_meas_app_mcast_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 15), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantDPortMeasAppMcastPkts.setStatus('current')
cadant_d_port_meas_if_out_total_octets = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 16), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantDPortMeasIfOutTotalOctets.setStatus('current')
cadant_d_port_meas_ofdm_if_speed = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 17), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantDPortMeasOfdmIfSpeed.setStatus('current')
cadant_d_port_meas_ofdm_highest_avg_bits_per_subc = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 18), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantDPortMeasOfdmHighestAvgBitsPerSubc.setStatus('current')
cadant_d_port_meas_ofdm_num_data_subc = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 19), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantDPortMeasOfdmNumDataSubc.setStatus('current')
cadant_d_port_meas_ofdm_chan_utilization = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 4, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setUnits('percent').setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantDPortMeasOfdmChanUtilization.setStatus('current')
cadant_ufid_meas_table = mib_table((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6))
if mibBuilder.loadTexts:
cadantUFIDMeasTable.setStatus('current')
cadant_ufid_meas_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'CADANT-HW-MEAS-MIB', 'cadantUFIDMeasSID'))
if mibBuilder.loadTexts:
cadantUFIDMeasEntry.setStatus('current')
cadant_ufid_meas_sid = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 3), sid_value())
if mibBuilder.loadTexts:
cadantUFIDMeasSID.setStatus('current')
cadant_ufid_meas_pkts_s_greedy_drop = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 4), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasPktsSGreedyDrop.setStatus('current')
cadant_ufid_meas_byts_other_drop = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 5), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasBytsOtherDrop.setStatus('current')
cadant_ufid_meas_byts_arrived = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 6), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasBytsArrived.setStatus('current')
cadant_ufid_meas_pkts_arrived = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 7), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasPktsArrived.setStatus('current')
cadant_ufid_meas_sid_correcteds = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 8), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasSIDCorrecteds.setStatus('current')
cadant_ufid_meas_sid_unerroreds = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 9), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasSIDUnerroreds.setStatus('current')
cadant_ufid_meas_sid_un_correcteds = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 10), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasSIDUnCorrecteds.setStatus('current')
cadant_ufid_meas_sid_no_unique_word_detecteds = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 11), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasSIDNoUniqueWordDetecteds.setStatus('current')
cadant_ufid_meas_sid_collided_bursts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 12), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasSIDCollidedBursts.setStatus('current')
cadant_ufid_meas_sid_no_energy_detecteds = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 13), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasSIDNoEnergyDetecteds.setStatus('current')
cadant_ufid_meas_sid_length_errors = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 14), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasSIDLengthErrors.setStatus('current')
cadant_ufid_meas_sidmac_errors = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 15), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasSIDMACErrors.setStatus('current')
cadant_ufid_meas_mac_address = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 17), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasMacAddress.setStatus('current')
cadant_ufid_meas_scn = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 18), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasSCN.setStatus('current')
cadant_ufid_meas_sfid = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 19), sfid_index()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasSFID.setStatus('current')
cadant_ufid_meas_phs_unknowns = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 20), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasPHSUnknowns.setStatus('current')
cadant_ufid_meas_frag_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 21), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasFragPkts.setStatus('current')
cadant_ufid_meas_incomplete_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 22), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasIncompletePkts.setStatus('current')
cadant_ufid_meas_concat_bursts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 23), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasConcatBursts.setStatus('current')
cadant_ufid_meas_sid_signal_noise = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 24), tenthd_b()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasSIDSignalNoise.setStatus('current')
cadant_ufid_meas_sid_microreflections = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 25), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasSIDMicroreflections.setStatus('current')
cadant_ufid_meas_sidhcs_errors = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 26), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasSIDHCSErrors.setStatus('current')
cadant_ufid_meas_sidcrc_errors = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 27), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasSIDCRCErrors.setStatus('current')
cadant_ufid_meas_ufid_index = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 28), ufid_index()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasUFIDIndex.setStatus('current')
cadant_ufid_meas_gate_id = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 29), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasGateID.setStatus('current')
cadant_ufid_meas_sid_mac_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 30), interface_index()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasSIDMacIfIndex.setStatus('current')
cadant_ufid_meas_sid_bonded = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 31), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasSIDBonded.setStatus('current')
cadant_ufid_meas_ccf_stats_sgmt_valids = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 32), counter32()).setUnits('segments').setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasCcfStatsSgmtValids.setStatus('current')
cadant_ufid_meas_ccf_stats_sgmt_lost = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 33), counter32()).setUnits('segments').setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasCcfStatsSgmtLost.setStatus('current')
cadant_ufid_meas_ccf_stats_sgmt_drop = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 6, 1, 34), counter32()).setUnits('segments').setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantUFIDMeasCcfStatsSgmtDrop.setStatus('current')
cadant_ether_phy_meas_table = mib_table((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10))
if mibBuilder.loadTexts:
cadantEtherPhyMeasTable.setStatus('current')
cadant_ether_phy_meas_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1)).setIndexNames((0, 'CADANT-HW-MEAS-MIB', 'cadantEtherPhyMeasCardId'), (0, 'CADANT-HW-MEAS-MIB', 'cadantEtherPhyMeasPortId'))
if mibBuilder.loadTexts:
cadantEtherPhyMeasEntry.setStatus('current')
cadant_ether_phy_meas_card_id = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 1), card_id())
if mibBuilder.loadTexts:
cadantEtherPhyMeasCardId.setStatus('current')
cadant_ether_phy_meas_port_id = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 2), port_id())
if mibBuilder.loadTexts:
cadantEtherPhyMeasPortId.setStatus('current')
cadant_ether_phy_meas_rx_oct_ok = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasRxOctOK.setStatus('current')
cadant_ether_phy_meas_rx_uni_ok = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 4), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasRxUniOK.setStatus('current')
cadant_ether_phy_meas_rx_multi_ok = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 5), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasRxMultiOK.setStatus('current')
cadant_ether_phy_meas_rx_broad_ok = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 6), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasRxBroadOK.setStatus('current')
cadant_ether_phy_meas_rx_overflow = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 7), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasRxOverflow.setStatus('current')
cadant_ether_phy_meas_rx_norm_align = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 8), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasRxNormAlign.setStatus('current')
cadant_ether_phy_meas_rx_norm_crc = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 9), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasRxNormCRC.setStatus('current')
cadant_ether_phy_meas_rx_long_ok = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 10), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasRxLongOK.setStatus('current')
cadant_ether_phy_meas_rx_long_crc = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 11), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasRxLongCRC.setStatus('current')
cadant_ether_phy_meas_rx_fals_crs = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 12), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasRxFalsCRS.setStatus('current')
cadant_ether_phy_meas_rx_symbol_errors = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 13), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasRxSymbolErrors.setStatus('current')
cadant_ether_phy_meas_rx_pause = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 14), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasRxPause.setStatus('current')
cadant_ether_phy_meas_tx_oct_ok = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 15), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasTxOctOK.setStatus('current')
cadant_ether_phy_meas_tx_uni_ok = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 16), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasTxUniOK.setStatus('current')
cadant_ether_phy_meas_tx_multi_ok = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 17), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasTxMultiOK.setStatus('current')
cadant_ether_phy_meas_tx_broad_ok = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 18), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasTxBroadOK.setStatus('current')
cadant_ether_phy_meas_tx_scol = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 19), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasTxScol.setStatus('current')
cadant_ether_phy_meas_tx_mcol = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 20), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasTxMcol.setStatus('current')
cadant_ether_phy_meas_tx_deferred = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 21), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasTxDeferred.setStatus('current')
cadant_ether_phy_meas_tx_lcol = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 22), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasTxLcol.setStatus('current')
cadant_ether_phy_meas_tx_ccol = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 23), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasTxCcol.setStatus('current')
cadant_ether_phy_meas_tx_err = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 24), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasTxErr.setStatus('current')
cadant_ether_phy_meas_tx_pause = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 25), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasTxPause.setStatus('current')
cadant_ether_phy_meas_rx_short_ok = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 26), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasRxShortOK.setStatus('current')
cadant_ether_phy_meas_rx_short_crc = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 27), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasRxShortCRC.setStatus('current')
cadant_ether_phy_meas_rx_runt = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 28), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasRxRunt.setStatus('current')
cadant_ether_phy_meas_rx_oct_bad = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 10, 1, 29), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadantEtherPhyMeasRxOctBad.setStatus('current')
cad_dfid_meas_table = mib_table((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14))
if mibBuilder.loadTexts:
cadDFIDMeasTable.setStatus('current')
cad_dfid_meas_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'CADANT-HW-MEAS-MIB', 'cadDFIDMeasIndex'))
if mibBuilder.loadTexts:
cadDFIDMeasEntry.setStatus('current')
cad_dfid_meas_index = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 3), sfid_index())
if mibBuilder.loadTexts:
cadDFIDMeasIndex.setStatus('current')
cad_dfid_meas_byts_arrived = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 4), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadDFIDMeasBytsArrived.setStatus('current')
cad_dfid_meas_pkts_arrived = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 5), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadDFIDMeasPktsArrived.setStatus('current')
cad_dfid_meas_byts_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 6), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadDFIDMeasBytsDropped.setStatus('current')
cad_dfid_meas_pkts_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 7), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadDFIDMeasPktsDropped.setStatus('current')
cad_dfid_meas_byts_unk_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 8), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadDFIDMeasBytsUnkDropped.setStatus('current')
cad_dfid_meas_dfid = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 9), dfid_index()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadDFIDMeasDFID.setStatus('current')
cad_dfid_meas_phs_unknowns = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 10), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadDFIDMeasPHSUnknowns.setStatus('current')
cad_dfid_meas_mac_address = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 11), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadDFIDMeasMacAddress.setStatus('current')
cad_dfid_meas_scn = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 12), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadDFIDMeasSCN.setStatus('current')
cad_dfid_meas_policed_delay_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 13), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadDFIDMeasPolicedDelayPkts.setStatus('current')
cad_dfid_meas_gate_id = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 14, 1, 14), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadDFIDMeasGateID.setStatus('current')
cad_qos_pkt_class_meas_table = mib_table((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 16))
if mibBuilder.loadTexts:
cadQosPktClassMeasTable.setStatus('current')
cad_qos_pkt_class_meas_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 16, 1)).setIndexNames((0, 'CADANT-HW-MEAS-MIB', 'cadQosPktClassMeasIfIndex'), (0, 'CADANT-HW-MEAS-MIB', 'cadQosPktClassMeasSFID'), (0, 'CADANT-HW-MEAS-MIB', 'cadQosPktClassMeasPktClassId'))
if mibBuilder.loadTexts:
cadQosPktClassMeasEntry.setStatus('current')
cad_qos_pkt_class_meas_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 16, 1, 1), interface_index())
if mibBuilder.loadTexts:
cadQosPktClassMeasIfIndex.setStatus('current')
cad_qos_pkt_class_meas_sfid = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 16, 1, 2), sfid_index())
if mibBuilder.loadTexts:
cadQosPktClassMeasSFID.setStatus('current')
cad_qos_pkt_class_meas_pkt_class_id = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 16, 1, 3), pkt_class_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadQosPktClassMeasPktClassId.setStatus('current')
cad_qos_pkt_class_meas_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 16, 1, 4), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadQosPktClassMeasPkts.setStatus('current')
cad_if_meas_table = mib_table((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18))
if mibBuilder.loadTexts:
cadIfMeasTable.setStatus('current')
cad_if_meas_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'))
if mibBuilder.loadTexts:
cadIfMeasEntry.setStatus('current')
cad_if_in_octets = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 1), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadIfInOctets.setStatus('current')
cad_if_in_ucast_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 2), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadIfInUcastPkts.setStatus('current')
cad_if_in_multicast_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadIfInMulticastPkts.setStatus('current')
cad_if_in_broadcast_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 4), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadIfInBroadcastPkts.setStatus('current')
cad_if_in_discards = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 5), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadIfInDiscards.setStatus('current')
cad_if_in_errors = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 6), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadIfInErrors.setStatus('current')
cad_if_in_unknown_protos = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 7), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadIfInUnknownProtos.setStatus('current')
cad_if_out_octets = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 8), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadIfOutOctets.setStatus('current')
cad_if_out_ucast_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 9), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadIfOutUcastPkts.setStatus('current')
cad_if_out_multicast_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 10), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadIfOutMulticastPkts.setStatus('current')
cad_if_out_broadcast_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 11), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadIfOutBroadcastPkts.setStatus('current')
cad_if_out_discards = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 12), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadIfOutDiscards.setStatus('current')
cad_if_out_errors = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 18, 1, 13), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadIfOutErrors.setStatus('current')
cad_d_card_meas_table = mib_table((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 20))
if mibBuilder.loadTexts:
cadDCardMeasTable.setStatus('current')
cad_d_card_meas_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 20, 1)).setIndexNames((0, 'CADANT-HW-MEAS-MIB', 'cadDCardMeasCardId'))
if mibBuilder.loadTexts:
cadDCardMeasEntry.setStatus('current')
cad_d_card_meas_card_id = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 20, 1, 1), card_id())
if mibBuilder.loadTexts:
cadDCardMeasCardId.setStatus('current')
cad_d_card_ip_in_receives = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 20, 1, 2), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadDCardIpInReceives.setStatus('current')
cad_d_card_ip_in_hdr_errors = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 20, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadDCardIpInHdrErrors.setStatus('current')
cad_d_card_ip_in_addr_errors = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 20, 1, 4), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadDCardIpInAddrErrors.setStatus('current')
cad_d_card_dhcp_throttle_drop_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 20, 1, 5), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadDCardDhcpThrottleDropPkts.setStatus('current')
cad_d_card_arp_throttle_drop_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 20, 1, 6), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadDCardArpThrottleDropPkts.setStatus('current')
cad_d_card_dhcp_v6_throttle_drop_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 20, 1, 7), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadDCardDhcpV6ThrottleDropPkts.setStatus('current')
cad_d_card_nd_throttle_drop_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 20, 1, 8), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadDCardNdThrottleDropPkts.setStatus('current')
cad_d_card_igmp_throttle_drop_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 20, 1, 9), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadDCardIgmpThrottleDropPkts.setStatus('current')
cad_interface_utilization_table = mib_table((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 23))
if mibBuilder.loadTexts:
cadInterfaceUtilizationTable.setStatus('current')
cad_interface_utilization_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 23, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'CADANT-HW-MEAS-MIB', 'cadInterfaceUtilizationDirection'))
if mibBuilder.loadTexts:
cadInterfaceUtilizationEntry.setStatus('current')
cad_interface_utilization_direction = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 23, 1, 1), cad_if_direction())
if mibBuilder.loadTexts:
cadInterfaceUtilizationDirection.setStatus('current')
cad_interface_utilization_percentage = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 23, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setUnits('percent').setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadInterfaceUtilizationPercentage.setStatus('current')
cad_interface_utilization_avg_cont_slots = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 23, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setUnits('percent').setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadInterfaceUtilizationAvgContSlots.setStatus('current')
cad_interface_high_res_utilization_percentage = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 23, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 10000))).setUnits('Hundredth of a percent').setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadInterfaceHighResUtilizationPercentage.setStatus('current')
cad_interface_interval_octets_forwarded = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 23, 1, 5), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadInterfaceIntervalOctetsForwarded.setStatus('current')
cad_sub_mgt_pkt_filter_ext_table = mib_table((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 25))
if mibBuilder.loadTexts:
cadSubMgtPktFilterExtTable.setStatus('current')
cad_sub_mgt_pkt_filter_ext_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 25, 1))
docsSubmgt3FilterGrpEntry.registerAugmentions(('CADANT-HW-MEAS-MIB', 'cadSubMgtPktFilterExtEntry'))
cadSubMgtPktFilterExtEntry.setIndexNames(*docsSubmgt3FilterGrpEntry.getIndexNames())
if mibBuilder.loadTexts:
cadSubMgtPktFilterExtEntry.setStatus('current')
cad_sub_mgt_pkt_filter_matches_reset = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 25, 1, 1), truth_value().clone('false')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cadSubMgtPktFilterMatchesReset.setStatus('current')
cad_sub_mgt_pkt_filter_last_changed = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 25, 1, 2), time_stamp()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadSubMgtPktFilterLastChanged.setStatus('current')
cad_sub_mgt_pkt_filter_capture_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 25, 1, 3), truth_value().clone('false')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cadSubMgtPktFilterCaptureEnabled.setStatus('current')
cad_laes_count_table = mib_table((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 26))
if mibBuilder.loadTexts:
cadLaesCountTable.setStatus('current')
cad_laes_count_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 26, 1)).setIndexNames((0, 'PKTC-ES-TAP-MIB', 'pktcEScTapMediationContentId'), (0, 'PKTC-ES-TAP-MIB', 'pktcEScTapStreamIndex'))
if mibBuilder.loadTexts:
cadLaesCountEntry.setStatus('current')
cad_laes_count_mac_domain_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 26, 1, 1), interface_index()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadLaesCountMacDomainIfIndex.setStatus('current')
cad_laes_count_stream_direction = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 26, 1, 2), if_direction()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadLaesCountStreamDirection.setStatus('current')
cad_laes_count_intercepted_packets = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 26, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadLaesCountInterceptedPackets.setStatus('current')
cad_laes_count_intercept_drops = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 26, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadLaesCountInterceptDrops.setStatus('current')
cad_fft_upstream_channel_table = mib_table((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 24))
if mibBuilder.loadTexts:
cadFftUpstreamChannelTable.setStatus('current')
cad_fft_upstream_channel_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 24, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'))
if mibBuilder.loadTexts:
cadFftUpstreamChannelEntry.setStatus('current')
cad_fft_in_progress = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 24, 1, 1), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadFftInProgress.setStatus('current')
cad_fft_current_triggers = mib_table_column((1, 3, 6, 1, 4, 1, 4998, 1, 1, 10, 2, 24, 1, 2), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cadFftCurrentTriggers.setStatus('current')
mibBuilder.exportSymbols('CADANT-HW-MEAS-MIB', cadantDPortMeasOfdmNumDataSubc=cadantDPortMeasOfdmNumDataSubc, cadIfInUcastPkts=cadIfInUcastPkts, cadDCardDhcpV6ThrottleDropPkts=cadDCardDhcpV6ThrottleDropPkts, cadIfInMulticastPkts=cadIfInMulticastPkts, cadSubMgtPktFilterCaptureEnabled=cadSubMgtPktFilterCaptureEnabled, cadLaesCountMacDomainIfIndex=cadLaesCountMacDomainIfIndex, cadFftUpstreamChannelEntry=cadFftUpstreamChannelEntry, cadIfInOctets=cadIfInOctets, cadantEtherPhyMeasRxOctOK=cadantEtherPhyMeasRxOctOK, cadantEtherPhyMeasRxLongCRC=cadantEtherPhyMeasRxLongCRC, cadantUPortMeasMcastFrms=cadantUPortMeasMcastFrms, cadantUFIDMeasPHSUnknowns=cadantUFIDMeasPHSUnknowns, cadantUFIDMeasSIDUnerroreds=cadantUFIDMeasSIDUnerroreds, cadantEtherPhyMeasTxUniOK=cadantEtherPhyMeasTxUniOK, cadantEtherPhyMeasRxMultiOK=cadantEtherPhyMeasRxMultiOK, cadSubMgtPktFilterExtEntry=cadSubMgtPktFilterExtEntry, cadantEtherPhyMeasRxFalsCRS=cadantEtherPhyMeasRxFalsCRS, cadantUPortMeasUcastFrms=cadantUPortMeasUcastFrms, cadantEtherPhyMeasRxSymbolErrors=cadantEtherPhyMeasRxSymbolErrors, cadantUPortMeasIfInOctets=cadantUPortMeasIfInOctets, cadLaesCountEntry=cadLaesCountEntry, cadantUFIDMeasIncompletePkts=cadantUFIDMeasIncompletePkts, cadantEtherPhyMeasRxOctBad=cadantEtherPhyMeasRxOctBad, DFIDIndex=DFIDIndex, cadantUPortMeasMcastDataFrms=cadantUPortMeasMcastDataFrms, cadLaesCountInterceptDrops=cadLaesCountInterceptDrops, cadantUPortMeasBcastDataFrms=cadantUPortMeasBcastDataFrms, cadantDPortMeasGotNoDMACs=cadantDPortMeasGotNoDMACs, cadInterfaceHighResUtilizationPercentage=cadInterfaceHighResUtilizationPercentage, cadantUFIDMeasSIDCorrecteds=cadantUFIDMeasSIDCorrecteds, cadantEtherPhyMeasTxMultiOK=cadantEtherPhyMeasTxMultiOK, cadantUPortMeasTable=cadantUPortMeasTable, cadantFabAvgDepth=cadantFabAvgDepth, cadantDPortMeasIfOutBcastPkts=cadantDPortMeasIfOutBcastPkts, cadantUFIDMeasBytsArrived=cadantUFIDMeasBytsArrived, cadIfOutOctets=cadIfOutOctets, cadInterfaceIntervalOctetsForwarded=cadInterfaceIntervalOctetsForwarded, cadantUPortMeasEntry=cadantUPortMeasEntry, cadLaesCountTable=cadLaesCountTable, cadantDPortMeasPortId=cadantDPortMeasPortId, cadIfInDiscards=cadIfInDiscards, cadantEtherPhyMeasRxShortOK=cadantEtherPhyMeasRxShortOK, cadantEtherPhyMeasRxPause=cadantEtherPhyMeasRxPause, cadDFIDMeasSCN=cadDFIDMeasSCN, cadDCardNdThrottleDropPkts=cadDCardNdThrottleDropPkts, cadantUFIDMeasPktsArrived=cadantUFIDMeasPktsArrived, cadantDPortMeasIfOutMcastDataPkts=cadantDPortMeasIfOutMcastDataPkts, cadantUFIDMeasFragPkts=cadantUFIDMeasFragPkts, cadantEtherPhyMeasTxCcol=cadantEtherPhyMeasTxCcol, cadSubMgtPktFilterExtTable=cadSubMgtPktFilterExtTable, cadantUFIDMeasBytsOtherDrop=cadantUFIDMeasBytsOtherDrop, cadantDPortMeasIfOutUcastDataPkts=cadantDPortMeasIfOutUcastDataPkts, cadantUFIDMeasEntry=cadantUFIDMeasEntry, cadDFIDMeasBytsArrived=cadDFIDMeasBytsArrived, cadantUPortMeasIfInDataOctets=cadantUPortMeasIfInDataOctets, cadantUFIDMeasSFID=cadantUFIDMeasSFID, cadDCardMeasEntry=cadDCardMeasEntry, cadantDPortMeasIfOutDataOctets=cadantDPortMeasIfOutDataOctets, cadHardwareMeasMib=cadHardwareMeasMib, cadantUFIDMeasCcfStatsSgmtLost=cadantUFIDMeasCcfStatsSgmtLost, cadantUFIDMeasPktsSGreedyDrop=cadantUFIDMeasPktsSGreedyDrop, cadantUFIDMeasSIDMicroreflections=cadantUFIDMeasSIDMicroreflections, cadIfOutDiscards=cadIfOutDiscards, UFIDIndex=UFIDIndex, cadantUFIDMeasSIDBonded=cadantUFIDMeasSIDBonded, cadantEtherPhyMeasRxBroadOK=cadantEtherPhyMeasRxBroadOK, cadantEtherPhyMeasRxOverflow=cadantEtherPhyMeasRxOverflow, cadantEtherPhyMeasRxShortCRC=cadantEtherPhyMeasRxShortCRC, cadDCardArpThrottleDropPkts=cadDCardArpThrottleDropPkts, cadantUFIDMeasSIDHCSErrors=cadantUFIDMeasSIDHCSErrors, cadantUFIDMeasConcatBursts=cadantUFIDMeasConcatBursts, cadInterfaceUtilizationPercentage=cadInterfaceUtilizationPercentage, cadantEtherPhyMeasPortId=cadantEtherPhyMeasPortId, cadInterfaceUtilizationEntry=cadInterfaceUtilizationEntry, cadantUFIDMeasSIDNoUniqueWordDetecteds=cadantUFIDMeasSIDNoUniqueWordDetecteds, cadantUPortMeasInitMaintColls=cadantUPortMeasInitMaintColls, cadantDPortMeasIfOutBcastDataPkts=cadantDPortMeasIfOutBcastDataPkts, cadantEtherPhyMeasTxBroadOK=cadantEtherPhyMeasTxBroadOK, cadantDPortMeasEntry=cadantDPortMeasEntry, cadIfInUnknownProtos=cadIfInUnknownProtos, cadantDPortMeasIfOutOctets=cadantDPortMeasIfOutOctets, cadDCardIpInHdrErrors=cadDCardIpInHdrErrors, cadantUPortMeasBcastFrms=cadantUPortMeasBcastFrms, cadDCardDhcpThrottleDropPkts=cadDCardDhcpThrottleDropPkts, cadDFIDMeasIndex=cadDFIDMeasIndex, cadantEtherPhyMeasRxNormAlign=cadantEtherPhyMeasRxNormAlign, cadantEtherPhyMeasTxLcol=cadantEtherPhyMeasTxLcol, cadantEtherPhyMeasCardId=cadantEtherPhyMeasCardId, cadantDPortMeasIfOutUcastPkts=cadantDPortMeasIfOutUcastPkts, cadantDPortMeasAppMcastPkts=cadantDPortMeasAppMcastPkts, cadantUFIDMeasCcfStatsSgmtDrop=cadantUFIDMeasCcfStatsSgmtDrop, cadantEtherPhyMeasEntry=cadantEtherPhyMeasEntry, cadIfInErrors=cadIfInErrors, cadantEtherPhyMeasRxUniOK=cadantEtherPhyMeasRxUniOK, cadantUFIDMeasSIDSignalNoise=cadantUFIDMeasSIDSignalNoise, cadLaesCountInterceptedPackets=cadLaesCountInterceptedPackets, cadantUPortMeasFilteredFrms=cadantUPortMeasFilteredFrms, cadantEtherPhyMeasRxLongOK=cadantEtherPhyMeasRxLongOK, cadFftUpstreamChannelTable=cadFftUpstreamChannelTable, cadDCardIpInReceives=cadDCardIpInReceives, cadQosPktClassMeasPkts=cadQosPktClassMeasPkts, cadIfMeasEntry=cadIfMeasEntry, cadantUFIDMeasMacAddress=cadantUFIDMeasMacAddress, cadantDPortMeasOfdmIfSpeed=cadantDPortMeasOfdmIfSpeed, cadIfOutMulticastPkts=cadIfOutMulticastPkts, cadantUPortMeasIfInUnknownProtos=cadantUPortMeasIfInUnknownProtos, cadIfInBroadcastPkts=cadIfInBroadcastPkts, PYSNMP_MODULE_ID=cadHardwareMeasMib, cadantHWMeasGeneral=cadantHWMeasGeneral, cadantUPortMeasBcastReqOpps=cadantUPortMeasBcastReqOpps, cadantUPortMeasCardId=cadantUPortMeasCardId, cadantUFIDMeasSIDUnCorrecteds=cadantUFIDMeasSIDUnCorrecteds, cadantUPortMeasPortId=cadantUPortMeasPortId, cadantEtherPhyMeasTxOctOK=cadantEtherPhyMeasTxOctOK, cadantUFIDMeasCcfStatsSgmtValids=cadantUFIDMeasCcfStatsSgmtValids, cadIfOutUcastPkts=cadIfOutUcastPkts, cadDFIDMeasMacAddress=cadDFIDMeasMacAddress, cadantUFIDMeasSIDMACErrors=cadantUFIDMeasSIDMACErrors, cadantUPortMeasBcastReqRxPwr2s=cadantUPortMeasBcastReqRxPwr2s, cadIfMeasTable=cadIfMeasTable, cadFftCurrentTriggers=cadFftCurrentTriggers, cadantUFIDMeasTable=cadantUFIDMeasTable, cadantEtherPhyMeasTxErr=cadantEtherPhyMeasTxErr, cadDFIDMeasTable=cadDFIDMeasTable, cadantUFIDMeasSCN=cadantUFIDMeasSCN, SIDValue=SIDValue, cadSubMgtPktFilterMatchesReset=cadSubMgtPktFilterMatchesReset, cadantDPortMeasIfOutMcastPkts=cadantDPortMeasIfOutMcastPkts, cadantDPortMeasOfdmHighestAvgBitsPerSubc=cadantDPortMeasOfdmHighestAvgBitsPerSubc, cadDCardMeasTable=cadDCardMeasTable, cadDFIDMeasBytsDropped=cadDFIDMeasBytsDropped, cadIfOutBroadcastPkts=cadIfOutBroadcastPkts, cadantUFIDMeasSIDMacIfIndex=cadantUFIDMeasSIDMacIfIndex, cadDFIDMeasDFID=cadDFIDMeasDFID, cadantUPortMeasAppMinusBWReqFrms=cadantUPortMeasAppMinusBWReqFrms, cadantDPortMeasCardId=cadantDPortMeasCardId, cadantUFIDMeasSIDLengthErrors=cadantUFIDMeasSIDLengthErrors, cadantEtherPhyMeasTxPause=cadantEtherPhyMeasTxPause, cadantEtherPhyMeasRxNormCRC=cadantEtherPhyMeasRxNormCRC, cadantUPortMeasBcastReqNoEnergies=cadantUPortMeasBcastReqNoEnergies, cadantUPortMeasBcastReqRxPwr1s=cadantUPortMeasBcastReqRxPwr1s, cadDFIDMeasPktsArrived=cadDFIDMeasPktsArrived, cadantFabActualDepth=cadantFabActualDepth, cadantUFIDMeasSID=cadantUFIDMeasSID, cadIfOutErrors=cadIfOutErrors, cadQosPktClassMeasPktClassId=cadQosPktClassMeasPktClassId, PktClassId=PktClassId, cadantUPortMeasInitMaintOpps=cadantUPortMeasInitMaintOpps, cadDFIDMeasPolicedDelayPkts=cadDFIDMeasPolicedDelayPkts, cadInterfaceUtilizationTable=cadInterfaceUtilizationTable, cadInterfaceUtilizationAvgContSlots=cadInterfaceUtilizationAvgContSlots, cadantEtherPhyMeasTxDeferred=cadantEtherPhyMeasTxDeferred, cadantUFIDMeasSIDCRCErrors=cadantUFIDMeasSIDCRCErrors, cadantUPortMeasErroredFrms=cadantUPortMeasErroredFrms, cadantDPortMeasOfdmChanUtilization=cadantDPortMeasOfdmChanUtilization, TMSide=TMSide, cadQosPktClassMeasSFID=cadQosPktClassMeasSFID, cadantUPortMeasDiscardFrms=cadantUPortMeasDiscardFrms, cadantDPortMeasIfOutTotalOctets=cadantDPortMeasIfOutTotalOctets, cadantUPortMeasInitMaintRxPwr1s=cadantUPortMeasInitMaintRxPwr1s, cadQosPktClassMeasIfIndex=cadQosPktClassMeasIfIndex, cadantUFIDMeasUFIDIndex=cadantUFIDMeasUFIDIndex, SFIDIndex=SFIDIndex, cadSubMgtPktFilterLastChanged=cadSubMgtPktFilterLastChanged, cadantEtherPhyMeasTxScol=cadantEtherPhyMeasTxScol, cadantDPortMeasSyncPkts=cadantDPortMeasSyncPkts, cadDFIDMeasPktsDropped=cadDFIDMeasPktsDropped, cadDCardMeasCardId=cadDCardMeasCardId, cadantEtherPhyMeasTxMcol=cadantEtherPhyMeasTxMcol, cadantEtherPhyMeasTable=cadantEtherPhyMeasTable, cadQosPktClassMeasTable=cadQosPktClassMeasTable, cadFftInProgress=cadFftInProgress, cadantUPortMeasBcastReqColls=cadantUPortMeasBcastReqColls, cadantDPortMeasGotNoClasses=cadantDPortMeasGotNoClasses, cadantUFIDMeasSIDCollidedBursts=cadantUFIDMeasSIDCollidedBursts, cadQosPktClassMeasEntry=cadQosPktClassMeasEntry, cadantDPortMeasTable=cadantDPortMeasTable, cadLaesCountStreamDirection=cadLaesCountStreamDirection, cadantDPortMeasAppUcastPkts=cadantDPortMeasAppUcastPkts, cadDFIDMeasEntry=cadDFIDMeasEntry, cadDFIDMeasBytsUnkDropped=cadDFIDMeasBytsUnkDropped, cadantUFIDMeasGateID=cadantUFIDMeasGateID, cadDFIDMeasGateID=cadDFIDMeasGateID, cadantUFIDMeasSIDNoEnergyDetecteds=cadantUFIDMeasSIDNoEnergyDetecteds, cadantUPortMeasInitMaintRxPwr2s=cadantUPortMeasInitMaintRxPwr2s, cadDCardIgmpThrottleDropPkts=cadDCardIgmpThrottleDropPkts, cadInterfaceUtilizationDirection=cadInterfaceUtilizationDirection, cadantUPortMeasUcastDataFrms=cadantUPortMeasUcastDataFrms, cadantEtherPhyMeasRxRunt=cadantEtherPhyMeasRxRunt, cadDFIDMeasPHSUnknowns=cadDFIDMeasPHSUnknowns, cadDCardIpInAddrErrors=cadDCardIpInAddrErrors, cadantUPortMeasInitMaintNoEnergies=cadantUPortMeasInitMaintNoEnergies) |
# -*- coding: UTF-8 -*-
# @yasinkuyu
# TODO
class analyze():
def position():
return 1
@staticmethod
def direction(ticker):
# Todo: Analyze, best price position
hight = float(ticker['hight'])
low = float(ticker['low'])
return False
| class Analyze:
def position():
return 1
@staticmethod
def direction(ticker):
hight = float(ticker['hight'])
low = float(ticker['low'])
return False |
"""
ID: MRNA
Title: Inferring mRNA from Protein
URL: http://rosalind.info/problems/mrna/
"""
# RNA codon table
rna_codon_dict = {
"F": ["UUU", "UUC"],
"L": ["UUA", "UUG", "CUU", "CUC", "CUA", "CUG"],
"S": ["UCU", "UCC", "UCA", "UCG", "AGU", "AGC"],
"Y": ["UAU", "UAC"],
"C": ["UGU", "UGC"],
"W": ["UGG"],
"P": ["CCU", "CCC", "CCA", "CCG"],
"H": ["CAU", "CAC"],
"Q": ["CAA", "CAG"],
"R": ["CGU", "CGC", "CGA", "CGG", "AGA", "AGG"],
"I": ["AUU", "AUC", "AUA"],
"M": ["AUG"],
"T": ["ACU", "ACC", "ACA", "ACG"],
"N": ["AAU", "AAC"],
"K": ["AAA", "AAG"],
"V": ["GUU", "GUC", "GUA", "GUG"],
"A": ["GCU", "GCC", "GCA", "GCG"],
"D": ["GAU", "GAC"],
"E": ["GAA", "GAG"],
"G": ["GGU", "GGC", "GGA", "GGG"],
"Stop": ["UAA", "UAG", "UGA"] # stop codons
}
def get_total(protein):
"""
Calculates the total number of different RNA strings from which the protein could have been translated, modulo
1000000.
Args:
protein (str): protein string.
Returns:
int: The total number of different RNA strings from which the protein could have been translated, modulo
1000000.
"""
total = 1
for character in protein:
total *= len(rna_codon_dict[character])
return (total * 3) % 1000000 # times 3 because of 3 possible stop codons
| """
ID: MRNA
Title: Inferring mRNA from Protein
URL: http://rosalind.info/problems/mrna/
"""
rna_codon_dict = {'F': ['UUU', 'UUC'], 'L': ['UUA', 'UUG', 'CUU', 'CUC', 'CUA', 'CUG'], 'S': ['UCU', 'UCC', 'UCA', 'UCG', 'AGU', 'AGC'], 'Y': ['UAU', 'UAC'], 'C': ['UGU', 'UGC'], 'W': ['UGG'], 'P': ['CCU', 'CCC', 'CCA', 'CCG'], 'H': ['CAU', 'CAC'], 'Q': ['CAA', 'CAG'], 'R': ['CGU', 'CGC', 'CGA', 'CGG', 'AGA', 'AGG'], 'I': ['AUU', 'AUC', 'AUA'], 'M': ['AUG'], 'T': ['ACU', 'ACC', 'ACA', 'ACG'], 'N': ['AAU', 'AAC'], 'K': ['AAA', 'AAG'], 'V': ['GUU', 'GUC', 'GUA', 'GUG'], 'A': ['GCU', 'GCC', 'GCA', 'GCG'], 'D': ['GAU', 'GAC'], 'E': ['GAA', 'GAG'], 'G': ['GGU', 'GGC', 'GGA', 'GGG'], 'Stop': ['UAA', 'UAG', 'UGA']}
def get_total(protein):
"""
Calculates the total number of different RNA strings from which the protein could have been translated, modulo
1000000.
Args:
protein (str): protein string.
Returns:
int: The total number of different RNA strings from which the protein could have been translated, modulo
1000000.
"""
total = 1
for character in protein:
total *= len(rna_codon_dict[character])
return total * 3 % 1000000 |
li = ["entrance"]
sc = ["food", "others", "descry"]
current = li[len(li) - 1]
size = len(li)
while True:
print(current)
choice = input("enter choice")
if choice == "b" and size == 1:
print("LAsT ScReEN")
elif choice == "b" and size > 1:
print(f"your were in {current}")
last = li[len(li) - 1]
li.remove(last)
current = li[len(li) - 1]
size = len(li)
if choice == "a":
name = input("Enter csn name")
li.append(name)
current = li[len(li) - 1]
size = len(li) - 1
if choice == "c":
print(f"you were in {current}")
print(f"you have {size} screens")
print(f"you have {sc}")
if choice == "q":
break
print("bye")
| li = ['entrance']
sc = ['food', 'others', 'descry']
current = li[len(li) - 1]
size = len(li)
while True:
print(current)
choice = input('enter choice')
if choice == 'b' and size == 1:
print('LAsT ScReEN')
elif choice == 'b' and size > 1:
print(f'your were in {current}')
last = li[len(li) - 1]
li.remove(last)
current = li[len(li) - 1]
size = len(li)
if choice == 'a':
name = input('Enter csn name')
li.append(name)
current = li[len(li) - 1]
size = len(li) - 1
if choice == 'c':
print(f'you were in {current}')
print(f'you have {size} screens')
print(f'you have {sc}')
if choice == 'q':
break
print('bye') |
#Placeholder class for player
class Player(object):
def __init__(self):
self.maxHp = 250
self.hp = self.maxHp
self.maxArk = 1000
self.ark = maxArk | class Player(object):
def __init__(self):
self.maxHp = 250
self.hp = self.maxHp
self.maxArk = 1000
self.ark = maxArk |
track_width = 1.4476123429435463
track_original = [(-7.328797578811646, 0.7067412286996826), (-7.174184083938599, 0.9988523125648499),
(-7.014955043792725, 1.2884796857833862), (-6.852129220962524, 1.5760955214500427),
(-6.69096302986145, 1.8646469712257385), (-6.549050569534302, 2.133627951145172),
(-6.420227527618408, 2.360764980316162), (-6.282472848892212, 2.563578486442566),
(-6.135417461395264, 2.7340999841690063), (-5.977877140045166, 2.8688275814056396),
(-5.81035041809082, 2.968791961669922), (-5.633065938949585, 3.0333319902420044),
(-5.446821928024292, 3.0640629529953003), (-5.251659393310547, 3.060586452484131),
(-5.045768976211548, 3.024727463722229), (-4.825798511505127, 2.9580509662628174),
(-4.588956356048584, 2.8663644790649414), (-4.31685209274292, 2.7589694261550903),
(-4.021718144416809, 2.6605225205421448), (-3.7218724489212036, 2.5771239399909973),
(-3.4001494646072388, 2.5014730095863342), (-3.0785800218582153, 2.4250680208206177),
(-2.7574269771575928, 2.3469924926757812), (-2.4364190101623535, 2.268289566040039),
(-2.1156229972839355, 2.18874454498291), (-1.7946394681930542, 2.1099590063095093),
(-1.4724169969558716, 2.036425471305847), (-1.1480990052223206, 1.972858488559723),
(-0.8215269446372986, 1.9220375418663025), (-0.49347320199012756, 1.882027506828308),
(-0.16523528099060059, 1.8431255221366882), (0.15957121597602963, 1.7846184968948364),
(0.47961319983005524, 1.704276978969574), (0.7935185432434082, 1.6027245819568634),
(1.1075600385665894, 1.5037027299404144), (1.3076865077018738, 1.4583993554115295),
(1.5055664777755737, 1.4348017573356628), (1.6923699975013733, 1.436053216457367),
(1.8664454817771912, 1.4613812565803528), (2.0277739763259888, 1.5097875595092773),
(2.178537964820862, 1.5850645303726196), (2.313390552997589, 1.6858949661254883),
(2.4278720021247864, 1.8132139444351196), (2.5151830315589905, 1.9660619497299194),
(2.566936492919922, 2.1485629677772526), (2.5689350366592407, 2.358330011367798),
(2.5144699811935425, 2.6066219806671143), (2.4257004261016846, 2.8845890760421753),
(2.3359305262565613, 3.2552294731140137), (2.3159735798835754, 3.5993000268936157),
(2.3787535429000854, 3.9212855100631714), (2.478807508945465, 4.290599465370178),
(2.636470079421997, 4.603878498077393), (2.8344470262527466, 4.881711959838867),
(3.0565370321273804, 5.138339042663574), (3.2876089811325073, 5.387208461761475),
(3.5140345096588135, 5.6403584480285645), (3.5140345096588135, 5.6403584480285645),
(3.7155704498291016, 5.867789030075073), (3.9150513410568237, 6.070695161819458),
(4.123555541038513, 6.237838506698608), (4.350278377532959, 6.357916831970215),
(4.597380638122559, 6.43809700012207), (4.853857040405273, 6.455471992492676),
(5.102698564529419, 6.429849624633789), (5.323245525360107, 6.36712646484375),
(5.529232978820801, 6.26619815826416), (5.686629056930542, 6.151557445526123),
(5.822824001312256, 6.024678468704224), (5.938603401184082, 5.889411926269531),
(6.033949375152588, 5.739620923995972), (6.104636907577515, 5.578918933868408),
(6.150783538818359, 5.403707981109619), (6.164923906326294, 5.222965478897095),
(6.1468329429626465, 5.038176536560059), (6.079972505569458, 4.82081151008606),
(5.97437596321106, 4.61850380897522), (5.8233723640441895, 4.414783954620361),
(5.634581804275513, 4.2054924964904785), (5.428040027618408, 3.975582003593445),
(5.241874933242798, 3.7154849767684937), (5.102576971054077, 3.419975996017456),
(5.015120983123779, 3.1196454763412476), (4.971808433532715, 2.8488609790802),
(4.960218191146851, 2.585760474205017), (4.977452993392944, 2.3392809629440308),
(5.023159027099609, 2.1146004796028137), (5.096908330917358, 1.921861469745636),
(5.196659564971924, 1.7596720457077026), (5.3221518993377686, 1.6261754631996155),
(5.46985650062561, 1.5239906907081604), (5.630683898925781, 1.4561519622802734),
(5.807667970657349, 1.418973684310913), (5.991654634475708, 1.4157988727092743),
(6.173375368118286, 1.4475385546684265), (6.361251354217529, 1.5157389640808105),
(6.552232980728149, 1.6238649785518646), (6.742959976196289, 1.7797954678535461),
(6.928569316864014, 1.979457974433899), (7.1327619552612305, 2.2291980385780334),
(7.3353002071380615, 2.4614279866218567), (7.552741527557373, 2.6543909907341003),
(7.788616895675659, 2.7964354753494263), (8.033162117004395, 2.8772475719451904),
(8.27453899383545, 2.8965189456939697), (8.491207122802734, 2.8657994270324707),
(8.696878433227539, 2.7887370586395264), (8.883398056030273, 2.671844482421875),
(9.050030708312988, 2.5171889066696167), (9.195130348205566, 2.3260200023651123),
(9.31544828414917, 2.1004135608673096), (9.404008388519287, 1.8435750007629395),
(9.44702672958374, 1.5588589906692505), (9.426554679870605, 1.2522504925727844),
(9.337581634521484, 0.9353834688663483), (9.192826747894287, 0.6319848001003265),
(8.996197700500488, 0.35549574717879295), (8.740715503692627, 0.12512008845806122),
(8.460927486419678, -0.07559703290462494), (8.175841569900513, -0.2658586651086807),
(7.892965793609619, -0.4588608369231224), (7.611706018447876, -0.6587495300918818),
(7.324141502380371, -0.8574651554226875), (7.013044595718384, -1.0239490866661072),
(6.681285381317139, -1.146332487463951), (6.335738897323608, -1.230746567249298),
(5.990506172180176, -1.2988191843032837), (5.643296957015991, -1.334423303604126),
(5.297202110290527, -1.3324593007564545), (4.961018323898315, -1.2930377125740051),
(4.627946138381958, -1.2881913483142853), (4.2974913120269775, -1.3248490691184998),
(3.971156597137451, -1.4057363867759705), (3.6392279863357544, -1.460619181394577),
(3.3074809312820435, -1.4712965488433838), (2.9761369228363037, -1.4499823153018951),
(2.649322509765625, -1.400215595960617), (2.3273664712905884, -1.3234277367591858),
(2.009637951850891, -1.2304291427135468), (1.7677425146102905, -1.1627453565597534),
(1.5230990052223206, -1.1080912500619888), (1.3532370328903198, -1.0856162011623383),
(1.195859968662262, -1.0760365426540375), (1.0345217287540436, -1.083674892783165),
(0.8724515438079834, -1.1083671748638153), (0.711279958486557, -1.152745246887207),
(0.5507968962192535, -1.209416925907135), (0.39081355929374695, -1.2751052379608154),
(0.20988519862294197, -1.352755606174469), (0.027120925951749086, -1.4227381646633148),
(-0.15986499935388565, -1.4767869412899017), (-0.35081079602241516, -1.5067747831344604),
(-0.5378659963607788, -1.50830939412117), (-0.7263861894607544, -1.4828526973724365),
(-0.9641014337539673, -1.4054632782936096), (-1.1858603358268738, -1.2872214317321777),
(-1.4105505347251892, -1.1229303479194641), (-1.6448439955711365, -0.9379797577857971),
(-1.8947490453720093, -0.7638485766947269), (-2.1554964780807495, -0.5910995323210955),
(-2.4273550510406494, -0.42916758358478546), (-2.725504517555237, -0.2837444841861725),
(-2.99622642993927, -0.18140959739685059), (-3.219103455543518, -0.11459633708000183),
(-3.4286000728607178, -0.0705919861793518), (-3.6258760690689087, -0.04686114192008972),
(-3.8121869564056396, -0.04533001780509949), (-3.989760994911194, -0.06408235430717468),
(-4.157929539680481, -0.10413399338722229), (-4.316835522651677, -0.16417834162712333),
(-4.466385602951046, -0.24498264491557906), (-4.601896524429319, -0.3419640436768511),
(-4.72392392158508, -0.45354240271262586), (-4.832186937332153, -0.5788427442312241),
(-4.923211812973023, -0.7173683494329479), (-4.9949941635131845, -0.8676890134811426),
(-5.046401023864746, -1.022179692983629), (-5.0796074867248535, -1.1705849170684814),
(-5.093028545379639, -1.3209239840507507), (-5.110311985015869, -1.545432984828949),
(-5.156613349914551, -1.8119059801101685), (-5.23431396484375, -2.074813961982727),
(-5.337328910827637, -2.3319250345230103), (-5.440672397613525, -2.5615949630737305),
(-5.537067413330078, -2.7935789823532104), (-5.601041078567505, -3.0084774494171143),
(-5.629537582397461, -3.2162104845046997), (-5.62337851524353, -3.4190534353256226),
(-5.583552598953247, -3.617501974105835), (-5.511371850967407, -3.813294529914856),
(-5.409692049026489, -4.009515404701233), (-5.285758972167969, -4.2109215259552),
(-5.15318751335144, -4.420788526535034), (-5.032635450363159, -4.634819030761719),
(-4.952491044998169, -4.822279453277588), (-4.896421194076538, -5.005449533462524),
(-4.867075443267822, -5.213198900222778), (-4.872295141220093, -5.416158437728882),
(-4.910168647766113, -5.610260486602783), (-4.973554372787476, -5.776232004165649),
(-5.060508966445923, -5.920712471008301), (-5.165009498596191, -6.048253059387207),
(-5.289099931716919, -6.157153606414795), (-5.434471368789673, -6.242535829544067),
(-5.604140520095825, -6.297412633895874), (-5.79407811164856, -6.322732925415039),
(-6.00898551940918, -6.311539173126221), (-6.244884967803955, -6.256653070449829),
(-6.4949564933776855, -6.147663354873657), (-6.781038045883179, -5.9773054122924805),
(-7.061333417892456, -5.802093505859375), (-7.340768337249756, -5.625651121139526),
(-7.619298696517944, -5.4476518630981445), (-7.828180313110352, -5.296770811080933),
(-8.016002416610718, -5.123382568359375), (-8.15831708908081, -4.937673568725586),
(-8.257988691329956, -4.7432403564453125), (-8.318733215332031, -4.53918194770813),
(-8.349838495254517, -4.327398061752319), (-8.358692169189453, -4.073875427246094),
(-8.348212242126465, -3.7435275316238403), (-8.3358793258667, -3.4132790565490723),
(-8.341327905654907, -3.082790970802307), (-8.343693256378174, -2.7523809671401978),
(-8.330488443374634, -2.4221235513687134), (-8.290509700775146, -2.0941930413246155),
(-8.228468656539917, -1.7695454955101013), (-8.158297777175903, -1.4466065168380737),
(-8.076175212860107, -1.1264664828777313), (-7.979531764984131, -0.8104383051395416),
(-7.870174884796143, -0.4985577389597893), (-7.749021291732788, -0.19107545539736748),
(-7.6169209480285645, 0.11187849193811417), (-7.476149082183838, 0.4108997918665409),
(-7.328797578811646, 0.7067412286996826)]
| track_width = 1.4476123429435463
track_original = [(-7.328797578811646, 0.7067412286996826), (-7.174184083938599, 0.9988523125648499), (-7.014955043792725, 1.2884796857833862), (-6.852129220962524, 1.5760955214500427), (-6.69096302986145, 1.8646469712257385), (-6.549050569534302, 2.133627951145172), (-6.420227527618408, 2.360764980316162), (-6.282472848892212, 2.563578486442566), (-6.135417461395264, 2.7340999841690063), (-5.977877140045166, 2.8688275814056396), (-5.81035041809082, 2.968791961669922), (-5.633065938949585, 3.0333319902420044), (-5.446821928024292, 3.0640629529953003), (-5.251659393310547, 3.060586452484131), (-5.045768976211548, 3.024727463722229), (-4.825798511505127, 2.9580509662628174), (-4.588956356048584, 2.8663644790649414), (-4.31685209274292, 2.7589694261550903), (-4.021718144416809, 2.6605225205421448), (-3.7218724489212036, 2.5771239399909973), (-3.4001494646072388, 2.5014730095863342), (-3.0785800218582153, 2.4250680208206177), (-2.7574269771575928, 2.3469924926757812), (-2.4364190101623535, 2.268289566040039), (-2.1156229972839355, 2.18874454498291), (-1.7946394681930542, 2.1099590063095093), (-1.4724169969558716, 2.036425471305847), (-1.1480990052223206, 1.972858488559723), (-0.8215269446372986, 1.9220375418663025), (-0.49347320199012756, 1.882027506828308), (-0.16523528099060059, 1.8431255221366882), (0.15957121597602963, 1.7846184968948364), (0.47961319983005524, 1.704276978969574), (0.7935185432434082, 1.6027245819568634), (1.1075600385665894, 1.5037027299404144), (1.3076865077018738, 1.4583993554115295), (1.5055664777755737, 1.4348017573356628), (1.6923699975013733, 1.436053216457367), (1.8664454817771912, 1.4613812565803528), (2.0277739763259888, 1.5097875595092773), (2.178537964820862, 1.5850645303726196), (2.313390552997589, 1.6858949661254883), (2.4278720021247864, 1.8132139444351196), (2.5151830315589905, 1.9660619497299194), (2.566936492919922, 2.1485629677772526), (2.5689350366592407, 2.358330011367798), (2.5144699811935425, 2.6066219806671143), (2.4257004261016846, 2.8845890760421753), (2.3359305262565613, 3.2552294731140137), (2.3159735798835754, 3.5993000268936157), (2.3787535429000854, 3.9212855100631714), (2.478807508945465, 4.290599465370178), (2.636470079421997, 4.603878498077393), (2.8344470262527466, 4.881711959838867), (3.0565370321273804, 5.138339042663574), (3.2876089811325073, 5.387208461761475), (3.5140345096588135, 5.6403584480285645), (3.5140345096588135, 5.6403584480285645), (3.7155704498291016, 5.867789030075073), (3.9150513410568237, 6.070695161819458), (4.123555541038513, 6.237838506698608), (4.350278377532959, 6.357916831970215), (4.597380638122559, 6.43809700012207), (4.853857040405273, 6.455471992492676), (5.102698564529419, 6.429849624633789), (5.323245525360107, 6.36712646484375), (5.529232978820801, 6.26619815826416), (5.686629056930542, 6.151557445526123), (5.822824001312256, 6.024678468704224), (5.938603401184082, 5.889411926269531), (6.033949375152588, 5.739620923995972), (6.104636907577515, 5.578918933868408), (6.150783538818359, 5.403707981109619), (6.164923906326294, 5.222965478897095), (6.1468329429626465, 5.038176536560059), (6.079972505569458, 4.82081151008606), (5.97437596321106, 4.61850380897522), (5.8233723640441895, 4.414783954620361), (5.634581804275513, 4.2054924964904785), (5.428040027618408, 3.975582003593445), (5.241874933242798, 3.7154849767684937), (5.102576971054077, 3.419975996017456), (5.015120983123779, 3.1196454763412476), (4.971808433532715, 2.8488609790802), (4.960218191146851, 2.585760474205017), (4.977452993392944, 2.3392809629440308), (5.023159027099609, 2.1146004796028137), (5.096908330917358, 1.921861469745636), (5.196659564971924, 1.7596720457077026), (5.3221518993377686, 1.6261754631996155), (5.46985650062561, 1.5239906907081604), (5.630683898925781, 1.4561519622802734), (5.807667970657349, 1.418973684310913), (5.991654634475708, 1.4157988727092743), (6.173375368118286, 1.4475385546684265), (6.361251354217529, 1.5157389640808105), (6.552232980728149, 1.6238649785518646), (6.742959976196289, 1.7797954678535461), (6.928569316864014, 1.979457974433899), (7.1327619552612305, 2.2291980385780334), (7.3353002071380615, 2.4614279866218567), (7.552741527557373, 2.6543909907341003), (7.788616895675659, 2.7964354753494263), (8.033162117004395, 2.8772475719451904), (8.27453899383545, 2.8965189456939697), (8.491207122802734, 2.8657994270324707), (8.696878433227539, 2.7887370586395264), (8.883398056030273, 2.671844482421875), (9.050030708312988, 2.5171889066696167), (9.195130348205566, 2.3260200023651123), (9.31544828414917, 2.1004135608673096), (9.404008388519287, 1.8435750007629395), (9.44702672958374, 1.5588589906692505), (9.426554679870605, 1.2522504925727844), (9.337581634521484, 0.9353834688663483), (9.192826747894287, 0.6319848001003265), (8.996197700500488, 0.35549574717879295), (8.740715503692627, 0.12512008845806122), (8.460927486419678, -0.07559703290462494), (8.175841569900513, -0.2658586651086807), (7.892965793609619, -0.4588608369231224), (7.611706018447876, -0.6587495300918818), (7.324141502380371, -0.8574651554226875), (7.013044595718384, -1.0239490866661072), (6.681285381317139, -1.146332487463951), (6.335738897323608, -1.230746567249298), (5.990506172180176, -1.2988191843032837), (5.643296957015991, -1.334423303604126), (5.297202110290527, -1.3324593007564545), (4.961018323898315, -1.2930377125740051), (4.627946138381958, -1.2881913483142853), (4.2974913120269775, -1.3248490691184998), (3.971156597137451, -1.4057363867759705), (3.6392279863357544, -1.460619181394577), (3.3074809312820435, -1.4712965488433838), (2.9761369228363037, -1.4499823153018951), (2.649322509765625, -1.400215595960617), (2.3273664712905884, -1.3234277367591858), (2.009637951850891, -1.2304291427135468), (1.7677425146102905, -1.1627453565597534), (1.5230990052223206, -1.1080912500619888), (1.3532370328903198, -1.0856162011623383), (1.195859968662262, -1.0760365426540375), (1.0345217287540436, -1.083674892783165), (0.8724515438079834, -1.1083671748638153), (0.711279958486557, -1.152745246887207), (0.5507968962192535, -1.209416925907135), (0.39081355929374695, -1.2751052379608154), (0.20988519862294197, -1.352755606174469), (0.027120925951749086, -1.4227381646633148), (-0.15986499935388565, -1.4767869412899017), (-0.35081079602241516, -1.5067747831344604), (-0.5378659963607788, -1.50830939412117), (-0.7263861894607544, -1.4828526973724365), (-0.9641014337539673, -1.4054632782936096), (-1.1858603358268738, -1.2872214317321777), (-1.4105505347251892, -1.1229303479194641), (-1.6448439955711365, -0.9379797577857971), (-1.8947490453720093, -0.7638485766947269), (-2.1554964780807495, -0.5910995323210955), (-2.4273550510406494, -0.42916758358478546), (-2.725504517555237, -0.2837444841861725), (-2.99622642993927, -0.18140959739685059), (-3.219103455543518, -0.11459633708000183), (-3.4286000728607178, -0.0705919861793518), (-3.6258760690689087, -0.04686114192008972), (-3.8121869564056396, -0.04533001780509949), (-3.989760994911194, -0.06408235430717468), (-4.157929539680481, -0.10413399338722229), (-4.316835522651677, -0.16417834162712333), (-4.466385602951046, -0.24498264491557906), (-4.601896524429319, -0.3419640436768511), (-4.72392392158508, -0.45354240271262586), (-4.832186937332153, -0.5788427442312241), (-4.923211812973023, -0.7173683494329479), (-4.9949941635131845, -0.8676890134811426), (-5.046401023864746, -1.022179692983629), (-5.0796074867248535, -1.1705849170684814), (-5.093028545379639, -1.3209239840507507), (-5.110311985015869, -1.545432984828949), (-5.156613349914551, -1.8119059801101685), (-5.23431396484375, -2.074813961982727), (-5.337328910827637, -2.3319250345230103), (-5.440672397613525, -2.5615949630737305), (-5.537067413330078, -2.7935789823532104), (-5.601041078567505, -3.0084774494171143), (-5.629537582397461, -3.2162104845046997), (-5.62337851524353, -3.4190534353256226), (-5.583552598953247, -3.617501974105835), (-5.511371850967407, -3.813294529914856), (-5.409692049026489, -4.009515404701233), (-5.285758972167969, -4.2109215259552), (-5.15318751335144, -4.420788526535034), (-5.032635450363159, -4.634819030761719), (-4.952491044998169, -4.822279453277588), (-4.896421194076538, -5.005449533462524), (-4.867075443267822, -5.213198900222778), (-4.872295141220093, -5.416158437728882), (-4.910168647766113, -5.610260486602783), (-4.973554372787476, -5.776232004165649), (-5.060508966445923, -5.920712471008301), (-5.165009498596191, -6.048253059387207), (-5.289099931716919, -6.157153606414795), (-5.434471368789673, -6.242535829544067), (-5.604140520095825, -6.297412633895874), (-5.79407811164856, -6.322732925415039), (-6.00898551940918, -6.311539173126221), (-6.244884967803955, -6.256653070449829), (-6.4949564933776855, -6.147663354873657), (-6.781038045883179, -5.9773054122924805), (-7.061333417892456, -5.802093505859375), (-7.340768337249756, -5.625651121139526), (-7.619298696517944, -5.4476518630981445), (-7.828180313110352, -5.296770811080933), (-8.016002416610718, -5.123382568359375), (-8.15831708908081, -4.937673568725586), (-8.257988691329956, -4.7432403564453125), (-8.318733215332031, -4.53918194770813), (-8.349838495254517, -4.327398061752319), (-8.358692169189453, -4.073875427246094), (-8.348212242126465, -3.7435275316238403), (-8.3358793258667, -3.4132790565490723), (-8.341327905654907, -3.082790970802307), (-8.343693256378174, -2.7523809671401978), (-8.330488443374634, -2.4221235513687134), (-8.290509700775146, -2.0941930413246155), (-8.228468656539917, -1.7695454955101013), (-8.158297777175903, -1.4466065168380737), (-8.076175212860107, -1.1264664828777313), (-7.979531764984131, -0.8104383051395416), (-7.870174884796143, -0.4985577389597893), (-7.749021291732788, -0.19107545539736748), (-7.6169209480285645, 0.11187849193811417), (-7.476149082183838, 0.4108997918665409), (-7.328797578811646, 0.7067412286996826)] |
_base_ = [
'../../../_base_/datasets/two_branch/few_shot_voc.py',
'../../../_base_/schedules/schedule.py', '../../mpsr_r101_fpn.py',
'../../../_base_/default_runtime.py'
]
# classes splits are predefined in FewShotVOCDataset
# FewShotVOCDefaultDataset predefine ann_cfg for model reproducibility.
data = dict(
train=dict(
dataset=dict(
type='FewShotVOCDefaultDataset',
ann_cfg=[dict(method='MPSR', setting='SPLIT1_1SHOT')],
num_novel_shots=1,
num_base_shots=1,
classes='ALL_CLASSES_SPLIT1')),
val=dict(classes='ALL_CLASSES_SPLIT1'),
test=dict(classes='ALL_CLASSES_SPLIT1'))
evaluation = dict(
interval=500, class_splits=['BASE_CLASSES_SPLIT1', 'NOVEL_CLASSES_SPLIT1'])
checkpoint_config = dict(interval=2000)
optimizer = dict(
lr=0.005,
paramwise_cfg=dict(
custom_keys=dict({'.bias': dict(lr_mult=2.0, decay_mult=0.0)})))
lr_config = dict(
warmup_iters=500,
warmup_ratio=1. / 3,
step=[1300],
)
runner = dict(max_iters=2000)
# load_from = 'path of base training model'
load_from = (
'work_dirs/mpsr_r101_fpn_2xb2_voc-split1_base-training/latest.pth')
model = dict(
roi_head=dict(
bbox_roi_extractor=dict(roi_layer=dict(aligned=False)),
bbox_head=dict(init_cfg=[
dict(
type='Normal',
override=dict(type='Normal', name='fc_cls', std=0.001))
])))
| _base_ = ['../../../_base_/datasets/two_branch/few_shot_voc.py', '../../../_base_/schedules/schedule.py', '../../mpsr_r101_fpn.py', '../../../_base_/default_runtime.py']
data = dict(train=dict(dataset=dict(type='FewShotVOCDefaultDataset', ann_cfg=[dict(method='MPSR', setting='SPLIT1_1SHOT')], num_novel_shots=1, num_base_shots=1, classes='ALL_CLASSES_SPLIT1')), val=dict(classes='ALL_CLASSES_SPLIT1'), test=dict(classes='ALL_CLASSES_SPLIT1'))
evaluation = dict(interval=500, class_splits=['BASE_CLASSES_SPLIT1', 'NOVEL_CLASSES_SPLIT1'])
checkpoint_config = dict(interval=2000)
optimizer = dict(lr=0.005, paramwise_cfg=dict(custom_keys=dict({'.bias': dict(lr_mult=2.0, decay_mult=0.0)})))
lr_config = dict(warmup_iters=500, warmup_ratio=1.0 / 3, step=[1300])
runner = dict(max_iters=2000)
load_from = 'work_dirs/mpsr_r101_fpn_2xb2_voc-split1_base-training/latest.pth'
model = dict(roi_head=dict(bbox_roi_extractor=dict(roi_layer=dict(aligned=False)), bbox_head=dict(init_cfg=[dict(type='Normal', override=dict(type='Normal', name='fc_cls', std=0.001))]))) |
# -*- coding: utf-8 -*-
DESC = "trtc-2019-07-22"
INFO = {
"DescribeRealtimeQuality": {
"params": [
{
"name": "StartTime",
"desc": "Query start time in the format of local UNIX timestamp, such as 1588031999s, which is a point in time in the last 24 hours."
},
{
"name": "EndTime",
"desc": "Query end time in the format of local UNIX timestamp, such as 1588031999s."
},
{
"name": "SdkAppId",
"desc": "User `sdkappid`"
},
{
"name": "DataType",
"desc": "Type of data to query\nenterTotalSuccPercent: room entry success rate;\nfistFreamInSecRate: instant playback rate of the first frame;\nblockPercent: video lag rate;\naudioBlockPercent: audio lag rate."
}
],
"desc": "This API is used to query real-time quality data for the last 24 hours according to `sdkappid`, including the room entry success rate, instant playback rate of the first frame, audio lag rate, and video lag rate. The query time range cannot exceed 1 hour."
},
"DescribeHistoryScale": {
"params": [
{
"name": "SdkAppId",
"desc": "User `sdkappid`"
},
{
"name": "StartTime",
"desc": "Query start time in the format of local UNIX timestamp, such as 1588031999s, which is a point in time in the last 5 days."
},
{
"name": "EndTime",
"desc": "Query end time in the format of local UNIX timestamp, such as 1588031999s."
}
],
"desc": "This API is used to query the number of historical rooms and users for the last 5 days. It can query once per minute."
},
"DescribeRealtimeScale": {
"params": [
{
"name": "StartTime",
"desc": "Query start time in the format of local UNIX timestamp, such as 1588031999s, which is a point in time in the last 24 hours."
},
{
"name": "EndTime",
"desc": "Query end time in the format of local UNIX timestamp, such as 1588031999s."
},
{
"name": "SdkAppId",
"desc": "User `sdkappid`"
},
{
"name": "DataType",
"desc": "Type of data to query\n`UserNum: number of users in call;\nRoomNum: number of rooms."
}
],
"desc": "This API is used to query the real-time scale for the last 24 hours according to `sdkappid`. The query time range cannot exceed 1 hour."
},
"DescribeRealtimeNetwork": {
"params": [
{
"name": "StartTime",
"desc": "Query start time in the format of local UNIX timestamp, such as 1588031999s, which is a point in time in the last 24 hours."
},
{
"name": "EndTime",
"desc": "Query end time in the format of local UNIX timestamp, such as 1588031999s."
},
{
"name": "SdkAppId",
"desc": "User `sdkappid`"
},
{
"name": "DataType",
"desc": "Type of data to query\nsendLossRateRaw: upstream packet loss rate;\nrecvLossRateRaw: downstream packet loss rate."
}
],
"desc": "This API is used to query real-time network status for the last 24 hours according to `sdkappid`, including upstream and downstream packet losses. The query time range cannot exceed 1 hour."
},
"DescribeRoomInformation": {
"params": [
{
"name": "SdkAppId",
"desc": "User `sdkappid`"
},
{
"name": "StartTime",
"desc": "Query start time in the format of local UNIX timestamp, such as 1588031999s, which is a point in time in the last 5 days."
},
{
"name": "EndTime",
"desc": "Query end time in the format of local UNIX timestamp, such as 1588031999s."
},
{
"name": "RoomId",
"desc": "Room ID of uint type"
},
{
"name": "PageNumber",
"desc": "Page index. If it is left empty, 10 entries will be returned by default."
},
{
"name": "PageSize",
"desc": "Page size. Maximum value: 100. If it is left empty, 10 entries will be returned by default."
}
],
"desc": "This API is used to query the room list for the last 5 days according to `sdkappid`. It returns 10 calls by default and up to 100 calls at a time."
},
"RemoveUser": {
"params": [
{
"name": "SdkAppId",
"desc": "`SDKAppId` of TRTC."
},
{
"name": "RoomId",
"desc": "Room number."
},
{
"name": "UserIds",
"desc": "List of up to 10 users to be removed."
}
],
"desc": "This API is used to remove a user from a room. It is applicable to scenarios where the anchor, room owner, or admin wants to kick out a user. It supports all platforms. For Android, iOS, Windows, and macOS, the TRTC SDK needs to be upgraded to v6.6 or above."
},
"DescribeCallDetail": {
"params": [
{
"name": "CommId",
"desc": "Call ID (unique call ID): sdkappid_roomgString (room ID)_createTime (room creation time in UNIX timestamp in seconds). You can get the parameter value through the `DescribeRoomInformation` API which is used to query the room list."
},
{
"name": "StartTime",
"desc": "Query start time in the format of local UNIX timestamp, such as 1588031999s, which is a point in time in the last 5 days."
},
{
"name": "EndTime",
"desc": "Query end time in the format of local UNIX timestamp, such as 1588031999s."
},
{
"name": "SdkAppId",
"desc": "User `sdkappid`"
},
{
"name": "UserIds",
"desc": "User array to query, which contains up to 6 users. If it is left empty, 6 users will be returned by default."
},
{
"name": "DataType",
"desc": "Metric to query. The user list will be returned if it is left empty; all metrics will be returned if its value is `all`.\nappCpu: CPU utilization of application;\nsysCpu: CPU utilization of system;\naBit: upstream/downstream audio bitrate;\naBlock: audio lag duration;\nvBit: upstream/downstream video bitrate;\nvCapFps: video capturing frame rate;\nvEncFps: video sending frame rate;\nvDecFps: rendering frame rate;\nvBlock: video lag duration;\naLoss: upstream/downstream audio packet loss;\nvLoss: upstream/downstream video packet loss;\nvWidth: upstream/downstream resolution in width;\nvHeight: upstream/downstream resolution in height."
}
],
"desc": "This API is used to query the user list and user call quality data in a specified time period. It can query data of up to 6 users for the last 5 days, and the query time range cannot exceed 1 hour."
},
"DismissRoom": {
"params": [
{
"name": "SdkAppId",
"desc": "`SDKAppId` of TRTC."
},
{
"name": "RoomId",
"desc": "Room number."
}
],
"desc": "This API is used to remove all users from a room and dismiss the room. It supports all platforms. For Android, iOS, Windows, and macOS, the TRTC SDK needs to be upgraded to v6.6 or above."
}
} | desc = 'trtc-2019-07-22'
info = {'DescribeRealtimeQuality': {'params': [{'name': 'StartTime', 'desc': 'Query start time in the format of local UNIX timestamp, such as 1588031999s, which is a point in time in the last 24 hours.'}, {'name': 'EndTime', 'desc': 'Query end time in the format of local UNIX timestamp, such as 1588031999s.'}, {'name': 'SdkAppId', 'desc': 'User `sdkappid`'}, {'name': 'DataType', 'desc': 'Type of data to query\nenterTotalSuccPercent: room entry success rate;\nfistFreamInSecRate: instant playback rate of the first frame;\nblockPercent: video lag rate;\naudioBlockPercent: audio lag rate.'}], 'desc': 'This API is used to query real-time quality data for the last 24 hours according to `sdkappid`, including the room entry success rate, instant playback rate of the first frame, audio lag rate, and video lag rate. The query time range cannot exceed 1 hour.'}, 'DescribeHistoryScale': {'params': [{'name': 'SdkAppId', 'desc': 'User `sdkappid`'}, {'name': 'StartTime', 'desc': 'Query start time in the format of local UNIX timestamp, such as 1588031999s, which is a point in time in the last 5 days.'}, {'name': 'EndTime', 'desc': 'Query end time in the format of local UNIX timestamp, such as 1588031999s.'}], 'desc': 'This API is used to query the number of historical rooms and users for the last 5 days. It can query once per minute.'}, 'DescribeRealtimeScale': {'params': [{'name': 'StartTime', 'desc': 'Query start time in the format of local UNIX timestamp, such as 1588031999s, which is a point in time in the last 24 hours.'}, {'name': 'EndTime', 'desc': 'Query end time in the format of local UNIX timestamp, such as 1588031999s.'}, {'name': 'SdkAppId', 'desc': 'User `sdkappid`'}, {'name': 'DataType', 'desc': 'Type of data to query\n`UserNum: number of users in call;\nRoomNum: number of rooms.'}], 'desc': 'This API is used to query the real-time scale for the last 24 hours according to `sdkappid`. The query time range cannot exceed 1 hour.'}, 'DescribeRealtimeNetwork': {'params': [{'name': 'StartTime', 'desc': 'Query start time in the format of local UNIX timestamp, such as 1588031999s, which is a point in time in the last 24 hours.'}, {'name': 'EndTime', 'desc': 'Query end time in the format of local UNIX timestamp, such as 1588031999s.'}, {'name': 'SdkAppId', 'desc': 'User `sdkappid`'}, {'name': 'DataType', 'desc': 'Type of data to query\nsendLossRateRaw: upstream packet loss rate;\nrecvLossRateRaw: downstream packet loss rate.'}], 'desc': 'This API is used to query real-time network status for the last 24 hours according to `sdkappid`, including upstream and downstream packet losses. The query time range cannot exceed 1 hour.'}, 'DescribeRoomInformation': {'params': [{'name': 'SdkAppId', 'desc': 'User `sdkappid`'}, {'name': 'StartTime', 'desc': 'Query start time in the format of local UNIX timestamp, such as 1588031999s, which is a point in time in the last 5 days.'}, {'name': 'EndTime', 'desc': 'Query end time in the format of local UNIX timestamp, such as 1588031999s.'}, {'name': 'RoomId', 'desc': 'Room ID of uint type'}, {'name': 'PageNumber', 'desc': 'Page index. If it is left empty, 10 entries will be returned by default.'}, {'name': 'PageSize', 'desc': 'Page size. Maximum value: 100. If it is left empty, 10 entries will be returned by default.'}], 'desc': 'This API is used to query the room list for the last 5 days according to `sdkappid`. It returns 10 calls by default and up to 100 calls at a time.'}, 'RemoveUser': {'params': [{'name': 'SdkAppId', 'desc': '`SDKAppId` of TRTC.'}, {'name': 'RoomId', 'desc': 'Room number.'}, {'name': 'UserIds', 'desc': 'List of up to 10 users to be removed.'}], 'desc': 'This API is used to remove a user from a room. It is applicable to scenarios where the anchor, room owner, or admin wants to kick out a user. It supports all platforms. For Android, iOS, Windows, and macOS, the TRTC SDK needs to be upgraded to v6.6 or above.'}, 'DescribeCallDetail': {'params': [{'name': 'CommId', 'desc': 'Call ID (unique call ID): sdkappid_roomgString (room ID)_createTime (room creation time in UNIX timestamp in seconds). You can get the parameter value through the `DescribeRoomInformation` API which is used to query the room list.'}, {'name': 'StartTime', 'desc': 'Query start time in the format of local UNIX timestamp, such as 1588031999s, which is a point in time in the last 5 days.'}, {'name': 'EndTime', 'desc': 'Query end time in the format of local UNIX timestamp, such as 1588031999s.'}, {'name': 'SdkAppId', 'desc': 'User `sdkappid`'}, {'name': 'UserIds', 'desc': 'User array to query, which contains up to 6 users. If it is left empty, 6 users will be returned by default.'}, {'name': 'DataType', 'desc': 'Metric to query. The user list will be returned if it is left empty; all metrics will be returned if its value is `all`.\nappCpu: CPU utilization of application;\nsysCpu: CPU utilization of system;\naBit: upstream/downstream audio bitrate;\naBlock: audio lag duration;\nvBit: upstream/downstream video bitrate;\nvCapFps: video capturing frame rate;\nvEncFps: video sending frame rate;\nvDecFps: rendering frame rate;\nvBlock: video lag duration;\naLoss: upstream/downstream audio packet loss;\nvLoss: upstream/downstream video packet loss;\nvWidth: upstream/downstream resolution in width;\nvHeight: upstream/downstream resolution in height.'}], 'desc': 'This API is used to query the user list and user call quality data in a specified time period. It can query data of up to 6 users for the last 5 days, and the query time range cannot exceed 1 hour.'}, 'DismissRoom': {'params': [{'name': 'SdkAppId', 'desc': '`SDKAppId` of TRTC.'}, {'name': 'RoomId', 'desc': 'Room number.'}], 'desc': 'This API is used to remove all users from a room and dismiss the room. It supports all platforms. For Android, iOS, Windows, and macOS, the TRTC SDK needs to be upgraded to v6.6 or above.'}} |
"""DSM 6 SYNO.API.Info data with surveillance surppot."""
DSM_6_API_INFO = {
"data": {
"SYNO.API.Auth": {"maxVersion": 6, "minVersion": 1, "path": "auth.cgi"},
"SYNO.API.Encryption": {
"maxVersion": 1,
"minVersion": 1,
"path": "encryption.cgi",
},
"SYNO.API.Info": {"maxVersion": 1, "minVersion": 1, "path": "query.cgi"},
"SYNO.API.OTP": {"maxVersion": 1, "minVersion": 1, "path": "otp.cgi"},
"SYNO.AntiVirus.Config": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.AntiVirus.FileExt": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.AntiVirus.General": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.AntiVirus.Log": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.AntiVirus.Purchase": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.AntiVirus.Quarantine": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.AntiVirus.Scan": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.AntiVirus.Schedule": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.AntiVirus.WhiteList": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.AudioPlayer": {
"maxVersion": 2,
"minVersion": 2,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.AudioPlayer.Stream": {
"maxVersion": 2,
"minVersion": 2,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.AudioStation.Album": {
"maxVersion": 3,
"minVersion": 1,
"path": "AudioStation/album.cgi",
},
"SYNO.AudioStation.Artist": {
"maxVersion": 4,
"minVersion": 1,
"path": "AudioStation/artist.cgi",
},
"SYNO.AudioStation.Browse.Playlist": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.AudioStation.Composer": {
"maxVersion": 2,
"minVersion": 1,
"path": "AudioStation/composer.cgi",
},
"SYNO.AudioStation.Cover": {
"maxVersion": 3,
"minVersion": 1,
"path": "AudioStation/cover.cgi",
},
"SYNO.AudioStation.Download": {
"maxVersion": 1,
"minVersion": 1,
"path": "AudioStation/download.cgi",
},
"SYNO.AudioStation.Folder": {
"maxVersion": 3,
"minVersion": 1,
"path": "AudioStation/folder.cgi",
},
"SYNO.AudioStation.Genre": {
"maxVersion": 3,
"minVersion": 1,
"path": "AudioStation/genre.cgi",
},
"SYNO.AudioStation.Info": {
"maxVersion": 4,
"minVersion": 1,
"path": "AudioStation/info.cgi",
},
"SYNO.AudioStation.Lyrics": {
"maxVersion": 2,
"minVersion": 1,
"path": "AudioStation/lyrics.cgi",
},
"SYNO.AudioStation.LyricsSearch": {
"maxVersion": 2,
"minVersion": 1,
"path": "AudioStation/lyrics_search.cgi",
},
"SYNO.AudioStation.MediaServer": {
"maxVersion": 1,
"minVersion": 1,
"path": "AudioStation/media_server.cgi",
},
"SYNO.AudioStation.Pin": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.AudioStation.Playlist": {
"maxVersion": 3,
"minVersion": 1,
"path": "AudioStation/playlist.cgi",
},
"SYNO.AudioStation.Proxy": {
"maxVersion": 1,
"minVersion": 1,
"path": "AudioStation/proxy.cgi",
},
"SYNO.AudioStation.Radio": {
"maxVersion": 2,
"minVersion": 1,
"path": "AudioStation/radio.cgi",
},
"SYNO.AudioStation.RemotePlayer": {
"maxVersion": 3,
"minVersion": 1,
"path": "AudioStation/remote_player.cgi",
},
"SYNO.AudioStation.RemotePlayerStatus": {
"maxVersion": 1,
"minVersion": 1,
"path": "AudioStation/remote_player_status.cgi",
},
"SYNO.AudioStation.Search": {
"maxVersion": 1,
"minVersion": 1,
"path": "AudioStation/search.cgi",
},
"SYNO.AudioStation.Song": {
"maxVersion": 3,
"minVersion": 1,
"path": "AudioStation/song.cgi",
},
"SYNO.AudioStation.Stream": {
"maxVersion": 2,
"minVersion": 1,
"path": "AudioStation/stream.cgi",
},
"SYNO.AudioStation.Tag": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.AudioStation.VoiceAssistant.Browse": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.AudioStation.VoiceAssistant.Challenge": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.AudioStation.VoiceAssistant.Info": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.AudioStation.VoiceAssistant.Stream": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.AudioStation.WebPlayer": {
"maxVersion": 1,
"minVersion": 1,
"path": "AudioStation/web_player.cgi",
},
"SYNO.Backup.App": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.App.Backup": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.App.Restore": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.App2.Backup": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.App2.Restore": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Config.Backup": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Config.Restore": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Lunbackup": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Repository": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Repository.Certificate": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Restore": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Server": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Service.NetworkBackup": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Service.TimeBackup": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Share.Restore": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Source.Folder": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Storage.AmazonCloudDrive.Container": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Storage.Azure.Container": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Storage.Connect.Network": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Storage.Dropbox.Container": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Storage.GoogleDrive.Container": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Storage.HiDrive.Container": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Storage.OpenStack.Container": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Storage.OpenStack.Region": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Storage.S3.Bucket": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Storage.Share.Local": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Storage.Share.Network": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Storage.Share.Rsync": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Storage.WebDAV.Container": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Storage.hubiC.Container": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Target": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Target.Config": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Task": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Version": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Backup.Version.History": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Cal.AuthForeign": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Cal.Cal": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Cal.Chatbot": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Cal.Event": {
"maxVersion": 4,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Cal.InviteMail": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Cal.InviteMailInit": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Cal.Proxy": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Cal.SendMail": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Cal.Setting": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Cal.Share.Priv": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Cal.Sharing": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Cal.SyncUser": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Cal.Timezone": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Cal.Todo": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.CloudSync": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.ACL": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.AppNotify": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.AppPortal": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.AppPortal.AccessControl": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.AppPortal.Config": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.AppPortal.ReverseProxy": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.AppPriv": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.AppPriv.App": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.AppPriv.Rule": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.BandwidthControl": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.BandwidthControl.Protocol": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.BandwidthControl.Status": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.CMS": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.CMS.Cache": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.CMS.Info": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.CMS.Policy": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.CMS.ServerInfo": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.CMS.Token": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Certificate": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Certificate.CRT": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Certificate.CSR": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Certificate.LetsEncrypt": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Certificate.LetsEncrypt.Account": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Certificate.Service": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.CurrentConnection": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.DDNS.ExtIP": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.DDNS.Provider": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.DDNS.Record": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.DDNS.Synology": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.DDNS.TWNIC": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.DSMNotify": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.DataCollect": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.DataCollect.Application": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Desktop.Defs": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Desktop.Initdata": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Desktop.JSUIString": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Desktop.SessionData": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Desktop.Timeout": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Desktop.UIString": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Directory.Azure.SSO": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Directory.Domain": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Directory.Domain.ADHealthCheck": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Directory.Domain.Conf": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Directory.Domain.Schedule": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Directory.LDAP": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Directory.LDAP.BaseDN": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Directory.LDAP.Login.Notify": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Directory.LDAP.Profile": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Directory.SSO": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Directory.SSO.Profile": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Directory.SSO.utils": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Directory.WebSphere.SSO": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.EventScheduler": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.ExternalDevice.Bluetooth": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.ExternalDevice.Bluetooth.Device": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.ExternalDevice.Bluetooth.Settings": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.ExternalDevice.DefaultPermission": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.ExternalDevice.Printer": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.ExternalDevice.Printer.BonjourSharing": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.ExternalDevice.Printer.Driver": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.ExternalDevice.Printer.Network": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.ExternalDevice.Printer.Network.Host": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.ExternalDevice.Printer.OAuth": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.ExternalDevice.Printer.USB": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.ExternalDevice.Storage.EUnit": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.ExternalDevice.Storage.Setting": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.ExternalDevice.Storage.USB": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.ExternalDevice.Storage.eSATA": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.ExternalDevice.UPS": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.EzInternet": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Factory.Config": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Factory.Manutild": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.File": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.File.Thumbnail": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.FileServ.AFP": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.FileServ.FTP": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.FileServ.FTP.ChrootUser": {
"maxVersion": 2,
"minVersion": 2,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.FileServ.FTP.SFTP": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.FileServ.FTP.Security": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.FileServ.NFS": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.FileServ.NFS.AdvancedSetting": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.FileServ.NFS.IDMap": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.FileServ.NFS.Kerberos": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.FileServ.NFS.SharePrivilege": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.FileServ.ReflinkCopy": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.FileServ.Rsync.Account": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.FileServ.SMB": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.FileServ.ServiceDiscovery": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.FileServ.ServiceDiscovery.WSTransfer": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Findhost": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Group": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Group.ExtraAdmin": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Group.Member": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Group.ValidLocalAdmin": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.GroupSettings": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Hardware.BeepControl": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Hardware.DCOutput": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Hardware.DCOutput.Task": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Hardware.FanSpeed": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Hardware.Hibernation": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Hardware.LCM": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Hardware.Led.Brightness": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Hardware.MemoryLayout": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Hardware.NeedReboot": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Hardware.PowerRecovery": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Hardware.PowerSchedule": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Hardware.RemoteFanStatus": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Hardware.SpectreMeltdown": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Hardware.VideoTranscoding": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Hardware.ZRAM": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Help": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.ISCSI.LUN": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.ISCSI.Lunbkp": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.ISCSI.Node": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.ISCSI.Replication": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.ISCSI.Target": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.ISCSI.VLUN": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.MediaIndexing": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.MediaIndexing.IndexFolder": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.MediaIndexing.MediaConverter": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.MediaIndexing.MobileEnabled": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.MediaIndexing.ThumbnailQuality": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.MyDSCenter": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.MyDSCenter.Account": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.MyDSCenter.Purchase": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.Authentication": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.Authentication.Cert": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.Bond": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.Bridge": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.DHCPServer": {
"maxVersion": 4,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.DHCPServer.ClientList": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.DHCPServer.PXE": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.DHCPServer.Reservation": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.DHCPServer.Vendor": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.DHCPServer.WPAD": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.Ethernet": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.IPv6": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.IPv6.Router": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.IPv6.Router.Prefix": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.IPv6Tunnel": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.Interface": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.LocalBridge": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.MACClone": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.OVS": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.PPPoE": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.PPPoE.Relay": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.Proxy": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.Router.ConnectionList": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.Router.CountryCode": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.Router.DMZ": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.Router.Gateway.List": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.Router.LocalLan": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.Router.MacFilter": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.Router.ParentalControl": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.Router.PkgList": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.Router.PortForward": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.Router.Static.Route": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.Router.Topology": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.TrafficControl.RouterRules": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.TrafficControl.Rules": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.UPnPServer": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.USBModem": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.VPN": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.VPN.L2TP": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.VPN.OpenVPN": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.VPN.OpenVPN.CA": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.VPN.OpenVPNWithConf": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.VPN.OpenVPNWithConf.Certs": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.VPN.PPTP": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.WOL": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.Wifi.Client": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.Wifi.Hotspot": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Network.Wifi.WPS": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.NormalUser": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.NormalUser.LoginNotify": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Notification.Advance.CustomizedData": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Notification.Advance.FilterSettings": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Notification.Advance.Variables": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Notification.Advance.WarningPercentage": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Notification.CMS": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Notification.CMS.Conf": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Notification.Mail": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Notification.Mail.Auth": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Notification.Mail.Conf": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Notification.Push": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Notification.Push.AuthToken": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Notification.Push.Conf": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Notification.Push.Mail": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Notification.Push.Mobile": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Notification.SMS": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Notification.SMS.Conf": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Notification.SMS.Provider": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.OAuth.Scope": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.OAuth.Server": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.OTP": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.OTP.Admin": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.OTP.EnforcePolicy": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.OTP.Mail": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Package": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Package.Account": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Package.Control": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Package.FakeIFrame": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Package.Feed": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Package.Feed.Keyring": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Package.Info": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Package.Installation": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Package.Installation.Download": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Package.Log": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Package.MyDS": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Package.MyDS.Purchase": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Package.Screenshot": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Package.Screenshot.Server": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Package.Server": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Package.Setting": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Package.Setting.Update": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Package.Setting.Volume": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Package.Term": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Package.Thumb": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Package.Uninstallation": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.PersonalNotification.Device": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.PersonalNotification.Event": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.PersonalNotification.Filter": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.PersonalNotification.Settings": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.PersonalNotification.android": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.PersonalNotification.iOS": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.PersonalNotification.windows": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.PersonalSettings": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.PhotoViewer": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Polling.Data": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.PortForwarding": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.PortForwarding.Compatibility": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.PortForwarding.RouterConf": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.PortForwarding.RouterInfo": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.PortForwarding.RouterList": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.PortForwarding.Rules": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.PortForwarding.Rules.Serv": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.PortForwarding.UserDataCollector": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.QuickConnect": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.QuickConnect.Permission": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.QuickConnect.Upnp": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.QuickStart.Info": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.QuickStart.Install": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Quota": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.RecycleBin": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.RecycleBin.User": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Region.Language": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Region.NTP": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Region.NTP.DateTimeFormat": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Region.NTP.Server": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.SNMP": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Security.AutoBlock": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Security.AutoBlock.Rules": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Security.DSM": {
"maxVersion": 4,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Security.DSM.Embed": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Security.DSM.Proxy": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Security.DoS": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Security.Firewall": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Security.Firewall.Adapter": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Security.Firewall.Conf": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Security.Firewall.Geoip": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Security.Firewall.Profile": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Security.Firewall.Profile.Apply": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Security.Firewall.Rules": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Security.Firewall.Rules.Serv": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Security.VPNPassthrough": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Security.VPNPassthrough.Status": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.SecurityScan.Conf": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.SecurityScan.Operation": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.SecurityScan.Status": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Service": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Service.Conf": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Service.PortInfo": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Share": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Share.Crypto": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Share.Crypto.Key": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Share.CryptoFile": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Share.KeyManager.AutoKey": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Share.KeyManager.Key": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Share.KeyManager.MachineKey": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Share.KeyManager.Store": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Share.Migration": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Share.Migration.Task": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Share.Permission": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Share.Snapshot": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Sharing": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Sharing.Initdata": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Sharing.Login": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Sharing.Session": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.SmartBlock": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.SmartBlock.Device": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.SmartBlock.Trusted": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.SmartBlock.Untrusted": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.SmartBlock.User": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Storage.Disk": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Storage.Pool": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Storage.Volume": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Storage.iSCSILUN": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Storage.iSCSITargets": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Storage.iSCSIUtils": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.SupportForm.Form": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.SupportForm.Log": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.SupportForm.Service": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Synohdpack": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.SyslogClient.FileTransfer": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.SyslogClient.Log": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.SyslogClient.PersonalActivity": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.SyslogClient.Setting.Notify": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.SyslogClient.Status": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.System": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.System.Process": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.System.ProcessGroup": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.System.ResetButton": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.System.Status": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.System.Utilization": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.TFTP": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.TaskScheduler": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Terminal": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Theme.AppPortalLogin": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Theme.Desktop": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Theme.FileSharingLogin": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Theme.Image": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Theme.Login": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.TrustDevice": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Tuned": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.UISearch": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Upgrade": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Upgrade.AutoUpgrade": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Upgrade.Group": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Upgrade.Group.Download": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Upgrade.Group.Setting": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Upgrade.GroupInstall": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Upgrade.GroupInstall.Network": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Upgrade.Patch": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Upgrade.PreCheck": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Upgrade.Server": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Upgrade.Server.Download": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Upgrade.Setting": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.User": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.User.Group": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.User.Home": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.User.PasswordConfirm": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.User.PasswordExpiry": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.User.PasswordMeter": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.User.PasswordPolicy": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.UserSettings": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Virtualization.Host.Capability": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Web.DSM": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Web.DSM.External": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Web.Security.HTTPCompression": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Core.Web.Security.TLSProfile": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.DR.Node": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.DR.Node.Credential": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.DR.Node.Session": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.DSM.FindMe": {
"maxVersion": 2,
"minVersion": 2,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.DSM.Info": {
"maxVersion": 2,
"minVersion": 2,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.DSM.Network": {
"maxVersion": 2,
"minVersion": 2,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.DSM.PortEnable": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.DSM.PushNotification": {
"maxVersion": 2,
"minVersion": 2,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.DisasterRecovery.Log": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.DisasterRecovery.Retention": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Entry.Request": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Entry.Request.Polling": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.BackgroundTask": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.CheckExist": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.CheckPermission": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.Compress": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.CopyMove": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.CreateFolder": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.Delete": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.DirSize": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.Download": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.External.GoogleDrive": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.Extract": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.Favorite": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.FormUpload": {
"maxVersion": 2,
"minVersion": 2,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.Info": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.List": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.MD5": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.Mount": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.Mount.List": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.Notify": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.Property": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.Property.ACLOwner": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.Property.CompressSize": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.Property.Mtime": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.Rename": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.Search": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.Search.History": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.Settings": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.Sharing": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.Sharing.Download": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.Snapshot": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.Thumb": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.Timeout": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.UIString": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.Upload": {
"maxVersion": 3,
"minVersion": 2,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.UserGrp": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.VFS.Connection": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.VFS.File": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.VFS.GDrive": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.VFS.Profile": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.VFS.Protocol": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.VFS.User": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FileStation.VirtualFolder": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Finder.AppIndexing.Search": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Finder.Bookmark": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Finder.Elastic.SearchHistory": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Finder.Elastic.Spotlight": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Finder.Elastic.Term": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Finder.File": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Finder.File.Cover": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Finder.File.Thumbnail": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Finder.FileIndexing.Folder": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Finder.FileIndexing.Highlight": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Finder.FileIndexing.Indicate": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Finder.FileIndexing.Search": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Finder.FileIndexing.Status": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Finder.FileIndexing.Term": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Finder.Preference": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Finder.Settings": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Finder.UserGrp": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FolderSharing.Download": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FolderSharing.List": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.FolderSharing.Thumb": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.License.HA": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.OAUTH.Client": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.OAUTH.Common": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.OAUTH.Log": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.OAUTH.Token": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Package": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PersonMailAccount": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PersonMailAccount.Contacts": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PersonMailAccount.Mail": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Personal.Application.Info": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Personal.MailAccount": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Personal.MailAccount.Contacts": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Personal.MailAccount.Mail": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Personal.Notification.Conf": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Personal.Notification.Device": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Personal.Notification.Event": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Personal.Notification.Filter": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Personal.Notification.GDPR": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Personal.Notification.Identifier": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Personal.Notification.Mobile": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Personal.Notification.Settings": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Personal.Notification.Token": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Personal.Notification.VapidPublicKey": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Personal.Profile": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Personal.Profile.Photo": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Browse.Album": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Browse.Category": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Browse.Concept": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Browse.Diff": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Browse.Folder": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Browse.GeneralTag": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Browse.Geocoding": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Browse.Item": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Browse.Person": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Browse.RecentlyAdded": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Browse.Timeline": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Browse.Unit": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Discover.Category": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Discover.Similar": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Discover.Status": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Discover.Style": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Download": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Enhancement": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Index": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Search": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Setting.Admin": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Setting.Mobile": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Setting.User": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Sharing": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.SharingLogin": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Streaming": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Thumbnail": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Photo.Upload.Item": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Browse.Album": {
"maxVersion": 2,
"minVersion": 2,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Browse.Category": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Browse.Concept": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Browse.Diff": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Browse.Folder": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Browse.GeneralTag": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Browse.Geocoding": {
"maxVersion": 2,
"minVersion": 2,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Browse.Item": {
"maxVersion": 3,
"minVersion": 2,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Browse.Person": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Browse.RecentlyAdded": {
"maxVersion": 3,
"minVersion": 2,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Browse.Timeline": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Browse.Unit": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Discover.Category": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Discover.Similar": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Discover.Status": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Discover.Style": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Download": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Enhancement": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Index": {
"maxVersion": 2,
"minVersion": 2,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Permission": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Search": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Setting.User": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Sharing": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Streaming": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Thumbnail": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.PhotoTeam.Upload.Item": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.ResourceMonitor.EventRule": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.ResourceMonitor.Log": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.ResourceMonitor.Setting": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.S2S.Client": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.S2S.Client.Job": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.S2S.Server": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.S2S.Server.Pair": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SAS.APIRunner": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SAS.APIRunner.Chatbot": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SAS.Encryption": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SAS.Group": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SAS.Group.Members": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SAS.Guest": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SDS.Backup.Client.Common.Log": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SDS.Backup.Client.Common.Statistic": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SDS.Backup.Client.Common.Target": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SDS.Backup.Client.Common.Version": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SDS.Backup.Client.Explore.File": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SDS.Backup.Client.Explore.Folder": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SDS.Backup.Client.Explore.Job": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SDS.Backup.Client.Explore.Target": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SDS.Backup.Client.Explore.Version": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SDS.Backup.Client.Fuse.Target": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SecurityAdvisor.Conf": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SecurityAdvisor.Conf.Checklist": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SecurityAdvisor.Conf.Checklist.Alert": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SecurityAdvisor.Conf.Location": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SecurityAdvisor.LoginActivity": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SecurityAdvisor.Report": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SecurityAdvisor.Report.HTML": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.ShareLink.Action": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.ShareLink.Download": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.ShareLink.Manage": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Snap.Usage.Share": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Storage.CGI.Check": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Storage.CGI.DualEnclosure": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Storage.CGI.Enclosure": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Storage.CGI.Flashcache": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Storage.CGI.HddMan": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Storage.CGI.Pool": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Storage.CGI.Smart": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Storage.CGI.Smart.Scheduler": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Storage.CGI.Spare": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Storage.CGI.Spare.Conf": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Storage.CGI.Storage": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Storage.CGI.TaipeiEnclosure": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Storage.CGI.Volume": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.ActionRule": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.AddOns": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Alert": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Alert.Setting": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Analytics.Setting": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.AppCenter": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Archiving.Pull": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Archiving.Push": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.AudioOut": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.AudioPattern": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.AudioStream": {
"maxVersion": 2,
"minVersion": 1,
"path": "SurveillanceStation/audioStreaming.cgi",
},
"SYNO.SurveillanceStation.AxisAcsCtrler": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.AxisAcsCtrler.Search": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.CMS": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.CMS.DsSearch": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.CMS.Failover": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.CMS.GetDsStatus": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.CMS.SlavedsList": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.CMS.SlavedsWizard": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Camera": {
"maxVersion": 9,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Camera.Event": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Camera.Export": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Camera.Group": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Camera.Import": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Camera.Intercom": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Camera.Search": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Camera.Status": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Camera.VolEval": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Camera.Wizard": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.CameraCap": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Device": {
"maxVersion": 2,
"minVersion": 1,
"path": "SurveillanceStation/device.cgi",
},
"SYNO.SurveillanceStation.DigitalOutput": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.DualAuth": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Emap": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Emap.Image": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Event": {
"maxVersion": 5,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Event.Export": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Event.Mount": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Event.Mount.Wizard": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.ExternalDevice.IFTTT": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.ExternalDevice.Storage.USB": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.ExternalDevice.Webhook": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.ExternalEvent": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.ExternalRecording": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Fisheye": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.GlobalSearch": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Help": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.HomeMode": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.HomeMode.Mobile": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.IOModule": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.IOModule.Search": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.IPSpeaker": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.IPSpeaker.Broadcast": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.IPSpeaker.Group": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.IPSpeaker.Search": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.IVA": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.IVA.Archive": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.IVA.License": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.IVA.Recording": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.IVA.Report": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.IVA.Simulator": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.IVA.TaskGroup": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Info": {
"maxVersion": 8,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.JoystickSetting": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Layout": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.License": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.LocalDisplay": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Log": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.MobileCam": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Notification": {
"maxVersion": 8,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Notification.Email": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Notification.Filter": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Notification.MobileSetting": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Notification.PushService": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Notification.SMS": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Notification.SMS.ServiceProvider": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Notification.Schedule": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.PTZ": {
"maxVersion": 5,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.PTZ.Patrol": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.PTZ.Preset": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.PersonalSettings.Image": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.PersonalSettings.Layout": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.PersonalSettings.Photo": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Player": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Player.LiveviewSrc": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Preload": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Recording": {
"maxVersion": 6,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Recording.Bookmark": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Recording.Export": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Recording.Mount": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Recording.Mount.Wizard": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Recording.Reindex": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Recording.ShareRecording": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.RecordingPicker": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Share": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.SnapShot": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Sort": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Stream": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Stream.VideoStreaming": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Streaming": {
"maxVersion": 2,
"minVersion": 1,
"path": "SurveillanceStation/streaming.cgi",
},
"SYNO.SurveillanceStation.System": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.TaskQueue": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.TimeLapse": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.TimeLapse.Recording": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Transactions.Device": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Transactions.Transaction": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.UserPrivilege": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.VideoStream": {
"maxVersion": 1,
"minVersion": 1,
"path": "SurveillanceStation/videoStreaming.cgi",
},
"SYNO.SurveillanceStation.VideoStreaming": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.VisualStation": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.VisualStation.Install": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.VisualStation.Layout": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.VisualStation.Search": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.Webhook": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SurveillanceStation.YoutubeLive": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.AdvanceSharing": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.AdvanceSharing.Public": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.AppIntegration": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Authentication": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Config": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Connection": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.DBUsage": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.DSM": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Export": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Files": {
"maxVersion": 3,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Info": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.KeyManagement": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Labels": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Log": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Metrics": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Metrics.Token": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Migration": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Node": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Node.Delete": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Node.Download": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Node.Restore": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Notifications": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Office": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Photos": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Privilege": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Profile": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Revisions": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.SCIM.Photo": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.SCIM.User": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Services.DocumentViewer": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Services.SynologyChat": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Services.VideoStation": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Settings": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Shard": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Share": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Share.Priv": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Sharing": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.String": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Tasks": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.TeamFolders": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Trash": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Users": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDrive.Webhooks": {
"maxVersion": 2,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDriveShareSync.Config": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDriveShareSync.Connection": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDriveShareSync.Session": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.SynologyDriveShareSync.Session.Set": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.Utils": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.VideoPlayer.Subtitle": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.VideoPlayer.SynologyDrive.Subtitle": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.WebDAV.CalDAV": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.WebDAV.CalDAV.Calendar": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
"SYNO.WebDAV.Common": {
"maxVersion": 1,
"minVersion": 1,
"path": "entry.cgi",
"requestFormat": "JSON",
},
},
"success": True,
}
| """DSM 6 SYNO.API.Info data with surveillance surppot."""
dsm_6_api_info = {'data': {'SYNO.API.Auth': {'maxVersion': 6, 'minVersion': 1, 'path': 'auth.cgi'}, 'SYNO.API.Encryption': {'maxVersion': 1, 'minVersion': 1, 'path': 'encryption.cgi'}, 'SYNO.API.Info': {'maxVersion': 1, 'minVersion': 1, 'path': 'query.cgi'}, 'SYNO.API.OTP': {'maxVersion': 1, 'minVersion': 1, 'path': 'otp.cgi'}, 'SYNO.AntiVirus.Config': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.AntiVirus.FileExt': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.AntiVirus.General': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.AntiVirus.Log': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.AntiVirus.Purchase': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.AntiVirus.Quarantine': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.AntiVirus.Scan': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.AntiVirus.Schedule': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.AntiVirus.WhiteList': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.AudioPlayer': {'maxVersion': 2, 'minVersion': 2, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.AudioPlayer.Stream': {'maxVersion': 2, 'minVersion': 2, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.AudioStation.Album': {'maxVersion': 3, 'minVersion': 1, 'path': 'AudioStation/album.cgi'}, 'SYNO.AudioStation.Artist': {'maxVersion': 4, 'minVersion': 1, 'path': 'AudioStation/artist.cgi'}, 'SYNO.AudioStation.Browse.Playlist': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.AudioStation.Composer': {'maxVersion': 2, 'minVersion': 1, 'path': 'AudioStation/composer.cgi'}, 'SYNO.AudioStation.Cover': {'maxVersion': 3, 'minVersion': 1, 'path': 'AudioStation/cover.cgi'}, 'SYNO.AudioStation.Download': {'maxVersion': 1, 'minVersion': 1, 'path': 'AudioStation/download.cgi'}, 'SYNO.AudioStation.Folder': {'maxVersion': 3, 'minVersion': 1, 'path': 'AudioStation/folder.cgi'}, 'SYNO.AudioStation.Genre': {'maxVersion': 3, 'minVersion': 1, 'path': 'AudioStation/genre.cgi'}, 'SYNO.AudioStation.Info': {'maxVersion': 4, 'minVersion': 1, 'path': 'AudioStation/info.cgi'}, 'SYNO.AudioStation.Lyrics': {'maxVersion': 2, 'minVersion': 1, 'path': 'AudioStation/lyrics.cgi'}, 'SYNO.AudioStation.LyricsSearch': {'maxVersion': 2, 'minVersion': 1, 'path': 'AudioStation/lyrics_search.cgi'}, 'SYNO.AudioStation.MediaServer': {'maxVersion': 1, 'minVersion': 1, 'path': 'AudioStation/media_server.cgi'}, 'SYNO.AudioStation.Pin': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.AudioStation.Playlist': {'maxVersion': 3, 'minVersion': 1, 'path': 'AudioStation/playlist.cgi'}, 'SYNO.AudioStation.Proxy': {'maxVersion': 1, 'minVersion': 1, 'path': 'AudioStation/proxy.cgi'}, 'SYNO.AudioStation.Radio': {'maxVersion': 2, 'minVersion': 1, 'path': 'AudioStation/radio.cgi'}, 'SYNO.AudioStation.RemotePlayer': {'maxVersion': 3, 'minVersion': 1, 'path': 'AudioStation/remote_player.cgi'}, 'SYNO.AudioStation.RemotePlayerStatus': {'maxVersion': 1, 'minVersion': 1, 'path': 'AudioStation/remote_player_status.cgi'}, 'SYNO.AudioStation.Search': {'maxVersion': 1, 'minVersion': 1, 'path': 'AudioStation/search.cgi'}, 'SYNO.AudioStation.Song': {'maxVersion': 3, 'minVersion': 1, 'path': 'AudioStation/song.cgi'}, 'SYNO.AudioStation.Stream': {'maxVersion': 2, 'minVersion': 1, 'path': 'AudioStation/stream.cgi'}, 'SYNO.AudioStation.Tag': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.AudioStation.VoiceAssistant.Browse': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.AudioStation.VoiceAssistant.Challenge': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.AudioStation.VoiceAssistant.Info': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.AudioStation.VoiceAssistant.Stream': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.AudioStation.WebPlayer': {'maxVersion': 1, 'minVersion': 1, 'path': 'AudioStation/web_player.cgi'}, 'SYNO.Backup.App': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.App.Backup': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.App.Restore': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.App2.Backup': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.App2.Restore': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Config.Backup': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Config.Restore': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Lunbackup': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Repository': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Repository.Certificate': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Restore': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Server': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Service.NetworkBackup': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Service.TimeBackup': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Share.Restore': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Source.Folder': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Storage.AmazonCloudDrive.Container': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Storage.Azure.Container': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Storage.Connect.Network': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Storage.Dropbox.Container': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Storage.GoogleDrive.Container': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Storage.HiDrive.Container': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Storage.OpenStack.Container': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Storage.OpenStack.Region': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Storage.S3.Bucket': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Storage.Share.Local': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Storage.Share.Network': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Storage.Share.Rsync': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Storage.WebDAV.Container': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Storage.hubiC.Container': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Target': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Target.Config': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Task': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Version': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Backup.Version.History': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Cal.AuthForeign': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Cal.Cal': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Cal.Chatbot': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Cal.Event': {'maxVersion': 4, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Cal.InviteMail': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Cal.InviteMailInit': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Cal.Proxy': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Cal.SendMail': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Cal.Setting': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Cal.Share.Priv': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Cal.Sharing': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Cal.SyncUser': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Cal.Timezone': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Cal.Todo': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.CloudSync': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.ACL': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.AppNotify': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.AppPortal': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.AppPortal.AccessControl': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.AppPortal.Config': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.AppPortal.ReverseProxy': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.AppPriv': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.AppPriv.App': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.AppPriv.Rule': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.BandwidthControl': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.BandwidthControl.Protocol': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.BandwidthControl.Status': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.CMS': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.CMS.Cache': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.CMS.Info': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.CMS.Policy': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.CMS.ServerInfo': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.CMS.Token': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Certificate': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Certificate.CRT': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Certificate.CSR': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Certificate.LetsEncrypt': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Certificate.LetsEncrypt.Account': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Certificate.Service': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.CurrentConnection': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.DDNS.ExtIP': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.DDNS.Provider': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.DDNS.Record': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.DDNS.Synology': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.DDNS.TWNIC': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.DSMNotify': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.DataCollect': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.DataCollect.Application': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Desktop.Defs': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Desktop.Initdata': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Desktop.JSUIString': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Desktop.SessionData': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Desktop.Timeout': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Desktop.UIString': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Directory.Azure.SSO': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Directory.Domain': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Directory.Domain.ADHealthCheck': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Directory.Domain.Conf': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Directory.Domain.Schedule': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Directory.LDAP': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Directory.LDAP.BaseDN': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Directory.LDAP.Login.Notify': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Directory.LDAP.Profile': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Directory.SSO': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Directory.SSO.Profile': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Directory.SSO.utils': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Directory.WebSphere.SSO': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.EventScheduler': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.ExternalDevice.Bluetooth': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.ExternalDevice.Bluetooth.Device': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.ExternalDevice.Bluetooth.Settings': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.ExternalDevice.DefaultPermission': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.ExternalDevice.Printer': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.ExternalDevice.Printer.BonjourSharing': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.ExternalDevice.Printer.Driver': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.ExternalDevice.Printer.Network': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.ExternalDevice.Printer.Network.Host': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.ExternalDevice.Printer.OAuth': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.ExternalDevice.Printer.USB': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.ExternalDevice.Storage.EUnit': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.ExternalDevice.Storage.Setting': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.ExternalDevice.Storage.USB': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.ExternalDevice.Storage.eSATA': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.ExternalDevice.UPS': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.EzInternet': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Factory.Config': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Factory.Manutild': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.File': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.File.Thumbnail': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.FileServ.AFP': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.FileServ.FTP': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.FileServ.FTP.ChrootUser': {'maxVersion': 2, 'minVersion': 2, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.FileServ.FTP.SFTP': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.FileServ.FTP.Security': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.FileServ.NFS': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.FileServ.NFS.AdvancedSetting': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.FileServ.NFS.IDMap': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.FileServ.NFS.Kerberos': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.FileServ.NFS.SharePrivilege': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.FileServ.ReflinkCopy': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.FileServ.Rsync.Account': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.FileServ.SMB': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.FileServ.ServiceDiscovery': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.FileServ.ServiceDiscovery.WSTransfer': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Findhost': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Group': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Group.ExtraAdmin': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Group.Member': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Group.ValidLocalAdmin': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.GroupSettings': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Hardware.BeepControl': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Hardware.DCOutput': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Hardware.DCOutput.Task': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Hardware.FanSpeed': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Hardware.Hibernation': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Hardware.LCM': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Hardware.Led.Brightness': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Hardware.MemoryLayout': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Hardware.NeedReboot': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Hardware.PowerRecovery': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Hardware.PowerSchedule': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Hardware.RemoteFanStatus': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Hardware.SpectreMeltdown': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Hardware.VideoTranscoding': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Hardware.ZRAM': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Help': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.ISCSI.LUN': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.ISCSI.Lunbkp': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.ISCSI.Node': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.ISCSI.Replication': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.ISCSI.Target': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.ISCSI.VLUN': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.MediaIndexing': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.MediaIndexing.IndexFolder': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.MediaIndexing.MediaConverter': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.MediaIndexing.MobileEnabled': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.MediaIndexing.ThumbnailQuality': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.MyDSCenter': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.MyDSCenter.Account': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.MyDSCenter.Purchase': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.Authentication': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.Authentication.Cert': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.Bond': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.Bridge': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.DHCPServer': {'maxVersion': 4, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.DHCPServer.ClientList': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.DHCPServer.PXE': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.DHCPServer.Reservation': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.DHCPServer.Vendor': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.DHCPServer.WPAD': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.Ethernet': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.IPv6': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.IPv6.Router': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.IPv6.Router.Prefix': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.IPv6Tunnel': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.Interface': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.LocalBridge': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.MACClone': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.OVS': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.PPPoE': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.PPPoE.Relay': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.Proxy': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.Router.ConnectionList': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.Router.CountryCode': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.Router.DMZ': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.Router.Gateway.List': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.Router.LocalLan': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.Router.MacFilter': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.Router.ParentalControl': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.Router.PkgList': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.Router.PortForward': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.Router.Static.Route': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.Router.Topology': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.TrafficControl.RouterRules': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.TrafficControl.Rules': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.UPnPServer': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.USBModem': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.VPN': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.VPN.L2TP': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.VPN.OpenVPN': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.VPN.OpenVPN.CA': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.VPN.OpenVPNWithConf': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.VPN.OpenVPNWithConf.Certs': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.VPN.PPTP': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.WOL': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.Wifi.Client': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.Wifi.Hotspot': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Network.Wifi.WPS': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.NormalUser': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.NormalUser.LoginNotify': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Notification.Advance.CustomizedData': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Notification.Advance.FilterSettings': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Notification.Advance.Variables': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Notification.Advance.WarningPercentage': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Notification.CMS': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Notification.CMS.Conf': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Notification.Mail': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Notification.Mail.Auth': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Notification.Mail.Conf': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Notification.Push': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Notification.Push.AuthToken': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Notification.Push.Conf': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Notification.Push.Mail': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Notification.Push.Mobile': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Notification.SMS': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Notification.SMS.Conf': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Notification.SMS.Provider': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.OAuth.Scope': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.OAuth.Server': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.OTP': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.OTP.Admin': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.OTP.EnforcePolicy': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.OTP.Mail': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Package': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Package.Account': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Package.Control': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Package.FakeIFrame': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Package.Feed': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Package.Feed.Keyring': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Package.Info': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Package.Installation': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Package.Installation.Download': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Package.Log': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Package.MyDS': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Package.MyDS.Purchase': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Package.Screenshot': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Package.Screenshot.Server': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Package.Server': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Package.Setting': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Package.Setting.Update': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Package.Setting.Volume': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Package.Term': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Package.Thumb': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Package.Uninstallation': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.PersonalNotification.Device': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.PersonalNotification.Event': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.PersonalNotification.Filter': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.PersonalNotification.Settings': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.PersonalNotification.android': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.PersonalNotification.iOS': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.PersonalNotification.windows': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.PersonalSettings': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.PhotoViewer': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Polling.Data': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.PortForwarding': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.PortForwarding.Compatibility': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.PortForwarding.RouterConf': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.PortForwarding.RouterInfo': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.PortForwarding.RouterList': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.PortForwarding.Rules': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.PortForwarding.Rules.Serv': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.PortForwarding.UserDataCollector': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.QuickConnect': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.QuickConnect.Permission': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.QuickConnect.Upnp': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.QuickStart.Info': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.QuickStart.Install': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Quota': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.RecycleBin': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.RecycleBin.User': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Region.Language': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Region.NTP': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Region.NTP.DateTimeFormat': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Region.NTP.Server': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.SNMP': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Security.AutoBlock': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Security.AutoBlock.Rules': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Security.DSM': {'maxVersion': 4, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Security.DSM.Embed': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Security.DSM.Proxy': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Security.DoS': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Security.Firewall': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Security.Firewall.Adapter': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Security.Firewall.Conf': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Security.Firewall.Geoip': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Security.Firewall.Profile': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Security.Firewall.Profile.Apply': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Security.Firewall.Rules': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Security.Firewall.Rules.Serv': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Security.VPNPassthrough': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Security.VPNPassthrough.Status': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.SecurityScan.Conf': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.SecurityScan.Operation': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.SecurityScan.Status': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Service': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Service.Conf': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Service.PortInfo': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Share': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Share.Crypto': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Share.Crypto.Key': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Share.CryptoFile': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Share.KeyManager.AutoKey': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Share.KeyManager.Key': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Share.KeyManager.MachineKey': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Share.KeyManager.Store': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Share.Migration': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Share.Migration.Task': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Share.Permission': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Share.Snapshot': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Sharing': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Sharing.Initdata': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Sharing.Login': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Sharing.Session': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.SmartBlock': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.SmartBlock.Device': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.SmartBlock.Trusted': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.SmartBlock.Untrusted': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.SmartBlock.User': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Storage.Disk': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Storage.Pool': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Storage.Volume': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Storage.iSCSILUN': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Storage.iSCSITargets': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Storage.iSCSIUtils': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.SupportForm.Form': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.SupportForm.Log': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.SupportForm.Service': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Synohdpack': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.SyslogClient.FileTransfer': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.SyslogClient.Log': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.SyslogClient.PersonalActivity': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.SyslogClient.Setting.Notify': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.SyslogClient.Status': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.System': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.System.Process': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.System.ProcessGroup': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.System.ResetButton': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.System.Status': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.System.Utilization': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.TFTP': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.TaskScheduler': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Terminal': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Theme.AppPortalLogin': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Theme.Desktop': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Theme.FileSharingLogin': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Theme.Image': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Theme.Login': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.TrustDevice': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Tuned': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.UISearch': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Upgrade': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Upgrade.AutoUpgrade': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Upgrade.Group': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Upgrade.Group.Download': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Upgrade.Group.Setting': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Upgrade.GroupInstall': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Upgrade.GroupInstall.Network': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Upgrade.Patch': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Upgrade.PreCheck': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Upgrade.Server': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Upgrade.Server.Download': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Upgrade.Setting': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.User': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.User.Group': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.User.Home': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.User.PasswordConfirm': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.User.PasswordExpiry': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.User.PasswordMeter': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.User.PasswordPolicy': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.UserSettings': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Virtualization.Host.Capability': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Web.DSM': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Web.DSM.External': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Web.Security.HTTPCompression': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Core.Web.Security.TLSProfile': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.DR.Node': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.DR.Node.Credential': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.DR.Node.Session': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.DSM.FindMe': {'maxVersion': 2, 'minVersion': 2, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.DSM.Info': {'maxVersion': 2, 'minVersion': 2, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.DSM.Network': {'maxVersion': 2, 'minVersion': 2, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.DSM.PortEnable': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.DSM.PushNotification': {'maxVersion': 2, 'minVersion': 2, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.DisasterRecovery.Log': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.DisasterRecovery.Retention': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Entry.Request': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Entry.Request.Polling': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.BackgroundTask': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.CheckExist': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.CheckPermission': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.Compress': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.CopyMove': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.CreateFolder': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.Delete': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.DirSize': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.Download': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.External.GoogleDrive': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.Extract': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.Favorite': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.FormUpload': {'maxVersion': 2, 'minVersion': 2, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.Info': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.List': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.MD5': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.Mount': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.Mount.List': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.Notify': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.Property': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.Property.ACLOwner': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.Property.CompressSize': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.Property.Mtime': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.Rename': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.Search': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.Search.History': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.Settings': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.Sharing': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.Sharing.Download': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.Snapshot': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.Thumb': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.Timeout': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.UIString': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.Upload': {'maxVersion': 3, 'minVersion': 2, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.UserGrp': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.VFS.Connection': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.VFS.File': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.VFS.GDrive': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.VFS.Profile': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.VFS.Protocol': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.VFS.User': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FileStation.VirtualFolder': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Finder.AppIndexing.Search': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Finder.Bookmark': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Finder.Elastic.SearchHistory': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Finder.Elastic.Spotlight': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Finder.Elastic.Term': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Finder.File': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Finder.File.Cover': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Finder.File.Thumbnail': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Finder.FileIndexing.Folder': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Finder.FileIndexing.Highlight': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Finder.FileIndexing.Indicate': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Finder.FileIndexing.Search': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Finder.FileIndexing.Status': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Finder.FileIndexing.Term': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Finder.Preference': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Finder.Settings': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Finder.UserGrp': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FolderSharing.Download': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FolderSharing.List': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.FolderSharing.Thumb': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.License.HA': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.OAUTH.Client': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.OAUTH.Common': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.OAUTH.Log': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.OAUTH.Token': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Package': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PersonMailAccount': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PersonMailAccount.Contacts': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PersonMailAccount.Mail': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Personal.Application.Info': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Personal.MailAccount': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Personal.MailAccount.Contacts': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Personal.MailAccount.Mail': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Personal.Notification.Conf': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Personal.Notification.Device': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Personal.Notification.Event': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Personal.Notification.Filter': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Personal.Notification.GDPR': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Personal.Notification.Identifier': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Personal.Notification.Mobile': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Personal.Notification.Settings': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Personal.Notification.Token': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Personal.Notification.VapidPublicKey': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Personal.Profile': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Personal.Profile.Photo': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Browse.Album': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Browse.Category': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Browse.Concept': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Browse.Diff': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Browse.Folder': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Browse.GeneralTag': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Browse.Geocoding': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Browse.Item': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Browse.Person': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Browse.RecentlyAdded': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Browse.Timeline': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Browse.Unit': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Discover.Category': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Discover.Similar': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Discover.Status': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Discover.Style': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Download': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Enhancement': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Index': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Search': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Setting.Admin': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Setting.Mobile': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Setting.User': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Sharing': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.SharingLogin': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Streaming': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Thumbnail': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Photo.Upload.Item': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Browse.Album': {'maxVersion': 2, 'minVersion': 2, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Browse.Category': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Browse.Concept': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Browse.Diff': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Browse.Folder': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Browse.GeneralTag': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Browse.Geocoding': {'maxVersion': 2, 'minVersion': 2, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Browse.Item': {'maxVersion': 3, 'minVersion': 2, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Browse.Person': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Browse.RecentlyAdded': {'maxVersion': 3, 'minVersion': 2, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Browse.Timeline': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Browse.Unit': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Discover.Category': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Discover.Similar': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Discover.Status': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Discover.Style': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Download': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Enhancement': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Index': {'maxVersion': 2, 'minVersion': 2, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Permission': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Search': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Setting.User': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Sharing': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Streaming': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Thumbnail': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.PhotoTeam.Upload.Item': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.ResourceMonitor.EventRule': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.ResourceMonitor.Log': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.ResourceMonitor.Setting': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.S2S.Client': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.S2S.Client.Job': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.S2S.Server': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.S2S.Server.Pair': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SAS.APIRunner': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SAS.APIRunner.Chatbot': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SAS.Encryption': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SAS.Group': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SAS.Group.Members': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SAS.Guest': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SDS.Backup.Client.Common.Log': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SDS.Backup.Client.Common.Statistic': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SDS.Backup.Client.Common.Target': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SDS.Backup.Client.Common.Version': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SDS.Backup.Client.Explore.File': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SDS.Backup.Client.Explore.Folder': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SDS.Backup.Client.Explore.Job': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SDS.Backup.Client.Explore.Target': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SDS.Backup.Client.Explore.Version': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SDS.Backup.Client.Fuse.Target': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SecurityAdvisor.Conf': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SecurityAdvisor.Conf.Checklist': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SecurityAdvisor.Conf.Checklist.Alert': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SecurityAdvisor.Conf.Location': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SecurityAdvisor.LoginActivity': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SecurityAdvisor.Report': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SecurityAdvisor.Report.HTML': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.ShareLink.Action': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.ShareLink.Download': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.ShareLink.Manage': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Snap.Usage.Share': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Storage.CGI.Check': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Storage.CGI.DualEnclosure': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Storage.CGI.Enclosure': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Storage.CGI.Flashcache': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Storage.CGI.HddMan': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Storage.CGI.Pool': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Storage.CGI.Smart': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Storage.CGI.Smart.Scheduler': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Storage.CGI.Spare': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Storage.CGI.Spare.Conf': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Storage.CGI.Storage': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Storage.CGI.TaipeiEnclosure': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Storage.CGI.Volume': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.ActionRule': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.AddOns': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Alert': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Alert.Setting': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Analytics.Setting': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.AppCenter': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Archiving.Pull': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Archiving.Push': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.AudioOut': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.AudioPattern': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.AudioStream': {'maxVersion': 2, 'minVersion': 1, 'path': 'SurveillanceStation/audioStreaming.cgi'}, 'SYNO.SurveillanceStation.AxisAcsCtrler': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.AxisAcsCtrler.Search': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.CMS': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.CMS.DsSearch': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.CMS.Failover': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.CMS.GetDsStatus': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.CMS.SlavedsList': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.CMS.SlavedsWizard': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Camera': {'maxVersion': 9, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Camera.Event': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Camera.Export': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Camera.Group': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Camera.Import': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Camera.Intercom': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Camera.Search': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Camera.Status': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Camera.VolEval': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Camera.Wizard': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.CameraCap': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Device': {'maxVersion': 2, 'minVersion': 1, 'path': 'SurveillanceStation/device.cgi'}, 'SYNO.SurveillanceStation.DigitalOutput': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.DualAuth': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Emap': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Emap.Image': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Event': {'maxVersion': 5, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Event.Export': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Event.Mount': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Event.Mount.Wizard': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.ExternalDevice.IFTTT': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.ExternalDevice.Storage.USB': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.ExternalDevice.Webhook': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.ExternalEvent': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.ExternalRecording': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Fisheye': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.GlobalSearch': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Help': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.HomeMode': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.HomeMode.Mobile': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.IOModule': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.IOModule.Search': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.IPSpeaker': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.IPSpeaker.Broadcast': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.IPSpeaker.Group': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.IPSpeaker.Search': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.IVA': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.IVA.Archive': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.IVA.License': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.IVA.Recording': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.IVA.Report': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.IVA.Simulator': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.IVA.TaskGroup': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Info': {'maxVersion': 8, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.JoystickSetting': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Layout': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.License': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.LocalDisplay': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Log': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.MobileCam': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Notification': {'maxVersion': 8, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Notification.Email': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Notification.Filter': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Notification.MobileSetting': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Notification.PushService': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Notification.SMS': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Notification.SMS.ServiceProvider': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Notification.Schedule': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.PTZ': {'maxVersion': 5, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.PTZ.Patrol': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.PTZ.Preset': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.PersonalSettings.Image': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.PersonalSettings.Layout': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.PersonalSettings.Photo': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Player': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Player.LiveviewSrc': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Preload': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Recording': {'maxVersion': 6, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Recording.Bookmark': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Recording.Export': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Recording.Mount': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Recording.Mount.Wizard': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Recording.Reindex': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Recording.ShareRecording': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.RecordingPicker': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Share': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.SnapShot': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Sort': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Stream': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Stream.VideoStreaming': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Streaming': {'maxVersion': 2, 'minVersion': 1, 'path': 'SurveillanceStation/streaming.cgi'}, 'SYNO.SurveillanceStation.System': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.TaskQueue': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.TimeLapse': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.TimeLapse.Recording': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Transactions.Device': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Transactions.Transaction': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.UserPrivilege': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.VideoStream': {'maxVersion': 1, 'minVersion': 1, 'path': 'SurveillanceStation/videoStreaming.cgi'}, 'SYNO.SurveillanceStation.VideoStreaming': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.VisualStation': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.VisualStation.Install': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.VisualStation.Layout': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.VisualStation.Search': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.Webhook': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SurveillanceStation.YoutubeLive': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.AdvanceSharing': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.AdvanceSharing.Public': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.AppIntegration': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Authentication': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Config': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Connection': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.DBUsage': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.DSM': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Export': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Files': {'maxVersion': 3, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Info': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.KeyManagement': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Labels': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Log': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Metrics': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Metrics.Token': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Migration': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Node': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Node.Delete': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Node.Download': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Node.Restore': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Notifications': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Office': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Photos': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Privilege': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Profile': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Revisions': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.SCIM.Photo': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.SCIM.User': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Services.DocumentViewer': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Services.SynologyChat': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Services.VideoStation': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Settings': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Shard': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Share': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Share.Priv': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Sharing': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.String': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Tasks': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.TeamFolders': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Trash': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Users': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDrive.Webhooks': {'maxVersion': 2, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDriveShareSync.Config': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDriveShareSync.Connection': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDriveShareSync.Session': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.SynologyDriveShareSync.Session.Set': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.Utils': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.VideoPlayer.Subtitle': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.VideoPlayer.SynologyDrive.Subtitle': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.WebDAV.CalDAV': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.WebDAV.CalDAV.Calendar': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}, 'SYNO.WebDAV.Common': {'maxVersion': 1, 'minVersion': 1, 'path': 'entry.cgi', 'requestFormat': 'JSON'}}, 'success': True} |
class Paras:
COURSE_LABEL_SIZE = None
FINE_2_COURSE = None
IX_a = None
IX_t = None
IX_s = None
IX_a_out = None
IX_p_out = None
@staticmethod
def init():
print("Paras.init started...")
Paras.COURSE_LABEL_SIZE = 6
Paras.FINE_2_COURSE = {}
Paras.FINE_2_COURSE[()] = 0
Paras.FINE_2_COURSE[("NP", )] = 1
Paras.FINE_2_COURSE[("WHNP",)] = 1
Paras.FINE_2_COURSE[("NAC",)] = 1
Paras.FINE_2_COURSE[("NX",)] = 1
Paras.FINE_2_COURSE[("S", )] = 2
Paras.FINE_2_COURSE[("SINV",)] = 2
Paras.FINE_2_COURSE[("SBAR", )] = 2
Paras.FINE_2_COURSE[("SBARQ",)] = 2
Paras.FINE_2_COURSE[("SQ", )] = 2
Paras.FINE_2_COURSE[("VP",)] = 2
Paras.FINE_2_COURSE[("ADJP",)] = 3
Paras.FINE_2_COURSE[("ADVP",)] = 3
Paras.FINE_2_COURSE[("PP",)] = 3
Paras.FINE_2_COURSE[("WHADJP",)] = 3
Paras.FINE_2_COURSE[("WHADVP",)] = 3
Paras.FINE_2_COURSE[("WHPP",)] = 3
Paras.FINE_2_COURSE[("PRN",)] = 3
Paras.FINE_2_COURSE[("QP",)] = 3
Paras.FINE_2_COURSE[("RRC",)] = 3
Paras.FINE_2_COURSE[("UCP",)] = 3
Paras.FINE_2_COURSE[("LST",)] = 3
Paras.FINE_2_COURSE[("INTJ",)] = 4
Paras.FINE_2_COURSE[("PRT",)] = 4
Paras.FINE_2_COURSE[("CONJP",)] = 4
Paras.FINE_2_COURSE[("X",)] = 5
Paras.FINE_2_COURSE[("FRAG",)] = 5
Paras.IX_a = {}
Paras.IX_t = {}
Paras.IX_s = {}
Paras.IX_a_out = {}
Paras.IX_p_out = {}
for span_len in range(1, 500):
Paras.IX_a[span_len] = [[(0, j, i) for i in range(0, span_len - 1)] for j in range(1, span_len)]
Paras.IX_t[span_len] = [[(i, j, span_len) for i in range(0, span_len - 1)] for j in range(1, span_len)]
Paras.IX_s[span_len] = [[(j, span_len) for i in range(0, span_len - 1)] for j in range(1, span_len)]
Paras.IX_a_out[span_len] = [(0, span_len, j) for j in range(0, span_len)]
Paras.IX_p_out[span_len] = [(0, span_len, j) for j in range(1, span_len)]
print("Paras.init finished...")
if __name__ == '__main__':
Paras.init()
| class Paras:
course_label_size = None
fine_2_course = None
ix_a = None
ix_t = None
ix_s = None
ix_a_out = None
ix_p_out = None
@staticmethod
def init():
print('Paras.init started...')
Paras.COURSE_LABEL_SIZE = 6
Paras.FINE_2_COURSE = {}
Paras.FINE_2_COURSE[()] = 0
Paras.FINE_2_COURSE['NP',] = 1
Paras.FINE_2_COURSE['WHNP',] = 1
Paras.FINE_2_COURSE['NAC',] = 1
Paras.FINE_2_COURSE['NX',] = 1
Paras.FINE_2_COURSE['S',] = 2
Paras.FINE_2_COURSE['SINV',] = 2
Paras.FINE_2_COURSE['SBAR',] = 2
Paras.FINE_2_COURSE['SBARQ',] = 2
Paras.FINE_2_COURSE['SQ',] = 2
Paras.FINE_2_COURSE['VP',] = 2
Paras.FINE_2_COURSE['ADJP',] = 3
Paras.FINE_2_COURSE['ADVP',] = 3
Paras.FINE_2_COURSE['PP',] = 3
Paras.FINE_2_COURSE['WHADJP',] = 3
Paras.FINE_2_COURSE['WHADVP',] = 3
Paras.FINE_2_COURSE['WHPP',] = 3
Paras.FINE_2_COURSE['PRN',] = 3
Paras.FINE_2_COURSE['QP',] = 3
Paras.FINE_2_COURSE['RRC',] = 3
Paras.FINE_2_COURSE['UCP',] = 3
Paras.FINE_2_COURSE['LST',] = 3
Paras.FINE_2_COURSE['INTJ',] = 4
Paras.FINE_2_COURSE['PRT',] = 4
Paras.FINE_2_COURSE['CONJP',] = 4
Paras.FINE_2_COURSE['X',] = 5
Paras.FINE_2_COURSE['FRAG',] = 5
Paras.IX_a = {}
Paras.IX_t = {}
Paras.IX_s = {}
Paras.IX_a_out = {}
Paras.IX_p_out = {}
for span_len in range(1, 500):
Paras.IX_a[span_len] = [[(0, j, i) for i in range(0, span_len - 1)] for j in range(1, span_len)]
Paras.IX_t[span_len] = [[(i, j, span_len) for i in range(0, span_len - 1)] for j in range(1, span_len)]
Paras.IX_s[span_len] = [[(j, span_len) for i in range(0, span_len - 1)] for j in range(1, span_len)]
Paras.IX_a_out[span_len] = [(0, span_len, j) for j in range(0, span_len)]
Paras.IX_p_out[span_len] = [(0, span_len, j) for j in range(1, span_len)]
print('Paras.init finished...')
if __name__ == '__main__':
Paras.init() |
def find_slowest_time(messages):
simulated_communication_times = {message.sender: message.body['simulated_time'] for message in messages}
slowest_client = max(simulated_communication_times, key=simulated_communication_times.get)
simulated_time = simulated_communication_times[
slowest_client] # simulated time it would take for server to receive all values
return simulated_time | def find_slowest_time(messages):
simulated_communication_times = {message.sender: message.body['simulated_time'] for message in messages}
slowest_client = max(simulated_communication_times, key=simulated_communication_times.get)
simulated_time = simulated_communication_times[slowest_client]
return simulated_time |
'''
Excited States software: qFit 3.0
Contributors: Saulo H. P. de Oliveira, Gydo van Zundert, and Henry van den Bedem.
Contact: vdbedem@stanford.edu
Copyright (C) 2009-2019 Stanford University
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:
This entire text, including 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, CONTRIBUTORS 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.
'''
BondLengthTable = {'H': {'H': '0.7380', 'C': '1.0900', 'N': '1.0100', 'O': '0.9600', 'F': '0.9200', 'Cl': '1.2800', 'Br': '1.4100', 'I': '1.6000', 'P': '1.4100', 'S': '1.3400'}, 'C': {'H': '1.0900', 'C': '1.5260', 'N': '1.4700', 'O': '1.4400', 'F': '1.3700', 'Cl': '1.8000', 'Br': '1.9400', 'I': '2.1600', 'P': '1.8300', 'S': '1.8200'}, 'N': {'H': '1.0100', 'C': '1.4700', 'N': '1.4410', 'O': '1.4200', 'F': '1.4200', 'Cl': '1.7500', 'Br': '1.9300', 'I': '2.1200', 'P': '1.7200', 'S': '1.6900'}, 'O': {'H': '0.9600', 'C': '1.4400', 'N': '1.4200', 'O': '1.4600', 'F': '1.4100', 'Cl': '1.7000', 'Br': '1.7900', 'I': '2.1100', 'P': '1.6400', 'S': '1.6500'}, 'F': {'H': '0.9200', 'C': '1.3700', 'N': '1.4200', 'O': '1.4100', 'F': '1.4060', 'P': '1.5000', 'S': '1.5800'}, 'Cl': {'H': '1.2800', 'C': '1.8000', 'N': '1.7500', 'O': '1.7000', 'Cl': '2.0310', 'P': '2.0400', 'S': '2.0300'}, 'Br': {'H': '1.4100', 'C': '1.9400', 'N': '1.9300', 'O': '1.7900', 'Br': '2.3370', 'P': '2.2400', 'S': '2.2100'}, 'I': {'H': '1.6000', 'C': '2.1600', 'N': '2.1200', 'O': '2.1100', 'I': '2.8360', 'P': '2.4900', 'S': '2.5600'}, 'P': {'H': '1.4100', 'C': '1.8300', 'N': '1.7200', 'O': '1.6400', 'F': '1.5000', 'Cl': '2.0400', 'Br': '2.2400', 'I': '2.4900', 'P': '2.3240', 'S': '2.1200'}, 'S': {'H': '1.3400', 'C': '1.8200', 'N': '1.6900', 'O': '1.6500', 'F': '1.5800', 'Cl': '2.0300', 'Br': '2.2100', 'I': '2.5600', 'P': '2.1200', 'S': '2.0380'}}
| """
Excited States software: qFit 3.0
Contributors: Saulo H. P. de Oliveira, Gydo van Zundert, and Henry van den Bedem.
Contact: vdbedem@stanford.edu
Copyright (C) 2009-2019 Stanford University
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:
This entire text, including 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, CONTRIBUTORS 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.
"""
bond_length_table = {'H': {'H': '0.7380', 'C': '1.0900', 'N': '1.0100', 'O': '0.9600', 'F': '0.9200', 'Cl': '1.2800', 'Br': '1.4100', 'I': '1.6000', 'P': '1.4100', 'S': '1.3400'}, 'C': {'H': '1.0900', 'C': '1.5260', 'N': '1.4700', 'O': '1.4400', 'F': '1.3700', 'Cl': '1.8000', 'Br': '1.9400', 'I': '2.1600', 'P': '1.8300', 'S': '1.8200'}, 'N': {'H': '1.0100', 'C': '1.4700', 'N': '1.4410', 'O': '1.4200', 'F': '1.4200', 'Cl': '1.7500', 'Br': '1.9300', 'I': '2.1200', 'P': '1.7200', 'S': '1.6900'}, 'O': {'H': '0.9600', 'C': '1.4400', 'N': '1.4200', 'O': '1.4600', 'F': '1.4100', 'Cl': '1.7000', 'Br': '1.7900', 'I': '2.1100', 'P': '1.6400', 'S': '1.6500'}, 'F': {'H': '0.9200', 'C': '1.3700', 'N': '1.4200', 'O': '1.4100', 'F': '1.4060', 'P': '1.5000', 'S': '1.5800'}, 'Cl': {'H': '1.2800', 'C': '1.8000', 'N': '1.7500', 'O': '1.7000', 'Cl': '2.0310', 'P': '2.0400', 'S': '2.0300'}, 'Br': {'H': '1.4100', 'C': '1.9400', 'N': '1.9300', 'O': '1.7900', 'Br': '2.3370', 'P': '2.2400', 'S': '2.2100'}, 'I': {'H': '1.6000', 'C': '2.1600', 'N': '2.1200', 'O': '2.1100', 'I': '2.8360', 'P': '2.4900', 'S': '2.5600'}, 'P': {'H': '1.4100', 'C': '1.8300', 'N': '1.7200', 'O': '1.6400', 'F': '1.5000', 'Cl': '2.0400', 'Br': '2.2400', 'I': '2.4900', 'P': '2.3240', 'S': '2.1200'}, 'S': {'H': '1.3400', 'C': '1.8200', 'N': '1.6900', 'O': '1.6500', 'F': '1.5800', 'Cl': '2.0300', 'Br': '2.2100', 'I': '2.5600', 'P': '2.1200', 'S': '2.0380'}} |
jobs = 1
mid_x = -0.5
mid_y = 0.0
render_width = 2.5
render_height = 2.5
iterations = 256
width = 50
height = 25
output = [0] * (width * height)
def mandelbrot_int(cx, cy):
int_precision = 28
zx = 0
zy = 0
cx = int(cx * (1 << int_precision))
cy = int(cy * (1 << int_precision))
depth = None
for d in range(iterations):
sq_zx = (zx * zx) >> int_precision
sq_zy = (zy * zy) >> int_precision
if sq_zx + sq_zy > (4 << int_precision):
depth = d
break
new_zx = sq_zx - sq_zy + cx
zy = ((2 * zx * zy) >> int_precision) + cy
zx = new_zx
return depth
def mandelbrot_float(cx, cy):
zx = 0
zy = 0
depth = 0
for d in range(iterations) :
sq_zx = zx * zx
sq_zy = zy * zy
if sq_zx + sq_zy > 4 :
depth = d
break
new_zx = sq_zx - sq_zy + cx
zy = (2 * zx * zy) + cy
zx = new_zx
return depth
def generate_mandelbrot_range(job, mandel_func):
for iy in range(job, height, jobs):
for ix in range(0, width):
i = iy * width + ix
cx = (ix - (width / 2)) * (render_width / width) + mid_x
cy = (iy - (height / 2)) * (render_height / height) + mid_y
depth = mandel_func(cx, cy)
output[i] = "#" if depth == 0 else " " #chr(max(32, min(126, depth)))
def main(use_float = False):
mandel_func = mandelbrot_float if use_float else mandelbrot_int
generate_mandelbrot_range(0, mandel_func)
for y in range(height):
start = y * width
print("".join(output[start : start + width]))
if __name__ == "__main__":
main(True)
| jobs = 1
mid_x = -0.5
mid_y = 0.0
render_width = 2.5
render_height = 2.5
iterations = 256
width = 50
height = 25
output = [0] * (width * height)
def mandelbrot_int(cx, cy):
int_precision = 28
zx = 0
zy = 0
cx = int(cx * (1 << int_precision))
cy = int(cy * (1 << int_precision))
depth = None
for d in range(iterations):
sq_zx = zx * zx >> int_precision
sq_zy = zy * zy >> int_precision
if sq_zx + sq_zy > 4 << int_precision:
depth = d
break
new_zx = sq_zx - sq_zy + cx
zy = (2 * zx * zy >> int_precision) + cy
zx = new_zx
return depth
def mandelbrot_float(cx, cy):
zx = 0
zy = 0
depth = 0
for d in range(iterations):
sq_zx = zx * zx
sq_zy = zy * zy
if sq_zx + sq_zy > 4:
depth = d
break
new_zx = sq_zx - sq_zy + cx
zy = 2 * zx * zy + cy
zx = new_zx
return depth
def generate_mandelbrot_range(job, mandel_func):
for iy in range(job, height, jobs):
for ix in range(0, width):
i = iy * width + ix
cx = (ix - width / 2) * (render_width / width) + mid_x
cy = (iy - height / 2) * (render_height / height) + mid_y
depth = mandel_func(cx, cy)
output[i] = '#' if depth == 0 else ' '
def main(use_float=False):
mandel_func = mandelbrot_float if use_float else mandelbrot_int
generate_mandelbrot_range(0, mandel_func)
for y in range(height):
start = y * width
print(''.join(output[start:start + width]))
if __name__ == '__main__':
main(True) |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
def get_tensor_shape(t):
return [d for d in t.shape]
def get_tensors_shapes_string(tensors):
res = []
for t in tensors:
res.extend([str(v) for v in get_tensor_shape(t)])
return " ".join(res)
| def get_tensor_shape(t):
return [d for d in t.shape]
def get_tensors_shapes_string(tensors):
res = []
for t in tensors:
res.extend([str(v) for v in get_tensor_shape(t)])
return ' '.join(res) |
__author__ = 'Rahul Gupta'
# Contains relevant constants for running the LDSC pipeline for the Pan Ancestry project.
project_dir = '/Volumes/rahul/Projects/2020_ukb_diverse_pops/Experiments/200501_ldsc_div_pops_pipeline/Data/'
flat_file_location = 'gs://ukb-diverse-pops/sumstats_flat_files/'
bucket = 'rgupta-ldsc'
# ancestries = ['AFR', 'AMR', 'CSA', 'EAS', 'EUR', 'MID']
output_bucket = f'gs://{bucket}/'
#anc_to_ldscore = lambda anc: f'gs://ukb-diverse-pops-public/ld_release/UKBB.{anc}'
anc_to_ldscore = lambda anc: f'gs://rgupta-ldsc/ld/UKBB.{anc}' | __author__ = 'Rahul Gupta'
project_dir = '/Volumes/rahul/Projects/2020_ukb_diverse_pops/Experiments/200501_ldsc_div_pops_pipeline/Data/'
flat_file_location = 'gs://ukb-diverse-pops/sumstats_flat_files/'
bucket = 'rgupta-ldsc'
output_bucket = f'gs://{bucket}/'
anc_to_ldscore = lambda anc: f'gs://rgupta-ldsc/ld/UKBB.{anc}' |
print('i am batman', end='\n')
print('hello world', end='\t\t')
print('this is cool\n', end=' ----- ')
print('i am still here')
| print('i am batman', end='\n')
print('hello world', end='\t\t')
print('this is cool\n', end=' ----- ')
print('i am still here') |
# -*- coding: utf-8 -*-
"""Top-level package for DjangoCMS Blog plugin."""
__author__ = """Carlos Martinez"""
__email__ = 'me@carlosmart.co'
__version__ = '0.1.2'
| """Top-level package for DjangoCMS Blog plugin."""
__author__ = 'Carlos Martinez'
__email__ = 'me@carlosmart.co'
__version__ = '0.1.2' |
# Code generated by font_to_py.py.
# Font: Arial.ttf Char set: 0123456789:
# Cmd: ./font_to_py.py Arial.ttf 50 arial_50.py -x -c 0123456789:
version = '0.33'
def height():
return 50
def baseline():
return 49
def max_width():
return 37
def hmap():
return True
def reverse():
return False
def monospaced():
return False
def min_ch():
return 48
def max_ch():
return 63
_font =\
b'\x25\x00\x00\x03\xfe\x00\x00\x00\x1f\xff\xc0\x00\x00\x7f\xff\xf0'\
b'\x00\x00\xff\xff\xf8\x00\x01\xff\xff\xfc\x00\x03\xff\xff\xfe\x00'\
b'\x07\xfe\x03\xff\x00\x07\xf8\x00\xff\x80\x0f\xf0\x00\x7f\x80\x0f'\
b'\xe0\x00\x3f\x80\x0f\xc0\x00\x1f\xc0\x1f\xc0\x00\x1f\xc0\x1f\xc0'\
b'\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x03\x80\x00\x0f\xc0\x00\x00\x00'\
b'\x0f\xc0\x00\x00\x00\x0f\xc0\x00\x00\x00\x1f\x80\x00\x00\x00\x3f'\
b'\x80\x00\x00\x00\x7f\x00\x00\x00\x00\xff\x00\x00\x00\x01\xfe\x00'\
b'\x00\x00\x03\xfc\x00\x00\x00\x07\xf8\x00\x00\x00\x0f\xf0\x00\x00'\
b'\x00\x1f\xe0\x00\x00\x00\x3f\xc0\x00\x00\x00\x7f\x80\x00\x00\x00'\
b'\x7f\x00\x00\x00\x00\xfe\x00\x00\x00\x00\xfc\x00\x00\x00\x01\xfc'\
b'\x00\x00\x00\x01\xfc\x00\x00\x00\x01\xf8\x00\x00\x00\x01\xf8\x00'\
b'\x00\x00\x01\xf8\x00\x00\x00\x01\xf8\x00\x00\x00\x01\xf8\x00\x00'\
b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\
b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\xf8\x00\x00\x00\x01'\
b'\xf8\x00\x00\x00\x01\xf8\x00\x00\x00\x01\xf8\x00\x00\x00\x01\xf8'\
b'\x00\x00\x00\x01\xf8\x00\x00\x00\x00\x00\x00\x00\x25\x00\x00\x00'\
b'\x00\x00\x00\x00\x03\xfe\x00\x00\x00\x0f\xff\x80\x00\x00\x3f\xff'\
b'\xe0\x00\x00\x7f\xff\xf0\x00\x00\xff\xff\xf8\x00\x01\xff\xff\xfc'\
b'\x00\x03\xfe\x07\xfc\x00\x03\xfc\x01\xfe\x00\x07\xf0\x00\xfe\x00'\
b'\x07\xf0\x00\x7f\x00\x07\xe0\x00\x3f\x00\x0f\xe0\x00\x3f\x00\x0f'\
b'\xc0\x00\x1f\x80\x0f\xc0\x00\x1f\x80\x0f\xc0\x00\x1f\x80\x0f\xc0'\
b'\x00\x1f\x80\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00'\
b'\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f'\
b'\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0'\
b'\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f'\
b'\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80'\
b'\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x0f\xc0\x00\x1f\x80\x0f\xc0\x00'\
b'\x1f\x80\x0f\xc0\x00\x1f\x80\x0f\xc0\x00\x1f\x80\x0f\xe0\x00\x3f'\
b'\x80\x07\xe0\x00\x3f\x00\x07\xf0\x00\x7f\x00\x07\xf8\x00\xff\x00'\
b'\x03\xfc\x01\xfe\x00\x03\xff\x07\xfe\x00\x01\xff\xff\xfc\x00\x00'\
b'\xff\xff\xf8\x00\x00\x7f\xff\xf0\x00\x00\x3f\xff\xe0\x00\x00\x0f'\
b'\xff\x80\x00\x00\x03\xfe\x00\x00\x25\x00\x00\x00\x00\x00\x00\x00'\
b'\x00\x07\x80\x00\x00\x00\x0f\x80\x00\x00\x00\x0f\x80\x00\x00\x00'\
b'\x1f\x80\x00\x00\x00\x3f\x80\x00\x00\x00\x7f\x80\x00\x00\x00\xff'\
b'\x80\x00\x00\x03\xff\x80\x00\x00\x07\xff\x80\x00\x00\x0f\xff\x80'\
b'\x00\x00\x3f\xff\x80\x00\x00\xff\xdf\x80\x00\x01\xff\x9f\x80\x00'\
b'\x01\xfe\x1f\x80\x00\x01\xfc\x1f\x80\x00\x01\xf0\x1f\x80\x00\x01'\
b'\xc0\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00'\
b'\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f'\
b'\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80'\
b'\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00'\
b'\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00'\
b'\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00'\
b'\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f'\
b'\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80'\
b'\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00'\
b'\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00'\
b'\x00\x00\x00\x00\x25\x00\x00\x00\x00\x00\x00\x00\x03\xfe\x00\x00'\
b'\x00\x1f\xff\xc0\x00\x00\x7f\xff\xe0\x00\x01\xff\xff\xf8\x00\x03'\
b'\xff\xff\xfc\x00\x03\xff\xff\xfc\x00\x07\xfe\x07\xfe\x00\x0f\xf0'\
b'\x00\xff\x00\x0f\xe0\x00\x7f\x00\x0f\xc0\x00\x3f\x00\x1f\xc0\x00'\
b'\x3f\x80\x1f\x80\x00\x1f\x80\x1f\x80\x00\x1f\x80\x03\x80\x00\x1f'\
b'\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80'\
b'\x00\x00\x00\x3f\x00\x00\x00\x00\x3f\x00\x00\x00\x00\x7f\x00\x00'\
b'\x00\x00\xfe\x00\x00\x00\x01\xfe\x00\x00\x00\x03\xfc\x00\x00\x00'\
b'\x07\xf8\x00\x00\x00\x0f\xf0\x00\x00\x00\x1f\xe0\x00\x00\x00\x3f'\
b'\xe0\x00\x00\x00\x7f\xc0\x00\x00\x00\xff\x80\x00\x00\x01\xfe\x00'\
b'\x00\x00\x03\xfc\x00\x00\x00\x07\xf8\x00\x00\x00\x1f\xf0\x00\x00'\
b'\x00\x3f\xe0\x00\x00\x00\x7f\xc0\x00\x00\x00\xff\x80\x00\x00\x01'\
b'\xfe\x00\x00\x00\x03\xfc\x00\x00\x00\x07\xf8\x00\x00\x00\x07\xf0'\
b'\x00\x00\x00\x0f\xe0\x00\x00\x00\x0f\xe0\x00\x00\x00\x1f\xff\xff'\
b'\xff\x80\x1f\xff\xff\xff\x80\x3f\xff\xff\xff\x80\x3f\xff\xff\xff'\
b'\x80\x3f\xff\xff\xff\x80\x3f\xff\xff\xff\x80\x00\x00\x00\x00\x00'\
b'\x25\x00\x00\x00\x00\x00\x00\x00\x07\xfc\x00\x00\x00\x1f\xff\x80'\
b'\x00\x00\x7f\xff\xe0\x00\x00\xff\xff\xf0\x00\x01\xff\xff\xf8\x00'\
b'\x03\xff\xff\xfc\x00\x07\xfc\x07\xfe\x00\x0f\xf0\x01\xfe\x00\x0f'\
b'\xe0\x00\xfe\x00\x0f\xc0\x00\x7f\x00\x1f\xc0\x00\x3f\x00\x1f\x80'\
b'\x00\x3f\x00\x03\x80\x00\x3f\x00\x00\x00\x00\x3f\x00\x00\x00\x00'\
b'\x3f\x00\x00\x00\x00\x7e\x00\x00\x00\x00\xfe\x00\x00\x00\x01\xfc'\
b'\x00\x00\x00\x0f\xf8\x00\x00\x01\xff\xf0\x00\x00\x01\xff\xe0\x00'\
b'\x00\x01\xff\xe0\x00\x00\x01\xff\xf8\x00\x00\x01\xff\xfc\x00\x00'\
b'\x01\x8f\xfe\x00\x00\x00\x01\xff\x00\x00\x00\x00\x7f\x00\x00\x00'\
b'\x00\x3f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\xc0\x00\x00\x00'\
b'\x0f\xc0\x00\x00\x00\x0f\xc0\x00\x00\x00\x0f\xc0\x00\x00\x00\x0f'\
b'\xc0\x00\x00\x00\x0f\xc0\x03\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0'\
b'\x1f\xc0\x00\x1f\x80\x1f\xc0\x00\x1f\x80\x0f\xe0\x00\x3f\x80\x0f'\
b'\xf0\x00\x7f\x00\x07\xf8\x00\xff\x00\x07\xfe\x03\xfe\x00\x03\xff'\
b'\xff\xfc\x00\x01\xff\xff\xf8\x00\x00\xff\xff\xf0\x00\x00\x7f\xff'\
b'\xe0\x00\x00\x1f\xff\x80\x00\x00\x03\xfc\x00\x00\x25\x00\x00\x00'\
b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\xf0\x00\x00\x00\x03'\
b'\xf0\x00\x00\x00\x07\xf0\x00\x00\x00\x0f\xf0\x00\x00\x00\x0f\xf0'\
b'\x00\x00\x00\x1f\xf0\x00\x00\x00\x3f\xf0\x00\x00\x00\x7f\xf0\x00'\
b'\x00\x00\x7f\xf0\x00\x00\x00\xff\xf0\x00\x00\x01\xff\xf0\x00\x00'\
b'\x01\xff\xf0\x00\x00\x03\xfb\xf0\x00\x00\x07\xf3\xf0\x00\x00\x0f'\
b'\xf3\xf0\x00\x00\x0f\xe3\xf0\x00\x00\x1f\xc3\xf0\x00\x00\x3f\x83'\
b'\xf0\x00\x00\x7f\x83\xf0\x00\x00\x7f\x03\xf0\x00\x00\xfe\x03\xf0'\
b'\x00\x01\xfc\x03\xf0\x00\x03\xfc\x03\xf0\x00\x03\xf8\x03\xf0\x00'\
b'\x07\xf0\x03\xf0\x00\x0f\xf0\x03\xf0\x00\x0f\xe0\x03\xf0\x00\x1f'\
b'\xc0\x03\xf0\x00\x3f\x80\x03\xf0\x00\x7f\x80\x03\xf0\x00\x7f\xff'\
b'\xff\xff\xc0\x7f\xff\xff\xff\xc0\x7f\xff\xff\xff\xc0\x7f\xff\xff'\
b'\xff\xc0\x7f\xff\xff\xff\xc0\x7f\xff\xff\xff\xc0\x00\x00\x03\xf0'\
b'\x00\x00\x00\x03\xf0\x00\x00\x00\x03\xf0\x00\x00\x00\x03\xf0\x00'\
b'\x00\x00\x03\xf0\x00\x00\x00\x03\xf0\x00\x00\x00\x03\xf0\x00\x00'\
b'\x00\x03\xf0\x00\x00\x00\x03\xf0\x00\x00\x00\x03\xf0\x00\x00\x00'\
b'\x03\xf0\x00\x00\x00\x00\x00\x00\x25\x00\x00\x00\x00\x00\x00\x00'\
b'\x00\x00\x00\x00\x00\x7f\xff\xff\x00\x00\x7f\xff\xff\x00\x00\xff'\
b'\xff\xff\x00\x00\xff\xff\xff\x00\x00\xff\xff\xff\x00\x00\xff\xff'\
b'\xff\x00\x00\xfc\x00\x00\x00\x01\xfc\x00\x00\x00\x01\xf8\x00\x00'\
b'\x00\x01\xf8\x00\x00\x00\x01\xf8\x00\x00\x00\x01\xf8\x00\x00\x00'\
b'\x03\xf8\x00\x00\x00\x03\xf0\x00\x00\x00\x03\xf0\x00\x00\x00\x03'\
b'\xf0\x7f\x00\x00\x03\xf3\xff\xc0\x00\x07\xf7\xff\xf0\x00\x07\xff'\
b'\xff\xf8\x00\x07\xff\xff\xfc\x00\x07\xff\xff\xfe\x00\x07\xfe\x03'\
b'\xff\x00\x0f\xf8\x00\xff\x00\x0f\xf0\x00\x7f\x80\x0f\xe0\x00\x3f'\
b'\x80\x01\xc0\x00\x1f\x80\x00\x00\x00\x1f\xc0\x00\x00\x00\x0f\xc0'\
b'\x00\x00\x00\x0f\xc0\x00\x00\x00\x0f\xc0\x00\x00\x00\x0f\xc0\x00'\
b'\x00\x00\x0f\xc0\x00\x00\x00\x0f\xc0\x00\x00\x00\x0f\xc0\x00\x00'\
b'\x00\x0f\xc0\x1f\x80\x00\x1f\x80\x1f\x80\x00\x1f\x80\x1f\xc0\x00'\
b'\x1f\x80\x0f\xc0\x00\x3f\x00\x0f\xe0\x00\x7f\x00\x07\xf0\x00\xfe'\
b'\x00\x07\xfc\x03\xfe\x00\x03\xff\xff\xfc\x00\x01\xff\xff\xf8\x00'\
b'\x00\xff\xff\xf0\x00\x00\x7f\xff\xe0\x00\x00\x1f\xff\x80\x00\x00'\
b'\x07\xfc\x00\x00\x25\x00\x00\x00\x00\x00\x00\x00\x01\xfe\x00\x00'\
b'\x00\x0f\xff\xc0\x00\x00\x3f\xff\xf0\x00\x00\x7f\xff\xf8\x00\x00'\
b'\xff\xff\xfc\x00\x01\xff\xff\xfe\x00\x03\xff\x03\xfe\x00\x03\xf8'\
b'\x00\xff\x00\x07\xf0\x00\x7f\x00\x07\xf0\x00\x3f\x00\x0f\xe0\x00'\
b'\x3f\x80\x0f\xc0\x00\x1f\x80\x0f\xc0\x00\x00\x00\x1f\x80\x00\x00'\
b'\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00'\
b'\x1f\x00\xff\x00\x00\x3f\x07\xff\xc0\x00\x3f\x0f\xff\xf0\x00\x3f'\
b'\x3f\xff\xf8\x00\x3f\x7f\xff\xfc\x00\x3f\x7f\xff\xfe\x00\x3f\xfe'\
b'\x03\xff\x00\x3f\xf0\x00\xff\x00\x3f\xe0\x00\x7f\x80\x3f\xc0\x00'\
b'\x3f\x80\x3f\x80\x00\x1f\x80\x3f\x80\x00\x1f\xc0\x3f\x00\x00\x0f'\
b'\xc0\x3f\x00\x00\x0f\xc0\x3f\x00\x00\x0f\xc0\x3f\x00\x00\x0f\xc0'\
b'\x1f\x00\x00\x0f\xc0\x1f\x00\x00\x0f\xc0\x1f\x00\x00\x0f\xc0\x1f'\
b'\x80\x00\x1f\xc0\x1f\x80\x00\x1f\x80\x0f\xc0\x00\x1f\x80\x0f\xc0'\
b'\x00\x3f\x80\x07\xe0\x00\x7f\x00\x07\xf8\x00\xff\x00\x03\xfe\x03'\
b'\xfe\x00\x01\xff\xff\xfc\x00\x01\xff\xff\xfc\x00\x00\x7f\xff\xf8'\
b'\x00\x00\x3f\xff\xe0\x00\x00\x0f\xff\xc0\x00\x00\x01\xfe\x00\x00'\
b'\x25\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1f\xff\xff\xff'\
b'\xc0\x1f\xff\xff\xff\xc0\x1f\xff\xff\xff\xc0\x1f\xff\xff\xff\xc0'\
b'\x1f\xff\xff\xff\xc0\x1f\xff\xff\xff\x80\x00\x00\x00\x0f\x80\x00'\
b'\x00\x00\x1f\x00\x00\x00\x00\x3e\x00\x00\x00\x00\x7c\x00\x00\x00'\
b'\x00\xfc\x00\x00\x00\x01\xf8\x00\x00\x00\x01\xf0\x00\x00\x00\x03'\
b'\xf0\x00\x00\x00\x07\xe0\x00\x00\x00\x07\xc0\x00\x00\x00\x0f\xc0'\
b'\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x3f\x00\x00'\
b'\x00\x00\x3f\x00\x00\x00\x00\x7e\x00\x00\x00\x00\x7e\x00\x00\x00'\
b'\x00\xfc\x00\x00\x00\x00\xfc\x00\x00\x00\x01\xf8\x00\x00\x00\x01'\
b'\xf8\x00\x00\x00\x03\xf0\x00\x00\x00\x03\xf0\x00\x00\x00\x03\xf0'\
b'\x00\x00\x00\x07\xe0\x00\x00\x00\x07\xe0\x00\x00\x00\x07\xe0\x00'\
b'\x00\x00\x0f\xc0\x00\x00\x00\x0f\xc0\x00\x00\x00\x0f\xc0\x00\x00'\
b'\x00\x0f\xc0\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00'\
b'\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x3f'\
b'\x00\x00\x00\x00\x3f\x00\x00\x00\x00\x3f\x00\x00\x00\x00\x3f\x00'\
b'\x00\x00\x00\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x25\x00\x00\x00'\
b'\x00\x00\x00\x00\x03\xfe\x00\x00\x00\x1f\xff\x80\x00\x00\x3f\xff'\
b'\xe0\x00\x00\x7f\xff\xf0\x00\x00\xff\xff\xf8\x00\x01\xff\xff\xfc'\
b'\x00\x03\xfe\x03\xfe\x00\x03\xf8\x00\xfe\x00\x03\xf0\x00\x7e\x00'\
b'\x07\xf0\x00\x7f\x00\x07\xe0\x00\x3f\x00\x07\xe0\x00\x3f\x00\x07'\
b'\xe0\x00\x3f\x00\x07\xe0\x00\x3f\x00\x07\xe0\x00\x3f\x00\x07\xf0'\
b'\x00\x7f\x00\x03\xf0\x00\x7e\x00\x03\xf8\x00\xfe\x00\x01\xfe\x03'\
b'\xfc\x00\x00\xff\xff\xf8\x00\x00\x7f\xff\xf0\x00\x00\x1f\xff\xc0'\
b'\x00\x00\x3f\xff\xe0\x00\x00\xff\xff\xf8\x00\x01\xff\xff\xfc\x00'\
b'\x03\xfe\x03\xfe\x00\x07\xf8\x00\xff\x00\x07\xe0\x00\x7f\x00\x0f'\
b'\xe0\x00\x3f\x80\x0f\xc0\x00\x1f\x80\x1f\xc0\x00\x1f\xc0\x1f\x80'\
b'\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00'\
b'\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\xc0\x00\x1f'\
b'\xc0\x0f\xc0\x00\x1f\x80\x0f\xc0\x00\x3f\x80\x0f\xe0\x00\x3f\x80'\
b'\x07\xf8\x00\xff\x00\x07\xfe\x03\xff\x00\x03\xff\xff\xfe\x00\x01'\
b'\xff\xff\xfc\x00\x00\xff\xff\xf8\x00\x00\x7f\xff\xf0\x00\x00\x1f'\
b'\xff\xc0\x00\x00\x03\xfe\x00\x00\x25\x00\x00\x00\x00\x00\x00\x00'\
b'\x03\xfc\x00\x00\x00\x1f\xff\x00\x00\x00\x7f\xff\xc0\x00\x00\xff'\
b'\xff\xf0\x00\x01\xff\xff\xf8\x00\x03\xff\xff\xfc\x00\x03\xfe\x03'\
b'\xfc\x00\x07\xf8\x00\xfe\x00\x0f\xf0\x00\x7e\x00\x0f\xe0\x00\x3f'\
b'\x00\x0f\xe0\x00\x1f\x00\x1f\xc0\x00\x1f\x80\x1f\xc0\x00\x0f\x80'\
b'\x1f\x80\x00\x0f\x80\x1f\x80\x00\x0f\x80\x1f\x80\x00\x0f\xc0\x1f'\
b'\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80'\
b'\x00\x0f\xc0\x1f\xc0\x00\x1f\xc0\x0f\xc0\x00\x1f\xc0\x0f\xe0\x00'\
b'\x3f\xc0\x0f\xf0\x00\x7f\xc0\x07\xf8\x00\xff\xc0\x07\xfe\x03\xff'\
b'\xc0\x03\xff\xff\xff\xc0\x01\xff\xff\xef\xc0\x00\xff\xff\xcf\xc0'\
b'\x00\x7f\xff\x0f\xc0\x00\x1f\xfe\x0f\xc0\x00\x07\xf0\x0f\xc0\x00'\
b'\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00'\
b'\x00\x1f\x80\x00\x00\x00\x3f\x00\x0f\xc0\x00\x3f\x00\x0f\xc0\x00'\
b'\x3f\x00\x0f\xe0\x00\x7e\x00\x07\xe0\x00\xfe\x00\x07\xf0\x01\xfc'\
b'\x00\x03\xfc\x07\xfc\x00\x03\xff\xff\xf8\x00\x01\xff\xff\xf0\x00'\
b'\x00\xff\xff\xe0\x00\x00\x7f\xff\xc0\x00\x00\x1f\xff\x00\x00\x00'\
b'\x07\xf8\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\
b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\
b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\
b'\x03\xf0\x00\x03\xf0\x00\x03\xf0\x00\x03\xf0\x00\x03\xf0\x00\x03'\
b'\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\
b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\
b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\
b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\
b'\x00\x00\x00\x00\x00\x00\x00\x03\xf0\x00\x03\xf0\x00\x03\xf0\x00'\
b'\x03\xf0\x00\x03\xf0\x00\x03\xf0\x00\x00\x00\x00'
_index =\
b'\x00\x00\xfc\x00\xf8\x01\xf4\x02\xf0\x03\xec\x04\xe8\x05\xe4\x06'\
b'\xe0\x07\xdc\x08\xd8\x09\xd4\x0a\x00\x00\x00\x00\x00\x00\x00\x00'\
b'\x00\x00\x6c\x0b'
_mvfont = memoryview(_font)
_mvi = memoryview(_index)
ifb = lambda l : l[0] | (l[1] << 8)
def get_ch(ch):
oc = ord(ch)
ioff = 2 * (oc - 48 + 1) if oc >= 48 and oc <= 63 else 0
doff = ifb(_mvi[ioff : ])
width = ifb(_mvfont[doff : ])
next_offs = doff + 2 + ((width - 1)//8 + 1) * 50
return _mvfont[doff + 2:next_offs], 50, width
| version = '0.33'
def height():
return 50
def baseline():
return 49
def max_width():
return 37
def hmap():
return True
def reverse():
return False
def monospaced():
return False
def min_ch():
return 48
def max_ch():
return 63
_font = b'%\x00\x00\x03\xfe\x00\x00\x00\x1f\xff\xc0\x00\x00\x7f\xff\xf0\x00\x00\xff\xff\xf8\x00\x01\xff\xff\xfc\x00\x03\xff\xff\xfe\x00\x07\xfe\x03\xff\x00\x07\xf8\x00\xff\x80\x0f\xf0\x00\x7f\x80\x0f\xe0\x00?\x80\x0f\xc0\x00\x1f\xc0\x1f\xc0\x00\x1f\xc0\x1f\xc0\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x03\x80\x00\x0f\xc0\x00\x00\x00\x0f\xc0\x00\x00\x00\x0f\xc0\x00\x00\x00\x1f\x80\x00\x00\x00?\x80\x00\x00\x00\x7f\x00\x00\x00\x00\xff\x00\x00\x00\x01\xfe\x00\x00\x00\x03\xfc\x00\x00\x00\x07\xf8\x00\x00\x00\x0f\xf0\x00\x00\x00\x1f\xe0\x00\x00\x00?\xc0\x00\x00\x00\x7f\x80\x00\x00\x00\x7f\x00\x00\x00\x00\xfe\x00\x00\x00\x00\xfc\x00\x00\x00\x01\xfc\x00\x00\x00\x01\xfc\x00\x00\x00\x01\xf8\x00\x00\x00\x01\xf8\x00\x00\x00\x01\xf8\x00\x00\x00\x01\xf8\x00\x00\x00\x01\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\xf8\x00\x00\x00\x01\xf8\x00\x00\x00\x01\xf8\x00\x00\x00\x01\xf8\x00\x00\x00\x01\xf8\x00\x00\x00\x01\xf8\x00\x00\x00\x00\x00\x00\x00%\x00\x00\x00\x00\x00\x00\x00\x03\xfe\x00\x00\x00\x0f\xff\x80\x00\x00?\xff\xe0\x00\x00\x7f\xff\xf0\x00\x00\xff\xff\xf8\x00\x01\xff\xff\xfc\x00\x03\xfe\x07\xfc\x00\x03\xfc\x01\xfe\x00\x07\xf0\x00\xfe\x00\x07\xf0\x00\x7f\x00\x07\xe0\x00?\x00\x0f\xe0\x00?\x00\x0f\xc0\x00\x1f\x80\x0f\xc0\x00\x1f\x80\x0f\xc0\x00\x1f\x80\x0f\xc0\x00\x1f\x80\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x0f\xc0\x00\x1f\x80\x0f\xc0\x00\x1f\x80\x0f\xc0\x00\x1f\x80\x0f\xc0\x00\x1f\x80\x0f\xe0\x00?\x80\x07\xe0\x00?\x00\x07\xf0\x00\x7f\x00\x07\xf8\x00\xff\x00\x03\xfc\x01\xfe\x00\x03\xff\x07\xfe\x00\x01\xff\xff\xfc\x00\x00\xff\xff\xf8\x00\x00\x7f\xff\xf0\x00\x00?\xff\xe0\x00\x00\x0f\xff\x80\x00\x00\x03\xfe\x00\x00%\x00\x00\x00\x00\x00\x00\x00\x00\x07\x80\x00\x00\x00\x0f\x80\x00\x00\x00\x0f\x80\x00\x00\x00\x1f\x80\x00\x00\x00?\x80\x00\x00\x00\x7f\x80\x00\x00\x00\xff\x80\x00\x00\x03\xff\x80\x00\x00\x07\xff\x80\x00\x00\x0f\xff\x80\x00\x00?\xff\x80\x00\x00\xff\xdf\x80\x00\x01\xff\x9f\x80\x00\x01\xfe\x1f\x80\x00\x01\xfc\x1f\x80\x00\x01\xf0\x1f\x80\x00\x01\xc0\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x00\x00\x00%\x00\x00\x00\x00\x00\x00\x00\x03\xfe\x00\x00\x00\x1f\xff\xc0\x00\x00\x7f\xff\xe0\x00\x01\xff\xff\xf8\x00\x03\xff\xff\xfc\x00\x03\xff\xff\xfc\x00\x07\xfe\x07\xfe\x00\x0f\xf0\x00\xff\x00\x0f\xe0\x00\x7f\x00\x0f\xc0\x00?\x00\x1f\xc0\x00?\x80\x1f\x80\x00\x1f\x80\x1f\x80\x00\x1f\x80\x03\x80\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00?\x00\x00\x00\x00?\x00\x00\x00\x00\x7f\x00\x00\x00\x00\xfe\x00\x00\x00\x01\xfe\x00\x00\x00\x03\xfc\x00\x00\x00\x07\xf8\x00\x00\x00\x0f\xf0\x00\x00\x00\x1f\xe0\x00\x00\x00?\xe0\x00\x00\x00\x7f\xc0\x00\x00\x00\xff\x80\x00\x00\x01\xfe\x00\x00\x00\x03\xfc\x00\x00\x00\x07\xf8\x00\x00\x00\x1f\xf0\x00\x00\x00?\xe0\x00\x00\x00\x7f\xc0\x00\x00\x00\xff\x80\x00\x00\x01\xfe\x00\x00\x00\x03\xfc\x00\x00\x00\x07\xf8\x00\x00\x00\x07\xf0\x00\x00\x00\x0f\xe0\x00\x00\x00\x0f\xe0\x00\x00\x00\x1f\xff\xff\xff\x80\x1f\xff\xff\xff\x80?\xff\xff\xff\x80?\xff\xff\xff\x80?\xff\xff\xff\x80?\xff\xff\xff\x80\x00\x00\x00\x00\x00%\x00\x00\x00\x00\x00\x00\x00\x07\xfc\x00\x00\x00\x1f\xff\x80\x00\x00\x7f\xff\xe0\x00\x00\xff\xff\xf0\x00\x01\xff\xff\xf8\x00\x03\xff\xff\xfc\x00\x07\xfc\x07\xfe\x00\x0f\xf0\x01\xfe\x00\x0f\xe0\x00\xfe\x00\x0f\xc0\x00\x7f\x00\x1f\xc0\x00?\x00\x1f\x80\x00?\x00\x03\x80\x00?\x00\x00\x00\x00?\x00\x00\x00\x00?\x00\x00\x00\x00~\x00\x00\x00\x00\xfe\x00\x00\x00\x01\xfc\x00\x00\x00\x0f\xf8\x00\x00\x01\xff\xf0\x00\x00\x01\xff\xe0\x00\x00\x01\xff\xe0\x00\x00\x01\xff\xf8\x00\x00\x01\xff\xfc\x00\x00\x01\x8f\xfe\x00\x00\x00\x01\xff\x00\x00\x00\x00\x7f\x00\x00\x00\x00?\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\xc0\x00\x00\x00\x0f\xc0\x00\x00\x00\x0f\xc0\x00\x00\x00\x0f\xc0\x00\x00\x00\x0f\xc0\x00\x00\x00\x0f\xc0\x03\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\xc0\x00\x1f\x80\x1f\xc0\x00\x1f\x80\x0f\xe0\x00?\x80\x0f\xf0\x00\x7f\x00\x07\xf8\x00\xff\x00\x07\xfe\x03\xfe\x00\x03\xff\xff\xfc\x00\x01\xff\xff\xf8\x00\x00\xff\xff\xf0\x00\x00\x7f\xff\xe0\x00\x00\x1f\xff\x80\x00\x00\x03\xfc\x00\x00%\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\xf0\x00\x00\x00\x03\xf0\x00\x00\x00\x07\xf0\x00\x00\x00\x0f\xf0\x00\x00\x00\x0f\xf0\x00\x00\x00\x1f\xf0\x00\x00\x00?\xf0\x00\x00\x00\x7f\xf0\x00\x00\x00\x7f\xf0\x00\x00\x00\xff\xf0\x00\x00\x01\xff\xf0\x00\x00\x01\xff\xf0\x00\x00\x03\xfb\xf0\x00\x00\x07\xf3\xf0\x00\x00\x0f\xf3\xf0\x00\x00\x0f\xe3\xf0\x00\x00\x1f\xc3\xf0\x00\x00?\x83\xf0\x00\x00\x7f\x83\xf0\x00\x00\x7f\x03\xf0\x00\x00\xfe\x03\xf0\x00\x01\xfc\x03\xf0\x00\x03\xfc\x03\xf0\x00\x03\xf8\x03\xf0\x00\x07\xf0\x03\xf0\x00\x0f\xf0\x03\xf0\x00\x0f\xe0\x03\xf0\x00\x1f\xc0\x03\xf0\x00?\x80\x03\xf0\x00\x7f\x80\x03\xf0\x00\x7f\xff\xff\xff\xc0\x7f\xff\xff\xff\xc0\x7f\xff\xff\xff\xc0\x7f\xff\xff\xff\xc0\x7f\xff\xff\xff\xc0\x7f\xff\xff\xff\xc0\x00\x00\x03\xf0\x00\x00\x00\x03\xf0\x00\x00\x00\x03\xf0\x00\x00\x00\x03\xf0\x00\x00\x00\x03\xf0\x00\x00\x00\x03\xf0\x00\x00\x00\x03\xf0\x00\x00\x00\x03\xf0\x00\x00\x00\x03\xf0\x00\x00\x00\x03\xf0\x00\x00\x00\x03\xf0\x00\x00\x00\x00\x00\x00%\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7f\xff\xff\x00\x00\x7f\xff\xff\x00\x00\xff\xff\xff\x00\x00\xff\xff\xff\x00\x00\xff\xff\xff\x00\x00\xff\xff\xff\x00\x00\xfc\x00\x00\x00\x01\xfc\x00\x00\x00\x01\xf8\x00\x00\x00\x01\xf8\x00\x00\x00\x01\xf8\x00\x00\x00\x01\xf8\x00\x00\x00\x03\xf8\x00\x00\x00\x03\xf0\x00\x00\x00\x03\xf0\x00\x00\x00\x03\xf0\x7f\x00\x00\x03\xf3\xff\xc0\x00\x07\xf7\xff\xf0\x00\x07\xff\xff\xf8\x00\x07\xff\xff\xfc\x00\x07\xff\xff\xfe\x00\x07\xfe\x03\xff\x00\x0f\xf8\x00\xff\x00\x0f\xf0\x00\x7f\x80\x0f\xe0\x00?\x80\x01\xc0\x00\x1f\x80\x00\x00\x00\x1f\xc0\x00\x00\x00\x0f\xc0\x00\x00\x00\x0f\xc0\x00\x00\x00\x0f\xc0\x00\x00\x00\x0f\xc0\x00\x00\x00\x0f\xc0\x00\x00\x00\x0f\xc0\x00\x00\x00\x0f\xc0\x00\x00\x00\x0f\xc0\x1f\x80\x00\x1f\x80\x1f\x80\x00\x1f\x80\x1f\xc0\x00\x1f\x80\x0f\xc0\x00?\x00\x0f\xe0\x00\x7f\x00\x07\xf0\x00\xfe\x00\x07\xfc\x03\xfe\x00\x03\xff\xff\xfc\x00\x01\xff\xff\xf8\x00\x00\xff\xff\xf0\x00\x00\x7f\xff\xe0\x00\x00\x1f\xff\x80\x00\x00\x07\xfc\x00\x00%\x00\x00\x00\x00\x00\x00\x00\x01\xfe\x00\x00\x00\x0f\xff\xc0\x00\x00?\xff\xf0\x00\x00\x7f\xff\xf8\x00\x00\xff\xff\xfc\x00\x01\xff\xff\xfe\x00\x03\xff\x03\xfe\x00\x03\xf8\x00\xff\x00\x07\xf0\x00\x7f\x00\x07\xf0\x00?\x00\x0f\xe0\x00?\x80\x0f\xc0\x00\x1f\x80\x0f\xc0\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x00\xff\x00\x00?\x07\xff\xc0\x00?\x0f\xff\xf0\x00??\xff\xf8\x00?\x7f\xff\xfc\x00?\x7f\xff\xfe\x00?\xfe\x03\xff\x00?\xf0\x00\xff\x00?\xe0\x00\x7f\x80?\xc0\x00?\x80?\x80\x00\x1f\x80?\x80\x00\x1f\xc0?\x00\x00\x0f\xc0?\x00\x00\x0f\xc0?\x00\x00\x0f\xc0?\x00\x00\x0f\xc0\x1f\x00\x00\x0f\xc0\x1f\x00\x00\x0f\xc0\x1f\x00\x00\x0f\xc0\x1f\x80\x00\x1f\xc0\x1f\x80\x00\x1f\x80\x0f\xc0\x00\x1f\x80\x0f\xc0\x00?\x80\x07\xe0\x00\x7f\x00\x07\xf8\x00\xff\x00\x03\xfe\x03\xfe\x00\x01\xff\xff\xfc\x00\x01\xff\xff\xfc\x00\x00\x7f\xff\xf8\x00\x00?\xff\xe0\x00\x00\x0f\xff\xc0\x00\x00\x01\xfe\x00\x00%\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1f\xff\xff\xff\xc0\x1f\xff\xff\xff\xc0\x1f\xff\xff\xff\xc0\x1f\xff\xff\xff\xc0\x1f\xff\xff\xff\xc0\x1f\xff\xff\xff\x80\x00\x00\x00\x0f\x80\x00\x00\x00\x1f\x00\x00\x00\x00>\x00\x00\x00\x00|\x00\x00\x00\x00\xfc\x00\x00\x00\x01\xf8\x00\x00\x00\x01\xf0\x00\x00\x00\x03\xf0\x00\x00\x00\x07\xe0\x00\x00\x00\x07\xc0\x00\x00\x00\x0f\xc0\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00?\x00\x00\x00\x00?\x00\x00\x00\x00~\x00\x00\x00\x00~\x00\x00\x00\x00\xfc\x00\x00\x00\x00\xfc\x00\x00\x00\x01\xf8\x00\x00\x00\x01\xf8\x00\x00\x00\x03\xf0\x00\x00\x00\x03\xf0\x00\x00\x00\x03\xf0\x00\x00\x00\x07\xe0\x00\x00\x00\x07\xe0\x00\x00\x00\x07\xe0\x00\x00\x00\x0f\xc0\x00\x00\x00\x0f\xc0\x00\x00\x00\x0f\xc0\x00\x00\x00\x0f\xc0\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00?\x00\x00\x00\x00?\x00\x00\x00\x00?\x00\x00\x00\x00?\x00\x00\x00\x00?\x00\x00\x00\x00\x00\x00\x00\x00%\x00\x00\x00\x00\x00\x00\x00\x03\xfe\x00\x00\x00\x1f\xff\x80\x00\x00?\xff\xe0\x00\x00\x7f\xff\xf0\x00\x00\xff\xff\xf8\x00\x01\xff\xff\xfc\x00\x03\xfe\x03\xfe\x00\x03\xf8\x00\xfe\x00\x03\xf0\x00~\x00\x07\xf0\x00\x7f\x00\x07\xe0\x00?\x00\x07\xe0\x00?\x00\x07\xe0\x00?\x00\x07\xe0\x00?\x00\x07\xe0\x00?\x00\x07\xf0\x00\x7f\x00\x03\xf0\x00~\x00\x03\xf8\x00\xfe\x00\x01\xfe\x03\xfc\x00\x00\xff\xff\xf8\x00\x00\x7f\xff\xf0\x00\x00\x1f\xff\xc0\x00\x00?\xff\xe0\x00\x00\xff\xff\xf8\x00\x01\xff\xff\xfc\x00\x03\xfe\x03\xfe\x00\x07\xf8\x00\xff\x00\x07\xe0\x00\x7f\x00\x0f\xe0\x00?\x80\x0f\xc0\x00\x1f\x80\x1f\xc0\x00\x1f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\xc0\x00\x1f\xc0\x0f\xc0\x00\x1f\x80\x0f\xc0\x00?\x80\x0f\xe0\x00?\x80\x07\xf8\x00\xff\x00\x07\xfe\x03\xff\x00\x03\xff\xff\xfe\x00\x01\xff\xff\xfc\x00\x00\xff\xff\xf8\x00\x00\x7f\xff\xf0\x00\x00\x1f\xff\xc0\x00\x00\x03\xfe\x00\x00%\x00\x00\x00\x00\x00\x00\x00\x03\xfc\x00\x00\x00\x1f\xff\x00\x00\x00\x7f\xff\xc0\x00\x00\xff\xff\xf0\x00\x01\xff\xff\xf8\x00\x03\xff\xff\xfc\x00\x03\xfe\x03\xfc\x00\x07\xf8\x00\xfe\x00\x0f\xf0\x00~\x00\x0f\xe0\x00?\x00\x0f\xe0\x00\x1f\x00\x1f\xc0\x00\x1f\x80\x1f\xc0\x00\x0f\x80\x1f\x80\x00\x0f\x80\x1f\x80\x00\x0f\x80\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\x80\x00\x0f\xc0\x1f\xc0\x00\x1f\xc0\x0f\xc0\x00\x1f\xc0\x0f\xe0\x00?\xc0\x0f\xf0\x00\x7f\xc0\x07\xf8\x00\xff\xc0\x07\xfe\x03\xff\xc0\x03\xff\xff\xff\xc0\x01\xff\xff\xef\xc0\x00\xff\xff\xcf\xc0\x00\x7f\xff\x0f\xc0\x00\x1f\xfe\x0f\xc0\x00\x07\xf0\x0f\xc0\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00\x1f\x80\x00\x00\x00?\x00\x0f\xc0\x00?\x00\x0f\xc0\x00?\x00\x0f\xe0\x00~\x00\x07\xe0\x00\xfe\x00\x07\xf0\x01\xfc\x00\x03\xfc\x07\xfc\x00\x03\xff\xff\xf8\x00\x01\xff\xff\xf0\x00\x00\xff\xff\xe0\x00\x00\x7f\xff\xc0\x00\x00\x1f\xff\x00\x00\x00\x07\xf8\x00\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xf0\x00\x03\xf0\x00\x03\xf0\x00\x03\xf0\x00\x03\xf0\x00\x03\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xf0\x00\x03\xf0\x00\x03\xf0\x00\x03\xf0\x00\x03\xf0\x00\x03\xf0\x00\x00\x00\x00'
_index = b'\x00\x00\xfc\x00\xf8\x01\xf4\x02\xf0\x03\xec\x04\xe8\x05\xe4\x06\xe0\x07\xdc\x08\xd8\t\xd4\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00l\x0b'
_mvfont = memoryview(_font)
_mvi = memoryview(_index)
ifb = lambda l: l[0] | l[1] << 8
def get_ch(ch):
oc = ord(ch)
ioff = 2 * (oc - 48 + 1) if oc >= 48 and oc <= 63 else 0
doff = ifb(_mvi[ioff:])
width = ifb(_mvfont[doff:])
next_offs = doff + 2 + ((width - 1) // 8 + 1) * 50
return (_mvfont[doff + 2:next_offs], 50, width) |
def get_divisors(number: int) -> list:
# we only accept positive numbers
assert number >= 1, f'{number} Only positive numbers are allowed'
return [i for i in range(0, number + 1) if i % 2 == 0]
def run():
try:
number = int(input('Enter a number to calculate all divisors: '))
print(get_divisors(number))
print('End of the program')
except ValueError:
print('You must enter only numbers')
if __name__ == '__main__':
run()
| def get_divisors(number: int) -> list:
assert number >= 1, f'{number} Only positive numbers are allowed'
return [i for i in range(0, number + 1) if i % 2 == 0]
def run():
try:
number = int(input('Enter a number to calculate all divisors: '))
print(get_divisors(number))
print('End of the program')
except ValueError:
print('You must enter only numbers')
if __name__ == '__main__':
run() |
"""Utility functions."""
def node_type(node) -> str:
"""
Get the type of the node.
This is the Python equivalent of the
[`nodeType`](https://github.com/stencila/schema/blob/bd90c808d14136c8489ce8bb945b2bb6085b9356/ts/util/nodeType.ts)
function.
"""
# pylint: disable=R0911
if node is None:
return "Null"
if isinstance(node, bool):
return "Boolean"
if isinstance(node, (int, float)):
return "Number"
if isinstance(node, str):
return "Text"
if isinstance(node, (list, tuple)):
return "Array"
if isinstance(node, dict):
type_name = node.get("type")
if type_name is not None:
return type_name
return "Object"
| """Utility functions."""
def node_type(node) -> str:
"""
Get the type of the node.
This is the Python equivalent of the
[`nodeType`](https://github.com/stencila/schema/blob/bd90c808d14136c8489ce8bb945b2bb6085b9356/ts/util/nodeType.ts)
function.
"""
if node is None:
return 'Null'
if isinstance(node, bool):
return 'Boolean'
if isinstance(node, (int, float)):
return 'Number'
if isinstance(node, str):
return 'Text'
if isinstance(node, (list, tuple)):
return 'Array'
if isinstance(node, dict):
type_name = node.get('type')
if type_name is not None:
return type_name
return 'Object' |
#
# Copyright 2019 The Project Oak Authors
#
# 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.
#
# This file is configuring the toolchain to use for wasm32, which is clang and llvm.
# It overwrites the tool paths to point to clang and sets the needed flags for different
# types of actions.
load(
"@bazel_tools//tools/cpp:cc_toolchain_config_lib.bzl",
"action_config",
"feature",
"flag_group",
"flag_set",
"tool",
"tool_path",
)
load("@bazel_tools//tools/build_defs/cc:action_names.bzl", "ACTION_NAMES")
all_link_actions = [
ACTION_NAMES.cpp_link_executable,
ACTION_NAMES.cpp_link_dynamic_library,
ACTION_NAMES.cpp_link_nodeps_dynamic_library,
ACTION_NAMES.cpp_link_static_library,
]
lto_index_actions = [
ACTION_NAMES.lto_index_for_executable,
ACTION_NAMES.lto_index_for_dynamic_library,
ACTION_NAMES.lto_index_for_nodeps_dynamic_library,
]
all_cpp_compile_actions = [
ACTION_NAMES.cpp_compile,
ACTION_NAMES.linkstamp_compile,
ACTION_NAMES.cpp_header_parsing,
ACTION_NAMES.cpp_module_compile,
ACTION_NAMES.cpp_module_codegen,
ACTION_NAMES.clif_match,
]
def _impl(ctx):
# Overwrite the paths to point to clang.
# TODO: Bazel has a limitation as these paths can be only relative to the toolchain folder.
# The hack around this is to have a script file that just redirects to the correct binary.
# We need to fix this once Bazel does this properly.
tool_paths = [
tool_path(
name = "gcc",
path = "clang.sh",
),
tool_path(
name = "ld",
path = "clang.sh",
),
tool_path(
name = "ar",
path = "/bin/false",
),
tool_path(
name = "cpp",
path = "/bin/false",
),
tool_path(
name = "gcov",
path = "/bin/false",
),
tool_path(
name = "nm",
path = "/bin/false",
),
tool_path(
name = "objdump",
path = "/bin/false",
),
tool_path(
name = "strip",
path = "/bin/false",
),
]
# Setup the correct flags for compile + link + lto
wasm_flags = feature(
name = "wasm_flags",
enabled = True,
flag_sets = [
flag_set(
actions = all_cpp_compile_actions + all_link_actions + lto_index_actions,
flag_groups = [
flag_group(
flags = [
"-ffreestanding",
# Bazel require explicit include paths for system headers
"-isystem",
"external/clang_llvm/lib/clang/8.0.0/include",
"-isystem",
"external/clang_llvm/include/c++/v1/",
"--target=wasm32-unknown-unknown",
# Make sure we don't link stdlib
"-nostdlib",
],
),
],
),
],
)
# Flags to pass to lld.
link_flags = feature(
name = "link_flags",
enabled = True,
flag_sets = [
flag_set(
actions = all_link_actions,
flag_groups = [
flag_group(
flags = [
# No main file for wasm.
"--for-linker",
"-no-entry",
# Export symbol in the executable which are marked as
# visibility=default.
"--for-linker",
"--export-dynamic",
# Allow undefined symbols. These will be defined by the wasm vm.
"--for-linker",
"--allow-undefined",
],
),
],
),
],
)
# Put everythign together and return a config_info.
return cc_common.create_cc_toolchain_config_info(
ctx = ctx,
toolchain_identifier = "clang_llvm-toolchain",
host_system_name = "i686-unknown-linux-gnu",
target_system_name = "wasm32-unknown-unknown",
target_cpu = "wasm32",
target_libc = "unknown",
compiler = "clang",
abi_version = "unknown",
abi_libc_version = "unknown",
tool_paths = tool_paths,
features = [
wasm_flags,
link_flags,
],
)
cc_toolchain_config = rule(
implementation = _impl,
attrs = {},
provides = [CcToolchainConfigInfo],
)
| load('@bazel_tools//tools/cpp:cc_toolchain_config_lib.bzl', 'action_config', 'feature', 'flag_group', 'flag_set', 'tool', 'tool_path')
load('@bazel_tools//tools/build_defs/cc:action_names.bzl', 'ACTION_NAMES')
all_link_actions = [ACTION_NAMES.cpp_link_executable, ACTION_NAMES.cpp_link_dynamic_library, ACTION_NAMES.cpp_link_nodeps_dynamic_library, ACTION_NAMES.cpp_link_static_library]
lto_index_actions = [ACTION_NAMES.lto_index_for_executable, ACTION_NAMES.lto_index_for_dynamic_library, ACTION_NAMES.lto_index_for_nodeps_dynamic_library]
all_cpp_compile_actions = [ACTION_NAMES.cpp_compile, ACTION_NAMES.linkstamp_compile, ACTION_NAMES.cpp_header_parsing, ACTION_NAMES.cpp_module_compile, ACTION_NAMES.cpp_module_codegen, ACTION_NAMES.clif_match]
def _impl(ctx):
tool_paths = [tool_path(name='gcc', path='clang.sh'), tool_path(name='ld', path='clang.sh'), tool_path(name='ar', path='/bin/false'), tool_path(name='cpp', path='/bin/false'), tool_path(name='gcov', path='/bin/false'), tool_path(name='nm', path='/bin/false'), tool_path(name='objdump', path='/bin/false'), tool_path(name='strip', path='/bin/false')]
wasm_flags = feature(name='wasm_flags', enabled=True, flag_sets=[flag_set(actions=all_cpp_compile_actions + all_link_actions + lto_index_actions, flag_groups=[flag_group(flags=['-ffreestanding', '-isystem', 'external/clang_llvm/lib/clang/8.0.0/include', '-isystem', 'external/clang_llvm/include/c++/v1/', '--target=wasm32-unknown-unknown', '-nostdlib'])])])
link_flags = feature(name='link_flags', enabled=True, flag_sets=[flag_set(actions=all_link_actions, flag_groups=[flag_group(flags=['--for-linker', '-no-entry', '--for-linker', '--export-dynamic', '--for-linker', '--allow-undefined'])])])
return cc_common.create_cc_toolchain_config_info(ctx=ctx, toolchain_identifier='clang_llvm-toolchain', host_system_name='i686-unknown-linux-gnu', target_system_name='wasm32-unknown-unknown', target_cpu='wasm32', target_libc='unknown', compiler='clang', abi_version='unknown', abi_libc_version='unknown', tool_paths=tool_paths, features=[wasm_flags, link_flags])
cc_toolchain_config = rule(implementation=_impl, attrs={}, provides=[CcToolchainConfigInfo]) |
#
# Copyright (C) 2018 The Android Open Source Project
#
# 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.
#
# model
model = Model()
i1 = Input("op1", "TENSOR_FLOAT32", "{1, 2, 3, 1}")
i2 = Parameter("op2", "TENSOR_INT32", "{4, 2}", [0, 0, 0, 2, 1, 3, 0, 0])
i3 = Output("op3", "TENSOR_FLOAT32", "{1, 4, 7, 1}")
model = model.Operation("PAD", i1, i2).To(i3)
model = model.RelaxedExecution(True)
# Example 1. Input in operand 0,
input0 = {i1: # input 0
[1.0, 2.0, 3.0,
4.0, 5.0, 6.0]}
output0 = {i3: # output 0
[0, 1, 2, 3, 0, 0, 0, 0, 4, 5, 6, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
# Instantiate an example
Example((input0, output0))
| model = model()
i1 = input('op1', 'TENSOR_FLOAT32', '{1, 2, 3, 1}')
i2 = parameter('op2', 'TENSOR_INT32', '{4, 2}', [0, 0, 0, 2, 1, 3, 0, 0])
i3 = output('op3', 'TENSOR_FLOAT32', '{1, 4, 7, 1}')
model = model.Operation('PAD', i1, i2).To(i3)
model = model.RelaxedExecution(True)
input0 = {i1: [1.0, 2.0, 3.0, 4.0, 5.0, 6.0]}
output0 = {i3: [0, 1, 2, 3, 0, 0, 0, 0, 4, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
example((input0, output0)) |
class MissingSessionError(Exception):
"""Excetion raised for when the user tries to access a database session before it is created."""
def __init__(self):
msg = """
No session found! Either you are not currently in a request context,
or you need to manually create a session context by using a `db` instance as
a context manager e.g.:
with db():
db.session.query(User).all()
"""
super().__init__(msg)
class SessionNotInitialisedError(Exception):
"""Exception raised when the user creates a new DB session without first initialising it."""
def __init__(self):
msg = """
Session not initialised! Ensure that DBSessionMiddleware has been initialised before
attempting database access.
"""
super().__init__(msg)
| class Missingsessionerror(Exception):
"""Excetion raised for when the user tries to access a database session before it is created."""
def __init__(self):
msg = '\n No session found! Either you are not currently in a request context,\n or you need to manually create a session context by using a `db` instance as\n a context manager e.g.:\n\n with db():\n db.session.query(User).all()\n '
super().__init__(msg)
class Sessionnotinitialisederror(Exception):
"""Exception raised when the user creates a new DB session without first initialising it."""
def __init__(self):
msg = '\n Session not initialised! Ensure that DBSessionMiddleware has been initialised before\n attempting database access.\n '
super().__init__(msg) |
class _MultiHeadFunc:
"""base mixin for multiheaded losses and metrics"""
def __init__(self, **kwargs):
self._fns = {}
for k, v in kwargs.items():
if not callable(v):
raise TypeError(
f'functions passed to {self.__class__.__name__} must be callable'
f' but got type {type(v)} for key {k}!'
)
self._fns[k] = v
def items(self):
return self._fns.items()
def keys(self):
return self._fns.keys()
def values(self):
return self._fns.values()
def _argrepr(self):
return ', '.join(f'{k}={v}' for k, v in self.items())
def __repr__(self):
return f'{self.__class__.__name__}({self._argrepr()})'
| class _Multiheadfunc:
"""base mixin for multiheaded losses and metrics"""
def __init__(self, **kwargs):
self._fns = {}
for (k, v) in kwargs.items():
if not callable(v):
raise type_error(f'functions passed to {self.__class__.__name__} must be callable but got type {type(v)} for key {k}!')
self._fns[k] = v
def items(self):
return self._fns.items()
def keys(self):
return self._fns.keys()
def values(self):
return self._fns.values()
def _argrepr(self):
return ', '.join((f'{k}={v}' for (k, v) in self.items()))
def __repr__(self):
return f'{self.__class__.__name__}({self._argrepr()})' |
__title__ = 'frashfeed-python'
__description__ = 'News feed for Alexa.'
__url__ = 'https://github.com/alexiob/flashfeed-python'
__version__ = '1.0.2'
__author__ = 'Alessandro Iob'
__author_email__ = 'alessandro.iob@gmail.com'
__license__ = 'MIT'
__copyright__ = 'Copyright 2019 Alessandro Iob'
| __title__ = 'frashfeed-python'
__description__ = 'News feed for Alexa.'
__url__ = 'https://github.com/alexiob/flashfeed-python'
__version__ = '1.0.2'
__author__ = 'Alessandro Iob'
__author_email__ = 'alessandro.iob@gmail.com'
__license__ = 'MIT'
__copyright__ = 'Copyright 2019 Alessandro Iob' |
class NotAnEffect():
"""
Not an effect (doesn't inherit from AbstractEffect).
"""
def __init__(self) -> None:
pass
def compose(self) -> None:
pass # pragma: no cover
def __repr__(self) -> str:
return "NotAnEffect()" # pragma: no cover
| class Notaneffect:
"""
Not an effect (doesn't inherit from AbstractEffect).
"""
def __init__(self) -> None:
pass
def compose(self) -> None:
pass
def __repr__(self) -> str:
return 'NotAnEffect()' |
"""
radish
~~~~~~
The root from red to green. BDD tooling for Python.
:copyright: (c) 2019 by Timo Furrer <tuxtimo@gmail.com>
:license: MIT, see LICENSE for more details.
"""
| """
radish
~~~~~~
The root from red to green. BDD tooling for Python.
:copyright: (c) 2019 by Timo Furrer <tuxtimo@gmail.com>
:license: MIT, see LICENSE for more details.
""" |
with open("input.txt", "r") as f:
inp = [int(i) for i in f.readlines()]
# Part 1
n = sum([inp[i] > inp[i-1] for i in range(1, len(inp))])
print("Part 1:", n)
# Part 2
n2 = sum([inp[i] + inp[i+1] + inp[i+2] < inp[i+1] + inp[i+2] + inp[i+3] for i in range(len(inp) - 3)])
print("Part 2:", n2)
| with open('input.txt', 'r') as f:
inp = [int(i) for i in f.readlines()]
n = sum([inp[i] > inp[i - 1] for i in range(1, len(inp))])
print('Part 1:', n)
n2 = sum([inp[i] + inp[i + 1] + inp[i + 2] < inp[i + 1] + inp[i + 2] + inp[i + 3] for i in range(len(inp) - 3)])
print('Part 2:', n2) |
#!/usr/bin/python3
# -*- coding: utf-8 -*-
'''
This module contains the base class for our plots that support the
brushing & linking technique.
'''
class BrushableCanvas:
'''
Class to define the basic interface of a drawable area that supports
brushing & linking of its data instances.
'''
def __init__(self, canvas_name, parent=None):
'''
BrushableCanvas default constructor.
Arguments
---------
canvas_name: str
The name of this object instance. This is passed as an argument to
the parent widget when notifying it of changes in the selected
data.
parent: object
The parent widget. Default is None. The parent widget must implement
the 'set_brushed_data' method. This method receives this objects's
canvas_name and a list containing the indices of all objects
highlighted.
'''
self._name = canvas_name
self._parent_canvas = parent
self._highlighted_data = set()
def __del__(self):
del self._highlighted_data
self._name = None
self._parent_canvas = None
@property
def name(self):
'''
Returns the name given to this object.
Returns
-------
out: str
The name of this object.
'''
return self._name
@property
def highlighted_data(self):
'''
Returns the set of highlighted data indices.
Returns
-------
out: set
The set of indices of highlighted data.
'''
return self._highlighted_data
@property
def parent_canvas(self):
'''
Returns the parent widget of this object.
Returns
-------
out: object
The parent widget.
'''
return self._parent_canvas
def notify_parent(self):
'''
Notifies the parent widget of changes in the selected data. If there is
no parent widget, then no action is performed.
'''
if self.parent_canvas:
self.parent_canvas.set_brushed_data(self.name,
list(self.highlighted_data))
def is_data_instance_highlighted(self, data_idx):
'''
Returns if the given data instance is highlighted.
Returns
-------
out: boolean
True if the instance is highlighted or False otherwise.
'''
return data_idx in self.highlighted_data
def highlight_data(self, data_idx, erase, update_chart=True):
'''
Adds a data instance to the highlighted data set, or removes it from
the set.
Arguments
---------
data_idx: int or iterable
Index (or indices) of the data instance(s).
erase: boolean
Switch that indicates if the given data instances should be removed
from the highlighted data set.
update_chart: boolean
Switch that indicates if the plot should be updated with the newly
selected data instances.
'''
if isinstance(data_idx, int):
if erase:
self._highlighted_data.discard(data_idx)
else:
self._highlighted_data.add(data_idx)
else:
if isinstance(data_idx, list):
data_idx = set(data_idx)
if erase:
self._highlighted_data = self._highlighted_data - data_idx
else:
self._highlighted_data.update(data_idx)
if update_chart:
self.update_chart(selected_data=True)
def update_chart(self, **kwargs):
'''
Updates the plot.
Arguments
---------
kwargs: Keyword argumens
Supported keyword arguments are:
* selected_data - Indicates if there are changes in the selected data set.
'''
raise NotImplementedError('update_chart method must be overriden')
| """
This module contains the base class for our plots that support the
brushing & linking technique.
"""
class Brushablecanvas:
"""
Class to define the basic interface of a drawable area that supports
brushing & linking of its data instances.
"""
def __init__(self, canvas_name, parent=None):
"""
BrushableCanvas default constructor.
Arguments
---------
canvas_name: str
The name of this object instance. This is passed as an argument to
the parent widget when notifying it of changes in the selected
data.
parent: object
The parent widget. Default is None. The parent widget must implement
the 'set_brushed_data' method. This method receives this objects's
canvas_name and a list containing the indices of all objects
highlighted.
"""
self._name = canvas_name
self._parent_canvas = parent
self._highlighted_data = set()
def __del__(self):
del self._highlighted_data
self._name = None
self._parent_canvas = None
@property
def name(self):
"""
Returns the name given to this object.
Returns
-------
out: str
The name of this object.
"""
return self._name
@property
def highlighted_data(self):
"""
Returns the set of highlighted data indices.
Returns
-------
out: set
The set of indices of highlighted data.
"""
return self._highlighted_data
@property
def parent_canvas(self):
"""
Returns the parent widget of this object.
Returns
-------
out: object
The parent widget.
"""
return self._parent_canvas
def notify_parent(self):
"""
Notifies the parent widget of changes in the selected data. If there is
no parent widget, then no action is performed.
"""
if self.parent_canvas:
self.parent_canvas.set_brushed_data(self.name, list(self.highlighted_data))
def is_data_instance_highlighted(self, data_idx):
"""
Returns if the given data instance is highlighted.
Returns
-------
out: boolean
True if the instance is highlighted or False otherwise.
"""
return data_idx in self.highlighted_data
def highlight_data(self, data_idx, erase, update_chart=True):
"""
Adds a data instance to the highlighted data set, or removes it from
the set.
Arguments
---------
data_idx: int or iterable
Index (or indices) of the data instance(s).
erase: boolean
Switch that indicates if the given data instances should be removed
from the highlighted data set.
update_chart: boolean
Switch that indicates if the plot should be updated with the newly
selected data instances.
"""
if isinstance(data_idx, int):
if erase:
self._highlighted_data.discard(data_idx)
else:
self._highlighted_data.add(data_idx)
else:
if isinstance(data_idx, list):
data_idx = set(data_idx)
if erase:
self._highlighted_data = self._highlighted_data - data_idx
else:
self._highlighted_data.update(data_idx)
if update_chart:
self.update_chart(selected_data=True)
def update_chart(self, **kwargs):
"""
Updates the plot.
Arguments
---------
kwargs: Keyword argumens
Supported keyword arguments are:
* selected_data - Indicates if there are changes in the selected data set.
"""
raise not_implemented_error('update_chart method must be overriden') |
syntax = r'^\+haunted(?: (?P<locations>.+))?$'
def haunted(caller, locations='here'):
locations = search(locations, kind=db.Room)
if search(caller, within=locations, kind=db.Character, not_within=[caller.character], flags=['dark', '!deaf']).count():
pemit(caller, "You feel some sort of presence.")
return
pemit(caller, "You do not sense a hidden presence.")
haunted.safe = True
haunted.complete = True | syntax = '^\\+haunted(?: (?P<locations>.+))?$'
def haunted(caller, locations='here'):
locations = search(locations, kind=db.Room)
if search(caller, within=locations, kind=db.Character, not_within=[caller.character], flags=['dark', '!deaf']).count():
pemit(caller, 'You feel some sort of presence.')
return
pemit(caller, 'You do not sense a hidden presence.')
haunted.safe = True
haunted.complete = True |
def rule(event):
# filter events; event type 11 is an actor_user changed user password
return event.get("event_type_id") == 11
def title(event):
return (
f"User [{event.get('actor_user_name', '<UNKNOWN_USER>')}] has exceeded the user"
f" account password change threshold"
)
| def rule(event):
return event.get('event_type_id') == 11
def title(event):
return f"User [{event.get('actor_user_name', '<UNKNOWN_USER>')}] has exceeded the user account password change threshold" |
# Copyright 2021 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
#
# https://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.
"""Simple helpers for converting continuous-time dynamics to discrete-time."""
def euler(dynamics, dt=0.01):
return lambda x, u, t: x + dt * dynamics(x, u, t)
def rk4(dynamics, dt=0.01):
def integrator(x, u, t):
dt2 = dt / 2.0
k1 = dynamics(x, u, t)
k2 = dynamics(x + dt2 * k1, u, t)
k3 = dynamics(x + dt2 * k2, u, t)
k4 = dynamics(x + dt * k3, u, t)
return x + (dt / 6.0) * (k1 + 2 * k2 + 2 * k3 + k4)
return integrator
| """Simple helpers for converting continuous-time dynamics to discrete-time."""
def euler(dynamics, dt=0.01):
return lambda x, u, t: x + dt * dynamics(x, u, t)
def rk4(dynamics, dt=0.01):
def integrator(x, u, t):
dt2 = dt / 2.0
k1 = dynamics(x, u, t)
k2 = dynamics(x + dt2 * k1, u, t)
k3 = dynamics(x + dt2 * k2, u, t)
k4 = dynamics(x + dt * k3, u, t)
return x + dt / 6.0 * (k1 + 2 * k2 + 2 * k3 + k4)
return integrator |
#!/usr/bin/env python
DESCRIPTION = "Conti ransomware api hash with seed 0xE9FF0077"
TYPE = 'unsigned_int'
TEST_1 = 3760887415
def hash(data):
API_buffer = []
i = len(data) >> 3
count = 0
while i != 0:
for index in range(0, 8):
API_buffer.append(data[index + count])
count += 8
i -= 1
if len(data) & 7 != 0:
v8 = len(data) & 7
while v8 != 0:
API_buffer.append(data[count])
count += 1
v8 -= 1
hash_val = 0
for i in range(0, len(API_buffer)):
API_buffer[i] = ord(chr(API_buffer[i]))
v15 = 0xE9FF0077
string_length_2 = len(data)
API_buffer_count = 0
if len(data) >= 4:
count = string_length_2 >> 2
string_length_2 = (string_length_2 - 4 *
(string_length_2 >> 2)) & 0xFFFFFFFF
while True:
temp_buffer_val = API_buffer[API_buffer_count +
3] << 24 | API_buffer[API_buffer_count +
2] << 16 | API_buffer[API_buffer_count +
1] << 8 | API_buffer[API_buffer_count]
temp = (0x5BD1E995 * temp_buffer_val) & 0xFFFFFFFF
API_buffer_count += 4
v15 = ((0x5BD1E995 * (temp ^
(temp >> 0x18))) & 0xFFFFFFFF) ^ ((0x5BD1E995 * v15) & 0xFFFFFFFF)
count -= 1
if count == 0:
break
v18 = string_length_2 - 1
v19 = v18 - 1
if v18 == 0:
hash_val ^= API_buffer[API_buffer_count]
elif v19 == 0:
hash_val ^= API_buffer[API_buffer_count + 1] << 8
hash_val ^= API_buffer[API_buffer_count]
elif v19 == 1:
hash_val ^= API_buffer[API_buffer_count + 2] << 16
hash_val ^= API_buffer[API_buffer_count + 1] << 8
hash_val ^= API_buffer[API_buffer_count]
v20 = (0x5BD1E995 * hash_val) & 0xFFFFFFFF
edi = (0x5BD1E995 * len(data)) & 0xFFFFFFFF
eax = v20 >> 0x18
eax ^= v20
ecx = (0x5BD1E995 * eax) & 0xFFFFFFFF
eax = (0x5BD1E995 * v15) & 0xFFFFFFFF
ecx ^= eax
eax = edi
eax >>= 0x18
eax ^= edi
edx = (0x5BD1E995 * ecx) & 0xFFFFFFFF
eax = (0x5BD1E995 * eax) & 0xFFFFFFFF
edx ^= eax
eax = edx
eax >>= 0xD
eax ^= edx
ecx = (0x5BD1E995 * eax) & 0xFFFFFFFF
eax = ecx
eax >>= 0xF
eax ^= ecx
return eax
| description = 'Conti ransomware api hash with seed 0xE9FF0077'
type = 'unsigned_int'
test_1 = 3760887415
def hash(data):
api_buffer = []
i = len(data) >> 3
count = 0
while i != 0:
for index in range(0, 8):
API_buffer.append(data[index + count])
count += 8
i -= 1
if len(data) & 7 != 0:
v8 = len(data) & 7
while v8 != 0:
API_buffer.append(data[count])
count += 1
v8 -= 1
hash_val = 0
for i in range(0, len(API_buffer)):
API_buffer[i] = ord(chr(API_buffer[i]))
v15 = 3925803127
string_length_2 = len(data)
api_buffer_count = 0
if len(data) >= 4:
count = string_length_2 >> 2
string_length_2 = string_length_2 - 4 * (string_length_2 >> 2) & 4294967295
while True:
temp_buffer_val = API_buffer[API_buffer_count + 3] << 24 | API_buffer[API_buffer_count + 2] << 16 | API_buffer[API_buffer_count + 1] << 8 | API_buffer[API_buffer_count]
temp = 1540483477 * temp_buffer_val & 4294967295
api_buffer_count += 4
v15 = 1540483477 * (temp ^ temp >> 24) & 4294967295 ^ 1540483477 * v15 & 4294967295
count -= 1
if count == 0:
break
v18 = string_length_2 - 1
v19 = v18 - 1
if v18 == 0:
hash_val ^= API_buffer[API_buffer_count]
elif v19 == 0:
hash_val ^= API_buffer[API_buffer_count + 1] << 8
hash_val ^= API_buffer[API_buffer_count]
elif v19 == 1:
hash_val ^= API_buffer[API_buffer_count + 2] << 16
hash_val ^= API_buffer[API_buffer_count + 1] << 8
hash_val ^= API_buffer[API_buffer_count]
v20 = 1540483477 * hash_val & 4294967295
edi = 1540483477 * len(data) & 4294967295
eax = v20 >> 24
eax ^= v20
ecx = 1540483477 * eax & 4294967295
eax = 1540483477 * v15 & 4294967295
ecx ^= eax
eax = edi
eax >>= 24
eax ^= edi
edx = 1540483477 * ecx & 4294967295
eax = 1540483477 * eax & 4294967295
edx ^= eax
eax = edx
eax >>= 13
eax ^= edx
ecx = 1540483477 * eax & 4294967295
eax = ecx
eax >>= 15
eax ^= ecx
return eax |
class Solution:
def strStr(self, haystack: str, needle: str) -> int:
h_len = len(haystack)
n_len = len(needle)
if (n_len == 0):
return 0
if n_len > h_len:
return -1
n_jump = [0] * n_len
i = 2
i_p = i - 1
s_p = 0
cnt = 0
while(i < n_len):
if (needle[i_p] == needle[s_p]):
if (i_p == i-1):
n_jump[i] = s_p + 1
i += 1
s_p += 1
i_p += 1
elif (s_p == 0):
n_jump[i] = 0
i += 1
i_p += 1
else:
i_p -= s_p - 1
s_p = 0
cnt += 1
print(cnt, i_p, s_p, n_jump)
# print(n_jump)
sub_p = 0
i = 0
while (i < h_len):
# print(haystack[i] , needle[sub_p] , sub_p)
if (haystack[i] == needle[sub_p]):
if (sub_p == n_len - 1):
return i - sub_p
sub_p += 1
i += 1
elif (sub_p == 0):
i += 1
else:
sub_p = n_jump[sub_p]
return -1
#
# haystack = "mississippi"
# needle = "issip"
haystack = "aabaaabaaac"
needle = 'aaaaaaaabc'
# needle = "aabaaac"
# haystack ="bbababaaaababbaabbbabbbaaabbbaaababbabaabbaaaaabbaaabbbbaaabaabbaababbbaabaaababbaaabbbbbbaabbbbbaaabbababaaaaabaabbbababbaababaabbaa"
# needle ="bbabba"
# haystack = "a"
# needle = "a"
print(Solution().strStr(haystack, needle))
| class Solution:
def str_str(self, haystack: str, needle: str) -> int:
h_len = len(haystack)
n_len = len(needle)
if n_len == 0:
return 0
if n_len > h_len:
return -1
n_jump = [0] * n_len
i = 2
i_p = i - 1
s_p = 0
cnt = 0
while i < n_len:
if needle[i_p] == needle[s_p]:
if i_p == i - 1:
n_jump[i] = s_p + 1
i += 1
s_p += 1
i_p += 1
elif s_p == 0:
n_jump[i] = 0
i += 1
i_p += 1
else:
i_p -= s_p - 1
s_p = 0
cnt += 1
print(cnt, i_p, s_p, n_jump)
sub_p = 0
i = 0
while i < h_len:
if haystack[i] == needle[sub_p]:
if sub_p == n_len - 1:
return i - sub_p
sub_p += 1
i += 1
elif sub_p == 0:
i += 1
else:
sub_p = n_jump[sub_p]
return -1
haystack = 'aabaaabaaac'
needle = 'aaaaaaaabc'
print(solution().strStr(haystack, needle)) |
# Time: O(n)
# Space: O(h)
# Definition for a binary tree node.
class TreeNode(object):
def __init__(self, x):
self.val = x
self.left = None
self.right = None
class Solution(object):
def getAllElements(self, root1, root2):
"""
:type root1: TreeNode
:type root2: TreeNode
:rtype: List[int]
"""
def inorder_gen(root):
result, stack = [], [(root, False)]
while stack:
root, is_visited = stack.pop()
if root is None:
continue
if is_visited:
yield root.val
else:
stack.append((root.right, False))
stack.append((root, True))
stack.append((root.left, False))
yield None
result = []
left_gen, right_gen = inorder_gen(root1), inorder_gen(root2)
left, right = next(left_gen), next(right_gen)
while left is not None or right is not None:
if right is None or (left is not None and left < right):
result.append(left)
left = next(left_gen)
else:
result.append(right)
right = next(right_gen)
return result
| class Treenode(object):
def __init__(self, x):
self.val = x
self.left = None
self.right = None
class Solution(object):
def get_all_elements(self, root1, root2):
"""
:type root1: TreeNode
:type root2: TreeNode
:rtype: List[int]
"""
def inorder_gen(root):
(result, stack) = ([], [(root, False)])
while stack:
(root, is_visited) = stack.pop()
if root is None:
continue
if is_visited:
yield root.val
else:
stack.append((root.right, False))
stack.append((root, True))
stack.append((root.left, False))
yield None
result = []
(left_gen, right_gen) = (inorder_gen(root1), inorder_gen(root2))
(left, right) = (next(left_gen), next(right_gen))
while left is not None or right is not None:
if right is None or (left is not None and left < right):
result.append(left)
left = next(left_gen)
else:
result.append(right)
right = next(right_gen)
return result |
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def rightSideView(self, root):
if not root:
return []
nodes = [root.val]
stack = [(root, 0)]
while stack:
node, level = stack.pop()
# will only append first node seen with this specific
# level (rightmost due to our pushing.)
if level >= len(nodes):
nodes.append(node.val)
left, right = node.left, node.right
if left:
stack.append((left, level + 1))
# we wanna see rightmost first so push second
# on stack.
if right:
stack.append((right, level + 1))
return nodes
| class Solution:
def right_side_view(self, root):
if not root:
return []
nodes = [root.val]
stack = [(root, 0)]
while stack:
(node, level) = stack.pop()
if level >= len(nodes):
nodes.append(node.val)
(left, right) = (node.left, node.right)
if left:
stack.append((left, level + 1))
if right:
stack.append((right, level + 1))
return nodes |
"""
Cursor Access Mode.
"""
class CursorAccessMode:
"""
Define thre methods of access of cursors.
"""
Insert = 0
Edit = 1
Del = 2
Browse = 3
| """
Cursor Access Mode.
"""
class Cursoraccessmode:
"""
Define thre methods of access of cursors.
"""
insert = 0
edit = 1
del = 2
browse = 3 |
def plane():
print('Plane')
def car():
print('Car')
def main():
print('-' * 55)
plane()
car()
main()
| def plane():
print('Plane')
def car():
print('Car')
def main():
print('-' * 55)
plane()
car()
main() |
test = {
'name': 'scale-stream',
'points': 1,
'suites': [
{
'cases': [
{
'code': r"""
scm> (car s2)
2
scm> (car (cdr-stream s2))
4
scm> (car s4)
4
scm> (car (cdr-stream s4))
8
""",
'hidden': False,
'locked': False
}
],
'scored': True,
'setup': r"""
scm> (load 'hw11)
scm> (define s (cons-stream 1 (cons-stream 2 nil)))
scm> (define s2 (scale-stream s 2))
scm> (define s4 (scale-stream s2 2))
""",
'teardown': '',
'type': 'scheme'
},
{
'cases': [
{
'code': r"""
scm> (car s2)
2
scm> (car (cdr-stream s2))
2
scm> (car (cdr-stream (cdr-stream s2)))
2
scm> (car (cdr-stream (cdr-stream s)))
1
""",
'hidden': False,
'locked': False
}
],
'scored': True,
'setup': r"""
scm> (load 'hw11)
scm> (define s (cons-stream 1 s))
scm> (define s2 (scale-stream s 2))
""",
'teardown': '',
'type': 'scheme'
}
]
}
| test = {'name': 'scale-stream', 'points': 1, 'suites': [{'cases': [{'code': '\n scm> (car s2)\n 2\n scm> (car (cdr-stream s2))\n 4\n scm> (car s4)\n 4\n scm> (car (cdr-stream s4))\n 8\n ', 'hidden': False, 'locked': False}], 'scored': True, 'setup': "\n scm> (load 'hw11)\n scm> (define s (cons-stream 1 (cons-stream 2 nil)))\n scm> (define s2 (scale-stream s 2))\n scm> (define s4 (scale-stream s2 2))\n ", 'teardown': '', 'type': 'scheme'}, {'cases': [{'code': '\n scm> (car s2)\n 2\n scm> (car (cdr-stream s2))\n 2\n scm> (car (cdr-stream (cdr-stream s2)))\n 2\n scm> (car (cdr-stream (cdr-stream s)))\n 1\n ', 'hidden': False, 'locked': False}], 'scored': True, 'setup': "\n scm> (load 'hw11)\n scm> (define s (cons-stream 1 s))\n scm> (define s2 (scale-stream s 2))\n ", 'teardown': '', 'type': 'scheme'}]} |
__author__ = 'shenoisz'
def get_object_list( args ):
csv = open( str( args ) , 'r')
lines = [ ]
for divier in csv.readlines( ):
fatias = divier.replace('\n', '').split('|')
lines.append( fatias )
csv.close( )
return lines
def get_object_dict( args ):
csv = open( str( args ) , 'r')
lines = [ ]
for divier in csv.readlines( ):
fatias = divier.replace('\n', '').split('|')
lines.append( {
'embed': fatias[0].replace('608','100%').replace('338','550'),
'url': fatias[1],
'imagem': fatias[2],
'flipboard': fatias[3],
'titulo': fatias[4],
'tags': fatias[5],
'duracao': fatias[6],
'views': fatias[7],
'qtdavaliacoes': fatias[8],
'totalavaliacoes': fatias[9],
'avaliacao': fatias[10],
} )
csv.close( )
return lines
| __author__ = 'shenoisz'
def get_object_list(args):
csv = open(str(args), 'r')
lines = []
for divier in csv.readlines():
fatias = divier.replace('\n', '').split('|')
lines.append(fatias)
csv.close()
return lines
def get_object_dict(args):
csv = open(str(args), 'r')
lines = []
for divier in csv.readlines():
fatias = divier.replace('\n', '').split('|')
lines.append({'embed': fatias[0].replace('608', '100%').replace('338', '550'), 'url': fatias[1], 'imagem': fatias[2], 'flipboard': fatias[3], 'titulo': fatias[4], 'tags': fatias[5], 'duracao': fatias[6], 'views': fatias[7], 'qtdavaliacoes': fatias[8], 'totalavaliacoes': fatias[9], 'avaliacao': fatias[10]})
csv.close()
return lines |
#!/usr/bin/env python
# coding: utf-8
# Copyright (c) 2012, Machinalis S.R.L.
# This file is part of quepy and is distributed under the Modified BSD License.
# You should have received a copy of license in the LICENSE file.
#
# Authors: Rafael Carrascosa <rcarrascosa@machinalis.com>
# Gonzalo Garcia Berrotaran <ggarcia@machinalis.com>
"""
Init for testapp quepy.
"""
| """
Init for testapp quepy.
""" |
'''Some helper functions to support `native-image` invocation within rules.
'''
load("//java:providers/JavaDependencyInfo.bzl", "JavaDependencyInfo")
load("//graalvm:common/extract/toolchain_info.bzl", "extract_graalvm_native_image_toolchain_info")
def _file_to_path(file):
return file.path
# TODO(dwtj): Consider revising control flow so that this is called just once,
# not twice. Maybe just cache the result. But where? I probably can't just use
# a script global variable. Does Bazel provide some target-local storage?
def make_class_path_depset(ctx):
depsets = []
for dep in ctx.attr.deps:
dep_info = dep[JavaDependencyInfo]
depsets.append(dep_info.run_time_class_path_jars)
return depset([], transitive = depsets)
def make_class_path_args(ctx):
args = ctx.actions.args()
toolchain_info = extract_graalvm_native_image_toolchain_info(ctx)
jar_depset = make_class_path_depset(ctx)
args.add_joined(
"--class-path",
jar_depset,
join_with = toolchain_info.class_path_separator,
map_each = _file_to_path,
)
return args
def make_class_path_str(ctx):
separator = extract_graalvm_native_image_toolchain_info(ctx).class_path_separator
jar_paths = [jar.path for jar in make_class_path_depset(ctx).to_list()]
return separator.join(jar_paths)
def make_native_image_options_args(ctx):
args = ctx.actions.args()
args.add_all(ctx.attr.native_image_options)
return args
| """Some helper functions to support `native-image` invocation within rules.
"""
load('//java:providers/JavaDependencyInfo.bzl', 'JavaDependencyInfo')
load('//graalvm:common/extract/toolchain_info.bzl', 'extract_graalvm_native_image_toolchain_info')
def _file_to_path(file):
return file.path
def make_class_path_depset(ctx):
depsets = []
for dep in ctx.attr.deps:
dep_info = dep[JavaDependencyInfo]
depsets.append(dep_info.run_time_class_path_jars)
return depset([], transitive=depsets)
def make_class_path_args(ctx):
args = ctx.actions.args()
toolchain_info = extract_graalvm_native_image_toolchain_info(ctx)
jar_depset = make_class_path_depset(ctx)
args.add_joined('--class-path', jar_depset, join_with=toolchain_info.class_path_separator, map_each=_file_to_path)
return args
def make_class_path_str(ctx):
separator = extract_graalvm_native_image_toolchain_info(ctx).class_path_separator
jar_paths = [jar.path for jar in make_class_path_depset(ctx).to_list()]
return separator.join(jar_paths)
def make_native_image_options_args(ctx):
args = ctx.actions.args()
args.add_all(ctx.attr.native_image_options)
return args |
"""ds4drv is a Sony DualShock 4 userspace driver for Linux."""
__title__ = "ds4drv"
__version__ = "0.5.0"
__author__ = "Christopher Rosell"
__credits__ = ["Christopher Rosell", "George Gibbs", "Lauri Niskanen"]
__license__ = "MIT"
| """ds4drv is a Sony DualShock 4 userspace driver for Linux."""
__title__ = 'ds4drv'
__version__ = '0.5.0'
__author__ = 'Christopher Rosell'
__credits__ = ['Christopher Rosell', 'George Gibbs', 'Lauri Niskanen']
__license__ = 'MIT' |
"""Print 'Hello world' to the terminal.
Here's where the |foo| substitution is used - it is defined
below.
.. |foo| replace:: Here's where it's defined.
So far so good, but what if the definition is not in the same
docstring fragment - it could be in an included footer?
Here the |bar| substitution definition is missing, so this
docstring in isolation should fail validation::
$ flake8 --select RST RST305/substitution.py
RST305/substitution.py:11:1: RST305 Undefined substitution referenced: "bar"
"""
print("Hello world")
| """Print 'Hello world' to the terminal.
Here's where the |foo| substitution is used - it is defined
below.
.. |foo| replace:: Here's where it's defined.
So far so good, but what if the definition is not in the same
docstring fragment - it could be in an included footer?
Here the |bar| substitution definition is missing, so this
docstring in isolation should fail validation::
$ flake8 --select RST RST305/substitution.py
RST305/substitution.py:11:1: RST305 Undefined substitution referenced: "bar"
"""
print('Hello world') |
class Solution(object):
def __init__(self, *args, **kwargs):
self.num = None
self.target = None
def addOperators(self, num, target):
"""
:type num: str
:type target: int
:rtype: List[str]
"""
if num is None or len(num) == 0:
return []
self.num = num
self.target = target
res = []
self.dfs(0, 0, 0, '', res)
return res
def dfs(self, pos, last, sum, path, res):
if pos == len(self.num):
if sum == self.target:
res.append(path)
return
cur_val = 0
cur = ''
for i in range(pos, len(self.num)):
cur_val = cur_val * 10 + int(self.num[i])
cur += self.num[i]
if pos == 0:
self.dfs(i + 1, cur_val, cur_val, path + cur, res)
else:
self.dfs(i + 1, cur_val, sum + cur_val, path + '+' + cur, res)
self.dfs(i + 1, -cur_val, sum - cur_val, path + '-' + cur, res)
self.dfs(i + 1, last * cur_val, sum - last + last * cur_val, path + '*' + cur, res)
if self.num[pos] == '0':
break
| class Solution(object):
def __init__(self, *args, **kwargs):
self.num = None
self.target = None
def add_operators(self, num, target):
"""
:type num: str
:type target: int
:rtype: List[str]
"""
if num is None or len(num) == 0:
return []
self.num = num
self.target = target
res = []
self.dfs(0, 0, 0, '', res)
return res
def dfs(self, pos, last, sum, path, res):
if pos == len(self.num):
if sum == self.target:
res.append(path)
return
cur_val = 0
cur = ''
for i in range(pos, len(self.num)):
cur_val = cur_val * 10 + int(self.num[i])
cur += self.num[i]
if pos == 0:
self.dfs(i + 1, cur_val, cur_val, path + cur, res)
else:
self.dfs(i + 1, cur_val, sum + cur_val, path + '+' + cur, res)
self.dfs(i + 1, -cur_val, sum - cur_val, path + '-' + cur, res)
self.dfs(i + 1, last * cur_val, sum - last + last * cur_val, path + '*' + cur, res)
if self.num[pos] == '0':
break |
#!/usr/bin/env python
# This tests a particular tricky case: the interplay of "black" wrap mode
# with fill color. Outside the s,t [0,1] range, it should be black, NOT
# fill color.
# Make an RGB grid for our test
command += (oiio_app("oiiotool")
+ OIIO_TESTSUITE_IMAGEDIR + "/grid.tif"
+ " -ch R,G,B -o grid3.tif >> out.txt ;\n")
# And a 1-channel grid for our test
command += (oiio_app("oiiotool")
+ OIIO_TESTSUITE_IMAGEDIR + "/grid.tif"
+ " -ch R -o grid1.tif >> out.txt ;\n")
command += testtex_command ("grid3.tif",
" -res 256 256 -automip " +
" -wrap black -fill 0.5 -d uint8 -o out3.tif")
command += testtex_command ("grid1.tif",
" -res 200 200 -automip --graytorgb " +
" -wrap black -fill 0.5 -d uint8 -o out1.tif")
outputs = [ "out3.tif", "out1.tif" ]
| command += oiio_app('oiiotool') + OIIO_TESTSUITE_IMAGEDIR + '/grid.tif' + ' -ch R,G,B -o grid3.tif >> out.txt ;\n'
command += oiio_app('oiiotool') + OIIO_TESTSUITE_IMAGEDIR + '/grid.tif' + ' -ch R -o grid1.tif >> out.txt ;\n'
command += testtex_command('grid3.tif', ' -res 256 256 -automip ' + ' -wrap black -fill 0.5 -d uint8 -o out3.tif')
command += testtex_command('grid1.tif', ' -res 200 200 -automip --graytorgb ' + ' -wrap black -fill 0.5 -d uint8 -o out1.tif')
outputs = ['out3.tif', 'out1.tif'] |
engine_id = ""
grid_node_address = ""
grid_gateway_address = ""
data_dir = ""
dataset_id = ""
| engine_id = ''
grid_node_address = ''
grid_gateway_address = ''
data_dir = ''
dataset_id = '' |
record = "linux"
cats = [
"cats/linux-kernel.cat"
]
cfgs = [
"cfgs/linux-kernel.cfg"
]
illustrative_tests = [
"tests/MP+relacq.litmus"
]
| record = 'linux'
cats = ['cats/linux-kernel.cat']
cfgs = ['cfgs/linux-kernel.cfg']
illustrative_tests = ['tests/MP+relacq.litmus'] |
cities = (
("Andaman and Nicobar Islands", (("Port Blair", "Port Blair"),)),
(
"Andhra Pradesh",
(
("Visakhapatnam", "Visakhapatnam"),
("Vijayawada", "Vijayawada"),
("Guntur", "Guntur"),
("Nellore", "Nellore"),
("Kurnool", "Kurnool"),
("Rajamahendravaram", "Rajamahendravaram"),
("Tirupati", "Tirupati"),
("Kadapa", "Kadapa"),
("Kakinada", "Kakinada"),
("Anantapur", "Anantapur"),
("Vizianagaram", "Vizianagaram"),
("Eluru", "Eluru"),
("Ongole", "Ongole"),
("Nandyal", "Nandyal"),
("Machilipatnam", "Machilipatnam"),
("Adoni", "Adoni"),
("Tenali", "Tenali"),
("Proddatur", "Proddatur"),
("Chittoor", "Chittoor"),
("Hindupur", "Hindupur"),
("Bhimavaram", "Bhimavaram"),
("Madanapalle", "Madanapalle"),
("Guntakal", "Guntakal"),
("Srikakulam", "Srikakulam"),
("Dharmavaram", "Dharmavaram"),
("Gudivada", "Gudivada"),
("Narasaraopet", "Narasaraopet"),
("Tadipatri", "Tadipatri"),
("Tadepalligudem", "Tadepalligudem"),
("Amaravati", "Amaravati"),
("Chilakaluripet", "Chilakaluripet"),
),
),
(
"Bihar",
(
("Patna", "Patna"),
("Gaya", "Gaya"),
("Bhagalpur", "Bhagalpur"),
("Muzaffarpur", "Muzaffarpur"),
("Purnia", "Purnia"),
("Darbhanga", "Darbhanga"),
("Bihar Sharif", "Bihar Sharif"),
("Arrah", "Arrah"),
("Begusarai", "Begusarai"),
("Katihar", "Katihar"),
("Munger", "Munger"),
("Chhapra", "Chhapra"),
("Bettiah", "Bettiah"),
("Saharsa", "Saharsa"),
("Hajipur", "Hajipur"),
("Sasaram", "Sasaram"),
("Dehri", "Dehri"),
("Siwan", "Siwan"),
("Motihari", "Motihari"),
("Nawada", "Nawada"),
("Bagaha", "Bagaha"),
("Buxar", "Buxar"),
("Kishanganj", "Kishanganj"),
("Sitamarhi", "Sitamarhi"),
("Jamalpur", "Jamalpur"),
("Jehanabad", "Jehanabad"),
("Aurangabad", "Aurangabad"),
("Lakhisarai", "Lakhisarai"),
),
),
("Chandigarh", (("Chandigarh", "Chandigarh"),),),
(
"Chhattisgarh",
(
("Raipur", "Raipur"),
("Durg", "Durg"),
("Naya Raipur", "Naya Raipur"),
("Korba", "Korba"),
("Bilaspur", "Bilaspur"),
("Rajnandgaon", "Rajnandgaon"),
("Pakhanjore", "Pakhanjore"),
("Jagdalpur", "Jagdalpur"),
("Ambikapur", "Ambikapur"),
("Chirmiri", "Chirmiri"),
("Dhamtari", "Dhamtari"),
("Raigarh", "Raigarh"),
("Mahasamund", "Mahasamund"),
),
),
("Daman and Diu", (("Daman", "Daman"),),),
("Delhi", (("Delhi", "Delhi"),),),
("Dadra and Nagar Haveli", (("Silvassa", "Silvassa"),),),
(
"Goa",
(
("Panaji", "Panaji"),
("Vasco", "Vasco"),
("Mormugao", "Mormugao"),
("Margao", "Margao"),
),
),
(
"Gujarat",
(
("Ahmedabad", "Ahmedabad"),
("Surat", "Surat"),
("Vadodara", "Vadodara"),
("Rajkot", "Rajkot"),
("Bhavnagar", "Bhavnagar"),
("Jamnagar", "Jamnagar"),
("Junagadh", "Junagadh"),
("Gandhidham", "Gandhidham"),
("Nadiad", "Nadiad"),
("Gandhinagar", "Gandhinagar"),
("Anand", "Anand"),
("Morbi", "Morbi"),
("Khambhat", "Khambhat"),
("Surendranagar", "Surendranagar"),
("Bharuch", "Bharuch"),
("Vapi", "Vapi"),
("Navsari", "Navsari"),
("Veraval", "Veraval"),
("Porbandar", "Porbandar"),
("Godhra", "Godhra"),
("Bhuj", "Bhuj"),
("Ankleshwar", "Ankleshwar"),
("Botad", "Botad"),
("Patan", "Patan"),
("Palanpur", "Palanpur"),
("Dahod", "Dahod"),
("Jetpur", "Jetpur"),
("Valsad", "Valsad"),
("Kalol", "Kalol"),
("Gondal", "Gondal"),
("Deesa", "Deesa"),
("Amreli", "Amreli"),
("Amreli", "Amreli"),
("Mahuva", "Mahuva"),
("Mehsana", "Mehsana"),
),
),
("Himachal Pradesh", (("Shimla", "Shimla"),),),
(
"Haryana",
(
("Faridabad", "Faridabad"),
("Gurgaon", "Gurgaon"),
("Panipat", "Panipat"),
("Ambala", "Ambala"),
("Yamunanagar", "Yamunanagar"),
("Rohtak", "Rohtak"),
("Hisar", "Hisar"),
("Karnal", "Karnal"),
("Sonipat", "Sonipat"),
("Panchkula", "Panchkula"),
("Bhiwani", "Bhiwani"),
("Sirsa", "Sirsa"),
("Bahadurgarh", "Bahadurgarh"),
("Jind", "Jind"),
("Thanesar", "Thanesar"),
("Kaithal", "Kaithal"),
("Rewari", "Rewari"),
("Palwal", "Palwal"),
),
),
(
"Jharkhand",
(
("Jamshedpur", "Jamshedpur"),
("Dhanbad", "Dhanbad"),
("Ranchi", "Ranchi"),
("Bokaro Steel City", "Bokaro Steel City"),
("Deoghar", "Deoghar"),
("Phusro", "Phusro"),
("Hazaribagh", "Hazaribagh"),
("Giridih", "Giridih"),
("Ramgarh", "Ramgarh"),
("Medininagar", "Medininagar"),
("Chirkunda", "Chirkunda"),
("Jhumri Telaiya", "Jhumri Telaiya"),
("Sahibganj", "Sahibganj"),
),
),
(
"Jammu and Kashmir",
(("Srinagar", "Srinagar"), ("Jammu", "Jammu"), ("Anantnag", "Anantnag"),),
),
(
"Karnataka",
(
("Bengaluru", "Bengaluru"),
("Hubli", "Hubli"),
("Mysore", "Mysore"),
("Gulbarga", "Gulbarga"),
("Mangalore", "Mangalore"),
("Belgaum", "Belgaum"),
("Davangere", "Davangere"),
("Bellary", "Bellary"),
("Bijapur", "Bijapur"),
("Shimoga", "Shimoga"),
("Tumkur", "Tumkur"),
("Raichur", "Raichur"),
("Bidar", "Bidar"),
("Hospet", "Hospet"),
("Hassan", "Hassan"),
("Gadag", "Gadag"),
("Udupi", "Udupi"),
("Robertsonpet", "Robertsonpet"),
("Bhadravati", "Bhadravati"),
("Chitradurga", "Chitradurga"),
("Harihar", "Harihar"),
("Kolar", "Kolar"),
("Mandya", "Mandya"),
("Chikkamagallooru", "Chikkamagallooru"),
("Chikmagalur", "Chikmagalur"),
("Gangawati", "Gangawati"),
("Ranebennuru", "Ranebennuru"),
("Ramanagara", "Ramanagara"),
("Bagalkot", "Bagalkot"),
),
),
(
"Kerala",
(
("Thiruvananthapuram", "Thiruvananthapuram"),
("Kochi", "Kochi"),
("Calicut", "Calicut"),
("Kollam", "Kollam"),
("Thrissur", "Thrissur"),
("Kannur", "Kannur"),
("Kasaragod", "Kasaragod"),
("Alappuzha", "Alappuzha"),
("Alappuzha", "Alappuzha"),
("Palakkad", "Palakkad"),
("Kottayam", "Kottayam"),
("Kothamangalam", "Kothamangalam"),
("Malappuram", "Malappuram"),
("Manjeri", "Manjeri"),
("Thalassery", "Thalassery"),
("Ponnani", "Ponnani"),
),
),
("Lakshadweep", (("Kavaratti", "Kavaratti"),),),
(
"Maharashtra",
(
("Mumbai", "Mumbai"),
("Pune", "Pune"),
("Nagpur", "Nagpur"),
("Nashik", "Nashik"),
("Pimpri-Chinchwad", "Pimpri-Chinchwad"),
("Aurangabad", "Aurangabad"),
("Solapur", "Solapur"),
("Bhiwandi", "Bhiwandi"),
("Amravati", "Amravati"),
("Nanded", "Nanded"),
("Kolhapur", "Kolhapur"),
("Sangli-Miraj-Kupwad", "Sangli-Miraj-Kupwad"),
("Jalgaon", "Jalgaon"),
("Akola", "Akola"),
("Latur", "Latur"),
("Malegaon", "Malegaon"),
("Dhule", "Dhule"),
("Ahmednagar", "Ahmednagar"),
("Nandurbar", "Nandurbar"),
("Ichalkaranji", "Ichalkaranji"),
("Chandrapur", "Chandrapur"),
("Jalna", "Jalna"),
("Parbhani", "Parbhani"),
("Bhusawal", "Bhusawal"),
("Satara", "Satara"),
("Beed", "Beed"),
("Pandharpur", "Pandharpur"),
("Yavatmal", "Yavatmal"),
("Kamptee", "Kamptee"),
("Gondia", "Gondia"),
("Achalpur", "Achalpur"),
("Osmanabad", "Osmanabad"),
("Hinganghat", "Hinganghat"),
("Wardha", "Wardha"),
("Barshi", "Barshi"),
("Chalisgaon", "Chalisgaon"),
("Amalner", "Amalner"),
("Khamgaon", "Khamgaon"),
("Akot", "Akot"),
("Udgir", "Udgir"),
("Bhandara", "Bhandara"),
("Parli", "Parli"),
),
),
("Meghalaya", (("Shillong", "Shillong"),),),
("Manipur", (("Imphal", "Imphal"),),),
(
"Madhya Pradesh",
(
("Indore", "Indore"),
("Bhopal", "Bhopal"),
("Jabalpur", "Jabalpur"),
("Gwalior", "Gwalior"),
("Ujjain", "Ujjain"),
("Sagar", "Sagar"),
("Dewas", "Dewas"),
("Satna", "Satna"),
("Ratlam", "Ratlam"),
("Rewa", "Rewa"),
("Katni", "Katni"),
("Singrauli", "Singrauli"),
("Burhanpur", "Burhanpur"),
("Khandwa", "Khandwa"),
("Morena", "Morena"),
("Bhind", "Bhind"),
("Chhindwara", "Chhindwara"),
("Guna", "Guna"),
("Shivpuri", "Shivpuri"),
("Vidisha", "Vidisha"),
("Chhatarpur", "Chhatarpur"),
("Damoh", "Damoh"),
("Mandsaur", "Mandsaur"),
("Khargone", "Khargone"),
("Neemuch", "Neemuch"),
("Pithampur", "Pithampur"),
("Hoshangabad", "Hoshangabad"),
("Itarsi", "Itarsi"),
("Sehore", "Sehore"),
("Betul", "Betul"),
("Seoni", "Seoni"),
("Datia", "Datia"),
("Nagda", "Nagda"),
("Dhanpuri", "Dhanpuri"),
("Dhar", "Dhar"),
("Balaghat", "Balaghat"),
),
),
("Mizoram", (("Aizawl", "Aizawl"),),),
("Nagaland", (("Dimapur", "Dimapur"), ("Kohima", "Kohima"),),),
(
"Odisha",
(
("Bhubaneswar", "Bhubaneswar"),
("Cuttack", "Cuttack"),
("Rourkela", "Rourkela"),
("Berhampur", "Berhampur"),
("Sambalpur", "Sambalpur"),
("Puri", "Puri"),
("Balasore", "Balasore"),
("Bhadrak", "Bhadrak"),
("Baripada", "Baripada"),
("Balangir", "Balangir"),
("Jharsuguda", "Jharsuguda"),
("Jeypore", "Jeypore"),
),
),
(
"Punjab",
(
("Ludhiana", "Ludhiana"),
("Amritsar", "Amritsar"),
("Jalandhar", "Jalandhar"),
("Patiala", "Patiala"),
("Bathinda", "Bathinda"),
("Hoshiarpur", "Hoshiarpur"),
("Batala", "Batala"),
("Mohali", "Mohali"),
("Abohar", "Abohar"),
("Pathankot", "Pathankot"),
("Moga", "Moga"),
("Malerkotla", "Malerkotla"),
("Khanna", "Khanna"),
("Muktasar", "Muktasar"),
("Barnala", "Barnala"),
("Firozpur", "Firozpur"),
("Kapurthala", "Kapurthala"),
("Phagwara", "Phagwara"),
("Zirakpur", "Zirakpur"),
("Rajpura", "Rajpura"),
),
),
(
"Puducherry",
(
("Pondicherry", "Pondicherry"),
("Ozhukarai", "Ozhukarai"),
("Karaikal", "Karaikal"),
),
),
(
"Rajasthan",
(
("Jaipur", "Jaipur"),
("Jodhpur", "Jodhpur"),
("Kota", "Kota"),
("Bikaner", "Bikaner"),
("Ajmer", "Ajmer"),
("Udaipur", "Udaipur"),
("Bhilwara", "Bhilwara"),
("Alwar", "Alwar"),
("Bharatpur", "Bharatpur"),
("Sri Ganganagar", "Sri Ganganagar"),
("Sikar", "Sikar"),
("Pali", "Pali"),
("Barmer", "Barmer"),
("Tonk", "Tonk"),
("Kishangarh", "Kishangarh"),
("Chittorgarh", "Chittorgarh"),
("Beawar", "Beawar"),
("Hanumangarh", "Hanumangarh"),
("Dholpur", "Dholpur"),
("Gangapur", "Gangapur"),
("Sawai Madhopur", "Sawai Madhopur"),
("Churu", "Churu"),
("Baran", "Baran"),
("Makrana", "Makrana"),
("Nagaur", "Nagaur"),
("Hindaun", "Hindaun"),
("Bhiwadi", "Bhiwadi"),
("Bundi", "Bundi"),
("Sujangarh", "Sujangarh"),
("Jhunjhunu", "Jhunjhunu"),
("Banswara", "Banswara"),
("Sardarshahar", "Sardarshahar"),
("Fatehpur", "Fatehpur"),
("Dausa", "Dausa"),
("Karauli", "Karauli"),
),
),
("Sikkim", (("Gangtok", "Gangtok"),),),
(
"Telangana",
(
("Hyderabad", "Hyderabad"),
("Warangal", "Warangal"),
("Nizamabad", "Nizamabad"),
("Karimnagar", "Karimnagar"),
("Ramagundam", "Ramagundam"),
("Khammam", "Khammam"),
("Mahbubnagar", "Mahbubnagar"),
("Nalgonda", "Nalgonda"),
("Adilabad", "Adilabad"),
("Siddipet", "Siddipet"),
("Suryapet", "Suryapet"),
("Miryalaguda", "Miryalaguda"),
("Jagtial", "Jagtial"),
("Mancherial", "Mancherial"),
("Kothagudem", "Kothagudem"),
),
),
(
"Tamil Nadu",
(
("Chennai", "Chennai"),
("Coimbatore", "Coimbatore"),
("Madurai", "Madurai"),
("Tiruchirappalli", "Tiruchirappalli"),
("Tirupur", "Tirupur"),
("Salem", "Salem"),
("Erode", "Erode"),
("Tirunelveli", "Tirunelveli"),
("Vellore", "Vellore"),
("Tuticorin", "Tuticorin"),
("Gudiyatham", "Gudiyatham"),
("Nagercoil", "Nagercoil"),
("Thanjavur", "Thanjavur"),
("Dindigul", "Dindigul"),
("Vaniyambadi", "Vaniyambadi"),
("Cuddalore", "Cuddalore"),
("Komarapalayam", "Komarapalayam"),
("Kanchipuram", "Kanchipuram"),
("Ambur", "Ambur"),
("Tiruvannamalai", "Tiruvannamalai"),
("Pudukkottai", "Pudukkottai"),
("Kumbakonam", "Kumbakonam"),
("Rajapalayam", "Rajapalayam"),
("Hosur", "Hosur"),
("Karaikudi", "Karaikudi"),
("Neyveli", "Neyveli"),
("Nagapattinam", "Nagapattinam"),
("Viluppuram", "Viluppuram"),
("Paramakudi", "Paramakudi"),
("Tiruchengode", "Tiruchengode"),
("Kovilpatti", "Kovilpatti"),
("Theni-Allinagaram", "Theni-Allinagaram"),
("Kadayanallur", "Kadayanallur"),
("Pollachi", "Pollachi"),
("Ooty", "Ooty"),
),
),
("Tripura", (("Agartala", "Agartala"),),),
(
"Uttar Pradesh",
(
("Kanpur", "Kanpur"),
("Lucknow", "Lucknow"),
("Ghaziabad", "Ghaziabad"),
("Agra", "Agra"),
("Varanasi", "Varanasi"),
("Meerut", "Meerut"),
("Allahabad", "Allahabad"),
("Bareilly", "Bareilly"),
("Aligarh", "Aligarh"),
("Moradabad", "Moradabad"),
("Saharanpur", "Saharanpur"),
("Gorakhpur", "Gorakhpur"),
("Faizabad", "Faizabad"),
("Firozabad", "Firozabad"),
("Jhansi", "Jhansi"),
("Muzaffarnagar", "Muzaffarnagar"),
("Mathura", "Mathura"),
("Budaun", "Budaun"),
("Rampur", "Rampur"),
("Shahjahanpur", "Shahjahanpur"),
("Farrukhabad", "Farrukhabad"),
("Mau", "Mau"),
("Hapur", "Hapur"),
("Noida", "Noida"),
("Etawah", "Etawah"),
("Mirzapur", "Mirzapur"),
("Bulandshahr", "Bulandshahr"),
("Sambhal", "Sambhal"),
("Amroha", "Amroha"),
("Hardoi", "Hardoi"),
("Fatehpur", "Fatehpur"),
("Raebareli", "Raebareli"),
("Orai", "Orai"),
("Sitapur", "Sitapur"),
("Bahraich", "Bahraich"),
("Modinagar", "Modinagar"),
("Unnao", "Unnao"),
("Jaunpur", "Jaunpur"),
("Lakhimpur", "Lakhimpur"),
("Hathras", "Hathras"),
("Banda", "Banda"),
("Pilibhit", "Pilibhit"),
("Barabanki", "Barabanki"),
("Mughalsarai", "Mughalsarai"),
("Khurja", "Khurja"),
("Gonda", "Gonda"),
("Mainpuri", "Mainpuri"),
("Lalitpur", "Lalitpur"),
("Etah", "Etah"),
("Deoria", "Deoria"),
("Ujhani", "Ujhani"),
("Ghazipur", "Ghazipur"),
("Sultanpur", "Sultanpur"),
("Azamgarh", "Azamgarh"),
("Bijnor", "Bijnor"),
("Sahaswan", "Sahaswan"),
("Basti", "Basti"),
("Chandausi", "Chandausi"),
("Akbarpur", "Akbarpur"),
("Ballia", "Ballia"),
("Mubarakpur", "Mubarakpur"),
("Tanda", "Tanda"),
("Greater Noida", "Greater Noida"),
("Shikohabad", "Shikohabad"),
("Shamli", "Shamli"),
("Baraut", "Baraut"),
("Khair", "Khair"),
("Kasganj", "Kasganj"),
("Auraiya", "Auraiya"),
("Khatauli", "Khatauli"),
("Deoband", "Deoband"),
("Nagina", "Nagina"),
("Mahoba", "Mahoba"),
("Muradnagar", "Muradnagar"),
("Bhadohi", "Bhadohi"),
("Dadri", "Dadri"),
("Pratapgarh", "Pratapgarh"),
("Najibabad", "Najibabad"),
),
),
(
"Uttarakhand",
(
("Dehradun", "Dehradun"),
("Haridwar", "Haridwar"),
("Roorkee", "Roorkee"),
("Haldwani", "Haldwani"),
("Rudrapur", "Rudrapur"),
("Kashipur", "Kashipur"),
("Rishikesh", "Rishikesh"),
),
),
(
"West Bengal",
(
("Kolkata", "Kolkata"),
("Asansol", "Asansol"),
("Siliguri", "Siliguri"),
("Durgapur", "Durgapur"),
("Bardhaman", "Bardhaman"),
("Malda", "Malda"),
("Baharampur", "Baharampur"),
("Habra", "Habra"),
("Jalpaiguri", "Jalpaiguri"),
("Kharagpur", "Kharagpur"),
("Shantipur", "Shantipur"),
("Dankuni", "Dankuni"),
("Dhulian", "Dhulian"),
("Ranaghat", "Ranaghat"),
("Haldia", "Haldia"),
("Raiganj", "Raiganj"),
("Krishnanagar", "Krishnanagar"),
("Nabadwip", "Nabadwip"),
("Midnapore", "Midnapore"),
("Balurghat", "Balurghat"),
("Basirhat", "Basirhat"),
("Bankura", "Bankura"),
("Chakdaha", "Chakdaha"),
("Darjeeling", "Darjeeling"),
("Alipurduar", "Alipurduar"),
("Purulia", "Purulia"),
("Jangipur", "Jangipur"),
("Bangaon", "Bangaon"),
("Cooch Behar", "Cooch Behar"),
("Bolpur", "Bolpur"),
("Kanthi", "Kanthi"),
),
),
)
| cities = (('Andaman and Nicobar Islands', (('Port Blair', 'Port Blair'),)), ('Andhra Pradesh', (('Visakhapatnam', 'Visakhapatnam'), ('Vijayawada', 'Vijayawada'), ('Guntur', 'Guntur'), ('Nellore', 'Nellore'), ('Kurnool', 'Kurnool'), ('Rajamahendravaram', 'Rajamahendravaram'), ('Tirupati', 'Tirupati'), ('Kadapa', 'Kadapa'), ('Kakinada', 'Kakinada'), ('Anantapur', 'Anantapur'), ('Vizianagaram', 'Vizianagaram'), ('Eluru', 'Eluru'), ('Ongole', 'Ongole'), ('Nandyal', 'Nandyal'), ('Machilipatnam', 'Machilipatnam'), ('Adoni', 'Adoni'), ('Tenali', 'Tenali'), ('Proddatur', 'Proddatur'), ('Chittoor', 'Chittoor'), ('Hindupur', 'Hindupur'), ('Bhimavaram', 'Bhimavaram'), ('Madanapalle', 'Madanapalle'), ('Guntakal', 'Guntakal'), ('Srikakulam', 'Srikakulam'), ('Dharmavaram', 'Dharmavaram'), ('Gudivada', 'Gudivada'), ('Narasaraopet', 'Narasaraopet'), ('Tadipatri', 'Tadipatri'), ('Tadepalligudem', 'Tadepalligudem'), ('Amaravati', 'Amaravati'), ('Chilakaluripet', 'Chilakaluripet'))), ('Bihar', (('Patna', 'Patna'), ('Gaya', 'Gaya'), ('Bhagalpur', 'Bhagalpur'), ('Muzaffarpur', 'Muzaffarpur'), ('Purnia', 'Purnia'), ('Darbhanga', 'Darbhanga'), ('Bihar Sharif', 'Bihar Sharif'), ('Arrah', 'Arrah'), ('Begusarai', 'Begusarai'), ('Katihar', 'Katihar'), ('Munger', 'Munger'), ('Chhapra', 'Chhapra'), ('Bettiah', 'Bettiah'), ('Saharsa', 'Saharsa'), ('Hajipur', 'Hajipur'), ('Sasaram', 'Sasaram'), ('Dehri', 'Dehri'), ('Siwan', 'Siwan'), ('Motihari', 'Motihari'), ('Nawada', 'Nawada'), ('Bagaha', 'Bagaha'), ('Buxar', 'Buxar'), ('Kishanganj', 'Kishanganj'), ('Sitamarhi', 'Sitamarhi'), ('Jamalpur', 'Jamalpur'), ('Jehanabad', 'Jehanabad'), ('Aurangabad', 'Aurangabad'), ('Lakhisarai', 'Lakhisarai'))), ('Chandigarh', (('Chandigarh', 'Chandigarh'),)), ('Chhattisgarh', (('Raipur', 'Raipur'), ('Durg', 'Durg'), ('Naya Raipur', 'Naya Raipur'), ('Korba', 'Korba'), ('Bilaspur', 'Bilaspur'), ('Rajnandgaon', 'Rajnandgaon'), ('Pakhanjore', 'Pakhanjore'), ('Jagdalpur', 'Jagdalpur'), ('Ambikapur', 'Ambikapur'), ('Chirmiri', 'Chirmiri'), ('Dhamtari', 'Dhamtari'), ('Raigarh', 'Raigarh'), ('Mahasamund', 'Mahasamund'))), ('Daman and Diu', (('Daman', 'Daman'),)), ('Delhi', (('Delhi', 'Delhi'),)), ('Dadra and Nagar Haveli', (('Silvassa', 'Silvassa'),)), ('Goa', (('Panaji', 'Panaji'), ('Vasco', 'Vasco'), ('Mormugao', 'Mormugao'), ('Margao', 'Margao'))), ('Gujarat', (('Ahmedabad', 'Ahmedabad'), ('Surat', 'Surat'), ('Vadodara', 'Vadodara'), ('Rajkot', 'Rajkot'), ('Bhavnagar', 'Bhavnagar'), ('Jamnagar', 'Jamnagar'), ('Junagadh', 'Junagadh'), ('Gandhidham', 'Gandhidham'), ('Nadiad', 'Nadiad'), ('Gandhinagar', 'Gandhinagar'), ('Anand', 'Anand'), ('Morbi', 'Morbi'), ('Khambhat', 'Khambhat'), ('Surendranagar', 'Surendranagar'), ('Bharuch', 'Bharuch'), ('Vapi', 'Vapi'), ('Navsari', 'Navsari'), ('Veraval', 'Veraval'), ('Porbandar', 'Porbandar'), ('Godhra', 'Godhra'), ('Bhuj', 'Bhuj'), ('Ankleshwar', 'Ankleshwar'), ('Botad', 'Botad'), ('Patan', 'Patan'), ('Palanpur', 'Palanpur'), ('Dahod', 'Dahod'), ('Jetpur', 'Jetpur'), ('Valsad', 'Valsad'), ('Kalol', 'Kalol'), ('Gondal', 'Gondal'), ('Deesa', 'Deesa'), ('Amreli', 'Amreli'), ('Amreli', 'Amreli'), ('Mahuva', 'Mahuva'), ('Mehsana', 'Mehsana'))), ('Himachal Pradesh', (('Shimla', 'Shimla'),)), ('Haryana', (('Faridabad', 'Faridabad'), ('Gurgaon', 'Gurgaon'), ('Panipat', 'Panipat'), ('Ambala', 'Ambala'), ('Yamunanagar', 'Yamunanagar'), ('Rohtak', 'Rohtak'), ('Hisar', 'Hisar'), ('Karnal', 'Karnal'), ('Sonipat', 'Sonipat'), ('Panchkula', 'Panchkula'), ('Bhiwani', 'Bhiwani'), ('Sirsa', 'Sirsa'), ('Bahadurgarh', 'Bahadurgarh'), ('Jind', 'Jind'), ('Thanesar', 'Thanesar'), ('Kaithal', 'Kaithal'), ('Rewari', 'Rewari'), ('Palwal', 'Palwal'))), ('Jharkhand', (('Jamshedpur', 'Jamshedpur'), ('Dhanbad', 'Dhanbad'), ('Ranchi', 'Ranchi'), ('Bokaro Steel City', 'Bokaro Steel City'), ('Deoghar', 'Deoghar'), ('Phusro', 'Phusro'), ('Hazaribagh', 'Hazaribagh'), ('Giridih', 'Giridih'), ('Ramgarh', 'Ramgarh'), ('Medininagar', 'Medininagar'), ('Chirkunda', 'Chirkunda'), ('Jhumri Telaiya', 'Jhumri Telaiya'), ('Sahibganj', 'Sahibganj'))), ('Jammu and Kashmir', (('Srinagar', 'Srinagar'), ('Jammu', 'Jammu'), ('Anantnag', 'Anantnag'))), ('Karnataka', (('Bengaluru', 'Bengaluru'), ('Hubli', 'Hubli'), ('Mysore', 'Mysore'), ('Gulbarga', 'Gulbarga'), ('Mangalore', 'Mangalore'), ('Belgaum', 'Belgaum'), ('Davangere', 'Davangere'), ('Bellary', 'Bellary'), ('Bijapur', 'Bijapur'), ('Shimoga', 'Shimoga'), ('Tumkur', 'Tumkur'), ('Raichur', 'Raichur'), ('Bidar', 'Bidar'), ('Hospet', 'Hospet'), ('Hassan', 'Hassan'), ('Gadag', 'Gadag'), ('Udupi', 'Udupi'), ('Robertsonpet', 'Robertsonpet'), ('Bhadravati', 'Bhadravati'), ('Chitradurga', 'Chitradurga'), ('Harihar', 'Harihar'), ('Kolar', 'Kolar'), ('Mandya', 'Mandya'), ('Chikkamagallooru', 'Chikkamagallooru'), ('Chikmagalur', 'Chikmagalur'), ('Gangawati', 'Gangawati'), ('Ranebennuru', 'Ranebennuru'), ('Ramanagara', 'Ramanagara'), ('Bagalkot', 'Bagalkot'))), ('Kerala', (('Thiruvananthapuram', 'Thiruvananthapuram'), ('Kochi', 'Kochi'), ('Calicut', 'Calicut'), ('Kollam', 'Kollam'), ('Thrissur', 'Thrissur'), ('Kannur', 'Kannur'), ('Kasaragod', 'Kasaragod'), ('Alappuzha', 'Alappuzha'), ('Alappuzha', 'Alappuzha'), ('Palakkad', 'Palakkad'), ('Kottayam', 'Kottayam'), ('Kothamangalam', 'Kothamangalam'), ('Malappuram', 'Malappuram'), ('Manjeri', 'Manjeri'), ('Thalassery', 'Thalassery'), ('Ponnani', 'Ponnani'))), ('Lakshadweep', (('Kavaratti', 'Kavaratti'),)), ('Maharashtra', (('Mumbai', 'Mumbai'), ('Pune', 'Pune'), ('Nagpur', 'Nagpur'), ('Nashik', 'Nashik'), ('Pimpri-Chinchwad', 'Pimpri-Chinchwad'), ('Aurangabad', 'Aurangabad'), ('Solapur', 'Solapur'), ('Bhiwandi', 'Bhiwandi'), ('Amravati', 'Amravati'), ('Nanded', 'Nanded'), ('Kolhapur', 'Kolhapur'), ('Sangli-Miraj-Kupwad', 'Sangli-Miraj-Kupwad'), ('Jalgaon', 'Jalgaon'), ('Akola', 'Akola'), ('Latur', 'Latur'), ('Malegaon', 'Malegaon'), ('Dhule', 'Dhule'), ('Ahmednagar', 'Ahmednagar'), ('Nandurbar', 'Nandurbar'), ('Ichalkaranji', 'Ichalkaranji'), ('Chandrapur', 'Chandrapur'), ('Jalna', 'Jalna'), ('Parbhani', 'Parbhani'), ('Bhusawal', 'Bhusawal'), ('Satara', 'Satara'), ('Beed', 'Beed'), ('Pandharpur', 'Pandharpur'), ('Yavatmal', 'Yavatmal'), ('Kamptee', 'Kamptee'), ('Gondia', 'Gondia'), ('Achalpur', 'Achalpur'), ('Osmanabad', 'Osmanabad'), ('Hinganghat', 'Hinganghat'), ('Wardha', 'Wardha'), ('Barshi', 'Barshi'), ('Chalisgaon', 'Chalisgaon'), ('Amalner', 'Amalner'), ('Khamgaon', 'Khamgaon'), ('Akot', 'Akot'), ('Udgir', 'Udgir'), ('Bhandara', 'Bhandara'), ('Parli', 'Parli'))), ('Meghalaya', (('Shillong', 'Shillong'),)), ('Manipur', (('Imphal', 'Imphal'),)), ('Madhya Pradesh', (('Indore', 'Indore'), ('Bhopal', 'Bhopal'), ('Jabalpur', 'Jabalpur'), ('Gwalior', 'Gwalior'), ('Ujjain', 'Ujjain'), ('Sagar', 'Sagar'), ('Dewas', 'Dewas'), ('Satna', 'Satna'), ('Ratlam', 'Ratlam'), ('Rewa', 'Rewa'), ('Katni', 'Katni'), ('Singrauli', 'Singrauli'), ('Burhanpur', 'Burhanpur'), ('Khandwa', 'Khandwa'), ('Morena', 'Morena'), ('Bhind', 'Bhind'), ('Chhindwara', 'Chhindwara'), ('Guna', 'Guna'), ('Shivpuri', 'Shivpuri'), ('Vidisha', 'Vidisha'), ('Chhatarpur', 'Chhatarpur'), ('Damoh', 'Damoh'), ('Mandsaur', 'Mandsaur'), ('Khargone', 'Khargone'), ('Neemuch', 'Neemuch'), ('Pithampur', 'Pithampur'), ('Hoshangabad', 'Hoshangabad'), ('Itarsi', 'Itarsi'), ('Sehore', 'Sehore'), ('Betul', 'Betul'), ('Seoni', 'Seoni'), ('Datia', 'Datia'), ('Nagda', 'Nagda'), ('Dhanpuri', 'Dhanpuri'), ('Dhar', 'Dhar'), ('Balaghat', 'Balaghat'))), ('Mizoram', (('Aizawl', 'Aizawl'),)), ('Nagaland', (('Dimapur', 'Dimapur'), ('Kohima', 'Kohima'))), ('Odisha', (('Bhubaneswar', 'Bhubaneswar'), ('Cuttack', 'Cuttack'), ('Rourkela', 'Rourkela'), ('Berhampur', 'Berhampur'), ('Sambalpur', 'Sambalpur'), ('Puri', 'Puri'), ('Balasore', 'Balasore'), ('Bhadrak', 'Bhadrak'), ('Baripada', 'Baripada'), ('Balangir', 'Balangir'), ('Jharsuguda', 'Jharsuguda'), ('Jeypore', 'Jeypore'))), ('Punjab', (('Ludhiana', 'Ludhiana'), ('Amritsar', 'Amritsar'), ('Jalandhar', 'Jalandhar'), ('Patiala', 'Patiala'), ('Bathinda', 'Bathinda'), ('Hoshiarpur', 'Hoshiarpur'), ('Batala', 'Batala'), ('Mohali', 'Mohali'), ('Abohar', 'Abohar'), ('Pathankot', 'Pathankot'), ('Moga', 'Moga'), ('Malerkotla', 'Malerkotla'), ('Khanna', 'Khanna'), ('Muktasar', 'Muktasar'), ('Barnala', 'Barnala'), ('Firozpur', 'Firozpur'), ('Kapurthala', 'Kapurthala'), ('Phagwara', 'Phagwara'), ('Zirakpur', 'Zirakpur'), ('Rajpura', 'Rajpura'))), ('Puducherry', (('Pondicherry', 'Pondicherry'), ('Ozhukarai', 'Ozhukarai'), ('Karaikal', 'Karaikal'))), ('Rajasthan', (('Jaipur', 'Jaipur'), ('Jodhpur', 'Jodhpur'), ('Kota', 'Kota'), ('Bikaner', 'Bikaner'), ('Ajmer', 'Ajmer'), ('Udaipur', 'Udaipur'), ('Bhilwara', 'Bhilwara'), ('Alwar', 'Alwar'), ('Bharatpur', 'Bharatpur'), ('Sri Ganganagar', 'Sri Ganganagar'), ('Sikar', 'Sikar'), ('Pali', 'Pali'), ('Barmer', 'Barmer'), ('Tonk', 'Tonk'), ('Kishangarh', 'Kishangarh'), ('Chittorgarh', 'Chittorgarh'), ('Beawar', 'Beawar'), ('Hanumangarh', 'Hanumangarh'), ('Dholpur', 'Dholpur'), ('Gangapur', 'Gangapur'), ('Sawai Madhopur', 'Sawai Madhopur'), ('Churu', 'Churu'), ('Baran', 'Baran'), ('Makrana', 'Makrana'), ('Nagaur', 'Nagaur'), ('Hindaun', 'Hindaun'), ('Bhiwadi', 'Bhiwadi'), ('Bundi', 'Bundi'), ('Sujangarh', 'Sujangarh'), ('Jhunjhunu', 'Jhunjhunu'), ('Banswara', 'Banswara'), ('Sardarshahar', 'Sardarshahar'), ('Fatehpur', 'Fatehpur'), ('Dausa', 'Dausa'), ('Karauli', 'Karauli'))), ('Sikkim', (('Gangtok', 'Gangtok'),)), ('Telangana', (('Hyderabad', 'Hyderabad'), ('Warangal', 'Warangal'), ('Nizamabad', 'Nizamabad'), ('Karimnagar', 'Karimnagar'), ('Ramagundam', 'Ramagundam'), ('Khammam', 'Khammam'), ('Mahbubnagar', 'Mahbubnagar'), ('Nalgonda', 'Nalgonda'), ('Adilabad', 'Adilabad'), ('Siddipet', 'Siddipet'), ('Suryapet', 'Suryapet'), ('Miryalaguda', 'Miryalaguda'), ('Jagtial', 'Jagtial'), ('Mancherial', 'Mancherial'), ('Kothagudem', 'Kothagudem'))), ('Tamil Nadu', (('Chennai', 'Chennai'), ('Coimbatore', 'Coimbatore'), ('Madurai', 'Madurai'), ('Tiruchirappalli', 'Tiruchirappalli'), ('Tirupur', 'Tirupur'), ('Salem', 'Salem'), ('Erode', 'Erode'), ('Tirunelveli', 'Tirunelveli'), ('Vellore', 'Vellore'), ('Tuticorin', 'Tuticorin'), ('Gudiyatham', 'Gudiyatham'), ('Nagercoil', 'Nagercoil'), ('Thanjavur', 'Thanjavur'), ('Dindigul', 'Dindigul'), ('Vaniyambadi', 'Vaniyambadi'), ('Cuddalore', 'Cuddalore'), ('Komarapalayam', 'Komarapalayam'), ('Kanchipuram', 'Kanchipuram'), ('Ambur', 'Ambur'), ('Tiruvannamalai', 'Tiruvannamalai'), ('Pudukkottai', 'Pudukkottai'), ('Kumbakonam', 'Kumbakonam'), ('Rajapalayam', 'Rajapalayam'), ('Hosur', 'Hosur'), ('Karaikudi', 'Karaikudi'), ('Neyveli', 'Neyveli'), ('Nagapattinam', 'Nagapattinam'), ('Viluppuram', 'Viluppuram'), ('Paramakudi', 'Paramakudi'), ('Tiruchengode', 'Tiruchengode'), ('Kovilpatti', 'Kovilpatti'), ('Theni-Allinagaram', 'Theni-Allinagaram'), ('Kadayanallur', 'Kadayanallur'), ('Pollachi', 'Pollachi'), ('Ooty', 'Ooty'))), ('Tripura', (('Agartala', 'Agartala'),)), ('Uttar Pradesh', (('Kanpur', 'Kanpur'), ('Lucknow', 'Lucknow'), ('Ghaziabad', 'Ghaziabad'), ('Agra', 'Agra'), ('Varanasi', 'Varanasi'), ('Meerut', 'Meerut'), ('Allahabad', 'Allahabad'), ('Bareilly', 'Bareilly'), ('Aligarh', 'Aligarh'), ('Moradabad', 'Moradabad'), ('Saharanpur', 'Saharanpur'), ('Gorakhpur', 'Gorakhpur'), ('Faizabad', 'Faizabad'), ('Firozabad', 'Firozabad'), ('Jhansi', 'Jhansi'), ('Muzaffarnagar', 'Muzaffarnagar'), ('Mathura', 'Mathura'), ('Budaun', 'Budaun'), ('Rampur', 'Rampur'), ('Shahjahanpur', 'Shahjahanpur'), ('Farrukhabad', 'Farrukhabad'), ('Mau', 'Mau'), ('Hapur', 'Hapur'), ('Noida', 'Noida'), ('Etawah', 'Etawah'), ('Mirzapur', 'Mirzapur'), ('Bulandshahr', 'Bulandshahr'), ('Sambhal', 'Sambhal'), ('Amroha', 'Amroha'), ('Hardoi', 'Hardoi'), ('Fatehpur', 'Fatehpur'), ('Raebareli', 'Raebareli'), ('Orai', 'Orai'), ('Sitapur', 'Sitapur'), ('Bahraich', 'Bahraich'), ('Modinagar', 'Modinagar'), ('Unnao', 'Unnao'), ('Jaunpur', 'Jaunpur'), ('Lakhimpur', 'Lakhimpur'), ('Hathras', 'Hathras'), ('Banda', 'Banda'), ('Pilibhit', 'Pilibhit'), ('Barabanki', 'Barabanki'), ('Mughalsarai', 'Mughalsarai'), ('Khurja', 'Khurja'), ('Gonda', 'Gonda'), ('Mainpuri', 'Mainpuri'), ('Lalitpur', 'Lalitpur'), ('Etah', 'Etah'), ('Deoria', 'Deoria'), ('Ujhani', 'Ujhani'), ('Ghazipur', 'Ghazipur'), ('Sultanpur', 'Sultanpur'), ('Azamgarh', 'Azamgarh'), ('Bijnor', 'Bijnor'), ('Sahaswan', 'Sahaswan'), ('Basti', 'Basti'), ('Chandausi', 'Chandausi'), ('Akbarpur', 'Akbarpur'), ('Ballia', 'Ballia'), ('Mubarakpur', 'Mubarakpur'), ('Tanda', 'Tanda'), ('Greater Noida', 'Greater Noida'), ('Shikohabad', 'Shikohabad'), ('Shamli', 'Shamli'), ('Baraut', 'Baraut'), ('Khair', 'Khair'), ('Kasganj', 'Kasganj'), ('Auraiya', 'Auraiya'), ('Khatauli', 'Khatauli'), ('Deoband', 'Deoband'), ('Nagina', 'Nagina'), ('Mahoba', 'Mahoba'), ('Muradnagar', 'Muradnagar'), ('Bhadohi', 'Bhadohi'), ('Dadri', 'Dadri'), ('Pratapgarh', 'Pratapgarh'), ('Najibabad', 'Najibabad'))), ('Uttarakhand', (('Dehradun', 'Dehradun'), ('Haridwar', 'Haridwar'), ('Roorkee', 'Roorkee'), ('Haldwani', 'Haldwani'), ('Rudrapur', 'Rudrapur'), ('Kashipur', 'Kashipur'), ('Rishikesh', 'Rishikesh'))), ('West Bengal', (('Kolkata', 'Kolkata'), ('Asansol', 'Asansol'), ('Siliguri', 'Siliguri'), ('Durgapur', 'Durgapur'), ('Bardhaman', 'Bardhaman'), ('Malda', 'Malda'), ('Baharampur', 'Baharampur'), ('Habra', 'Habra'), ('Jalpaiguri', 'Jalpaiguri'), ('Kharagpur', 'Kharagpur'), ('Shantipur', 'Shantipur'), ('Dankuni', 'Dankuni'), ('Dhulian', 'Dhulian'), ('Ranaghat', 'Ranaghat'), ('Haldia', 'Haldia'), ('Raiganj', 'Raiganj'), ('Krishnanagar', 'Krishnanagar'), ('Nabadwip', 'Nabadwip'), ('Midnapore', 'Midnapore'), ('Balurghat', 'Balurghat'), ('Basirhat', 'Basirhat'), ('Bankura', 'Bankura'), ('Chakdaha', 'Chakdaha'), ('Darjeeling', 'Darjeeling'), ('Alipurduar', 'Alipurduar'), ('Purulia', 'Purulia'), ('Jangipur', 'Jangipur'), ('Bangaon', 'Bangaon'), ('Cooch Behar', 'Cooch Behar'), ('Bolpur', 'Bolpur'), ('Kanthi', 'Kanthi')))) |
#Q: Add all the natural numbers below one thousand that are multiples of 3 or 5.
#A: 233168
sum([i for i in xrange(1,1000) if i%3==0 or i%5==0])
| sum([i for i in xrange(1, 1000) if i % 3 == 0 or i % 5 == 0]) |
# -*- coding: utf-8 -*-
# Define here the models for your spider middleware
#
# See documentation in:
# http://doc.scrapy.org/en/latest/topics/spider-middleware.html
class DianpingCrawlerSpiderMiddleware(object):
def process_request(self, request, spider):
cookies = spider.settings.get('COOKIES', {})
request.cookies.update(cookies)
| class Dianpingcrawlerspidermiddleware(object):
def process_request(self, request, spider):
cookies = spider.settings.get('COOKIES', {})
request.cookies.update(cookies) |
class PLAN_CMDS(object):
FETCH_PLAN = "fetch_plan"
FETCH_PROTOCOL = "fetch_protocol"
class TENSOR_SERIALIZATION(object):
TORCH = "torch"
NUMPY = "numpy"
TF = "tf"
ALL = "all"
class GATEWAY_ENDPOINTS(object):
SEARCH_TAGS = "/search"
SEARCH_MODEL = "/search-model"
SEARCH_ENCRYPTED_MODEL = "/search-encrypted-model"
SELECT_MODEL_HOST = "/choose-model-host"
SELECT_ENCRYPTED_MODEL_HOSTS = "/choose-encrypted-model-host"
class REQUEST_MSG(object):
TYPE_FIELD = "type"
GET_ID = "get-id"
CONNECT_NODE = "connect-node"
HOST_MODEL = "host-model"
RUN_INFERENCE = "run-inference"
LIST_MODELS = "list-models"
DELETE_MODEL = "delete-model"
RUN_INFERENCE = "run-inference"
AUTHENTICATE = "authentication"
class RESPONSE_MSG(object):
NODE_ID = "id"
ERROR = "error"
SUCCESS = "success"
MODELS = "models"
INFERENCE_RESULT = "prediction"
SYFT_VERSION = "syft_version"
| class Plan_Cmds(object):
fetch_plan = 'fetch_plan'
fetch_protocol = 'fetch_protocol'
class Tensor_Serialization(object):
torch = 'torch'
numpy = 'numpy'
tf = 'tf'
all = 'all'
class Gateway_Endpoints(object):
search_tags = '/search'
search_model = '/search-model'
search_encrypted_model = '/search-encrypted-model'
select_model_host = '/choose-model-host'
select_encrypted_model_hosts = '/choose-encrypted-model-host'
class Request_Msg(object):
type_field = 'type'
get_id = 'get-id'
connect_node = 'connect-node'
host_model = 'host-model'
run_inference = 'run-inference'
list_models = 'list-models'
delete_model = 'delete-model'
run_inference = 'run-inference'
authenticate = 'authentication'
class Response_Msg(object):
node_id = 'id'
error = 'error'
success = 'success'
models = 'models'
inference_result = 'prediction'
syft_version = 'syft_version' |
FreeMonoBoldOblique12pt7bBitmaps = [
0x1C, 0xF3, 0xCE, 0x38, 0xE7, 0x1C, 0x61, 0x86, 0x00, 0x63, 0x8C, 0x00,
0xE7, 0xE7, 0xE6, 0xC6, 0xC6, 0xC4, 0x84, 0x03, 0x30, 0x19, 0x81, 0xDC,
0x0C, 0xE0, 0x66, 0x1F, 0xFC, 0xFF, 0xE1, 0x98, 0x0C, 0xC0, 0xEE, 0x06,
0x70, 0xFF, 0xCF, 0xFE, 0x1D, 0xC0, 0xCC, 0x06, 0x60, 0x77, 0x03, 0x30,
0x00, 0x01, 0x00, 0x70, 0x0C, 0x07, 0xF1, 0xFE, 0x71, 0xCC, 0x11, 0x80,
0x3F, 0x03, 0xF0, 0x0F, 0x20, 0x6E, 0x0D, 0xC3, 0x3F, 0xE7, 0xF8, 0x1C,
0x03, 0x00, 0x60, 0x0C, 0x00, 0x0E, 0x03, 0xE0, 0xC4, 0x10, 0x82, 0x30,
0x7C, 0x07, 0x78, 0x7C, 0x7F, 0x19, 0xF0, 0x62, 0x08, 0x41, 0x18, 0x3E,
0x03, 0x80, 0x07, 0xC1, 0xF8, 0x62, 0x0C, 0x01, 0x80, 0x38, 0x0F, 0x03,
0xF7, 0x6F, 0xD8, 0xF3, 0x1E, 0x7F, 0xE7, 0xF8, 0xFF, 0x6D, 0x20, 0x06,
0x1C, 0x70, 0xC3, 0x06, 0x18, 0x30, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30,
0x70, 0x60, 0xC1, 0x00, 0x0C, 0x18, 0x38, 0x30, 0x60, 0xC1, 0x83, 0x06,
0x0C, 0x30, 0x61, 0xC3, 0x0E, 0x38, 0x61, 0xC2, 0x00, 0x06, 0x00, 0xC0,
0x18, 0x3F, 0x7F, 0xFE, 0xFF, 0x07, 0x81, 0xF8, 0x77, 0x0C, 0x60, 0x03,
0x00, 0x70, 0x07, 0x00, 0x60, 0x06, 0x0F, 0xFF, 0xFF, 0xF0, 0xE0, 0x0C,
0x00, 0xC0, 0x0C, 0x01, 0xC0, 0x18, 0x00, 0x1C, 0xE3, 0x1C, 0x63, 0x08,
0x00, 0x7F, 0xFF, 0xFF, 0xC0, 0x7F, 0x00, 0x00, 0x08, 0x00, 0x70, 0x01,
0x80, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x0C, 0x00, 0x70, 0x03, 0x80, 0x0C,
0x00, 0x70, 0x03, 0x80, 0x0C, 0x00, 0x70, 0x03, 0x80, 0x0C, 0x00, 0x70,
0x03, 0x80, 0x0C, 0x00, 0x20, 0x00, 0x07, 0x83, 0xF8, 0xE3, 0x98, 0x37,
0x06, 0xC0, 0xD8, 0x1B, 0x03, 0xE0, 0xF8, 0x1B, 0x03, 0x60, 0xEE, 0x38,
0xFE, 0x0F, 0x00, 0x03, 0xC1, 0xF0, 0x7E, 0x0C, 0xC0, 0x38, 0x07, 0x00,
0xC0, 0x18, 0x07, 0x00, 0xE0, 0x18, 0x03, 0x00, 0x61, 0xFF, 0xFF, 0xF0,
0x03, 0xE0, 0x3F, 0x83, 0x8E, 0x38, 0x31, 0x81, 0x80, 0x18, 0x01, 0xC0,
0x1C, 0x01, 0xC0, 0x38, 0x03, 0x80, 0x38, 0x47, 0x87, 0x3F, 0xF3, 0xFF,
0x80, 0x07, 0xC1, 0xFF, 0x18, 0x70, 0x03, 0x00, 0x30, 0x06, 0x07, 0xC0,
0x7C, 0x00, 0xE0, 0x06, 0x00, 0x60, 0x06, 0xC1, 0xCF, 0xF8, 0x7E, 0x00,
0x01, 0xE0, 0x3C, 0x0F, 0x03, 0x60, 0xCC, 0x3B, 0x8E, 0x63, 0x8C, 0x61,
0x9F, 0xFB, 0xFF, 0x01, 0x81, 0xF8, 0x3F, 0x00, 0x0F, 0xF1, 0xFE, 0x18,
0x01, 0x80, 0x18, 0x03, 0xF8, 0x3F, 0xC3, 0x8E, 0x00, 0x60, 0x06, 0x00,
0x60, 0x0C, 0xC1, 0xCF, 0xF8, 0x7E, 0x00, 0x03, 0xE1, 0xFC, 0x70, 0x1C,
0x03, 0x00, 0xC0, 0x1B, 0xC7, 0xFC, 0xF3, 0x98, 0x33, 0x06, 0x60, 0xCE,
0x30, 0xFC, 0x0F, 0x00, 0xFF, 0xFF, 0xFB, 0x07, 0x60, 0xC0, 0x38, 0x06,
0x01, 0xC0, 0x30, 0x0E, 0x01, 0x80, 0x70, 0x1C, 0x03, 0x80, 0x60, 0x08,
0x00, 0x07, 0x83, 0xF8, 0xE3, 0xB0, 0x36, 0x06, 0xC0, 0xDC, 0x31, 0xFC,
0x3F, 0x8C, 0x3B, 0x03, 0x60, 0x6C, 0x39, 0xFE, 0x1F, 0x00, 0x07, 0x81,
0xF8, 0x63, 0x98, 0x33, 0x06, 0x60, 0xCE, 0x79, 0xFF, 0x1E, 0xC0, 0x18,
0x06, 0x01, 0xC0, 0x71, 0xFC, 0x3E, 0x00, 0x19, 0xCC, 0x00, 0x00, 0x00,
0x67, 0x30, 0x06, 0x1C, 0x30, 0x00, 0x00, 0x00, 0x00, 0x38, 0x71, 0xC3,
0x0E, 0x18, 0x20, 0x00, 0x00, 0x18, 0x03, 0xC0, 0x7C, 0x1F, 0x03, 0xE0,
0x3E, 0x00, 0x7C, 0x01, 0xF0, 0x03, 0xE0, 0x07, 0x80, 0x08, 0x7F, 0xFB,
0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0xFF, 0xC0, 0x30, 0x01,
0xE0, 0x07, 0xC0, 0x0F, 0x00, 0x3E, 0x00, 0x7C, 0x1F, 0x03, 0xE0, 0x7C,
0x07, 0x80, 0x20, 0x00, 0x3E, 0x7F, 0xB0, 0xF8, 0x30, 0x18, 0x1C, 0x1C,
0x3C, 0x38, 0x18, 0x00, 0x06, 0x07, 0x03, 0x00, 0x03, 0xC0, 0x7E, 0x0C,
0x71, 0x83, 0x30, 0x33, 0x0F, 0x33, 0xE6, 0x76, 0x6C, 0x66, 0xC6, 0x6C,
0x6C, 0xFC, 0xC7, 0xEC, 0x00, 0xC0, 0x0C, 0x00, 0xE3, 0x07, 0xF0, 0x3C,
0x00, 0x07, 0xF0, 0x1F, 0xE0, 0x07, 0xC0, 0x1F, 0x80, 0x3B, 0x00, 0xE7,
0x01, 0x8E, 0x07, 0x1C, 0x1F, 0xF8, 0x3F, 0xF0, 0xE0, 0x71, 0x80, 0xEF,
0xC7, 0xFF, 0x8F, 0xC0, 0x3F, 0xF1, 0xFF, 0xC3, 0x06, 0x38, 0x31, 0xC1,
0x8C, 0x18, 0x7F, 0xC3, 0xFE, 0x38, 0x39, 0xC0, 0xCC, 0x06, 0x60, 0x6F,
0xFF, 0x7F, 0xE0, 0x03, 0xEC, 0x3F, 0xF1, 0xC3, 0x8C, 0x06, 0x60, 0x19,
0x80, 0x0C, 0x00, 0x30, 0x00, 0xC0, 0x03, 0x00, 0x0C, 0x03, 0x3C, 0x1C,
0x7F, 0xE0, 0x7E, 0x00, 0x3F, 0xE1, 0xFF, 0x87, 0x0C, 0x30, 0x31, 0x81,
0x8C, 0x0C, 0xE0, 0x67, 0x03, 0x30, 0x31, 0x81, 0x8C, 0x0C, 0xE1, 0xCF,
0xFC, 0x7F, 0x80, 0x1F, 0xFE, 0x3F, 0xFC, 0x38, 0x38, 0x70, 0x70, 0xCC,
0xC1, 0x98, 0x03, 0xF0, 0x0F, 0xE0, 0x1D, 0x80, 0x31, 0x18, 0x60, 0x70,
0xC0, 0xE7, 0xFF, 0x9F, 0xFF, 0x00, 0x1F, 0xFF, 0x1F, 0xFE, 0x0E, 0x06,
0x0C, 0x0E, 0x0C, 0xC4, 0x0C, 0xC0, 0x1F, 0xC0, 0x1F, 0xC0, 0x19, 0xC0,
0x19, 0x80, 0x18, 0x00, 0x38, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0x07, 0xEC,
0x7F, 0xF3, 0x83, 0x9C, 0x06, 0x60, 0x19, 0x80, 0x0C, 0x00, 0x30, 0xFE,
0xC3, 0xFB, 0x01, 0xCC, 0x07, 0x3C, 0x38, 0x7F, 0xE0, 0x7E, 0x00, 0x0F,
0xBF, 0x1F, 0xBE, 0x0E, 0x0C, 0x0C, 0x0C, 0x0C, 0x1C, 0x0C, 0x1C, 0x1F,
0xF8, 0x1F, 0xF8, 0x18, 0x18, 0x18, 0x38, 0x18, 0x38, 0x38, 0x30, 0x7C,
0xFC, 0xFC, 0xF8, 0x3F, 0xF3, 0xFF, 0x03, 0x00, 0x70, 0x07, 0x00, 0x60,
0x06, 0x00, 0x60, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xC0, 0xFF, 0xCF, 0xFC,
0x03, 0xFF, 0x03, 0xFF, 0x00, 0x38, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30,
0x00, 0x70, 0x20, 0x70, 0x60, 0x60, 0x60, 0x60, 0x60, 0xE0, 0xE1, 0xC0,
0xFF, 0x80, 0x3F, 0x00, 0x1F, 0x9F, 0x1F, 0x9E, 0x0E, 0x38, 0x0C, 0x70,
0x0C, 0xE0, 0x0F, 0xC0, 0x1F, 0xC0, 0x1F, 0xE0, 0x1C, 0xE0, 0x18, 0x60,
0x18, 0x70, 0x38, 0x70, 0xFE, 0x3C, 0xFC, 0x3C, 0x3F, 0xC1, 0xFE, 0x01,
0x80, 0x1C, 0x00, 0xE0, 0x06, 0x00, 0x30, 0x01, 0x80, 0x1C, 0x18, 0xE0,
0xC6, 0x06, 0x30, 0x7F, 0xFF, 0xFF, 0xF8, 0x1E, 0x07, 0x87, 0x81, 0xE0,
0xF0, 0xF0, 0x7C, 0x7C, 0x1F, 0x1F, 0x06, 0xCF, 0x81, 0xBF, 0x60, 0xEF,
0x98, 0x3B, 0xEE, 0x0C, 0x73, 0x83, 0x1C, 0xC0, 0xC0, 0x30, 0xFC, 0x7E,
0x3F, 0x1F, 0x80, 0x3C, 0x3F, 0x3E, 0x3F, 0x1E, 0x0C, 0x1F, 0x1C, 0x1F,
0x1C, 0x1B, 0x98, 0x3B, 0x98, 0x3B, 0x98, 0x31, 0xF8, 0x31, 0xF8, 0x30,
0xF0, 0x70, 0xF0, 0xFC, 0x70, 0xF8, 0x70, 0x03, 0xE0, 0x3F, 0xE1, 0xC3,
0x8C, 0x07, 0x60, 0x0D, 0x80, 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0x1B, 0x00,
0x6E, 0x03, 0x1C, 0x38, 0x7F, 0xC0, 0x7C, 0x00, 0x3F, 0xE1, 0xFF, 0x83,
0x0E, 0x38, 0x31, 0xC1, 0x8C, 0x0C, 0x60, 0xC3, 0xFC, 0x3F, 0xC1, 0xC0,
0x0C, 0x00, 0x60, 0x0F, 0xF0, 0x7F, 0x80, 0x03, 0xE0, 0x3F, 0xE1, 0xC3,
0x8C, 0x07, 0x60, 0x0D, 0x80, 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0x1B, 0x00,
0x6E, 0x03, 0x1C, 0x38, 0x7F, 0xC0, 0xFC, 0x03, 0x02, 0x1F, 0xFC, 0xFF,
0xE0, 0x1F, 0xF0, 0x3F, 0xF0, 0x38, 0x70, 0x60, 0x60, 0xC0, 0xC1, 0x87,
0x07, 0xFC, 0x0F, 0xF0, 0x18, 0xF0, 0x30, 0xE0, 0x60, 0xC1, 0xC1, 0xCF,
0xE1, 0xFF, 0xC3, 0xC0, 0x0F, 0xB1, 0xFF, 0x30, 0xE6, 0x06, 0x60, 0x67,
0x80, 0x7F, 0x01, 0xFC, 0x01, 0xC4, 0x0C, 0xC0, 0xCE, 0x18, 0xFF, 0x8B,
0xE0, 0x7F, 0xFB, 0xFF, 0xD9, 0xCF, 0xCE, 0x7C, 0x63, 0x63, 0x18, 0x18,
0x01, 0xC0, 0x0E, 0x00, 0x60, 0x03, 0x00, 0x18, 0x0F, 0xF8, 0x7F, 0xC0,
0x7E, 0xFF, 0xF3, 0xF3, 0x03, 0x1C, 0x0C, 0x60, 0x31, 0x81, 0xC6, 0x06,
0x38, 0x18, 0xE0, 0x63, 0x03, 0x8C, 0x0C, 0x30, 0x70, 0x7F, 0x80, 0xF8,
0x00, 0xFC, 0x7F, 0xF8, 0xFD, 0xC0, 0x61, 0x81, 0xC3, 0x87, 0x07, 0x0C,
0x0E, 0x38, 0x0C, 0x60, 0x19, 0xC0, 0x3F, 0x00, 0x7C, 0x00, 0xF8, 0x00,
0xE0, 0x01, 0x80, 0x00, 0x7E, 0x7E, 0xFC, 0xFD, 0xC0, 0x73, 0x9C, 0xE7,
0x79, 0x8E, 0xF7, 0x1B, 0xEE, 0x36, 0xD8, 0x7D, 0xF0, 0xF3, 0xE1, 0xE7,
0x83, 0x8F, 0x07, 0x1E, 0x1C, 0x38, 0x00, 0x1F, 0x1F, 0x1F, 0x1F, 0x0E,
0x1C, 0x07, 0x38, 0x07, 0x70, 0x03, 0xE0, 0x03, 0xC0, 0x03, 0xC0, 0x07,
0xE0, 0x0E, 0xE0, 0x1C, 0x70, 0x38, 0x70, 0xFC, 0xFC, 0xFC, 0xFC, 0xF8,
0xFF, 0xC7, 0xCC, 0x38, 0x73, 0x83, 0x9C, 0x0F, 0xC0, 0x7C, 0x01, 0xC0,
0x0C, 0x00, 0x60, 0x03, 0x00, 0x38, 0x0F, 0xF8, 0x7F, 0x80, 0x0F, 0xF8,
0x7F, 0xE1, 0xC7, 0x86, 0x1C, 0x18, 0xE0, 0x07, 0x00, 0x38, 0x01, 0xC0,
0x0E, 0x00, 0x70, 0xC3, 0x83, 0x1C, 0x1C, 0x7F, 0xF3, 0xFF, 0x80, 0x0F,
0x87, 0xC3, 0x03, 0x81, 0xC0, 0xC0, 0x60, 0x30, 0x38, 0x1C, 0x0C, 0x06,
0x03, 0x03, 0x81, 0xC0, 0xC0, 0x60, 0x3E, 0x3F, 0x00, 0x41, 0xC3, 0x83,
0x07, 0x0E, 0x1C, 0x18, 0x38, 0x70, 0xE0, 0xC1, 0xC3, 0x83, 0x06, 0x0E,
0x1C, 0x18, 0x20, 0x1F, 0x0F, 0x80, 0xC0, 0xE0, 0x70, 0x30, 0x18, 0x0C,
0x0E, 0x07, 0x03, 0x01, 0x80, 0xC0, 0xE0, 0x70, 0x30, 0x18, 0x7C, 0x3E,
0x00, 0x02, 0x01, 0x80, 0xF0, 0x7E, 0x3B, 0x9C, 0x7E, 0x1F, 0x03, 0xFF,
0xFF, 0xFF, 0xFC, 0xCE, 0x73, 0x1F, 0xC3, 0xFE, 0x00, 0x60, 0x06, 0x0F,
0xE3, 0xFE, 0x70, 0xCC, 0x0C, 0xC3, 0xCF, 0xFF, 0x7F, 0xF0, 0x1E, 0x00,
0x3C, 0x00, 0x38, 0x00, 0x70, 0x00, 0xDF, 0x81, 0xFF, 0x83, 0xC3, 0x8F,
0x03, 0x1C, 0x06, 0x38, 0x0C, 0x70, 0x18, 0xE0, 0x63, 0xE1, 0x9F, 0xFE,
0x3D, 0xF8, 0x00, 0x0F, 0xF3, 0xFF, 0x30, 0x76, 0x07, 0xE0, 0x6C, 0x00,
0xC0, 0x0C, 0x00, 0xE0, 0x67, 0xFE, 0x3F, 0x80, 0x00, 0x3C, 0x00, 0xF0,
0x01, 0xC0, 0x06, 0x07, 0xD8, 0x7F, 0xE3, 0x0F, 0x98, 0x1E, 0x60, 0x73,
0x01, 0xCC, 0x07, 0x30, 0x3C, 0xE1, 0xF1, 0xFF, 0xE3, 0xF7, 0x80, 0x0F,
0xC1, 0xFE, 0x78, 0x76, 0x03, 0xFF, 0xFF, 0xFF, 0xC0, 0x0C, 0x00, 0xE0,
0xE7, 0xFE, 0x1F, 0x80, 0x00, 0xFC, 0x07, 0xF8, 0x0C, 0x00, 0x38, 0x01,
0xFF, 0x07, 0xFE, 0x01, 0x80, 0x07, 0x00, 0x0E, 0x00, 0x18, 0x00, 0x30,
0x00, 0x60, 0x01, 0xC0, 0x1F, 0xF8, 0x3F, 0xF0, 0x00, 0x0F, 0xBC, 0x7F,
0xF3, 0x0F, 0x18, 0x1C, 0xC0, 0x73, 0x01, 0x8C, 0x0E, 0x30, 0x38, 0xE3,
0xE1, 0xFF, 0x83, 0xEC, 0x00, 0x30, 0x01, 0xC0, 0x06, 0x07, 0xF0, 0x1F,
0x80, 0x1E, 0x01, 0xF0, 0x03, 0x00, 0x18, 0x00, 0xDE, 0x0F, 0xF8, 0x78,
0xC3, 0x86, 0x18, 0x30, 0xC1, 0x8E, 0x1C, 0x70, 0xE3, 0x06, 0x7E, 0xFF,
0xE7, 0xE0, 0x03, 0x80, 0x70, 0x00, 0x0F, 0xC1, 0xF0, 0x06, 0x00, 0xC0,
0x38, 0x07, 0x00, 0xC0, 0x18, 0x03, 0x0F, 0xFF, 0xFF, 0xC0, 0x00, 0x70,
0x07, 0x00, 0x00, 0xFF, 0x1F, 0xF0, 0x07, 0x00, 0x70, 0x06, 0x00, 0x60,
0x06, 0x00, 0xE0, 0x0E, 0x00, 0xC0, 0x0C, 0x00, 0xC0, 0x1C, 0x03, 0x87,
0xF0, 0xFE, 0x00, 0x1E, 0x00, 0x78, 0x00, 0xE0, 0x03, 0x80, 0x0C, 0xFC,
0x33, 0xE0, 0xDE, 0x07, 0xE0, 0x1F, 0x00, 0x7C, 0x01, 0xF8, 0x06, 0xF0,
0x39, 0xC3, 0xE7, 0xEF, 0x1F, 0x80, 0x0F, 0x81, 0xF0, 0x06, 0x01, 0xC0,
0x38, 0x06, 0x00, 0xC0, 0x18, 0x07, 0x00, 0xE0, 0x18, 0x03, 0x00, 0x61,
0xFF, 0xFF, 0xF8, 0x3F, 0xBC, 0x7F, 0xFC, 0xF3, 0x98, 0xC6, 0x33, 0x9C,
0xE7, 0x39, 0xCC, 0x63, 0x18, 0xC6, 0x31, 0x8D, 0xF7, 0xBF, 0xEF, 0x78,
0x3D, 0xE1, 0xFF, 0x8F, 0x8C, 0x38, 0x61, 0x83, 0x0C, 0x18, 0xE1, 0xC7,
0x0E, 0x30, 0x67, 0xEF, 0xFE, 0x7E, 0x07, 0xC1, 0xFE, 0x38, 0x76, 0x03,
0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x06, 0xE1, 0xC7, 0xF8, 0x3E, 0x00, 0x1E,
0xFC, 0x1F, 0xFE, 0x0F, 0x87, 0x0F, 0x03, 0x0E, 0x03, 0x0E, 0x03, 0x0E,
0x07, 0x0E, 0x06, 0x1F, 0x0C, 0x1F, 0xF8, 0x19, 0xF0, 0x18, 0x00, 0x18,
0x00, 0x38, 0x00, 0xFE, 0x00, 0xFE, 0x00, 0x0F, 0xDE, 0x3F, 0xFC, 0xC3,
0xE3, 0x03, 0x84, 0x07, 0x18, 0x0E, 0x30, 0x1C, 0x60, 0x78, 0xE1, 0xE0,
0xFF, 0xC0, 0xF9, 0x80, 0x03, 0x00, 0x0E, 0x00, 0x1C, 0x01, 0xFC, 0x03,
0xF8, 0x1E, 0x78, 0x7F, 0xF0, 0x7C, 0xC3, 0xC0, 0x0E, 0x00, 0x30, 0x00,
0xC0, 0x03, 0x00, 0x1C, 0x03, 0xFF, 0x0F, 0xFC, 0x00, 0x07, 0xF1, 0xFF,
0x30, 0x73, 0x86, 0x3F, 0x81, 0xFE, 0x03, 0xE6, 0x06, 0xE0, 0xEF, 0xFC,
0xFF, 0x00, 0x0C, 0x07, 0x01, 0x83, 0xFF, 0xFF, 0xCE, 0x03, 0x00, 0xC0,
0x30, 0x1C, 0x07, 0x01, 0x83, 0x7F, 0xCF, 0xC0, 0xF0, 0xFF, 0x1F, 0x60,
0x76, 0x07, 0x60, 0x76, 0x06, 0x60, 0x66, 0x0E, 0x61, 0xE7, 0xFF, 0x3E,
0xF0, 0x7E, 0x7E, 0xFC, 0xFC, 0xE0, 0xC0, 0xC3, 0x81, 0x86, 0x03, 0x98,
0x07, 0x70, 0x06, 0xC0, 0x0F, 0x80, 0x1E, 0x00, 0x38, 0x00, 0xF8, 0x7F,
0xE3, 0xE6, 0x63, 0x1B, 0xDC, 0x6F, 0x61, 0xFF, 0x87, 0xFC, 0x1E, 0xF0,
0x73, 0x81, 0xCE, 0x06, 0x38, 0x00, 0x3E, 0x7C, 0xF9, 0xF1, 0xE7, 0x03,
0xF8, 0x07, 0xC0, 0x1F, 0x01, 0xFC, 0x0F, 0x38, 0x78, 0xFB, 0xF7, 0xEF,
0x9F, 0x80, 0x1F, 0x1F, 0x3E, 0x1F, 0x1C, 0x1C, 0x0C, 0x18, 0x0E, 0x38,
0x0E, 0x70, 0x06, 0x60, 0x07, 0xE0, 0x07, 0xC0, 0x07, 0xC0, 0x03, 0x80,
0x07, 0x00, 0x07, 0x00, 0x0E, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0x1F, 0xF1,
0xFF, 0x38, 0xE3, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xC6, 0x38, 0x67,
0xFE, 0x7F, 0xE0, 0x01, 0xC0, 0xF0, 0x70, 0x18, 0x06, 0x03, 0x80, 0xE0,
0x30, 0x1C, 0x3E, 0x0F, 0x00, 0x60, 0x18, 0x06, 0x03, 0x80, 0xC0, 0x30,
0x0F, 0x01, 0xC0, 0x0C, 0x71, 0xC7, 0x18, 0x63, 0x8E, 0x30, 0xC3, 0x1C,
0x71, 0x86, 0x38, 0xE3, 0x04, 0x00, 0x0E, 0x07, 0x80, 0xC0, 0x60, 0x70,
0x30, 0x18, 0x0C, 0x06, 0x01, 0xC1, 0xE1, 0xC0, 0xC0, 0xE0, 0x70, 0x30,
0x38, 0x78, 0x38, 0x00, 0x3C, 0x27, 0xE6, 0xEF, 0xCC, 0x38 ]
FreeMonoBoldOblique12pt7bGlyphs = [
[ 0, 0, 0, 14, 0, 1 ], # 0x20 ' '
[ 0, 6, 15, 14, 6, -14 ], # 0x21 '!'
[ 12, 8, 7, 14, 6, -13 ], # 0x22 '"'
[ 19, 13, 18, 14, 2, -15 ], # 0x23 '#'
[ 49, 11, 20, 14, 3, -16 ], # 0x24 '$'
[ 77, 11, 15, 14, 3, -14 ], # 0x25 '%'
[ 98, 11, 13, 14, 2, -12 ], # 0x26 '&'
[ 116, 3, 7, 14, 8, -13 ], # 0x27 '''
[ 119, 7, 19, 14, 7, -14 ], # 0x28 '('
[ 136, 7, 19, 14, 2, -14 ], # 0x29 ')'
[ 153, 11, 10, 14, 4, -14 ], # 0x2A '#'
[ 167, 12, 13, 14, 3, -12 ], # 0x2B '+'
[ 187, 6, 7, 14, 3, -2 ], # 0x2C ','
[ 193, 13, 2, 14, 2, -7 ], # 0x2D '-'
[ 197, 3, 3, 14, 6, -2 ], # 0x2E '.'
[ 199, 14, 20, 14, 2, -16 ], # 0x2F '/'
[ 234, 11, 15, 14, 3, -14 ], # 0x30 '0'
[ 255, 11, 15, 14, 2, -14 ], # 0x31 '1'
[ 276, 13, 15, 14, 1, -14 ], # 0x32 '2'
[ 301, 12, 15, 14, 2, -14 ], # 0x33 '3'
[ 324, 11, 14, 14, 3, -13 ], # 0x34 '4'
[ 344, 12, 15, 14, 2, -14 ], # 0x35 '5'
[ 367, 11, 15, 14, 4, -14 ], # 0x36 '6'
[ 388, 11, 15, 14, 4, -14 ], # 0x37 '7'
[ 409, 11, 15, 14, 3, -14 ], # 0x38 '8'
[ 430, 11, 15, 14, 3, -14 ], # 0x39 '9'
[ 451, 5, 11, 14, 5, -10 ], # 0x3A ':'
[ 458, 7, 15, 14, 3, -10 ], # 0x3B ''
[ 472, 13, 11, 14, 2, -11 ], # 0x3C '<'
[ 490, 13, 7, 14, 2, -9 ], # 0x3D '='
[ 502, 13, 11, 14, 2, -11 ], # 0x3E '>'
[ 520, 9, 14, 14, 5, -13 ], # 0x3F '?'
[ 536, 12, 19, 14, 2, -14 ], # 0x40 '@'
[ 565, 15, 14, 14, 0, -13 ], # 0x41 'A'
[ 592, 13, 14, 14, 1, -13 ], # 0x42 'B'
[ 615, 14, 14, 14, 2, -13 ], # 0x43 'C'
[ 640, 13, 14, 14, 1, -13 ], # 0x44 'D'
[ 663, 15, 14, 14, 0, -13 ], # 0x45 'E'
[ 690, 16, 14, 14, 0, -13 ], # 0x46 'F'
[ 718, 14, 14, 14, 1, -13 ], # 0x47 'G'
[ 743, 16, 14, 14, 0, -13 ], # 0x48 'H'
[ 771, 12, 14, 14, 2, -13 ], # 0x49 'I'
[ 792, 16, 14, 14, 0, -13 ], # 0x4A 'J'
[ 820, 16, 14, 14, 0, -13 ], # 0x4B 'K'
[ 848, 13, 14, 14, 1, -13 ], # 0x4C 'L'
[ 871, 18, 14, 14, 0, -13 ], # 0x4D 'M'
[ 903, 16, 14, 14, 1, -13 ], # 0x4E 'N'
[ 931, 14, 14, 14, 1, -13 ], # 0x4F 'O'
[ 956, 13, 14, 14, 1, -13 ], # 0x50 'P'
[ 979, 14, 17, 14, 1, -13 ], # 0x51 'Q'
[ 1009, 15, 14, 14, 0, -13 ], # 0x52 'R'
[ 1036, 12, 14, 14, 3, -13 ], # 0x53 'S'
[ 1057, 13, 14, 14, 2, -13 ], # 0x54 'T'
[ 1080, 14, 14, 14, 2, -13 ], # 0x55 'U'
[ 1105, 15, 14, 14, 1, -13 ], # 0x56 'V'
[ 1132, 15, 14, 14, 1, -13 ], # 0x57 'W'
[ 1159, 16, 14, 14, 0, -13 ], # 0x58 'X'
[ 1187, 13, 14, 14, 2, -13 ], # 0x59 'Y'
[ 1210, 14, 14, 14, 1, -13 ], # 0x5A 'Z'
[ 1235, 9, 19, 14, 5, -14 ], # 0x5B '['
[ 1257, 7, 20, 14, 5, -16 ], # 0x5C '\'
[ 1275, 9, 19, 14, 3, -14 ], # 0x5D ']'
[ 1297, 10, 8, 14, 4, -15 ], # 0x5E '^'
[ 1307, 15, 2, 14, -1, 4 ], # 0x5F '_'
[ 1311, 4, 4, 14, 7, -15 ], # 0x60 '`'
[ 1313, 12, 11, 14, 2, -10 ], # 0x61 'a'
[ 1330, 15, 15, 14, -1, -14 ], # 0x62 'b'
[ 1359, 12, 11, 14, 2, -10 ], # 0x63 'c'
[ 1376, 14, 15, 14, 2, -14 ], # 0x64 'd'
[ 1403, 12, 11, 14, 2, -10 ], # 0x65 'e'
[ 1420, 15, 15, 14, 2, -14 ], # 0x66 'f'
[ 1449, 14, 16, 14, 2, -10 ], # 0x67 'g'
[ 1477, 13, 15, 14, 1, -14 ], # 0x68 'h'
[ 1502, 11, 14, 14, 2, -13 ], # 0x69 'i'
[ 1522, 12, 19, 14, 1, -13 ], # 0x6A 'j'
[ 1551, 14, 15, 14, 1, -14 ], # 0x6B 'k'
[ 1578, 11, 15, 14, 2, -14 ], # 0x6C 'l'
[ 1599, 15, 11, 14, 0, -10 ], # 0x6D 'm'
[ 1620, 13, 11, 14, 1, -10 ], # 0x6E 'n'
[ 1638, 12, 11, 14, 2, -10 ], # 0x6F 'o'
[ 1655, 16, 16, 14, -1, -10 ], # 0x70 'p'
[ 1687, 15, 16, 14, 1, -10 ], # 0x71 'q'
[ 1717, 14, 11, 14, 1, -10 ], # 0x72 'r'
[ 1737, 12, 11, 14, 2, -10 ], # 0x73 's'
[ 1754, 10, 14, 14, 2, -13 ], # 0x74 't'
[ 1772, 12, 11, 14, 2, -10 ], # 0x75 'u'
[ 1789, 15, 11, 14, 1, -10 ], # 0x76 'v'
[ 1810, 14, 11, 14, 2, -10 ], # 0x77 'w'
[ 1830, 14, 11, 14, 1, -10 ], # 0x78 'x'
[ 1850, 16, 16, 14, 0, -10 ], # 0x79 'y'
[ 1882, 12, 11, 14, 2, -10 ], # 0x7A 'z'
[ 1899, 10, 19, 14, 4, -14 ], # 0x7B '['
[ 1923, 6, 19, 14, 5, -14 ], # 0x7C '|'
[ 1938, 9, 19, 14, 3, -14 ], # 0x7D ']'
[ 1960, 12, 4, 14, 3, -7 ] ] # 0x7E '~'
FreeMonoBoldOblique12pt7b = [
FreeMonoBoldOblique12pt7bBitmaps,
FreeMonoBoldOblique12pt7bGlyphs,
0x20, 0x7E, 24 ]
# Approx. 2638 bytes
| free_mono_bold_oblique12pt7b_bitmaps = [28, 243, 206, 56, 231, 28, 97, 134, 0, 99, 140, 0, 231, 231, 230, 198, 198, 196, 132, 3, 48, 25, 129, 220, 12, 224, 102, 31, 252, 255, 225, 152, 12, 192, 238, 6, 112, 255, 207, 254, 29, 192, 204, 6, 96, 119, 3, 48, 0, 1, 0, 112, 12, 7, 241, 254, 113, 204, 17, 128, 63, 3, 240, 15, 32, 110, 13, 195, 63, 231, 248, 28, 3, 0, 96, 12, 0, 14, 3, 224, 196, 16, 130, 48, 124, 7, 120, 124, 127, 25, 240, 98, 8, 65, 24, 62, 3, 128, 7, 193, 248, 98, 12, 1, 128, 56, 15, 3, 247, 111, 216, 243, 30, 127, 231, 248, 255, 109, 32, 6, 28, 112, 195, 6, 24, 48, 193, 131, 6, 12, 24, 48, 112, 96, 193, 0, 12, 24, 56, 48, 96, 193, 131, 6, 12, 48, 97, 195, 14, 56, 97, 194, 0, 6, 0, 192, 24, 63, 127, 254, 255, 7, 129, 248, 119, 12, 96, 3, 0, 112, 7, 0, 96, 6, 15, 255, 255, 240, 224, 12, 0, 192, 12, 1, 192, 24, 0, 28, 227, 28, 99, 8, 0, 127, 255, 255, 192, 127, 0, 0, 8, 0, 112, 1, 128, 14, 0, 112, 3, 128, 12, 0, 112, 3, 128, 12, 0, 112, 3, 128, 12, 0, 112, 3, 128, 12, 0, 112, 3, 128, 12, 0, 32, 0, 7, 131, 248, 227, 152, 55, 6, 192, 216, 27, 3, 224, 248, 27, 3, 96, 238, 56, 254, 15, 0, 3, 193, 240, 126, 12, 192, 56, 7, 0, 192, 24, 7, 0, 224, 24, 3, 0, 97, 255, 255, 240, 3, 224, 63, 131, 142, 56, 49, 129, 128, 24, 1, 192, 28, 1, 192, 56, 3, 128, 56, 71, 135, 63, 243, 255, 128, 7, 193, 255, 24, 112, 3, 0, 48, 6, 7, 192, 124, 0, 224, 6, 0, 96, 6, 193, 207, 248, 126, 0, 1, 224, 60, 15, 3, 96, 204, 59, 142, 99, 140, 97, 159, 251, 255, 1, 129, 248, 63, 0, 15, 241, 254, 24, 1, 128, 24, 3, 248, 63, 195, 142, 0, 96, 6, 0, 96, 12, 193, 207, 248, 126, 0, 3, 225, 252, 112, 28, 3, 0, 192, 27, 199, 252, 243, 152, 51, 6, 96, 206, 48, 252, 15, 0, 255, 255, 251, 7, 96, 192, 56, 6, 1, 192, 48, 14, 1, 128, 112, 28, 3, 128, 96, 8, 0, 7, 131, 248, 227, 176, 54, 6, 192, 220, 49, 252, 63, 140, 59, 3, 96, 108, 57, 254, 31, 0, 7, 129, 248, 99, 152, 51, 6, 96, 206, 121, 255, 30, 192, 24, 6, 1, 192, 113, 252, 62, 0, 25, 204, 0, 0, 0, 103, 48, 6, 28, 48, 0, 0, 0, 0, 56, 113, 195, 14, 24, 32, 0, 0, 24, 3, 192, 124, 31, 3, 224, 62, 0, 124, 1, 240, 3, 224, 7, 128, 8, 127, 251, 255, 192, 0, 0, 0, 0, 127, 251, 255, 192, 48, 1, 224, 7, 192, 15, 0, 62, 0, 124, 31, 3, 224, 124, 7, 128, 32, 0, 62, 127, 176, 248, 48, 24, 28, 28, 60, 56, 24, 0, 6, 7, 3, 0, 3, 192, 126, 12, 113, 131, 48, 51, 15, 51, 230, 118, 108, 102, 198, 108, 108, 252, 199, 236, 0, 192, 12, 0, 227, 7, 240, 60, 0, 7, 240, 31, 224, 7, 192, 31, 128, 59, 0, 231, 1, 142, 7, 28, 31, 248, 63, 240, 224, 113, 128, 239, 199, 255, 143, 192, 63, 241, 255, 195, 6, 56, 49, 193, 140, 24, 127, 195, 254, 56, 57, 192, 204, 6, 96, 111, 255, 127, 224, 3, 236, 63, 241, 195, 140, 6, 96, 25, 128, 12, 0, 48, 0, 192, 3, 0, 12, 3, 60, 28, 127, 224, 126, 0, 63, 225, 255, 135, 12, 48, 49, 129, 140, 12, 224, 103, 3, 48, 49, 129, 140, 12, 225, 207, 252, 127, 128, 31, 254, 63, 252, 56, 56, 112, 112, 204, 193, 152, 3, 240, 15, 224, 29, 128, 49, 24, 96, 112, 192, 231, 255, 159, 255, 0, 31, 255, 31, 254, 14, 6, 12, 14, 12, 196, 12, 192, 31, 192, 31, 192, 25, 192, 25, 128, 24, 0, 56, 0, 255, 0, 255, 0, 7, 236, 127, 243, 131, 156, 6, 96, 25, 128, 12, 0, 48, 254, 195, 251, 1, 204, 7, 60, 56, 127, 224, 126, 0, 15, 191, 31, 190, 14, 12, 12, 12, 12, 28, 12, 28, 31, 248, 31, 248, 24, 24, 24, 56, 24, 56, 56, 48, 124, 252, 252, 248, 63, 243, 255, 3, 0, 112, 7, 0, 96, 6, 0, 96, 14, 0, 224, 14, 0, 192, 255, 207, 252, 3, 255, 3, 255, 0, 56, 0, 48, 0, 48, 0, 48, 0, 112, 32, 112, 96, 96, 96, 96, 96, 224, 225, 192, 255, 128, 63, 0, 31, 159, 31, 158, 14, 56, 12, 112, 12, 224, 15, 192, 31, 192, 31, 224, 28, 224, 24, 96, 24, 112, 56, 112, 254, 60, 252, 60, 63, 193, 254, 1, 128, 28, 0, 224, 6, 0, 48, 1, 128, 28, 24, 224, 198, 6, 48, 127, 255, 255, 248, 30, 7, 135, 129, 224, 240, 240, 124, 124, 31, 31, 6, 207, 129, 191, 96, 239, 152, 59, 238, 12, 115, 131, 28, 192, 192, 48, 252, 126, 63, 31, 128, 60, 63, 62, 63, 30, 12, 31, 28, 31, 28, 27, 152, 59, 152, 59, 152, 49, 248, 49, 248, 48, 240, 112, 240, 252, 112, 248, 112, 3, 224, 63, 225, 195, 140, 7, 96, 13, 128, 60, 0, 240, 3, 192, 27, 0, 110, 3, 28, 56, 127, 192, 124, 0, 63, 225, 255, 131, 14, 56, 49, 193, 140, 12, 96, 195, 252, 63, 193, 192, 12, 0, 96, 15, 240, 127, 128, 3, 224, 63, 225, 195, 140, 7, 96, 13, 128, 60, 0, 240, 3, 192, 27, 0, 110, 3, 28, 56, 127, 192, 252, 3, 2, 31, 252, 255, 224, 31, 240, 63, 240, 56, 112, 96, 96, 192, 193, 135, 7, 252, 15, 240, 24, 240, 48, 224, 96, 193, 193, 207, 225, 255, 195, 192, 15, 177, 255, 48, 230, 6, 96, 103, 128, 127, 1, 252, 1, 196, 12, 192, 206, 24, 255, 139, 224, 127, 251, 255, 217, 207, 206, 124, 99, 99, 24, 24, 1, 192, 14, 0, 96, 3, 0, 24, 15, 248, 127, 192, 126, 255, 243, 243, 3, 28, 12, 96, 49, 129, 198, 6, 56, 24, 224, 99, 3, 140, 12, 48, 112, 127, 128, 248, 0, 252, 127, 248, 253, 192, 97, 129, 195, 135, 7, 12, 14, 56, 12, 96, 25, 192, 63, 0, 124, 0, 248, 0, 224, 1, 128, 0, 126, 126, 252, 253, 192, 115, 156, 231, 121, 142, 247, 27, 238, 54, 216, 125, 240, 243, 225, 231, 131, 143, 7, 30, 28, 56, 0, 31, 31, 31, 31, 14, 28, 7, 56, 7, 112, 3, 224, 3, 192, 3, 192, 7, 224, 14, 224, 28, 112, 56, 112, 252, 252, 252, 252, 248, 255, 199, 204, 56, 115, 131, 156, 15, 192, 124, 1, 192, 12, 0, 96, 3, 0, 56, 15, 248, 127, 128, 15, 248, 127, 225, 199, 134, 28, 24, 224, 7, 0, 56, 1, 192, 14, 0, 112, 195, 131, 28, 28, 127, 243, 255, 128, 15, 135, 195, 3, 129, 192, 192, 96, 48, 56, 28, 12, 6, 3, 3, 129, 192, 192, 96, 62, 63, 0, 65, 195, 131, 7, 14, 28, 24, 56, 112, 224, 193, 195, 131, 6, 14, 28, 24, 32, 31, 15, 128, 192, 224, 112, 48, 24, 12, 14, 7, 3, 1, 128, 192, 224, 112, 48, 24, 124, 62, 0, 2, 1, 128, 240, 126, 59, 156, 126, 31, 3, 255, 255, 255, 252, 206, 115, 31, 195, 254, 0, 96, 6, 15, 227, 254, 112, 204, 12, 195, 207, 255, 127, 240, 30, 0, 60, 0, 56, 0, 112, 0, 223, 129, 255, 131, 195, 143, 3, 28, 6, 56, 12, 112, 24, 224, 99, 225, 159, 254, 61, 248, 0, 15, 243, 255, 48, 118, 7, 224, 108, 0, 192, 12, 0, 224, 103, 254, 63, 128, 0, 60, 0, 240, 1, 192, 6, 7, 216, 127, 227, 15, 152, 30, 96, 115, 1, 204, 7, 48, 60, 225, 241, 255, 227, 247, 128, 15, 193, 254, 120, 118, 3, 255, 255, 255, 192, 12, 0, 224, 231, 254, 31, 128, 0, 252, 7, 248, 12, 0, 56, 1, 255, 7, 254, 1, 128, 7, 0, 14, 0, 24, 0, 48, 0, 96, 1, 192, 31, 248, 63, 240, 0, 15, 188, 127, 243, 15, 24, 28, 192, 115, 1, 140, 14, 48, 56, 227, 225, 255, 131, 236, 0, 48, 1, 192, 6, 7, 240, 31, 128, 30, 1, 240, 3, 0, 24, 0, 222, 15, 248, 120, 195, 134, 24, 48, 193, 142, 28, 112, 227, 6, 126, 255, 231, 224, 3, 128, 112, 0, 15, 193, 240, 6, 0, 192, 56, 7, 0, 192, 24, 3, 15, 255, 255, 192, 0, 112, 7, 0, 0, 255, 31, 240, 7, 0, 112, 6, 0, 96, 6, 0, 224, 14, 0, 192, 12, 0, 192, 28, 3, 135, 240, 254, 0, 30, 0, 120, 0, 224, 3, 128, 12, 252, 51, 224, 222, 7, 224, 31, 0, 124, 1, 248, 6, 240, 57, 195, 231, 239, 31, 128, 15, 129, 240, 6, 1, 192, 56, 6, 0, 192, 24, 7, 0, 224, 24, 3, 0, 97, 255, 255, 248, 63, 188, 127, 252, 243, 152, 198, 51, 156, 231, 57, 204, 99, 24, 198, 49, 141, 247, 191, 239, 120, 61, 225, 255, 143, 140, 56, 97, 131, 12, 24, 225, 199, 14, 48, 103, 239, 254, 126, 7, 193, 254, 56, 118, 3, 192, 60, 3, 192, 60, 6, 225, 199, 248, 62, 0, 30, 252, 31, 254, 15, 135, 15, 3, 14, 3, 14, 3, 14, 7, 14, 6, 31, 12, 31, 248, 25, 240, 24, 0, 24, 0, 56, 0, 254, 0, 254, 0, 15, 222, 63, 252, 195, 227, 3, 132, 7, 24, 14, 48, 28, 96, 120, 225, 224, 255, 192, 249, 128, 3, 0, 14, 0, 28, 1, 252, 3, 248, 30, 120, 127, 240, 124, 195, 192, 14, 0, 48, 0, 192, 3, 0, 28, 3, 255, 15, 252, 0, 7, 241, 255, 48, 115, 134, 63, 129, 254, 3, 230, 6, 224, 239, 252, 255, 0, 12, 7, 1, 131, 255, 255, 206, 3, 0, 192, 48, 28, 7, 1, 131, 127, 207, 192, 240, 255, 31, 96, 118, 7, 96, 118, 6, 96, 102, 14, 97, 231, 255, 62, 240, 126, 126, 252, 252, 224, 192, 195, 129, 134, 3, 152, 7, 112, 6, 192, 15, 128, 30, 0, 56, 0, 248, 127, 227, 230, 99, 27, 220, 111, 97, 255, 135, 252, 30, 240, 115, 129, 206, 6, 56, 0, 62, 124, 249, 241, 231, 3, 248, 7, 192, 31, 1, 252, 15, 56, 120, 251, 247, 239, 159, 128, 31, 31, 62, 31, 28, 28, 12, 24, 14, 56, 14, 112, 6, 96, 7, 224, 7, 192, 7, 192, 3, 128, 7, 0, 7, 0, 14, 0, 255, 0, 255, 0, 31, 241, 255, 56, 227, 28, 3, 128, 112, 14, 1, 198, 56, 103, 254, 127, 224, 1, 192, 240, 112, 24, 6, 3, 128, 224, 48, 28, 62, 15, 0, 96, 24, 6, 3, 128, 192, 48, 15, 1, 192, 12, 113, 199, 24, 99, 142, 48, 195, 28, 113, 134, 56, 227, 4, 0, 14, 7, 128, 192, 96, 112, 48, 24, 12, 6, 1, 193, 225, 192, 192, 224, 112, 48, 56, 120, 56, 0, 60, 39, 230, 239, 204, 56]
free_mono_bold_oblique12pt7b_glyphs = [[0, 0, 0, 14, 0, 1], [0, 6, 15, 14, 6, -14], [12, 8, 7, 14, 6, -13], [19, 13, 18, 14, 2, -15], [49, 11, 20, 14, 3, -16], [77, 11, 15, 14, 3, -14], [98, 11, 13, 14, 2, -12], [116, 3, 7, 14, 8, -13], [119, 7, 19, 14, 7, -14], [136, 7, 19, 14, 2, -14], [153, 11, 10, 14, 4, -14], [167, 12, 13, 14, 3, -12], [187, 6, 7, 14, 3, -2], [193, 13, 2, 14, 2, -7], [197, 3, 3, 14, 6, -2], [199, 14, 20, 14, 2, -16], [234, 11, 15, 14, 3, -14], [255, 11, 15, 14, 2, -14], [276, 13, 15, 14, 1, -14], [301, 12, 15, 14, 2, -14], [324, 11, 14, 14, 3, -13], [344, 12, 15, 14, 2, -14], [367, 11, 15, 14, 4, -14], [388, 11, 15, 14, 4, -14], [409, 11, 15, 14, 3, -14], [430, 11, 15, 14, 3, -14], [451, 5, 11, 14, 5, -10], [458, 7, 15, 14, 3, -10], [472, 13, 11, 14, 2, -11], [490, 13, 7, 14, 2, -9], [502, 13, 11, 14, 2, -11], [520, 9, 14, 14, 5, -13], [536, 12, 19, 14, 2, -14], [565, 15, 14, 14, 0, -13], [592, 13, 14, 14, 1, -13], [615, 14, 14, 14, 2, -13], [640, 13, 14, 14, 1, -13], [663, 15, 14, 14, 0, -13], [690, 16, 14, 14, 0, -13], [718, 14, 14, 14, 1, -13], [743, 16, 14, 14, 0, -13], [771, 12, 14, 14, 2, -13], [792, 16, 14, 14, 0, -13], [820, 16, 14, 14, 0, -13], [848, 13, 14, 14, 1, -13], [871, 18, 14, 14, 0, -13], [903, 16, 14, 14, 1, -13], [931, 14, 14, 14, 1, -13], [956, 13, 14, 14, 1, -13], [979, 14, 17, 14, 1, -13], [1009, 15, 14, 14, 0, -13], [1036, 12, 14, 14, 3, -13], [1057, 13, 14, 14, 2, -13], [1080, 14, 14, 14, 2, -13], [1105, 15, 14, 14, 1, -13], [1132, 15, 14, 14, 1, -13], [1159, 16, 14, 14, 0, -13], [1187, 13, 14, 14, 2, -13], [1210, 14, 14, 14, 1, -13], [1235, 9, 19, 14, 5, -14], [1257, 7, 20, 14, 5, -16], [1275, 9, 19, 14, 3, -14], [1297, 10, 8, 14, 4, -15], [1307, 15, 2, 14, -1, 4], [1311, 4, 4, 14, 7, -15], [1313, 12, 11, 14, 2, -10], [1330, 15, 15, 14, -1, -14], [1359, 12, 11, 14, 2, -10], [1376, 14, 15, 14, 2, -14], [1403, 12, 11, 14, 2, -10], [1420, 15, 15, 14, 2, -14], [1449, 14, 16, 14, 2, -10], [1477, 13, 15, 14, 1, -14], [1502, 11, 14, 14, 2, -13], [1522, 12, 19, 14, 1, -13], [1551, 14, 15, 14, 1, -14], [1578, 11, 15, 14, 2, -14], [1599, 15, 11, 14, 0, -10], [1620, 13, 11, 14, 1, -10], [1638, 12, 11, 14, 2, -10], [1655, 16, 16, 14, -1, -10], [1687, 15, 16, 14, 1, -10], [1717, 14, 11, 14, 1, -10], [1737, 12, 11, 14, 2, -10], [1754, 10, 14, 14, 2, -13], [1772, 12, 11, 14, 2, -10], [1789, 15, 11, 14, 1, -10], [1810, 14, 11, 14, 2, -10], [1830, 14, 11, 14, 1, -10], [1850, 16, 16, 14, 0, -10], [1882, 12, 11, 14, 2, -10], [1899, 10, 19, 14, 4, -14], [1923, 6, 19, 14, 5, -14], [1938, 9, 19, 14, 3, -14], [1960, 12, 4, 14, 3, -7]]
free_mono_bold_oblique12pt7b = [FreeMonoBoldOblique12pt7bBitmaps, FreeMonoBoldOblique12pt7bGlyphs, 32, 126, 24] |
# A list of applications to be added to INSTALLED_APPS.
ADD_INSTALLED_APPS = ['starlingx_dashboard']
FEATURE = ['starlingx_dashboard']
ADD_HEADER_SECTIONS = \
['starlingx_dashboard.dashboards.admin.active_alarms.views.BannerView', ]
ADD_SCSS_FILES = ['dashboard/scss/styles.scss',
'dashboard/scss/_host_topology.scss']
AUTO_DISCOVER_STATIC_FILES = True
| add_installed_apps = ['starlingx_dashboard']
feature = ['starlingx_dashboard']
add_header_sections = ['starlingx_dashboard.dashboards.admin.active_alarms.views.BannerView']
add_scss_files = ['dashboard/scss/styles.scss', 'dashboard/scss/_host_topology.scss']
auto_discover_static_files = True |
#
# Generated by generate.py
#
class VMCompilerInfo:
def getWordList(self):
return ["@","c@","!","c!",">r","r>",";","[literal]","[bzero]","[halt]","[nop]","+","nand","2/","0=","[temp]","[codebase]","[dictionary]","cursor!","screen!","keyboard@","blockread@","[stackreset]","blockwrite!","0","1","2","-1","dup","drop","swap","over","?dup","not","and","or","xor","1+","1-","negate","-","2*","0<","+!","[exec]","[next]"]
def getDictionaryBase(self):
return 0x0100
def getCodeBase(self):
return 0x1200
def getBaseLoadAddress(self):
return 0x0000
| class Vmcompilerinfo:
def get_word_list(self):
return ['@', 'c@', '!', 'c!', '>r', 'r>', ';', '[literal]', '[bzero]', '[halt]', '[nop]', '+', 'nand', '2/', '0=', '[temp]', '[codebase]', '[dictionary]', 'cursor!', 'screen!', 'keyboard@', 'blockread@', '[stackreset]', 'blockwrite!', '0', '1', '2', '-1', 'dup', 'drop', 'swap', 'over', '?dup', 'not', 'and', 'or', 'xor', '1+', '1-', 'negate', '-', '2*', '0<', '+!', '[exec]', '[next]']
def get_dictionary_base(self):
return 256
def get_code_base(self):
return 4608
def get_base_load_address(self):
return 0 |
# stack class (implemented in doubly-liunked list)
class Node(object):
# initialize node object
def __init__(self, value=0):
self.value = value
self.next = None
self.previous = None
# handle printing
def __str__(self):
return(f"{self.value}")
class Queue(object):
# initialize queue object
def __init__(self, node=None):
self.head = node
self.tail = node
# add to the queue
def enqueue(self, value):
new = Node(value)
if(self.head == None):
self.head = new
else:
self.tail.next = new
new.previous = self.tail
self.tail = new
# remove from the queue
def dequeue(self):
target = self.head
self.head = self.head.next
self.head.previous = None
return(target) | class Node(object):
def __init__(self, value=0):
self.value = value
self.next = None
self.previous = None
def __str__(self):
return f'{self.value}'
class Queue(object):
def __init__(self, node=None):
self.head = node
self.tail = node
def enqueue(self, value):
new = node(value)
if self.head == None:
self.head = new
else:
self.tail.next = new
new.previous = self.tail
self.tail = new
def dequeue(self):
target = self.head
self.head = self.head.next
self.head.previous = None
return target |
# Given an array of ints, return True if one of the first 4 elements in the
# array is a 9. The array length may be less than 4.
# array_front9([1, 2, 9, 3, 4]) --> True
# array_front9([1, 2, 3, 4, 9]) --> False
# array_front9([1, 2, 3, 4, 5]) --> False
def array_front9(nums):
return 9 in nums[:4]
print(array_front9([1, 2, 9, 3, 4]))
print(array_front9([1, 2, 3, 4, 9]))
print(array_front9([1, 2, 3, 4, 5]))
| def array_front9(nums):
return 9 in nums[:4]
print(array_front9([1, 2, 9, 3, 4]))
print(array_front9([1, 2, 3, 4, 9]))
print(array_front9([1, 2, 3, 4, 5])) |
# ----------------------------------------------------------------------------
# pyglet
# Copyright (c) 2006-2008 Alex Holkner
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
# * Neither the name of pyglet nor the names of its
# contributors may be used to endorse or promote products
# derived from this software without specific prior written
# permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
# ----------------------------------------------------------------------------
'''Run list encoding utilities.
:since: pyglet 1.1
'''
__docformat__ = 'restructuredtext'
__version__ = '$Id: $'
class _Run(object):
def __init__(self, value, count):
self.value = value
self.count = count
def __repr__(self):
return 'Run(%r, %d)' % (self.value, self.count)
class RunList(object):
'''List of contiguous runs of values.
A `RunList` is an efficient encoding of a sequence of values. For
example, the sequence ``aaaabbccccc`` is encoded as ``(4, a), (2, b),
(5, c)``. The class provides methods for modifying and querying the
run list without needing to deal with the tricky cases of splitting and
merging the run list entries.
Run lists are used to represent formatted character data in pyglet. A
separate run list is maintained for each style attribute, for example,
bold, italic, font size, and so on. Unless you are overriding the
document interfaces, the only interaction with run lists is via
`RunIterator`.
The length and ranges of a run list always refer to the character
positions in the decoded list. For example, in the above sequence,
``set_run(2, 5, 'x')`` would change the sequence to ``aaxxxbccccc``.
'''
def __init__(self, size, initial):
'''Create a run list of the given size and a default value.
:Parameters:
`size` : int
Number of characters to represent initially.
`initial` : object
The value of all characters in the run list.
'''
self.runs = [_Run(initial, size)]
def insert(self, pos, length):
'''Insert characters into the run list.
The inserted characters will take on the value immediately preceding
the insertion point (or the value of the first character, if `pos` is
0).
:Parameters:
`pos` : int
Insertion index
`length` : int
Number of characters to insert.
'''
i = 0
for run in self.runs:
if i <= pos <= i + run.count:
run.count += length
i += run.count
def delete(self, start, end):
'''Remove characters from the run list.
:Parameters:
`start` : int
Starting index to remove from.
`end` : int
End index, exclusive.
'''
i = 0
for run in self.runs:
if end - start == 0:
break
if i <= start <= i + run.count:
trim = min(end - start, i + run.count - start)
run.count -= trim
end -= trim
i += run.count
self.runs = [r for r in self.runs if r.count > 0]
# Don't leave an empty list
if not self.runs:
self.runs = [_Run(run.value, 0)]
def set_run(self, start, end, value):
'''Set the value of a range of characters.
:Parameters:
`start` : int
Start index of range.
`end` : int
End of range, exclusive.
`value` : object
Value to set over the range.
'''
if end - start <= 0:
return
# Find runs that need to be split
i = 0
start_i = None
start_trim = 0
end_i = None
end_trim = 0
for run_i, run in enumerate(self.runs):
count = run.count
if i < start < i + count:
start_i = run_i
start_trim = start - i
if i < end < i + count:
end_i = run_i
end_trim = end - i
i += count
# Split runs
if start_i is not None:
run = self.runs[start_i]
self.runs.insert(start_i, _Run(run.value, start_trim))
run.count -= start_trim
if end_i is not None:
if end_i == start_i:
end_trim -= start_trim
end_i += 1
if end_i is not None:
run = self.runs[end_i]
self.runs.insert(end_i, _Run(run.value, end_trim))
run.count -= end_trim
# Set new value on runs
i = 0
for run in self.runs:
if start <= i and i + run.count <= end:
run.value = value
i += run.count
# Merge adjacent runs
last_run = self.runs[0]
for run in self.runs[1:]:
if run.value == last_run.value:
run.count += last_run.count
last_run.count = 0
last_run = run
# Delete collapsed runs
self.runs = [r for r in self.runs if r.count > 0]
def __iter__(self):
i = 0
for run in self.runs:
yield i, i + run.count, run.value
i += run.count
def get_run_iterator(self):
'''Get an extended iterator over the run list.
:rtype: `RunIterator`
'''
return RunIterator(self)
def __getitem__(self, index):
'''Get the value at a character position.
:Parameters:
`index` : int
Index of character. Must be within range and non-negative.
:rtype: object
'''
i = 0
for run in self.runs:
if i <= index < i + run.count:
return run.value
i += run.count
# Append insertion point
if index == i:
return self.runs[-1].value
assert False, 'Index not in range'
def __repr__(self):
return str(list(self))
class AbstractRunIterator(object):
'''Range iteration over `RunList`.
`AbstractRunIterator` objects allow any monotonically non-decreasing
access of the iteration, including repeated iteration over the same index.
Use the ``[index]`` operator to get the value at a particular index within
the document. For example::
run_iter = iter(run_list)
value = run_iter[0]
value = run_iter[0] # non-decreasing access is OK
value = run_iter[15]
value = run_iter[17]
value = run_iter[16] # this is illegal, the index decreased.
Using `AbstractRunIterator` to access increasing indices of the value runs
is more efficient than calling `RunList.__getitem__` repeatedly.
You can also iterate over monotonically non-decreasing ranges over the
iteration. For example::
run_iter = iter(run_list)
for start, end, value in run_iter.ranges(0, 20):
pass
for start, end, value in run_iter.ranges(25, 30):
pass
for start, end, value in run_iter.ranges(30, 40):
pass
Both start and end indices of the slice are required and must be positive.
'''
def __getitem__(self, index):
'''Get the value at a given index.
See the class documentation for examples of valid usage.
:Parameters:
`index` : int
Document position to query.
:rtype: object
'''
def ranges(self, start, end):
'''Iterate over a subrange of the run list.
See the class documentation for examples of valid usage.
:Parameters:
`start` : int
Start index to iterate from.
`end` : int
End index, exclusive.
:rtype: iterator
:return: Iterator over (start, end, value) tuples.
'''
class RunIterator(AbstractRunIterator):
def __init__(self, run_list):
self._run_list_iter = iter(run_list)
self.start, self.end, self.value = self.next()
def next(self):
return self._run_list_iter.next()
def __getitem__(self, index):
while index >= self.end and index > self.start:
# condition has special case for 0-length run (fixes issue 471)
self.start, self.end, self.value = self.next()
return self.value
def ranges(self, start, end):
while start >= self.end:
self.start, self.end, self.value = self.next()
yield start, min(self.end, end), self.value
while end > self.end:
self.start, self.end, self.value = self.next()
yield self.start, min(self.end, end), self.value
class OverriddenRunIterator(AbstractRunIterator):
'''Iterator over a `RunIterator`, with a value temporarily replacing
a given range.
'''
def __init__(self, base_iterator, start, end, value):
'''Create a derived iterator.
:Parameters:
`start` : int
Start of range to override
`end` : int
End of range to override, exclusive
`value` : object
Value to replace over the range
'''
self.iter = base_iterator
self.override_start = start
self.override_end = end
self.override_value = value
def ranges(self, start, end):
if end <= self.override_start or start >= self.override_end:
# No overlap
for r in self.iter.ranges(start, end):
yield r
else:
# Overlap: before, override, after
if start < self.override_start < end:
for r in self.iter.ranges(start, self.override_start):
yield r
yield (max(self.override_start, start),
min(self.override_end, end),
self.override_value)
if start < self.override_end < end:
for r in self.iter.ranges(self.override_end, end):
yield r
def __getitem__(self, index):
if self.override_start <= index < self.override_end:
return self.override_value
else:
return self.iter[index]
class FilteredRunIterator(AbstractRunIterator):
'''Iterate over an `AbstractRunIterator` with filtered values replaced
by a default value.
'''
def __init__(self, base_iterator, filter, default):
'''Create a filtered run iterator.
:Parameters:
`base_iterator` : `AbstractRunIterator`
Source of runs.
`filter` : ``lambda object: bool``
Function taking a value as parameter, and returning ``True``
if the value is acceptable, and ``False`` if the default value
should be substituted.
`default` : object
Default value to replace filtered values.
'''
self.iter = base_iterator
self.filter = filter
self.default = default
def ranges(self, start, end):
for start, end, value in self.iter.ranges(start, end):
if self.filter(value):
yield start, end, value
else:
yield start, end, self.default
def __getitem__(self, index):
value = self.iter[index]
if self.filter(value):
return value
return self.default
class ZipRunIterator(AbstractRunIterator):
'''Iterate over multiple run iterators concurrently.'''
def __init__(self, range_iterators):
self.range_iterators = range_iterators
def ranges(self, start, end):
iterators = [i.ranges(start, end) for i in self.range_iterators]
starts, ends, values = zip(*[i.next() for i in iterators])
starts = list(starts)
ends = list(ends)
values = list(values)
while start < end:
min_end = min(ends)
yield start, min_end, values
start = min_end
for i, iterator in enumerate(iterators):
if ends[i] == min_end:
starts[i], ends[i], values[i] = iterator.next()
def __getitem__(self, index):
return [i[index] for i in self.range_iterators]
class ConstRunIterator(AbstractRunIterator):
'''Iterate over a constant value without creating a RunList.'''
def __init__(self, length, value):
self.length = length
self.value = value
def next(self):
yield 0, self.length, self.value
def ranges(self, start, end):
yield start, end, self.value
def __getitem__(self, index):
return self.value
| """Run list encoding utilities.
:since: pyglet 1.1
"""
__docformat__ = 'restructuredtext'
__version__ = '$Id: $'
class _Run(object):
def __init__(self, value, count):
self.value = value
self.count = count
def __repr__(self):
return 'Run(%r, %d)' % (self.value, self.count)
class Runlist(object):
"""List of contiguous runs of values.
A `RunList` is an efficient encoding of a sequence of values. For
example, the sequence ``aaaabbccccc`` is encoded as ``(4, a), (2, b),
(5, c)``. The class provides methods for modifying and querying the
run list without needing to deal with the tricky cases of splitting and
merging the run list entries.
Run lists are used to represent formatted character data in pyglet. A
separate run list is maintained for each style attribute, for example,
bold, italic, font size, and so on. Unless you are overriding the
document interfaces, the only interaction with run lists is via
`RunIterator`.
The length and ranges of a run list always refer to the character
positions in the decoded list. For example, in the above sequence,
``set_run(2, 5, 'x')`` would change the sequence to ``aaxxxbccccc``.
"""
def __init__(self, size, initial):
"""Create a run list of the given size and a default value.
:Parameters:
`size` : int
Number of characters to represent initially.
`initial` : object
The value of all characters in the run list.
"""
self.runs = [__run(initial, size)]
def insert(self, pos, length):
"""Insert characters into the run list.
The inserted characters will take on the value immediately preceding
the insertion point (or the value of the first character, if `pos` is
0).
:Parameters:
`pos` : int
Insertion index
`length` : int
Number of characters to insert.
"""
i = 0
for run in self.runs:
if i <= pos <= i + run.count:
run.count += length
i += run.count
def delete(self, start, end):
"""Remove characters from the run list.
:Parameters:
`start` : int
Starting index to remove from.
`end` : int
End index, exclusive.
"""
i = 0
for run in self.runs:
if end - start == 0:
break
if i <= start <= i + run.count:
trim = min(end - start, i + run.count - start)
run.count -= trim
end -= trim
i += run.count
self.runs = [r for r in self.runs if r.count > 0]
if not self.runs:
self.runs = [__run(run.value, 0)]
def set_run(self, start, end, value):
"""Set the value of a range of characters.
:Parameters:
`start` : int
Start index of range.
`end` : int
End of range, exclusive.
`value` : object
Value to set over the range.
"""
if end - start <= 0:
return
i = 0
start_i = None
start_trim = 0
end_i = None
end_trim = 0
for (run_i, run) in enumerate(self.runs):
count = run.count
if i < start < i + count:
start_i = run_i
start_trim = start - i
if i < end < i + count:
end_i = run_i
end_trim = end - i
i += count
if start_i is not None:
run = self.runs[start_i]
self.runs.insert(start_i, __run(run.value, start_trim))
run.count -= start_trim
if end_i is not None:
if end_i == start_i:
end_trim -= start_trim
end_i += 1
if end_i is not None:
run = self.runs[end_i]
self.runs.insert(end_i, __run(run.value, end_trim))
run.count -= end_trim
i = 0
for run in self.runs:
if start <= i and i + run.count <= end:
run.value = value
i += run.count
last_run = self.runs[0]
for run in self.runs[1:]:
if run.value == last_run.value:
run.count += last_run.count
last_run.count = 0
last_run = run
self.runs = [r for r in self.runs if r.count > 0]
def __iter__(self):
i = 0
for run in self.runs:
yield (i, i + run.count, run.value)
i += run.count
def get_run_iterator(self):
"""Get an extended iterator over the run list.
:rtype: `RunIterator`
"""
return run_iterator(self)
def __getitem__(self, index):
"""Get the value at a character position.
:Parameters:
`index` : int
Index of character. Must be within range and non-negative.
:rtype: object
"""
i = 0
for run in self.runs:
if i <= index < i + run.count:
return run.value
i += run.count
if index == i:
return self.runs[-1].value
assert False, 'Index not in range'
def __repr__(self):
return str(list(self))
class Abstractruniterator(object):
"""Range iteration over `RunList`.
`AbstractRunIterator` objects allow any monotonically non-decreasing
access of the iteration, including repeated iteration over the same index.
Use the ``[index]`` operator to get the value at a particular index within
the document. For example::
run_iter = iter(run_list)
value = run_iter[0]
value = run_iter[0] # non-decreasing access is OK
value = run_iter[15]
value = run_iter[17]
value = run_iter[16] # this is illegal, the index decreased.
Using `AbstractRunIterator` to access increasing indices of the value runs
is more efficient than calling `RunList.__getitem__` repeatedly.
You can also iterate over monotonically non-decreasing ranges over the
iteration. For example::
run_iter = iter(run_list)
for start, end, value in run_iter.ranges(0, 20):
pass
for start, end, value in run_iter.ranges(25, 30):
pass
for start, end, value in run_iter.ranges(30, 40):
pass
Both start and end indices of the slice are required and must be positive.
"""
def __getitem__(self, index):
"""Get the value at a given index.
See the class documentation for examples of valid usage.
:Parameters:
`index` : int
Document position to query.
:rtype: object
"""
def ranges(self, start, end):
"""Iterate over a subrange of the run list.
See the class documentation for examples of valid usage.
:Parameters:
`start` : int
Start index to iterate from.
`end` : int
End index, exclusive.
:rtype: iterator
:return: Iterator over (start, end, value) tuples.
"""
class Runiterator(AbstractRunIterator):
def __init__(self, run_list):
self._run_list_iter = iter(run_list)
(self.start, self.end, self.value) = self.next()
def next(self):
return self._run_list_iter.next()
def __getitem__(self, index):
while index >= self.end and index > self.start:
(self.start, self.end, self.value) = self.next()
return self.value
def ranges(self, start, end):
while start >= self.end:
(self.start, self.end, self.value) = self.next()
yield (start, min(self.end, end), self.value)
while end > self.end:
(self.start, self.end, self.value) = self.next()
yield (self.start, min(self.end, end), self.value)
class Overriddenruniterator(AbstractRunIterator):
"""Iterator over a `RunIterator`, with a value temporarily replacing
a given range.
"""
def __init__(self, base_iterator, start, end, value):
"""Create a derived iterator.
:Parameters:
`start` : int
Start of range to override
`end` : int
End of range to override, exclusive
`value` : object
Value to replace over the range
"""
self.iter = base_iterator
self.override_start = start
self.override_end = end
self.override_value = value
def ranges(self, start, end):
if end <= self.override_start or start >= self.override_end:
for r in self.iter.ranges(start, end):
yield r
else:
if start < self.override_start < end:
for r in self.iter.ranges(start, self.override_start):
yield r
yield (max(self.override_start, start), min(self.override_end, end), self.override_value)
if start < self.override_end < end:
for r in self.iter.ranges(self.override_end, end):
yield r
def __getitem__(self, index):
if self.override_start <= index < self.override_end:
return self.override_value
else:
return self.iter[index]
class Filteredruniterator(AbstractRunIterator):
"""Iterate over an `AbstractRunIterator` with filtered values replaced
by a default value.
"""
def __init__(self, base_iterator, filter, default):
"""Create a filtered run iterator.
:Parameters:
`base_iterator` : `AbstractRunIterator`
Source of runs.
`filter` : ``lambda object: bool``
Function taking a value as parameter, and returning ``True``
if the value is acceptable, and ``False`` if the default value
should be substituted.
`default` : object
Default value to replace filtered values.
"""
self.iter = base_iterator
self.filter = filter
self.default = default
def ranges(self, start, end):
for (start, end, value) in self.iter.ranges(start, end):
if self.filter(value):
yield (start, end, value)
else:
yield (start, end, self.default)
def __getitem__(self, index):
value = self.iter[index]
if self.filter(value):
return value
return self.default
class Zipruniterator(AbstractRunIterator):
"""Iterate over multiple run iterators concurrently."""
def __init__(self, range_iterators):
self.range_iterators = range_iterators
def ranges(self, start, end):
iterators = [i.ranges(start, end) for i in self.range_iterators]
(starts, ends, values) = zip(*[i.next() for i in iterators])
starts = list(starts)
ends = list(ends)
values = list(values)
while start < end:
min_end = min(ends)
yield (start, min_end, values)
start = min_end
for (i, iterator) in enumerate(iterators):
if ends[i] == min_end:
(starts[i], ends[i], values[i]) = iterator.next()
def __getitem__(self, index):
return [i[index] for i in self.range_iterators]
class Construniterator(AbstractRunIterator):
"""Iterate over a constant value without creating a RunList."""
def __init__(self, length, value):
self.length = length
self.value = value
def next(self):
yield (0, self.length, self.value)
def ranges(self, start, end):
yield (start, end, self.value)
def __getitem__(self, index):
return self.value |
def stage(ctx):
return {
"parent": "Tarball",
"triggers": {
"parent": True
},
"parameters": [],
"configs": [],
"jobs": [{
"name": "pytest agent",
"steps": [{
"tool": "shell",
"cmd": "sudo apt update && sudo apt-get install -y python3-pip || ps axf",
"timeout": 300
}, {
"tool": "shell",
"cmd": "sudo pip3 install pytest"
}, {
"tool": "artifacts",
"action": "download",
"source": "kraken.tar.gz"
}, {
"tool": "shell",
"cmd": "tar -zxf kraken.tar.gz"
}, {
"tool": "shell",
"cmd": "sudo pip3 install -r requirements.txt",
"cwd": "kraken/agent"
}, {
"tool": "shell",
"cmd": "cp consts.py logs.py ../../../agent/kraken/agent",
"cwd": "kraken/server/kraken/server"
}, {
"tool": "pytest",
"pytest_exe": "pytest",
"params": "-vv",
"cwd": "kraken/agent"
}],
"environments": [{
#"system": "krakenci/ubuntu:20.04",
#"agents_group": "docker",
#"executor": "docker",
"system": "Canonical:0001-com-ubuntu-server-focal:20_04-lts:20.04.202109080",
"agents_group": "azure-vm",
"config": "default"
}]
}, {
"name": "pytest server",
"timeout": 1200,
"steps": [{
"tool": "shell",
"cmd": "sudo apt-get update && sudo apt-get install -y --no-install-recommends apt-transport-https software-properties-common postgresql-client python3-pip python curl gpg-agent",
"timeout": 300
}, {
"tool": "shell",
"cmd": "bash -c \"curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - && sudo add-apt-repository 'deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable' && sudo apt update && sudo DEBIAN_FRONTEND=noninteractive apt-get install -y docker-ce-cli\"",
"timeout": 300
}, {
"tool": "shell",
"cmd": "docker run --rm --name kkut -p 15432:5432 -e POSTGRES_DB=kkut -e POSTGRES_USER=kkut -e POSTGRES_PASSWORD=kkut postgres:11",
"background": True,
"timeout": 12400
}, {
"tool": "artifacts",
"action": "download",
"source": "kraken.tar.gz"
}, {
"tool": "shell",
"cmd": "tar -zxf kraken.tar.gz"
}, {
"tool": "shell",
"cmd": "sudo pip3 install poetry",
}, {
"tool": "shell",
"cmd": "poetry install",
"cwd": "kraken/server",
"timeout": 500
}, {
"tool": "shell",
"cmd": "echo 'version = \'0.0\'' > version.py",
"cwd": "kraken/server/kraken",
}, {
"tool": "pytest",
"pytest_exe": "POSTGRES_URL=postgresql://kkut:kkut@172.17.0.1:15432/ poetry run pytest",
"cwd": "kraken/server"
}],
"environments": [{
"system": "krakenci/ubuntu:20.04",
"agents_group": "docker",
"executor": "docker",
#"system": "ubuntu:20.04",
#"agents_group": "aws-ecs-fg",
"config": "default"
}]
}],
"notification": {
"slack": {"channel": "kk-results"},
"email": "godfryd@gmail.com",
"github": {"credentials": "#{KK_SECRET_SIMPLE_gh_status_creds}"}
}
}
| def stage(ctx):
return {'parent': 'Tarball', 'triggers': {'parent': True}, 'parameters': [], 'configs': [], 'jobs': [{'name': 'pytest agent', 'steps': [{'tool': 'shell', 'cmd': 'sudo apt update && sudo apt-get install -y python3-pip || ps axf', 'timeout': 300}, {'tool': 'shell', 'cmd': 'sudo pip3 install pytest'}, {'tool': 'artifacts', 'action': 'download', 'source': 'kraken.tar.gz'}, {'tool': 'shell', 'cmd': 'tar -zxf kraken.tar.gz'}, {'tool': 'shell', 'cmd': 'sudo pip3 install -r requirements.txt', 'cwd': 'kraken/agent'}, {'tool': 'shell', 'cmd': 'cp consts.py logs.py ../../../agent/kraken/agent', 'cwd': 'kraken/server/kraken/server'}, {'tool': 'pytest', 'pytest_exe': 'pytest', 'params': '-vv', 'cwd': 'kraken/agent'}], 'environments': [{'system': 'Canonical:0001-com-ubuntu-server-focal:20_04-lts:20.04.202109080', 'agents_group': 'azure-vm', 'config': 'default'}]}, {'name': 'pytest server', 'timeout': 1200, 'steps': [{'tool': 'shell', 'cmd': 'sudo apt-get update && sudo apt-get install -y --no-install-recommends apt-transport-https software-properties-common postgresql-client python3-pip python curl gpg-agent', 'timeout': 300}, {'tool': 'shell', 'cmd': 'bash -c "curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - && sudo add-apt-repository \'deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable\' && sudo apt update && sudo DEBIAN_FRONTEND=noninteractive apt-get install -y docker-ce-cli"', 'timeout': 300}, {'tool': 'shell', 'cmd': 'docker run --rm --name kkut -p 15432:5432 -e POSTGRES_DB=kkut -e POSTGRES_USER=kkut -e POSTGRES_PASSWORD=kkut postgres:11', 'background': True, 'timeout': 12400}, {'tool': 'artifacts', 'action': 'download', 'source': 'kraken.tar.gz'}, {'tool': 'shell', 'cmd': 'tar -zxf kraken.tar.gz'}, {'tool': 'shell', 'cmd': 'sudo pip3 install poetry'}, {'tool': 'shell', 'cmd': 'poetry install', 'cwd': 'kraken/server', 'timeout': 500}, {'tool': 'shell', 'cmd': "echo 'version = '0.0'' > version.py", 'cwd': 'kraken/server/kraken'}, {'tool': 'pytest', 'pytest_exe': 'POSTGRES_URL=postgresql://kkut:kkut@172.17.0.1:15432/ poetry run pytest', 'cwd': 'kraken/server'}], 'environments': [{'system': 'krakenci/ubuntu:20.04', 'agents_group': 'docker', 'executor': 'docker', 'config': 'default'}]}], 'notification': {'slack': {'channel': 'kk-results'}, 'email': 'godfryd@gmail.com', 'github': {'credentials': '#{KK_SECRET_SIMPLE_gh_status_creds}'}}} |
# Copyright 2019 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# 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.
"""Unit tests for build_test.bzl."""
load("//rules:build_test.bzl", "build_test")
def build_test_test_suite():
# Since the rules doesn't do anything really, it just makes some targets
# to get Bazel to build other targets via a `bazel test`, just make some
# targets to exercise the rule.
# Make a source file
native.genrule(
name = "build_test__make_src",
outs = ["build_test__src.cc"],
cmd = "echo 'int dummy() { return 0; }' > $@",
)
# Use it in a non-test target
native.cc_library(
name = "build_test__build_target",
srcs = [":build_test__make_src"],
)
# Wrap a build test around the target.
build_test(
name = "build_test__test",
targets = [":build_test__build_target"],
)
| """Unit tests for build_test.bzl."""
load('//rules:build_test.bzl', 'build_test')
def build_test_test_suite():
native.genrule(name='build_test__make_src', outs=['build_test__src.cc'], cmd="echo 'int dummy() { return 0; }' > $@")
native.cc_library(name='build_test__build_target', srcs=[':build_test__make_src'])
build_test(name='build_test__test', targets=[':build_test__build_target']) |
def startUP():
pass
def carmDown():
pass
| def start_up():
pass
def carm_down():
pass |
"""
object_adventure.py
A text adventure with objects you can pick up and put down.
"""
# data setup
rooms = {
'empty': {'name': 'an empty room',
'east': 'bedroom', 'north': 'temple',
'contents': [],
'text': 'The stone floors and walls are cold and damp.'},
'temple': {'name': 'a small temple',
'east': 'torture', 'south': 'empty',
'contents': ['bench', 'bench', 'bench', 'statue'],
'text': 'This seems to be a place of worship and deep contemplation.'},
'torture': {'name': 'a torture chamber',
'west': 'temple', 'south': 'bedroom',
'contents': ['chains', 'thumbscrews'],
'text': 'There is a rack and an iron maiden against the wall\naand some dark stains on the floor.'},
'bedroom': {'name': 'a bedroom',
'north': 'torture', 'west': 'empty',
'contents': ['sheets', 'bed'],
'text': 'This is clearly a bedroom, but no one has slept\nhere in a long time.'}
}
directions = ['north', 'south', 'east', 'west']
current_room = rooms['empty']
carrying = []
# game loop
while True:
# display current location
print()
print('You are in {}.'.format(current_room['name']))
print(current_room['text'])
# display movable objects
if current_room['contents']:
print('In the room are: {}'.format(', '.join(current_room['contents'])))
# get user input
command = input('\nWhat do you do? ').strip()
# movement
if command in directions:
if command in current_room:
current_room = rooms[current_room[command]]
else:
# bad movement
print("You can't go that way.")
# quit game
elif command.lower() in ('q', 'quit'):
break
# gather objects
elif command.lower().split()[0] == 'get':
item = command.lower().split()[1]
if item in current_room['contents']:
current_room['contents'].remove(item)
carrying.append(item)
else:
print("I don't see that here.")
# get rid of objects
elif command.lower().split()[0] == 'drop':
item = command.lower().split()[1]
if item in carrying:
current_room['contents'].append(item)
carrying.remove(item)
else:
print("You aren't carrying that.")
# bad command
else:
print("I don't understand that command.") | """
object_adventure.py
A text adventure with objects you can pick up and put down.
"""
rooms = {'empty': {'name': 'an empty room', 'east': 'bedroom', 'north': 'temple', 'contents': [], 'text': 'The stone floors and walls are cold and damp.'}, 'temple': {'name': 'a small temple', 'east': 'torture', 'south': 'empty', 'contents': ['bench', 'bench', 'bench', 'statue'], 'text': 'This seems to be a place of worship and deep contemplation.'}, 'torture': {'name': 'a torture chamber', 'west': 'temple', 'south': 'bedroom', 'contents': ['chains', 'thumbscrews'], 'text': 'There is a rack and an iron maiden against the wall\naand some dark stains on the floor.'}, 'bedroom': {'name': 'a bedroom', 'north': 'torture', 'west': 'empty', 'contents': ['sheets', 'bed'], 'text': 'This is clearly a bedroom, but no one has slept\nhere in a long time.'}}
directions = ['north', 'south', 'east', 'west']
current_room = rooms['empty']
carrying = []
while True:
print()
print('You are in {}.'.format(current_room['name']))
print(current_room['text'])
if current_room['contents']:
print('In the room are: {}'.format(', '.join(current_room['contents'])))
command = input('\nWhat do you do? ').strip()
if command in directions:
if command in current_room:
current_room = rooms[current_room[command]]
else:
print("You can't go that way.")
elif command.lower() in ('q', 'quit'):
break
elif command.lower().split()[0] == 'get':
item = command.lower().split()[1]
if item in current_room['contents']:
current_room['contents'].remove(item)
carrying.append(item)
else:
print("I don't see that here.")
elif command.lower().split()[0] == 'drop':
item = command.lower().split()[1]
if item in carrying:
current_room['contents'].append(item)
carrying.remove(item)
else:
print("You aren't carrying that.")
else:
print("I don't understand that command.") |
#global field?
gname='tristan in GGGGGG!!!'
class c(object):
cname='tristan in CCCCCCC!!!!'
def f(self):
fname='tristan in FFFFFF!!!'
print(fname)
print(self.cname)
print(gname)
def f2(self,test):
fname=test
print(fname)
| gname = 'tristan in GGGGGG!!!'
class C(object):
cname = 'tristan in CCCCCCC!!!!'
def f(self):
fname = 'tristan in FFFFFF!!!'
print(fname)
print(self.cname)
print(gname)
def f2(self, test):
fname = test
print(fname) |
# Xs and Os, Nobody Knows
# Create a function that takes a string, checks if it has the same number of "x"s and "o"s and returns either True or False.
# Return a boolean value (True or False).
# The string can contain any character.
# When no x and no o are in the string, return True.
def XO(txt):
return len(list(filter(lambda x: x== "x" or x== "X", list(txt)))) == len(list(filter(lambda x: x== "o" or x== "O", list(txt))))
print(XO("ooxx")) #True
print(XO("ooxXm") ) # True
print(XO("xooxx")) #False | def xo(txt):
return len(list(filter(lambda x: x == 'x' or x == 'X', list(txt)))) == len(list(filter(lambda x: x == 'o' or x == 'O', list(txt))))
print(xo('ooxx'))
print(xo('ooxXm'))
print(xo('xooxx')) |
# Definition for singly-linked list.
class ListNode:
def __init__(self, x):
self.val = x
self.next = None
class Solution:
def middleNode(self, head: ListNode) -> ListNode:
slowptr = head
fastptr = head
while(fastptr and fastptr.next):
fastptr = fastptr.next.next
slowptr = slowptr.next
return slowptr.val
print(Solution().middleNode(ListNode([1,2,3,4,5,6])))
| class Listnode:
def __init__(self, x):
self.val = x
self.next = None
class Solution:
def middle_node(self, head: ListNode) -> ListNode:
slowptr = head
fastptr = head
while fastptr and fastptr.next:
fastptr = fastptr.next.next
slowptr = slowptr.next
return slowptr.val
print(solution().middleNode(list_node([1, 2, 3, 4, 5, 6]))) |
# config.py
# AWS IoT endpoint settings
HOST_NAME = "<URL>-ats.iot.us-east-1.amazonaws.com"
HOST_PORT = 8883
# Thing certs & keys
PRIVATE_KEY = "/home/pi/certs9000/private.pem.key"
DEVICE_CERT = "/home/pi/certs9000/certificate.pem.crt"
ROOT_CERT = "/home/pi/certs9000/root-CA.crt"
# Message settings
TOPIC_SENSOR = "$aws/things/CarPen9000/sensor"
TOPIC_ASK_SENSOR = "$aws/things/CarPen9000/askSensor"
TOPIC_DOOR = "$aws/things/CarPen9000/door"
QOS_LEVEL = 1
# GPIO PIN CONFIG
# In the future, fetch this from cloud config, so you can change as needed, without having to change code.
PIN_MOTOR_OPEN = 4
PIN_MOTOR_CLOSE = 14
PIN_DOOR_SENSOR = 21
# RGB LED PINS
PIN_LED_RED = 17
PIN_LED_GREEN = 27
PIN_LED_BLUE = 22 | host_name = '<URL>-ats.iot.us-east-1.amazonaws.com'
host_port = 8883
private_key = '/home/pi/certs9000/private.pem.key'
device_cert = '/home/pi/certs9000/certificate.pem.crt'
root_cert = '/home/pi/certs9000/root-CA.crt'
topic_sensor = '$aws/things/CarPen9000/sensor'
topic_ask_sensor = '$aws/things/CarPen9000/askSensor'
topic_door = '$aws/things/CarPen9000/door'
qos_level = 1
pin_motor_open = 4
pin_motor_close = 14
pin_door_sensor = 21
pin_led_red = 17
pin_led_green = 27
pin_led_blue = 22 |
# coding: utf-8
#
# Copyright 2022 :Barry-Thomas-Paul: Moss
#
# 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.
#
# Const Class
# this is a auto generated file generated by Cheetah
# Libre Office Version: 7.3
# Namespace: com.sun.star.embed
class EmbedVerbs(object):
"""
Const Class
This constants set contains possible verbs for a contained object.
See Also:
`API EmbedVerbs <https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star_1_1embed_1_1EmbedVerbs.html>`_
"""
__ooo_ns__: str = 'com.sun.star.embed'
__ooo_full_ns__: str = 'com.sun.star.embed.EmbedVerbs'
__ooo_type_name__: str = 'const'
MS_OLEVERB_PRIMARY = 0
"""
lets the object do default activation, as by double-click.
"""
MS_OLEVERB_SHOW = -1
"""
lets the object open itself for editing of viewing.
"""
MS_OLEVERB_OPEN = -2
"""
lets the object activate itself outplace.
"""
MS_OLEVERB_HIDE = -3
"""
lets the inplace object remove its UI from container.
"""
MS_OLEVERB_UIACTIVATE = -4
"""
lets the object proceed with UI activation.
"""
MS_OLEVERB_IPACTIVATE = -5
"""
lets the object activate itself inplace.
"""
MS_OLEVERB_DISCARDUNDOSTATE = -6
"""
lets the object forget any undo state.
"""
__all__ = ['EmbedVerbs']
| class Embedverbs(object):
"""
Const Class
This constants set contains possible verbs for a contained object.
See Also:
`API EmbedVerbs <https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star_1_1embed_1_1EmbedVerbs.html>`_
"""
__ooo_ns__: str = 'com.sun.star.embed'
__ooo_full_ns__: str = 'com.sun.star.embed.EmbedVerbs'
__ooo_type_name__: str = 'const'
ms_oleverb_primary = 0
'\n lets the object do default activation, as by double-click.\n '
ms_oleverb_show = -1
'\n lets the object open itself for editing of viewing.\n '
ms_oleverb_open = -2
'\n lets the object activate itself outplace.\n '
ms_oleverb_hide = -3
'\n lets the inplace object remove its UI from container.\n '
ms_oleverb_uiactivate = -4
'\n lets the object proceed with UI activation.\n '
ms_oleverb_ipactivate = -5
'\n lets the object activate itself inplace.\n '
ms_oleverb_discardundostate = -6
'\n lets the object forget any undo state.\n '
__all__ = ['EmbedVerbs'] |
def fiboarray(n):
fibo = [0,1]
for i in range (2,n):
fibo.append(fibo[i-1] + fibo[i-2])
return fibo
def fiboarray_extended(a,b):
max_fibo = fiboarray(max(abs(a),abs(b))+1)
output = []
for i in range (a,b):
if (i < 0):
output.append(-int(pow(-1,i)) * max_fibo[-i])
else:
output.append(max_fibo[i])
return output
#print(fiboarray(int(input())))
#print(fiboarray_extended(int(input()),int(input()))) | def fiboarray(n):
fibo = [0, 1]
for i in range(2, n):
fibo.append(fibo[i - 1] + fibo[i - 2])
return fibo
def fiboarray_extended(a, b):
max_fibo = fiboarray(max(abs(a), abs(b)) + 1)
output = []
for i in range(a, b):
if i < 0:
output.append(-int(pow(-1, i)) * max_fibo[-i])
else:
output.append(max_fibo[i])
return output |
expected_output = {
"instance_id": {
4097: {"lisp": 0},
4099: {"lisp": 0},
4100: {"lisp": 0},
8188: {
"lisp": 0,
"site_name": {
"site_uci": {
"any-mac": {
"last_register": "never",
"up": "no",
"who_last_registered": "--",
"inst_id": 8188,
},
"1416.9dff.e928/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.eae8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.eb28/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.ebc8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.1328/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.13e8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.16c8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.2428/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.10a9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.01eb/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.1bcb/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.248b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.254b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.264b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.260c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.278b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.d16f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.1074/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.10b4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.10d4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.54f4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.5616/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.6816/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.6955/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.6ad5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.6af5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.6a16/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.6d95/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.6ef5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.6ff5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7095/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.70d5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7395/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.73f5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7336/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7495/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7416/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7555/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.75f5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7695/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.76f5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.77b5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7855/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7875/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7895/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.78f5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7836/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7955/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7975/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7936/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7a55/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7af5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7a36/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7b75/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7b95/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7bb5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7bf5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7c75/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7cd5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7cf5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7d55/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7dd5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.7e55/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.8436/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.8555/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.8636/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"1416.9dff.89f5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6e29/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8188,
},
"2c57.41ff.96ec/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8188,
},
"2c57.41ff.9929/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8188,
},
"2c57.41ff.9a41/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8188,
},
"2c57.41ff.9b58/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8188,
},
"2c57.41ff.9b78/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8188,
},
"2c57.41ff.9b90/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8188,
},
"2c57.41ff.9ba0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8188,
},
"2c57.41ff.a6cc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8188,
},
"2c57.41ff.a6d4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8188,
},
"2c57.41ff.a6d8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8188,
},
"2c57.41ff.af5c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8188,
},
"2c57.41ff.afa0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8188,
},
"2c57.41ff.b1e0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8188,
},
"2c57.41ff.b1e8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8188,
},
"2c57.41ff.b119/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8188,
},
"2c57.41ff.b11d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8188,
},
"2c57.41ff.b121/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8188,
},
"2c57.41ff.b270/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8188,
},
"2c57.41ff.b29c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8188,
},
"2c57.41ff.b2bc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8188,
},
"2c57.41ff.b2d0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8188,
},
"2c57.41ff.b2d8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8188,
},
"2c57.41ff.b231/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8188,
},
"2c57.41ff.b23d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8188,
},
"2c57.41ff.b245/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8188,
},
"2c57.41ff.b251/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8188,
},
"2c57.41ff.b360/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8188,
},
"2c57.41ff.b368/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8188,
},
"2c57.41ff.b37c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8188,
},
"2c57.41ff.b390/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8188,
},
"2c57.41ff.b39c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8188,
},
"2c57.41ff.b3b4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8188,
},
"2c57.41ff.b3c8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8188,
},
"2c57.41ff.b3cc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8188,
},
"2c57.41ff.b3d0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8188,
},
"2c57.41ff.b3dc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8188,
},
"2c57.41ff.b3e4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8188,
},
"2c57.41ff.b3e8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8188,
},
"2c57.41ff.b3ec/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8188,
},
"2c57.41ff.b305/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8188,
},
"2c57.41ff.b309/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8188,
},
"2c57.41ff.b31d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8188,
},
"2c57.41ff.b325/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8188,
},
"2c57.41ff.b32d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8188,
},
"2c57.41ff.b331/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8188,
},
"2c57.41ff.b335/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8188,
},
"2c57.41ff.b33d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8188,
},
"2c57.41ff.b34d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8188,
},
"2c57.41ff.b458/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8188,
},
"2c57.41ff.b45c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8188,
},
"2c57.41ff.b468/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8188,
},
"2c57.41ff.b478/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8188,
},
"2c57.41ff.b488/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8188,
},
"2c57.41ff.b564/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8188,
},
"2c57.41ff.b568/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8188,
},
"2c57.41ff.b5a4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8188,
},
"2c57.41ff.b5fc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8188,
},
"2c57.41ff.74e3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1a07/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1cc6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.67c6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.d7a7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.4768/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.48e7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.4808/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.4a28/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.4be7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.4b08/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.4b68/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.4c08/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.4f87/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.50e7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5108/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5268/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5908/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5948/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5aa7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5ac7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5b87/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5ba7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5bc7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5b28/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5b48/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5b68/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5cc7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5ce7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5c48/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5c68/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5d87/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5dc7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5de7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5d08/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5d28/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5ea7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5ec7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5ee7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5e08/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5e28/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5e68/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5f87/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5fa7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5fc7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5fe7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5f08/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6087/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.60a7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.60e7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6008/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6028/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6048/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.61a7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.61c7/48": {
"last_register": "2d17h",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.61e7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6168/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6287/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.62a7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.62e7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6208/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6248/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.63a7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.63e7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6308/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6328/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6348/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6368/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6487/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.64a7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.64c7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.64e7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6428/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6448/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6468/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6587/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.65a7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6528/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6548/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6568/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.66a7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.66c7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.66e7/48": {
"last_register": "2w0d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6668/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.67a7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.67c7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.67e7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6728/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6887/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.68c7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.68e7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6808/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.69c7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6948/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6968/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6ac7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6a48/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6a68/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6bc7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6b08/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6b48/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6dc7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6d48/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.76e7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.7987/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.79e7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.7908/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.7ac7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.7a68/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.7b87/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.8068/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.8168/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.8708/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.8768/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.ef69/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.f029/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.f069/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.f1c8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.f249/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.f269/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.f3c8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.f3e8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.f4a8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.f529/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.f549/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.f569/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.f688/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.f6a8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.f649/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.f7a8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.f7e8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.f729/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.f749/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.0469/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.05e8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1109/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1288/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1269/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1388/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.13e8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1309/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1369/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1488/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1469/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1588/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1629/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.17a8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.17c8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.18c8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1988/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.19c8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1aa8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1a49/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1bc8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1be8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.46e8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.4c88/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.5309/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.6e09/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.8688/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.87a8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.ab4a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.bc4a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.bd89/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.bda9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.bdc9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.bd2a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.be89/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.bea9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.02a9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.0ac9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.156a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.192a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.194a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.196a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1ac9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1ae9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1ba9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1b0a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1e2a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1e4a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1e6a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1fc9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1fe9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1f2a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.1f4a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2089/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.20e9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.200a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.202a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.204a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.206a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.21a9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.21c9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.21e9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.210a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.212a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.214a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2289/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.22a9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.22c9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.22e9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.220a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.222a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.224a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.226a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2389/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.23a9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.23c9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.23e9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.230a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.232a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.234a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.236a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2489/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.24a9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.24c9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.24e9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.240a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.244a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.246a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.25a9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.25e9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.250a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.252a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.256a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2689/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.26a9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.26c9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.26e9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.260a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.262a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.266a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2789/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.27a9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.27c9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.27e9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.270a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.272a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.274a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.276a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.28a9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.28c9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.28e9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.280a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.282a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.284a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.286a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2989/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.29a9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.29c9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.29e9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.290a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.294a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.296a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2a89/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2aa9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2ac9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2ae9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2a0a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2a2a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2a4a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2a6a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2b89/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2bc9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2be9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2b0a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2b2a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2b6a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2c89/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2ca9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2cc9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2ce9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2c0a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2c4a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2c6a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2dc9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2de9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2ea9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.2fc9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3089/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.30a9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.30c9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.302a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.306a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.31a9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.312a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.316a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3289/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.32a9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.32c9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.33c9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.330a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.34c9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.34e9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.340a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.342a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.344a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.346a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.35a9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.35c9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.35e9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.350a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.356a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3689/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.36a9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.36c9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.360a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.362a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3789/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.37a9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.37c9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.37e9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.370a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.38c9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.380a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.384a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3989/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.39a9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.39e9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.390a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.392a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.396a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3a89/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3aa9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3a0a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3a4a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3b89/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3ba9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3be9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3b0a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3b2a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3b6a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3ce9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3c0a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3c2a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3c4a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3de9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3d0a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3e89/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3ea9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3ec9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3e4a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3fe9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.3f0a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.4c6a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.502a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.516a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.520a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.524a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.536a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.540a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.562a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.57c9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.712a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.72e9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.750a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"2c57.41ff.78c9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"3c41.0eff.4073/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8188,
},
"3c41.0eff.577f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8188,
},
"3c41.0eff.57b7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8188,
},
"3c41.0eff.57bf/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8188,
},
"3c41.0eff.57d3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8188,
},
"3c41.0eff.5c9f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8188,
},
"3c41.0eff.5cb7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8188,
},
"3c41.0eff.5d13/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8188,
},
"3c41.0eff.5ebf/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8188,
},
"683b.78ff.ccf9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8188,
},
"683b.78ff.d3ca/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"6c71.0dff.1abf/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8188,
},
"6c71.0dff.1bd3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8188,
},
"6c71.0dff.1ccb/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8188,
},
"6c71.0dff.1e8b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8188,
},
"6c71.0dff.39ab/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8188,
},
"6c71.0dff.39e3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8188,
},
"6c71.0dff.3ae6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8188,
},
"6c71.0dff.3afe/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8188,
},
"6c71.0dff.3a57/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8188,
},
"6c71.0dff.3a5f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8188,
},
"6c71.0dff.3a63/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8188,
},
"6c71.0dff.feb5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8188,
},
"6c71.0dff.1221/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8188,
},
"6c71.0dff.145d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8188,
},
"6c71.0dff.156d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8188,
},
"6c71.0dff.1619/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8188,
},
"7c21.0eff.427f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.8:43876",
"inst_id": 8188,
},
"7c21.0eff.fd0d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60669",
"inst_id": 8188,
},
"a4b2.39ff.4d2a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8188,
},
"a4b2.39ff.54c2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8188,
},
"a4b2.39ff.54fa/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8188,
},
"a4b2.39ff.5e5a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8188,
},
"a4b2.39ff.3c25/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"a4b2.39ff.44c5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"a4b2.39ff.4c85/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"a4b2.39ff.5a85/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"a4b2.39ff.9ae6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"a4b2.39ff.9ca6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"a4b2.39ff.9cc6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"a4b2.39ff.9d86/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"a4b2.39ff.a046/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"a4b2.39ff.a086/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"a4b2.39ff.a0a6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"a4b2.39ff.4dc7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"a4b2.39ff.e127/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"a4b2.39ff.f307/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"a4b2.39ff.fb87/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"a4b2.39ff.01e7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8188,
},
"a4b2.39ff.0bfc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8188,
},
"a4b2.39ff.19f4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8188,
},
"a4b2.39ff.1905/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8188,
},
"a4b2.39ff.1a08/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8188,
},
"a4b2.39ff.1a4c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8188,
},
"a4b2.39ff.1a64/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.1a68/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8188,
},
"a4b2.39ff.1a74/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8188,
},
"a4b2.39ff.1a88/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8188,
},
"a4b2.39ff.1ad8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8188,
},
"a4b2.39ff.1a05/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8188,
},
"a4b2.39ff.1b28/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8188,
},
"a4b2.39ff.1b54/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8188,
},
"a4b2.39ff.1c28/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8188,
},
"a4b2.39ff.1c30/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8188,
},
"a4b2.39ff.1c3c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8188,
},
"a4b2.39ff.1c40/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8188,
},
"a4b2.39ff.1c58/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8188,
},
"a4b2.39ff.1c5c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8188,
},
"a4b2.39ff.1c60/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8188,
},
"a4b2.39ff.1c6c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8188,
},
"a4b2.39ff.1c70/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8188,
},
"a4b2.39ff.1c74/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8188,
},
"a4b2.39ff.1c80/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8188,
},
"a4b2.39ff.1c84/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8188,
},
"a4b2.39ff.1c90/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8188,
},
"a4b2.39ff.1c94/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8188,
},
"a4b2.39ff.1c98/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8188,
},
"a4b2.39ff.1ca0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8188,
},
"a4b2.39ff.1ca4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8188,
},
"a4b2.39ff.1ca8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8188,
},
"a4b2.39ff.1cac/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8188,
},
"a4b2.39ff.1cbc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8188,
},
"a4b2.39ff.1cc0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8188,
},
"a4b2.39ff.1cc4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8188,
},
"a4b2.39ff.1cc8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8188,
},
"a4b2.39ff.1ccc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.1cd4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8188,
},
"a4b2.39ff.1cd8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8188,
},
"a4b2.39ff.1cdc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8188,
},
"a4b2.39ff.1ce0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8188,
},
"a4b2.39ff.1ce4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.1ce8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8188,
},
"a4b2.39ff.1cf8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.1cfc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.1c05/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8188,
},
"a4b2.39ff.1d08/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.1d0c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8188,
},
"a4b2.39ff.1d10/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.1d1c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8188,
},
"a4b2.39ff.1d20/48": {
"last_register": "2d17h",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.1d24/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.1d34/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8188,
},
"a4b2.39ff.1d38/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8188,
},
"a4b2.39ff.1d3c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8188,
},
"a4b2.39ff.1d44/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8188,
},
"a4b2.39ff.1d48/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.1d50/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8188,
},
"a4b2.39ff.1d5c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8188,
},
"a4b2.39ff.1d64/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.1d68/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8188,
},
"a4b2.39ff.1d6c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8188,
},
"a4b2.39ff.1d70/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8188,
},
"a4b2.39ff.1d74/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8188,
},
"a4b2.39ff.1d78/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8188,
},
"a4b2.39ff.1d7c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8188,
},
"a4b2.39ff.1d80/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8188,
},
"a4b2.39ff.1d84/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8188,
},
"a4b2.39ff.1d8c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8188,
},
"a4b2.39ff.1d90/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8188,
},
"a4b2.39ff.1d94/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8188,
},
"a4b2.39ff.1d98/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8188,
},
"a4b2.39ff.1d9c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8188,
},
"a4b2.39ff.1dac/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8188,
},
"a4b2.39ff.1db0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8188,
},
"a4b2.39ff.1db4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8188,
},
"a4b2.39ff.1dbc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8188,
},
"a4b2.39ff.1dc0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8188,
},
"a4b2.39ff.1dc4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8188,
},
"a4b2.39ff.1dd4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8188,
},
"a4b2.39ff.1ddc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8188,
},
"a4b2.39ff.1de0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8188,
},
"a4b2.39ff.1de4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8188,
},
"a4b2.39ff.1dec/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8188,
},
"a4b2.39ff.1df8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8188,
},
"a4b2.39ff.1d01/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8188,
},
"a4b2.39ff.1d05/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8188,
},
"a4b2.39ff.1e08/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8188,
},
"a4b2.39ff.1e20/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8188,
},
"a4b2.39ff.1e30/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8188,
},
"a4b2.39ff.1e34/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8188,
},
"a4b2.39ff.1e40/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8188,
},
"a4b2.39ff.1e50/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8188,
},
"a4b2.39ff.1e54/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8188,
},
"a4b2.39ff.1e60/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8188,
},
"a4b2.39ff.1e68/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8188,
},
"a4b2.39ff.1e70/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8188,
},
"a4b2.39ff.1ea0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.1eb0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.1fc4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8188,
},
"a4b2.39ff.2018/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8188,
},
"a4b2.39ff.2024/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8188,
},
"a4b2.39ff.2028/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8188,
},
"a4b2.39ff.2040/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8188,
},
"a4b2.39ff.2054/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8188,
},
"a4b2.39ff.2058/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8188,
},
"a4b2.39ff.2114/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8188,
},
"a4b2.39ff.2134/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8188,
},
"a4b2.39ff.21e8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8188,
},
"a4b2.39ff.21f4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8188,
},
"a4b2.39ff.2228/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8188,
},
"a4b2.39ff.2240/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8188,
},
"a4b2.39ff.2248/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8188,
},
"a4b2.39ff.2254/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8188,
},
"a4b2.39ff.2284/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8188,
},
"a4b2.39ff.2288/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8188,
},
"a4b2.39ff.2294/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8188,
},
"a4b2.39ff.2298/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8188,
},
"a4b2.39ff.22b0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8188,
},
"a4b2.39ff.22e0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8188,
},
"a4b2.39ff.22e4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8188,
},
"a4b2.39ff.22e8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.22ec/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8188,
},
"a4b2.39ff.22f0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8188,
},
"a4b2.39ff.2205/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8188,
},
"a4b2.39ff.2310/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8188,
},
"a4b2.39ff.2318/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8188,
},
"a4b2.39ff.2320/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8188,
},
"a4b2.39ff.2324/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8188,
},
"a4b2.39ff.24a8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8188,
},
"a4b2.39ff.24b8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8188,
},
"a4b2.39ff.263c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8188,
},
"a4b2.39ff.264c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8188,
},
"a4b2.39ff.2668/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8188,
},
"a4b2.39ff.266c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.2678/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8188,
},
"a4b2.39ff.267c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8188,
},
"a4b2.39ff.2688/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8188,
},
"a4b2.39ff.268c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8188,
},
"a4b2.39ff.26a8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8188,
},
"a4b2.39ff.26ac/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8188,
},
"a4b2.39ff.26e0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8188,
},
"a4b2.39ff.26f0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8188,
},
"a4b2.39ff.26f4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8188,
},
"a4b2.39ff.2714/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8188,
},
"a4b2.39ff.272c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8188,
},
"a4b2.39ff.2734/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8188,
},
"a4b2.39ff.2750/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8188,
},
"a4b2.39ff.2764/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.2774/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8188,
},
"a4b2.39ff.2778/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8188,
},
"a4b2.39ff.2cd8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8188,
},
"a4b2.39ff.2d8c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8188,
},
"a4b2.39ff.2e7c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8188,
},
"a4b2.39ff.31dc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8188,
},
"a4b2.39ff.34cc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8188,
},
"a4b2.39ff.34f0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8188,
},
"a4b2.39ff.3984/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8188,
},
"a4b2.39ff.3ba4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8188,
},
"a4b2.39ff.3bac/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8188,
},
"a4b2.39ff.3bb0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8188,
},
"a4b2.39ff.3bb4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8188,
},
"a4b2.39ff.3bc0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8188,
},
"a4b2.39ff.3bcc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8188,
},
"a4b2.39ff.3bd0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8188,
},
"a4b2.39ff.4430/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8188,
},
"a4b2.39ff.4534/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8188,
},
"a4b2.39ff.46a8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.4720/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8188,
},
"a4b2.39ff.4724/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8188,
},
"a4b2.39ff.4728/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8188,
},
"a4b2.39ff.4734/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8188,
},
"a4b2.39ff.4738/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8188,
},
"a4b2.39ff.4750/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8188,
},
"a4b2.39ff.475c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8188,
},
"a4b2.39ff.47c0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8188,
},
"a4b2.39ff.47c4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8188,
},
"a4b2.39ff.47c8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8188,
},
"a4b2.39ff.47d4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8188,
},
"a4b2.39ff.47d8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8188,
},
"a4b2.39ff.47e0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8188,
},
"a4b2.39ff.47e4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8188,
},
"a4b2.39ff.47ec/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8188,
},
"a4b2.39ff.47f8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8188,
},
"a4b2.39ff.47fc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8188,
},
"a4b2.39ff.4701/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8188,
},
"a4b2.39ff.4705/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8188,
},
"a4b2.39ff.4808/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8188,
},
"a4b2.39ff.4810/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8188,
},
"a4b2.39ff.4814/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8188,
},
"a4b2.39ff.4818/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8188,
},
"a4b2.39ff.481c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8188,
},
"a4b2.39ff.4820/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8188,
},
"a4b2.39ff.4824/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8188,
},
"a4b2.39ff.482c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8188,
},
"a4b2.39ff.4830/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8188,
},
"a4b2.39ff.4834/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8188,
},
"a4b2.39ff.4838/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8188,
},
"a4b2.39ff.483c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8188,
},
"a4b2.39ff.4840/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8188,
},
"a4b2.39ff.4844/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8188,
},
"a4b2.39ff.4848/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8188,
},
"a4b2.39ff.484c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8188,
},
"a4b2.39ff.4850/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8188,
},
"a4b2.39ff.4854/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8188,
},
"a4b2.39ff.4858/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8188,
},
"a4b2.39ff.485c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8188,
},
"a4b2.39ff.4860/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8188,
},
"a4b2.39ff.4864/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8188,
},
"a4b2.39ff.4868/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8188,
},
"a4b2.39ff.486c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8188,
},
"a4b2.39ff.4870/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8188,
},
"a4b2.39ff.4874/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8188,
},
"a4b2.39ff.4878/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8188,
},
"a4b2.39ff.487c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8188,
},
"a4b2.39ff.4884/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8188,
},
"a4b2.39ff.4888/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8188,
},
"a4b2.39ff.4890/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8188,
},
"a4b2.39ff.4898/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8188,
},
"a4b2.39ff.489c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8188,
},
"a4b2.39ff.48a0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8188,
},
"a4b2.39ff.48a8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8188,
},
"a4b2.39ff.48ac/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8188,
},
"a4b2.39ff.48b0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8188,
},
"a4b2.39ff.48b4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8188,
},
"a4b2.39ff.48b8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8188,
},
"a4b2.39ff.48bc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8188,
},
"a4b2.39ff.48c0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8188,
},
"a4b2.39ff.48c8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8188,
},
"a4b2.39ff.48cc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8188,
},
"a4b2.39ff.48d0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8188,
},
"a4b2.39ff.48d4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8188,
},
"a4b2.39ff.48d8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8188,
},
"a4b2.39ff.48dc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8188,
},
"a4b2.39ff.48e0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8188,
},
"a4b2.39ff.48e4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8188,
},
"a4b2.39ff.48e8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8188,
},
"a4b2.39ff.48f0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8188,
},
"a4b2.39ff.48f4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8188,
},
"a4b2.39ff.48f8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8188,
},
"a4b2.39ff.48fc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8188,
},
"a4b2.39ff.4801/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8188,
},
"a4b2.39ff.4805/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8188,
},
"a4b2.39ff.4908/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8188,
},
"a4b2.39ff.490c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8188,
},
"a4b2.39ff.4910/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8188,
},
"a4b2.39ff.4914/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8188,
},
"a4b2.39ff.4918/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8188,
},
"a4b2.39ff.491c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8188,
},
"a4b2.39ff.4924/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8188,
},
"a4b2.39ff.4928/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8188,
},
"a4b2.39ff.492c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8188,
},
"a4b2.39ff.4930/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8188,
},
"a4b2.39ff.4934/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8188,
},
"a4b2.39ff.4938/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8188,
},
"a4b2.39ff.493c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8188,
},
"a4b2.39ff.4940/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8188,
},
"a4b2.39ff.4944/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8188,
},
"a4b2.39ff.4948/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8188,
},
"a4b2.39ff.494c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8188,
},
"a4b2.39ff.4954/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8188,
},
"a4b2.39ff.4958/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8188,
},
"a4b2.39ff.495c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8188,
},
"a4b2.39ff.4960/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8188,
},
"a4b2.39ff.4968/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8188,
},
"a4b2.39ff.496c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8188,
},
"a4b2.39ff.4970/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8188,
},
"a4b2.39ff.4974/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8188,
},
"a4b2.39ff.4978/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8188,
},
"a4b2.39ff.497c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8188,
},
"a4b2.39ff.4984/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8188,
},
"a4b2.39ff.4988/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8188,
},
"a4b2.39ff.4994/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.4998/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.49b0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8188,
},
"a4b2.39ff.49d4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.49ec/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8188,
},
"a4b2.39ff.49f0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.49f4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8188,
},
"a4b2.39ff.4901/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8188,
},
"a4b2.39ff.4a08/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8188,
},
"a4b2.39ff.4a10/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.4a20/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.4a28/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8188,
},
"a4b2.39ff.4a2c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8188,
},
"a4b2.39ff.4a30/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8188,
},
"a4b2.39ff.4a34/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8188,
},
"a4b2.39ff.4a54/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8188,
},
"a4b2.39ff.4a5c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8188,
},
"a4b2.39ff.4a74/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8188,
},
"a4b2.39ff.4a78/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8188,
},
"a4b2.39ff.4a7c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8188,
},
"a4b2.39ff.4a80/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8188,
},
"a4b2.39ff.4a84/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8188,
},
"a4b2.39ff.4a88/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8188,
},
"a4b2.39ff.4a90/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8188,
},
"a4b2.39ff.4a94/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8188,
},
"a4b2.39ff.4a98/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8188,
},
"a4b2.39ff.4a9c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8188,
},
"a4b2.39ff.4aa8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8188,
},
"a4b2.39ff.4aac/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8188,
},
"a4b2.39ff.4ab0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8188,
},
"a4b2.39ff.4ab4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8188,
},
"a4b2.39ff.4abc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8188,
},
"a4b2.39ff.4ac0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8188,
},
"a4b2.39ff.4acc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8188,
},
"a4b2.39ff.4ad0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8188,
},
"a4b2.39ff.4ad4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8188,
},
"a4b2.39ff.4ad8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8188,
},
"a4b2.39ff.4adc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8188,
},
"a4b2.39ff.4af4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8188,
},
"a4b2.39ff.4afc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8188,
},
"a4b2.39ff.4a05/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.4b0c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.4b10/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8188,
},
"a4b2.39ff.4b18/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8188,
},
"a4b2.39ff.4b1c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8188,
},
"a4b2.39ff.4b20/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8188,
},
"a4b2.39ff.4b28/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8188,
},
"a4b2.39ff.4b2c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8188,
},
"a4b2.39ff.4b30/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8188,
},
"a4b2.39ff.4b3c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8188,
},
"a4b2.39ff.4b44/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.4b4c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8188,
},
"a4b2.39ff.4b50/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8188,
},
"a4b2.39ff.4b58/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8188,
},
"a4b2.39ff.4b5c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8188,
},
"a4b2.39ff.4b60/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8188,
},
"a4b2.39ff.4b68/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8188,
},
"a4b2.39ff.4b78/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8188,
},
"a4b2.39ff.4b7c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.4b80/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8188,
},
"a4b2.39ff.4b84/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8188,
},
"a4b2.39ff.4b98/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8188,
},
"a4b2.39ff.4b9c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8188,
},
"a4b2.39ff.4bac/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8188,
},
"a4b2.39ff.4bb0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8188,
},
"a4b2.39ff.4bb4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8188,
},
"a4b2.39ff.4bc4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8188,
},
"a4b2.39ff.4bd8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8188,
},
"a4b2.39ff.4bdc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8188,
},
"a4b2.39ff.5238/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8188,
},
"a4b2.39ff.52b0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8188,
},
"a4b2.39ff.52d8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8188,
},
"a4b2.39ff.52ec/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8188,
},
"a4b2.39ff.52f4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8188,
},
"a4b2.39ff.5318/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8188,
},
"a4b2.39ff.532c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8188,
},
"a4b2.39ff.5370/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8188,
},
"a4b2.39ff.5384/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8188,
},
"a4b2.39ff.56d0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8188,
},
"a4b2.39ff.56e8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8188,
},
"a4b2.39ff.574c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8188,
},
"a4b2.39ff.57a4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8188,
},
}
},
},
8189: {
"lisp": 0,
"site_name": {
"site_uci": {
"any-mac": {
"last_register": "never",
"up": "no",
"who_last_registered": "--",
"inst_id": 8189,
},
"0000.0cff.94fb/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8189,
},
"0000.0cff.94fd/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8189,
},
"0001.2eff.ac9b/48": {
"last_register": "1d10h",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8189,
},
"000c.29ff.90c1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8189,
},
"0016.25ff.5de1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8189,
},
"0016.25ff.62be/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8189,
},
"0016.25ff.63de/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8189,
},
"0016.25ff.68ef/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8189,
},
"0016.25ff.680a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8189,
},
"0016.25ff.6e2c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8189,
},
"0016.25ff.6e44/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8189,
},
"0016.25ff.6e45/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8189,
},
"0016.25ff.6e58/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8189,
},
"0016.25ff.6e59/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8189,
},
"0016.25ff.6e64/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8189,
},
"0016.25ff.6e75/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8189,
},
"0016.25ff.6e85/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8189,
},
"0016.25ff.6fea/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8189,
},
"0016.25ff.742e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8189,
},
"0016.25ff.743f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8189,
},
"0016.25ff.b93e/48": {
"last_register": "00:01:42",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8189,
},
"001f.29ff.b6df/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8189,
},
"0022.64ff.df2d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8189,
},
"0024.81ff.32ba/48": {
"last_register": "14:54:26",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8189,
},
"0025.64ff.fa82/48": {
"last_register": "19:19:47",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8189,
},
"0025.64ff.4716/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8189,
},
"00cc.fcff.a6f3/48": {
"last_register": "00:00:53",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8189,
},
"00e0.4cff.8bd7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8189,
},
"00e0.b4ff.da01/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8189,
},
"14da.e9ff.f734/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8189,
},
"1860.24ff.d2bd/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8189,
},
"1c87.2cff.44b3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8189,
},
"1cc1.deff.5a00/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8189,
},
"30f7.0dff.66c0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8189,
},
"3417.ebff.27a8/48": {
"last_register": "19:20:04",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8189,
},
"3c07.54ff.315b/48": {
"last_register": "01:58:40",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8189,
},
"3c07.54ff.e75e/48": {
"last_register": "19:19:01",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8189,
},
"3c28.6dff.65ea/48": {
"last_register": "00:00:08",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8189,
},
"402c.f4ff.6577/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8189,
},
"4061.86ff.8e6d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8189,
},
"482a.e3ff.6c27/48": {
"last_register": "4d23h",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8189,
},
"4860.5fff.95ad/48": {
"last_register": "01:07:34",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8189,
},
"4ccc.6aff.622a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8189,
},
"58cb.52ff.f545/48": {
"last_register": "00:49:52",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8189,
},
"683b.78ff.c7ed/48": {
"last_register": "03:04:27",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8189,
},
"685b.35ff.b659/48": {
"last_register": "00:17:30",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8189,
},
"6c0b.84ff.2cca/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8189,
},
"6c0b.84ff.2fe6/48": {
"last_register": "04:14:31",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8189,
},
"6c0b.84ff.b83c/48": {
"last_register": "10:48:19",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8189,
},
"6c71.0dff.4a07/48": {
"last_register": "03:43:47",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8189,
},
"7020.84ff.7860/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8189,
},
"7020.84ff.78fe/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8189,
},
"7020.84ff.f237/48": {
"last_register": "23:55:52",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8189,
},
"7020.84ff.018f/48": {
"last_register": "21:55:20",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8189,
},
"705a.0fff.ac28/48": {
"last_register": "00:01:48",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8189,
},
"7085.c2ff.e523/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8189,
},
"70f3.95ff.81c2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8189,
},
"70f3.95ff.2be2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8189,
},
"70f3.95ff.f3e1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8189,
},
"7824.afff.be8a/48": {
"last_register": "00:07:17",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8189,
},
"78e7.d1ff.f128/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8189,
},
"8c8e.f2ff.cbb7/48": {
"last_register": "01:27:47",
"up": "yes#",
"who_last_registered": "10.8.130.4:60995",
"inst_id": 8189,
},
"8e5d.1fff.b08a/48": {
"last_register": "00:02:56",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8189,
},
"9818.88ff.67e3/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8189,
},
"9818.88ff.67e6/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8189,
},
"9818.88ff.67ec/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8189,
},
"a0cc.2bff.f634/48": {
"last_register": "00:00:08",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8189,
},
"a4ae.11ff.6b3c/48": {
"last_register": "19:15:07",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8189,
},
"a4ae.11ff.6b3d/48": {
"last_register": "19:15:07",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8189,
},
"a4c3.f0ff.2571/48": {
"last_register": "01:25:41",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8189,
},
"a81e.84ff.54e0/48": {
"last_register": "02:44:44",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8189,
},
"a860.b6ff.448a/48": {
"last_register": "19:20:03",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8189,
},
"b827.ebff.2c06/48": {
"last_register": "00:00:46",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8189,
},
"b827.ebff.2fe0/48": {
"last_register": "00:00:57",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8189,
},
"b827.ebff.8759/48": {
"last_register": "00:10:33",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8189,
},
"bc16.65ff.66a2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8189,
},
"c8cb.b8ff.c63d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8189,
},
"d004.01ff.67f9/48": {
"last_register": "00:04:09",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8189,
},
"d485.64ff.529e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8189,
},
"dc4a.3eff.5d38/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8189,
},
"dca6.32ff.5e2c/48": {
"last_register": "00:03:08",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8189,
},
"dca6.32ff.fc60/48": {
"last_register": "00:01:59",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8189,
},
"dca6.32ff.2868/48": {
"last_register": "19:30:09",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8189,
},
"e04f.43ff.6443/48": {
"last_register": "00:16:34",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8189,
},
"e069.95ff.9fd8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8189,
},
"e0cb.4eff.466d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8189,
},
"e4e7.49ff.87df/48": {
"last_register": "00:29:31",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8189,
},
"e86a.64ff.4277/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8189,
},
"f493.9fff.ddd3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8189,
},
"f493.9fff.dddc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8189,
},
"fc4d.d4ff.9bcb/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8189,
},
"fc4d.d4ff.103c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8189,
},
}
},
},
8190: {
"lisp": 0,
"site_name": {
"site_uci": {
"any-mac": {
"last_register": "never",
"up": "no",
"who_last_registered": "--",
"inst_id": 8190,
},
"000f.44ff.8b76/48": {
"last_register": "21:28:40",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8190,
},
"0010.83ff.54ab/48": {
"last_register": "4d23h",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8190,
},
"0018.feff.7f87/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8190,
},
"0019.17ff.73a7/48": {
"last_register": "5d08h",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8190,
},
"0019.17ff.6bc8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8190,
},
"0019.17ff.6bd1/48": {
"last_register": "1w5d",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8190,
},
"0019.17ff.6b1d/48": {
"last_register": "5d09h",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8190,
},
"0019.17ff.6b2a/48": {
"last_register": "5d09h",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8190,
},
"0019.17ff.fb7f/48": {
"last_register": "6d08h",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8190,
},
"001f.c6ff.63b8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8190,
},
"0023.68ff.e685/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8190,
},
"0023.68ff.1a9d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8190,
},
"0023.68ff.4b9a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8190,
},
"0023.68ff.4ccf/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8190,
},
"0023.68ff.4cf1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8190,
},
"0023.68ff.4c4b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8190,
},
"0023.68ff.4c69/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8190,
},
"0023.68ff.4c7e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"0023.68ff.4e4e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8190,
},
"0023.68ff.4fc2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8190,
},
"0023.68ff.51e1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8190,
},
"0023.68ff.5428/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8190,
},
"0023.68ff.5530/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8190,
},
"0024.d6ff.394d/48": {
"last_register": "00:48:59",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"0024.d6ff.8793/48": {
"last_register": "00:37:10",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8190,
},
"0026.73ff.20f5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8190,
},
"0050.b6ff.3ed8/48": {
"last_register": "00:22:29",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8190,
},
"0050.b6ff.f623/48": {
"last_register": "00:12:54",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8190,
},
"005d.73ff.585b/48": {
"last_register": "1d07h",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8190,
},
"00e0.70ff.56d8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8190,
},
"00e0.c9ff.56e9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8190,
},
"00e0.c9ff.0375/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8190,
},
"00e0.c9ff.5ace/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8190,
},
"020a.c1ff.3d01/48": {
"last_register": "20:18:31",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8190,
},
"04d4.c4ff.d068/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8190,
},
"04ed.33ff.fd35/48": {
"last_register": "04:08:32",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"04ed.33ff.2488/48": {
"last_register": "00:11:17",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8190,
},
"08d4.6aff.09c9/48": {
"last_register": "00:03:10",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8190,
},
"0cd7.46ff.7ba9/48": {
"last_register": "00:04:12",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8190,
},
"0e0b.ccff.4074/48": {
"last_register": "00:05:19",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8190,
},
"10f9.20ff.e77f/48": {
"last_register": "13:52:49",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8190,
},
"1418.77ff.0518/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8190,
},
"144f.8aff.4b55/48": {
"last_register": "02:13:47",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8190,
},
"144f.8aff.e6b5/48": {
"last_register": "03:49:10",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8190,
},
"144f.8aff.f1c3/48": {
"last_register": "03:16:36",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8190,
},
"147d.daff.dcde/48": {
"last_register": "00:17:47",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8190,
},
"14ab.c5ff.3b26/48": {
"last_register": "00:08:05",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8190,
},
"160e.f9ff.4ff6/48": {
"last_register": "00:40:05",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8190,
},
"181d.eaff.4d4a/48": {
"last_register": "00:20:58",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"1c1a.dfff.030e/48": {
"last_register": "4d01h",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8190,
},
"1c69.7aff.8e57/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8190,
},
"1eb8.08ff.dbe5/48": {
"last_register": "00:04:46",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8190,
},
"2477.03ff.f002/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8190,
},
"28c6.3fff.6282/48": {
"last_register": "00:04:31",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"28c6.3fff.331f/48": {
"last_register": "01:21:47",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"28c6.3fff.348c/48": {
"last_register": "00:48:32",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8190,
},
"309c.23ff.d4cb/48": {
"last_register": "02:44:47",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8190,
},
"30d9.d9ff.4da9/48": {
"last_register": "00:11:26",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8190,
},
"38de.adff.7f68/48": {
"last_register": "00:19:57",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8190,
},
"38f9.d3ff.b38f/48": {
"last_register": "00:18:00",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8190,
},
"38f9.d3ff.fdc3/48": {
"last_register": "01:55:55",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8190,
},
"38f9.d3ff.a4ee/48": {
"last_register": "00:06:10",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8190,
},
"3ce1.a1ff.a6cd/48": {
"last_register": "00:19:25",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"402c.f4ff.66d5/48": {
"last_register": "2w0d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8190,
},
"4098.adff.2b2a/48": {
"last_register": "00:01:26",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8190,
},
"409c.28ff.df99/48": {
"last_register": "00:29:03",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8190,
},
"40a3.ccff.b7b8/48": {
"last_register": "00:09:49",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8190,
},
"40a3.ccff.8458/48": {
"last_register": "01:53:00",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8190,
},
"40a3.ccff.8a3e/48": {
"last_register": "00:53:59",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8190,
},
"40cb.c0ff.5dc9/48": {
"last_register": "00:37:43",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8190,
},
"4439.c4ff.50c0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8190,
},
"444a.dbff.dd5e/48": {
"last_register": "00:22:40",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"48a4.72ff.dc11/48": {
"last_register": "00:39:28",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8190,
},
"4a64.40ff.62d1/48": {
"last_register": "01:35:41",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8190,
},
"4c32.75ff.7f50/48": {
"last_register": "00:27:16",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8190,
},
"4c74.bfff.6334/48": {
"last_register": "03:32:25",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8190,
},
"50eb.71ff.7d74/48": {
"last_register": "02:59:28",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8190,
},
"5254.ddff.1c7f/48": {
"last_register": "00:04:39",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8190,
},
"5254.ddff.a58a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8190,
},
"54bf.64ff.987d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8190,
},
"54e1.adff.d965/48": {
"last_register": "00:37:34",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8190,
},
"5838.79ff.5224/48": {
"last_register": "1w4d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8190,
},
"5838.79ff.cfde/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8190,
},
"5838.79ff.c260/48": {
"last_register": "1w4d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8190,
},
"5838.79ff.c261/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"5838.79ff.c26d/48": {
"last_register": "1w6d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8190,
},
"5838.79ff.c2ae/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8190,
},
"5838.79ff.c200/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8190,
},
"5838.79ff.c205/48": {
"last_register": "1w2d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8190,
},
"5838.79ff.c36a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8190,
},
"5838.79ff.c38e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8190,
},
"5838.79ff.c394/48": {
"last_register": "1w0d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8190,
},
"5838.79ff.c3bf/48": {
"last_register": "1w4d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8190,
},
"5838.79ff.c3c2/48": {
"last_register": "3d00h",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8190,
},
"5838.79ff.c3cc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8190,
},
"5838.79ff.c44e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8190,
},
"5838.79ff.c4f5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8190,
},
"5838.79ff.c583/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8190,
},
"5838.79ff.87a7/48": {
"last_register": "1w2d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8190,
},
"58d5.0aff.1d00/48": {
"last_register": "00:09:37",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"5e28.44ff.7070/48": {
"last_register": "01:31:15",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8190,
},
"5ea9.78ff.b6e1/48": {
"last_register": "04:44:07",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8190,
},
"60f2.62ff.8285/48": {
"last_register": "03:28:48",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8190,
},
"6805.caff.691b/48": {
"last_register": "6d23h",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8190,
},
"6805.caff.8a63/48": {
"last_register": "3d22h",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8190,
},
"6805.caff.3b18/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8190,
},
"6805.caff.3ccb/48": {
"last_register": "3d22h",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8190,
},
"6c0b.84ff.6a31/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8190,
},
"6c0b.84ff.4703/48": {
"last_register": "04:35:36",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8190,
},
"6c0b.84ff.5256/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8190,
},
"6c0b.84ff.6629/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8190,
},
"6c0b.84ff.662a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8190,
},
"6c3b.e5ff.7e8f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8190,
},
"6c3b.e5ff.01fb/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8190,
},
"7020.84ff.54d0/48": {
"last_register": "1w0d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8190,
},
"70f3.95ff.8bd1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8190,
},
"74e5.f9ff.b161/48": {
"last_register": "00:02:29",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8190,
},
"74e5.f9ff.7e5a/48": {
"last_register": "00:09:50",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8190,
},
"787b.8aff.d6b1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8190,
},
"7c2a.31ff.13a3/48": {
"last_register": "00:22:40",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"7c76.35ff.5cc1/48": {
"last_register": "02:06:40",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"8032.53ff.77c8/48": {
"last_register": "00:07:39",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8190,
},
"80ed.2cff.e8b6/48": {
"last_register": "02:07:41",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8190,
},
"84ab.1aff.de14/48": {
"last_register": "00:12:44",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8190,
},
"84fd.d1ff.d2a9/48": {
"last_register": "03:05:27",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8190,
},
"84fd.d1ff.256e/48": {
"last_register": "00:22:43",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8190,
},
"8851.fbff.05b0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8190,
},
"8851.fbff.2fcc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8190,
},
"88b1.11ff.789e/48": {
"last_register": "00:55:20",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"8c85.90ff.8e13/48": {
"last_register": "03:53:59",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8190,
},
"8c85.90ff.6b01/48": {
"last_register": "01:27:05",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8190,
},
"8c85.90ff.1927/48": {
"last_register": "00:12:03",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8190,
},
"8c85.90ff.ed0f/48": {
"last_register": "03:38:10",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8190,
},
"8c85.90ff.f1ed/48": {
"last_register": "00:12:00",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8190,
},
"8c85.90ff.a14d/48": {
"last_register": "02:12:34",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8190,
},
"8c85.90ff.05b4/48": {
"last_register": "04:11:05",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8190,
},
"90ac.3fff.1a80/48": {
"last_register": "06:59:46",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8190,
},
"90ac.3fff.1aaf/48": {
"last_register": "06:59:46",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8190,
},
"90ac.3fff.1acd/48": {
"last_register": "06:59:51",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"90ac.3fff.1ad7/48": {
"last_register": "06:59:58",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8190,
},
"90ac.3fff.1af1/48": {
"last_register": "06:59:45",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8190,
},
"90ac.3fff.1af8/48": {
"last_register": "06:59:59",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8190,
},
"90ac.3fff.1a03/48": {
"last_register": "06:59:49",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8190,
},
"90ac.3fff.1b0a/48": {
"last_register": "06:59:55",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8190,
},
"90ac.3fff.1b11/48": {
"last_register": "06:59:41",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8190,
},
"90ac.3fff.1b4e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8190,
},
"90ac.3fff.1b5f/48": {
"last_register": "06:59:43",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8190,
},
"90ac.3fff.1b6b/48": {
"last_register": "06:59:52",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8190,
},
"90ac.3fff.1b78/48": {
"last_register": "06:59:50",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8190,
},
"90ac.3fff.1b79/48": {
"last_register": "06:59:48",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8190,
},
"90ac.3fff.1b7d/48": {
"last_register": "06:59:41",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8190,
},
"90ac.3fff.2ca6/48": {
"last_register": "06:59:43",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8190,
},
"90ac.3fff.2cb0/48": {
"last_register": "06:59:58",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8190,
},
"90ac.3fff.2d36/48": {
"last_register": "06:59:49",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8190,
},
"90ac.3fff.2d7e/48": {
"last_register": "06:59:45",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"90ac.3fff.2d7f/48": {
"last_register": "06:59:52",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8190,
},
"90ac.3fff.2d80/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8190,
},
"90ac.3fff.2d83/48": {
"last_register": "06:59:45",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8190,
},
"90ac.3fff.2d88/48": {
"last_register": "06:59:58",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8190,
},
"90ac.3fff.2d98/48": {
"last_register": "06:59:55",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8190,
},
"90ac.3fff.2d9b/48": {
"last_register": "06:59:54",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8190,
},
"90ac.3fff.2da5/48": {
"last_register": "06:59:41",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8190,
},
"90ac.3fff.2da6/48": {
"last_register": "06:59:54",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8190,
},
"90ac.3fff.2da9/48": {
"last_register": "06:59:52",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8190,
},
"90ac.3fff.2daa/48": {
"last_register": "06:59:54",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8190,
},
"90ac.3fff.2db0/48": {
"last_register": "06:59:59",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8190,
},
"90ac.3fff.2dbf/48": {
"last_register": "06:59:53",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8190,
},
"90ac.3fff.2dc2/48": {
"last_register": "06:59:45",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8190,
},
"90ac.3fff.2df7/48": {
"last_register": "06:59:53",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8190,
},
"90ac.3fff.2d03/48": {
"last_register": "06:59:58",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8190,
},
"90ac.3fff.2483/48": {
"last_register": "05:26:35",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8190,
},
"90ac.3fff.2485/48": {
"last_register": "06:59:46",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8190,
},
"90ac.3fff.2486/48": {
"last_register": "06:59:47",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8190,
},
"90ac.3fff.248d/48": {
"last_register": "06:59:54",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8190,
},
"90ac.3fff.248e/48": {
"last_register": "06:59:56",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8190,
},
"90ac.3fff.2491/48": {
"last_register": "06:59:58",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8190,
},
"90ac.3fff.2494/48": {
"last_register": "06:59:50",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8190,
},
"90ac.3fff.2496/48": {
"last_register": "06:59:54",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8190,
},
"90ac.3fff.249c/48": {
"last_register": "06:59:58",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8190,
},
"90ac.3fff.249e/48": {
"last_register": "06:59:41",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8190,
},
"90ac.3fff.249f/48": {
"last_register": "06:59:56",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8190,
},
"90ac.3fff.24b4/48": {
"last_register": "06:59:50",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8190,
},
"90ac.3fff.24c3/48": {
"last_register": "06:59:42",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8190,
},
"90ac.3fff.24c9/48": {
"last_register": "06:59:48",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8190,
},
"90ac.3fff.24d2/48": {
"last_register": "06:59:47",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8190,
},
"90ac.3fff.24d3/48": {
"last_register": "06:59:47",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8190,
},
"90ac.3fff.2401/48": {
"last_register": "06:59:49",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8190,
},
"90ac.3fff.2407/48": {
"last_register": "06:59:51",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8190,
},
"90ac.3fff.2409/48": {
"last_register": "06:59:42",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8190,
},
"90ac.3fff.254f/48": {
"last_register": "06:59:57",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8190,
},
"90ac.3fff.258c/48": {
"last_register": "06:59:43",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8190,
},
"90ac.3fff.268b/48": {
"last_register": "06:59:43",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8190,
},
"90ac.3fff.2692/48": {
"last_register": "06:59:58",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8190,
},
"90ac.3fff.26aa/48": {
"last_register": "06:59:47",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8190,
},
"90ac.3fff.26b0/48": {
"last_register": "06:59:44",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8190,
},
"90ac.3fff.61f2/48": {
"last_register": "06:59:42",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8190,
},
"90e2.baff.41ab/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8190,
},
"90e2.baff.648b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8190,
},
"92b7.daff.501e/48": {
"last_register": "00:23:05",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8190,
},
"94e6.f7ff.289b/48": {
"last_register": "00:37:05",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8190,
},
"94e6.f7ff.10cd/48": {
"last_register": "00:23:48",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"983b.8fff.1e2b/48": {
"last_register": "00:14:28",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8190,
},
"a408.eaff.b6f3/48": {
"last_register": "00:27:37",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8190,
},
"a434.d9ff.75a2/48": {
"last_register": "1d02h",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8190,
},
"a483.e7ff.1a54/48": {
"last_register": "03:42:46",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8190,
},
"a483.e7ff.abee/48": {
"last_register": "01:31:25",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8190,
},
"a860.b6ff.78ce/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8190,
},
"a86d.aaff.87af/48": {
"last_register": "00:35:07",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8190,
},
"aaf8.e8ff.94d6/48": {
"last_register": "00:14:37",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8190,
},
"aced.5cff.1dd7/48": {
"last_register": "01:16:19",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8190,
},
"b46b.fcff.a998/48": {
"last_register": "01:25:30",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"b808.cfff.ce97/48": {
"last_register": "01:51:25",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"b841.a4ff.827d/48": {
"last_register": "00:01:01",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8190,
},
"b863.4dff.a4f4/48": {
"last_register": "00:06:37",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8190,
},
"b8d7.afff.46a9/48": {
"last_register": "00:14:16",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8190,
},
"b8d7.afff.0fe0/48": {
"last_register": "00:00:53",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8190,
},
"b8d7.afff.e3fd/48": {
"last_register": "00:54:37",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8190,
},
"bc98.dfff.39e9/48": {
"last_register": "02:45:15",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8190,
},
"bca8.a6ff.326b/48": {
"last_register": "01:21:10",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"c6c5.1bff.f5a2/48": {
"last_register": "01:59:52",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8190,
},
"ca8e.82ff.6e1d/48": {
"last_register": "02:36:33",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8190,
},
"cc3d.82ff.41e0/48": {
"last_register": "00:26:58",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"ccc0.79ff.44d9/48": {
"last_register": "1d08h",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8190,
},
"d0a6.37ff.2224/48": {
"last_register": "00:39:04",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8190,
},
"d4ae.52ff.ae5e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8190,
},
"d4ae.52ff.3a85/48": {
"last_register": "2w0d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8190,
},
"d4d2.52ff.5294/48": {
"last_register": "03:14:13",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"d63d.a7ff.34aa/48": {
"last_register": "00:03:02",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"d81d.72ff.85e4/48": {
"last_register": "00:28:51",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8190,
},
"d8bb.2cff.b9db/48": {
"last_register": "00:01:21",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8190,
},
"dc08.0fff.47e4/48": {
"last_register": "00:02:47",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8190,
},
"dc37.14ff.1b32/48": {
"last_register": "00:00:14",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8190,
},
"dca9.04ff.66a2/48": {
"last_register": "01:11:33",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8190,
},
"dca9.04ff.7024/48": {
"last_register": "02:12:48",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8190,
},
"e04f.43ff.5854/48": {
"last_register": "4d04h",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8190,
},
"e04f.43ff.6efa/48": {
"last_register": "2w0d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8190,
},
"e201.8cff.57e0/48": {
"last_register": "00:31:03",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8190,
},
"e2e4.50ff.290b/48": {
"last_register": "00:10:11",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8190,
},
"e470.b8ff.bd26/48": {
"last_register": "01:29:27",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8190,
},
"e470.b8ff.97a8/48": {
"last_register": "01:02:32",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8190,
},
"e4b3.18ff.e93e/48": {
"last_register": "01:02:05",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8190,
},
"e86a.64ff.56fd/48": {
"last_register": "03:37:53",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8190,
},
"f018.98ff.d24c/48": {
"last_register": "01:29:41",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8190,
},
"f018.98ff.d664/48": {
"last_register": "02:06:54",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8190,
},
"f018.98ff.ea10/48": {
"last_register": "00:15:16",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8190,
},
"f018.98ff.6304/48": {
"last_register": "05:01:49",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8190,
},
"f018.98ff.ce4e/48": {
"last_register": "01:56:21",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8190,
},
"f018.98ff.a199/48": {
"last_register": "00:01:10",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8190,
},
"f2dc.88ff.3f09/48": {
"last_register": "00:02:17",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8190,
},
"f40e.01ff.df89/48": {
"last_register": "01:00:46",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8190,
},
"f493.9fff.aec0/48": {
"last_register": "1d16h",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8190,
},
"f493.9fff.4765/48": {
"last_register": "1d10h",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8190,
},
"f496.34ff.00d6/48": {
"last_register": "02:39:57",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"f859.71ff.bdb0/48": {
"last_register": "19:55:17",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8190,
},
"f8ff.c2ff.5f98/48": {
"last_register": "00:00:05",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8190,
},
"f8ff.c2ff.2830/48": {
"last_register": "02:34:03",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8190,
},
"f8ff.c2ff.123e/48": {
"last_register": "02:44:17",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8190,
},
"f8ff.c2ff.b2d6/48": {
"last_register": "00:19:56",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8190,
},
"fc4d.d4ff.9ba5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8190,
},
"fc4d.d4ff.25ab/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8190,
},
}
},
},
8191: {
"lisp": 0,
"site_name": {
"site_uci": {
"any-mac": {
"last_register": "never",
"up": "no",
"who_last_registered": "--",
"inst_id": 8191,
},
"0000.0cff.94fd/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"0002.b9ff.e707/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.172:11801",
"inst_id": 8191,
},
"0002.fdff.f596/48": {
"last_register": "05:41:20",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8191,
},
"0004.f2ff.c644/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"0007.7dff.0fb1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.172:11801",
"inst_id": 8191,
},
"0007.7dff.11f6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.184:44273",
"inst_id": 8191,
},
"0008.32ff.b366/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"000b.abff.6eab/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"0015.f9ff.2a95/48": {
"last_register": "3d17h",
"up": "yes#",
"who_last_registered": "10.8.128.184:44273",
"inst_id": 8191,
},
"0019.55ff.d54a/48": {
"last_register": "1w6d",
"up": "yes#",
"who_last_registered": "10.8.128.161:29272",
"inst_id": 8191,
},
"0023.33ff.3c9c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0023.33ff.40a1/48": {
"last_register": "00:04:08",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0023.33ff.45d5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"0024.c4ff.ad75/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"0025.84ff.782f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"0027.90ff.05db/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.252:16799",
"inst_id": 8191,
},
"0027.90ff.084b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"0027.90ff.099e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"0027.90ff.0c23/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"0027.90ff.3e99/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.252:16799",
"inst_id": 8191,
},
"0027.90ff.48b3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"0027.90ff.5c3c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"0027.90ff.61b5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"0029.c2ff.862d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"0038.dfff.64ab/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"0045.1dff.7615/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"0045.1dff.a630/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.172:11801",
"inst_id": 8191,
},
"0050.60ff.dc12/48": {
"last_register": "00:07:14",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"0050.60ff.f272/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"0050.60ff.0abe/48": {
"last_register": "1w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"0050.60ff.a1e9/48": {
"last_register": "00:08:23",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"0050.60ff.42ac/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"0050.60ff.925f/48": {
"last_register": "00:07:15",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"0050.60ff.9d91/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"0050.60ff.a34d/48": {
"last_register": "19:20:02",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"0050.60ff.a613/48": {
"last_register": "19:20:03",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"0050.60ff.f6a0/48": {
"last_register": "19:20:02",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"0050.60ff.3148/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"0050.60ff.4288/48": {
"last_register": "19:20:02",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"0057.d2ff.ce2c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"0057.d2ff.ce65/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"0057.d2ff.cfce/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"0057.d2ff.cf65/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"0057.d2ff.cf86/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"0057.d2ff.cfa1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"0057.d2ff.530f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"0057.d2ff.55f1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"0057.d2ff.56fc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"0057.d2ff.57bf/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.5bdc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0057.d2ff.5dda/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"0057.d2ff.5e3f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"0057.d2ff.5e66/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"0057.d2ff.5f08/48": {
"last_register": "12:48:17",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"0057.d2ff.5f20/48": {
"last_register": "1d13h",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0057.d2ff.5f74/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"0057.d2ff.61c9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"0057.d2ff.6157/48": {
"last_register": "1d03h",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0057.d2ff.6190/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"0057.d2ff.6256/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"0057.d2ff.633d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"0057.d2ff.6415/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"0057.d2ff.6433/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0057.d2ff.66c4/48": {
"last_register": "09:27:42",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0057.d2ff.66d3/48": {
"last_register": "06:18:05",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0057.d2ff.6916/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0057.d2ff.694c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"0057.d2ff.6f5b/48": {
"last_register": "00:38:37",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0057.d2ff.72dc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"0057.d2ff.7228/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"0057.d2ff.72be/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0057.d2ff.73ed/48": {
"last_register": "11:17:48",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0057.d2ff.7312/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"0057.d2ff.768a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0057.d2ff.92dd/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0057.d2ff.95e0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"0057.d2ff.95ec/48": {
"last_register": "2d15h",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0057.d2ff.96c4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"0057.d2ff.96dc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"0057.d2ff.9682/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"0057.d2ff.975a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"0057.d2ff.979c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"0057.d2ff.98e9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0057.d2ff.98fe/48": {
"last_register": "04:24:07",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0057.d2ff.9808/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"0057.d2ff.99c7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"0057.d2ff.9973/48": {
"last_register": "22:13:48",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0057.d2ff.998e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0057.d2ff.99b2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"0057.d2ff.9ae7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"0057.d2ff.9af6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"0057.d2ff.9afc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"0057.d2ff.9a24/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"0057.d2ff.9a3f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"0057.d2ff.9a51/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"0057.d2ff.9a66/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"0057.d2ff.9a81/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"0057.d2ff.9aba/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"0057.d2ff.9b41/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"0057.d2ff.9b7a/48": {
"last_register": "07:00:12",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0057.d2ff.9cdc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"0057.d2ff.9d4b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0057.d2ff.9e50/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"0057.d2ff.9f31/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"0057.d2ff.9f9d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"0057.d2ff.a0c3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"0057.d2ff.a252/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"0057.d2ff.a25b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"0057.d2ff.a6d2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"0057.d2ff.a966/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0057.d2ff.20e7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"0057.d2ff.21f8/48": {
"last_register": "1w2d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"0057.d2ff.2102/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"0057.d2ff.211a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"0057.d2ff.213e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"0057.d2ff.2144/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"0057.d2ff.214a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"0057.d2ff.2159/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"0057.d2ff.215f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"0057.d2ff.2162/48": {
"last_register": "02:10:46",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"0057.d2ff.21a7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"0057.d2ff.21b9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"0057.d2ff.22d6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"0057.d2ff.236f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"0057.d2ff.2384/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"0057.d2ff.23b7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"0057.d2ff.2d53/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"0057.d2ff.2e58/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"0057.d2ff.2e7c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"0057.d2ff.2e88/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"0057.d2ff.2e9a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"0057.d2ff.2ebe/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"0057.d2ff.3005/48": {
"last_register": "03:46:32",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"0057.d2ff.341c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.161:29272",
"inst_id": 8191,
},
"0057.d2ff.3437/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"0057.d2ff.a04d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0057.d2ff.aa71/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"0057.d2ff.aaa1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"0057.d2ff.af06/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"0057.d2ff.af45/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"0057.d2ff.b092/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"0057.d2ff.b0a4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.b0b3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"0057.d2ff.b1c1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"0057.d2ff.b1d0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"0057.d2ff.b1e2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"0057.d2ff.b1e5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"0057.d2ff.b1e8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"0057.d2ff.b11f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"0057.d2ff.b143/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.b15e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.b16d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.b173/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.b17c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"0057.d2ff.b191/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"0057.d2ff.b194/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.b19d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.b1be/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"0057.d2ff.b1c1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.b2cc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.b2d8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.b2de/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.b2ed/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"0057.d2ff.b206/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"0057.d2ff.b233/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"0057.d2ff.b23c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"0057.d2ff.b24e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"0057.d2ff.b27e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"0057.d2ff.b2a2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.b2a8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"0057.d2ff.b2b4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.b3c8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.b3da/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.b3e0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"0057.d2ff.b3e6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.b3ef/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"0057.d2ff.b3f2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.b3fb/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.b305/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"0057.d2ff.b30b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"0057.d2ff.b30e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.b317/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"0057.d2ff.b31d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"0057.d2ff.b32c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"0057.d2ff.b33b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.b353/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"0057.d2ff.b374/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.b383/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"0057.d2ff.b3b6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"0057.d2ff.b4c4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"0057.d2ff.b4c7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.b4cd/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.b4df/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"0057.d2ff.b4ee/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"0057.d2ff.b401/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"0057.d2ff.b41c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.b440/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"0057.d2ff.b446/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.b44c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.b44f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"0057.d2ff.b455/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"0057.d2ff.b458/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.b45b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.b45e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.b476/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"0057.d2ff.b488/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.b48e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"0057.d2ff.b5d2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.b5e4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.b5f9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"0057.d2ff.b503/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"0057.d2ff.b509/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"0057.d2ff.b512/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"0057.d2ff.b521/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"0057.d2ff.b524/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"0057.d2ff.b545/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"0057.d2ff.b566/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"0057.d2ff.b575/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.b59c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.b5a2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.b5ab/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"0057.d2ff.b61a/48": {
"last_register": "1d10h",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"0057.d2ff.b65c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"0057.d2ff.b8db/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"0057.d2ff.b836/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.b84b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"0057.d2ff.b88a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.b8a8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.b90b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"0057.d2ff.b917/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"0057.d2ff.b9b9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"0057.d2ff.b9bf/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"0057.d2ff.bac7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.bad3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.badf/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"0057.d2ff.bae2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.ba04/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"0057.d2ff.ba22/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"0057.d2ff.ba64/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.baa0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"0057.d2ff.bac1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.bbed/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.bb1b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"0057.d2ff.bb45/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.bb72/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.bb81/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"0057.d2ff.bcef/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"0057.d2ff.bc02/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"0057.d2ff.bdb5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.be51/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.be99/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"0057.d2ff.c0f7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.c001/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.c007/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"0057.d2ff.c019/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"0057.d2ff.c05e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.c067/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0057.d2ff.c082/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"0057.d2ff.c139/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"005f.86ff.c676/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"0062.ecff.e576/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"0062.ecff.384b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"006c.bcff.1c92/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"006c.bcff.1d2d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"006c.bcff.1e59/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"006c.bcff.20db/48": {
"last_register": "1d19h",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"006c.bcff.1189/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"006c.bcff.1c7f/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"006c.bcff.1c80/48": {
"last_register": "1d19h",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"006c.bcff.1c86/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"006c.bcff.848a/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"0072.78ff.fa5a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"0076.86ff.a30f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"0076.86ff.adf5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"0076.86ff.b6c2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0077.8dff.3aba/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"0087.31ff.3851/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"009e.1eff.eab7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"009e.1eff.9ec2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"009e.1eff.a924/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"009e.1eff.b596/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"009e.1eff.bea2/48": {
"last_register": "04:49:36",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"009e.1eff.1a67/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.252:16799",
"inst_id": 8191,
},
"009e.1eff.a062/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"009e.1eff.a227/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"009e.1eff.a5cf/48": {
"last_register": "02:53:18",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00a3.d1ff.d059/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"00a3.d1ff.2e75/48": {
"last_register": "1w0d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"00a5.bfff.2153/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"00a5.bfff.32d4/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"00a5.bfff.70f5/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"00a5.bfff.7e39/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"00a7.42ff.ca4c/48": {
"last_register": "1d05h",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"00a7.42ff.7046/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"00a7.42ff.704b/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"00aa.6eff.0b7f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"00af.1fff.47d7/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"00af.1fff.ce6d/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"00af.1fff.e5ed/48": {
"last_register": "1d19h",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00af.1fff.f1d2/48": {
"last_register": "1d19h",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"00b1.e3ff.bb2c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"00b1.e3ff.bb41/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"00b1.e3ff.bb7a/48": {
"last_register": "08:18:39",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"00b1.e3ff.bb80/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"00b1.e3ff.bb92/48": {
"last_register": "10:48:23",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"00b1.e3ff.bc19/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"00b1.e3ff.bc25/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"00b1.e3ff.bdcf/48": {
"last_register": "04:22:38",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"00b1.e3ff.bde1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"00b1.e3ff.bdea/48": {
"last_register": "14:57:37",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"00b1.e3ff.bdf6/48": {
"last_register": "15:03:49",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"00b1.e3ff.bd7e/48": {
"last_register": "05:02:13",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"00b1.e3ff.bd90/48": {
"last_register": "02:17:56",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"00b1.e3ff.bd96/48": {
"last_register": "1d17h",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"00b1.e3ff.bda8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"00b1.e3ff.bdae/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"00b1.e3ff.be62/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"00b1.e3ff.be8f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"00b1.e3ff.be92/48": {
"last_register": "09:56:06",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"00b1.e3ff.beb6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"00b1.e3ff.bfbb/48": {
"last_register": "07:04:21",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"00b1.e3ff.bfd9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"00b1.e3ff.bfe2/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"00b1.e3ff.bf52/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"00b1.e3ff.bf5b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"00b1.e3ff.bf6d/48": {
"last_register": "03:29:36",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"00b1.e3ff.c036/48": {
"last_register": "11:50:16",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"00b1.e3ff.c039/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"00b1.e3ff.c066/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"00b1.e3ff.c1ce/48": {
"last_register": "1w2d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"00b1.e3ff.c11a/48": {
"last_register": "01:37:27",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00b1.e3ff.c147/48": {
"last_register": "01:37:23",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"00b1.e3ff.c168/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"00b1.e3ff.c25b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"00b1.e3ff.c29d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"00b1.e3ff.c2a6/48": {
"last_register": "00:11:27",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"00b1.e3ff.c2b2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"00b1.e3ff.c3e1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"00b1.e3ff.c3ed/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"00b1.e3ff.c306/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"00b1.e3ff.c38d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"00b1.e3ff.c402/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"00b1.e3ff.c43e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"00b1.e3ff.c5cd/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"00b1.e3ff.c5d6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"00b1.e3ff.c5e5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"00b1.e3ff.c5f4/48": {
"last_register": "1d06h",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"00b1.e3ff.c5f7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"00b1.e3ff.c552/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"00b1.e3ff.c573/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"00b1.e3ff.c576/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"00b1.e3ff.c57f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00b1.e3ff.c591/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"00b1.e3ff.c6ba/48": {
"last_register": "14:19:31",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"00b1.e3ff.c60c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"00b1.e3ff.c636/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"00b1.e3ff.c7c2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"00b1.e3ff.c70b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"00b1.e3ff.c70e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"00b1.e3ff.c71a/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00b1.e3ff.c71d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"00b1.e3ff.c73b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"00b1.e3ff.c8be/48": {
"last_register": "08:01:32",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"00b1.e3ff.c822/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"00b1.e3ff.c82e/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"00b1.e3ff.c9e1/48": {
"last_register": "06:27:10",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00b1.e3ff.c9e4/48": {
"last_register": "01:06:57",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00b1.e3ff.c9e7/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"00b1.e3ff.c918/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00b1.e3ff.c91b/48": {
"last_register": "00:24:24",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00b1.e3ff.c933/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00b1.e3ff.cbca/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"00b1.e3ff.cb9a/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"00b1.e3ff.ccc6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"00b1.e3ff.cc9f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"00b1.e3ff.cca8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"00b1.e3ff.cddd/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"00b1.e3ff.cde6/48": {
"last_register": "11:57:10",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00b1.e3ff.cd17/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"00b1.e3ff.ce10/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"00b1.e3ff.cfc0/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00b1.e3ff.cfc9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"00b1.e3ff.cfe1/48": {
"last_register": "04:59:58",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"00b1.e3ff.d0bf/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"00b1.e3ff.d095/48": {
"last_register": "07:01:35",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"00b1.e3ff.d1d0/48": {
"last_register": "08:20:24",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"00b1.e3ff.d1d9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"00b1.e3ff.d25a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"00b1.e3ff.d3bc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"00b1.e3ff.d395/48": {
"last_register": "01:08:56",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"00b1.e3ff.d39b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"00b1.e3ff.d43d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"00b1.e3ff.d440/48": {
"last_register": "01:35:56",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00b1.e3ff.d467/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"00b1.e3ff.d48b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"00b1.e3ff.d716/48": {
"last_register": "00:10:08",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"00b1.e3ff.d719/48": {
"last_register": "07:29:42",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"00b1.e3ff.d72e/48": {
"last_register": "16:20:11",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"00b1.e3ff.d863/48": {
"last_register": "00:27:59",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"00b1.e3ff.d8a8/48": {
"last_register": "02:31:29",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"00b1.e3ff.d9c2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00b1.e3ff.d9c5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"00b1.e3ff.d9c8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"00b1.e3ff.d9ce/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"00b1.e3ff.d9d1/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00b1.e3ff.d9f2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"00b1.e3ff.d9fe/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00b1.e3ff.d911/48": {
"last_register": "00:10:31",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00b1.e3ff.d929/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"00b1.e3ff.d92f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"00b1.e3ff.d938/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00b1.e3ff.d93e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"00b1.e3ff.d956/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"00b1.e3ff.d98f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"00b1.e3ff.d995/48": {
"last_register": "00:47:35",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"00b1.e3ff.d998/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"00b1.e3ff.575a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"00b1.e3ff.72c9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"00bf.77ff.c396/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"00bf.77ff.2829/48": {
"last_register": "1w2d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"00c1.64ff.a3af/48": {
"last_register": "1d04h",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00c1.64ff.6a7a/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"00c1.64ff.ba27/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"00c1.b1ff.ac3e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"00c8.8bff.4ac7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"00ca.e5ff.bdc9/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"00ca.e5ff.c151/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00ca.e5ff.c155/48": {
"last_register": "1d19h",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00ca.e5ff.c195/48": {
"last_register": "2d00h",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"00ca.e5ff.c1ad/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00ca.e5ff.c1b1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00ca.e5ff.1c46/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"00cc.fcff.3be1/48": {
"last_register": "2d00h",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"00cc.fcff.5769/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"00cc.fcff.98a5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"00cc.fcff.98ab/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"00cc.fcff.98b7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"00cc.fcff.98ed/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"00cc.fcff.9827/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"00cc.fcff.9857/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"00cc.fcff.985d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"00cc.fcff.9866/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"00cc.fcff.986c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"00cc.fcff.987b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"00cc.fcff.987e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"00cc.fcff.9887/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"00cc.fcff.99b9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"00cc.fcff.99d1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"00cc.fcff.99e3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"00cc.fcff.99ec/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"00cc.fcff.99f5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"00cc.fcff.99f8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00cc.fcff.99fb/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"00cc.fcff.991d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"00cc.fcff.9920/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"00cc.fcff.993b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"00cc.fcff.9941/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"00cc.fcff.9953/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00cc.fcff.9a07/48": {
"last_register": "1w6d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8191,
},
"00cc.fcff.9f77/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"00cc.fcff.a0f7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"00cc.fcff.a1ea/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"00cc.fcff.a106/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"00cc.fcff.a256/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00cc.fcff.a286/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00cc.fcff.a289/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"00cc.fcff.a3a6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"00cc.fcff.a3c1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8191,
},
"00cc.fcff.a3ca/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"00cc.fcff.a3cd/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00cc.fcff.a3df/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00cc.fcff.a3f4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"00cc.fcff.a3fa/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"00cc.fcff.a40f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"00cc.fcff.a472/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"00cc.fcff.a487/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"00cc.fcff.a48a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"00cc.fcff.a598/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"00cc.fcff.a5aa/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"00cc.fcff.a5c2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"00cc.fcff.a5da/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00cc.fcff.a5ef/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"00cc.fcff.a505/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00cc.fcff.a50b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"00cc.fcff.a6eb/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"00cc.fcff.a628/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"00cc.fcff.a646/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00cc.fcff.a658/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"00cc.fcff.a65b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"00cc.fcff.a682/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"00cc.fcff.a694/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"00cc.fcff.a7e4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"00cc.fcff.a703/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"00cc.fcff.a70c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"00cc.fcff.a72d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00cc.fcff.a730/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00cc.fcff.a73c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"00cc.fcff.a75d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"00cc.fcff.a778/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"00cc.fcff.a793/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00cc.fcff.a8a4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00cc.fcff.a826/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00cc.fcff.a96d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00cc.fcff.a98e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00cc.fcff.acf4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00cc.fcff.ad00/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00cc.fcff.b44b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"00cc.fcff.dd58/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"00cc.fcff.dea8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"00cc.fcff.e853/48": {
"last_register": "01:13:00",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"00cc.fcff.f141/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"00cc.fcff.f3ba/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"00cc.fcff.f79b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"00cc.fcff.fd98/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"00cc.fcff.fec4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"00cc.fcff.fe10/48": {
"last_register": "2d00h",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"00cc.fcff.0060/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"00cc.fcff.036c/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"00cc.fcff.0f84/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.252:16799",
"inst_id": 8191,
},
"00cc.fcff.110a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"00cc.fcff.1113/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"00cc.fcff.12ae/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"00cc.fcff.12d5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"00cc.fcff.125d/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00cc.fcff.17eb/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00cc.fcff.187e/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00cc.fcff.1953/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"00cc.fcff.1ad9/48": {
"last_register": "09:49:46",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00cc.fcff.1adf/48": {
"last_register": "09:35:59",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00cc.fcff.1a2b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"00cc.fcff.1a3a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"00cc.fcff.1a4c/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00cc.fcff.1a4f/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00cc.fcff.1a73/48": {
"last_register": "00:40:53",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00cc.fcff.1a82/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"00cc.fcff.1a88/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00cc.fcff.1a8b/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00cc.fcff.1a94/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00cc.fcff.1b48/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"00cc.fcff.1b99/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00cc.fcff.1c9e/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00cc.fcff.1caa/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"00cc.fcff.1cf2/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00cc.fcff.1cf5/48": {
"last_register": "15:09:12",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"00cc.fcff.2424/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"00cc.fcff.2b3e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"00cc.fcff.4272/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"00eb.d5ff.0e1e/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"00eb.d5ff.1661/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"00fd.22ff.46eb/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"00fd.22ff.60af/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"00fe.c8ff.0734/48": {
"last_register": "1w2d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"00fe.c8ff.075e/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"00fe.c8ff.228c/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"00fe.c8ff.23bd/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"00fe.c8ff.23ed/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"00fe.c8ff.3ead/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"00fe.c8ff.77e0/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"00fe.c8ff.b0ec/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"00fe.c8ff.c94d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"00fe.c8ff.ca3d/48": {
"last_register": "1d19h",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"00fe.c8ff.dad8/48": {
"last_register": "1d19h",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"00fe.c8ff.dcc0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"042a.e2ff.2b33/48": {
"last_register": "1d04h",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"042a.e2ff.28cf/48": {
"last_register": "1d19h",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"042a.e2ff.2c40/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"042a.e2ff.c454/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"0462.73ff.1ce0/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"0462.73ff.1cea/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"0462.73ff.1cfd/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"0462.73ff.60fa/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"0462.73ff.60fc/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"0462.73ff.313c/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04c5.a4ff.ee8a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"04da.d2ff.65a2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"04eb.40ff.c21e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.c8d8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.df31/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.e44a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.e9ab/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.3860/48": {
"last_register": "10:35:34",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.6e4e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"04eb.40ff.73d6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8191,
},
"04eb.40ff.8d53/48": {
"last_register": "01:52:52",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.f474/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.f486/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.f555/48": {
"last_register": "03:21:05",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.f5b5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.f6c9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.f6cc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.f6f3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.f60f/48": {
"last_register": "04:24:22",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.f66f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.f765/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.f768/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.f8d0/48": {
"last_register": "00:13:33",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.f8d3/48": {
"last_register": "1d01h",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.f8f1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.f828/48": {
"last_register": "04:15:56",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.f83d/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.f846/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.f9a2/48": {
"last_register": "00:37:42",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.fac2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"04eb.40ff.faf2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.fa23/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.fa35/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.fa6e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.fab0/48": {
"last_register": "03:58:29",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.fb10/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.fcf6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.fc33/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.fde9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.fdf5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.febe/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.fe67/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.fe88/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.00cc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"04eb.40ff.0048/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"04eb.40ff.0057/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.0147/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.0156/48": {
"last_register": "02:26:47",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.015c/48": {
"last_register": "2d01h",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.0162/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.0186/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.02df/48": {
"last_register": "20:28:06",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.02e5/48": {
"last_register": "09:06:08",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.02eb/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.02ee/48": {
"last_register": "03:42:42",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.02f7/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.02fa/48": {
"last_register": "4d04h",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.0201/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.0207/48": {
"last_register": "06:16:17",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.022e/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.0276/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.0318/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"04eb.40ff.035d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"04eb.40ff.045f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"04eb.40ff.0465/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"04eb.40ff.0468/48": {
"last_register": "1d04h",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.0546/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.06d5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.06de/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.06e4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"04eb.40ff.0642/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"04eb.40ff.0645/48": {
"last_register": "01:03:58",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.07b9/48": {
"last_register": "21:01:29",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.07c5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"04eb.40ff.07cb/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"04eb.40ff.07ce/48": {
"last_register": "05:57:23",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.071a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"04eb.40ff.07a1/48": {
"last_register": "08:21:00",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.07b3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.080d/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.0810/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.0825/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.084f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.0879/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"04eb.40ff.08a0/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.08b5/48": {
"last_register": "23:09:23",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.09f6/48": {
"last_register": "06:51:08",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.0903/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.0936/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.0957/48": {
"last_register": "1w2d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.0960/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.0969/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.096c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.097e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.0996/48": {
"last_register": "01:34:58",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.09ab/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.0aec/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.0afb/48": {
"last_register": "08:57:19",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.0a20/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.0a38/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.0a47/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.0a5f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.0a7d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.0a86/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.0a9e/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.0ab3/48": {
"last_register": "03:51:38",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.0bbe/48": {
"last_register": "13:21:01",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.0bc7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.0bfd/48": {
"last_register": "1d16h",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.0b0a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"04eb.40ff.0b31/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.0b34/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.0b73/48": {
"last_register": "12:19:48",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.0b91/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.0b97/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"04eb.40ff.0ced/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.0c60/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"04eb.40ff.0c81/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.0dd7/48": {
"last_register": "08:34:33",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.0dda/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"04eb.40ff.0dfe/48": {
"last_register": "07:48:54",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.0d56/48": {
"last_register": "18:34:05",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.0d71/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"04eb.40ff.0e10/48": {
"last_register": "05:53:48",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.0e52/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.0e76/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.0e8e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.0fed/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.0f1e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.0f24/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.0f5a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"04eb.40ff.10cb/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.1020/48": {
"last_register": "1d14h",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.102f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.106b/48": {
"last_register": "14:50:25",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.108f/48": {
"last_register": "15:20:00",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.1125/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.1146/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"04eb.40ff.118e/48": {
"last_register": "05:27:56",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.12c6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.12e1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.12ed/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"04eb.40ff.123c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"04eb.40ff.1272/48": {
"last_register": "16:41:45",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.1284/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.13d4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"04eb.40ff.13fb/48": {
"last_register": "07:56:06",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.142e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"04eb.40ff.15e4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.15f3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"04eb.40ff.1524/48": {
"last_register": "05:14:46",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.1527/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.156f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"04eb.40ff.1581/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.1599/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.15b7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.16c8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"04eb.40ff.1629/48": {
"last_register": "09:06:56",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.165f/48": {
"last_register": "4d23h",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"04eb.40ff.17ac/48": {
"last_register": "03:15:57",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.17af/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.17b2/48": {
"last_register": "1d01h",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.1827/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"04eb.40ff.183c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.187b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.1881/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.189f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.192c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.1950/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.1959/48": {
"last_register": "16:07:57",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.198c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"04eb.40ff.1995/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.19aa/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.1ac7/48": {
"last_register": "09:02:41",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.1a28/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.1a2b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"04eb.40ff.1a73/48": {
"last_register": "08:32:52",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.1a8b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.1be4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.1b03/48": {
"last_register": "18:27:06",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.1b06/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.1b12/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"04eb.40ff.1b4b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.1b4e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"04eb.40ff.1b78/48": {
"last_register": "14:37:34",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.1b93/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.1cf8/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.1c08/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.1c11/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.1c38/48": {
"last_register": "2d10h",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.1c59/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"04eb.40ff.1c5c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.1c89/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"04eb.40ff.1dd6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.1df7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"04eb.40ff.1d16/48": {
"last_register": "05:30:45",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.1d22/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.1d4f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.1d67/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.1d9d/48": {
"last_register": "1d19h",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.1eba/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.1ee7/48": {
"last_register": "2d19h",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"04eb.40ff.1e00/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"04eb.40ff.1e7e/48": {
"last_register": "13:54:40",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.1e8d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"04eb.40ff.1ea2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"04eb.40ff.1ea5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.1fbc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"04eb.40ff.1fcb/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"04eb.40ff.1fdd/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.1f05/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.1f0b/48": {
"last_register": "01:13:45",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.1f2c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.20d9/48": {
"last_register": "14:07:24",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.20f1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"04eb.40ff.20fd/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"04eb.40ff.2031/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"04eb.40ff.2052/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.2061/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.207c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"04eb.40ff.2097/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.21cc/48": {
"last_register": "00:32:44",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.21e1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.2124/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.212a/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.21b7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.22e9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"04eb.40ff.22ec/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.22f8/48": {
"last_register": "10:50:13",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.2259/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"04eb.40ff.2283/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.23fd/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.2304/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"04eb.40ff.2310/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.2313/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.235e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.2364/48": {
"last_register": "19:50:00",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.237c/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.24c0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"04eb.40ff.2400/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"04eb.40ff.2415/48": {
"last_register": "01:22:49",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.241e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.2526/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.26c4/48": {
"last_register": "2w0d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.26c7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"04eb.40ff.26df/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.2694/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.2715/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"04eb.40ff.274e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.2751/48": {
"last_register": "04:28:40",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.29d0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.2af9/48": {
"last_register": "04:39:52",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.2a0f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.2bfb/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.2b6b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.2b80/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.2cfa/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.2c4c/48": {
"last_register": "13:00:56",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.2d00/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"04eb.40ff.2d03/48": {
"last_register": "00:24:02",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.2d4e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.2d5a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.2ebf/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.2fc1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.2fc7/48": {
"last_register": "10:57:02",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.2fe8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.2ff1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.2f2e/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.2f49/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.2f4f/48": {
"last_register": "02:35:00",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.2f55/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.2f5b/48": {
"last_register": "05:25:08",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.2f61/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.2f82/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.2f94/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.2fb5/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.30c0/48": {
"last_register": "1d01h",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.30cf/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"04eb.40ff.305a/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.30ae/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.31fb/48": {
"last_register": "02:11:44",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.3102/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.3123/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.32c7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.321f/48": {
"last_register": "22:40:42",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.3327/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"04eb.40ff.3354/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"04eb.40ff.33b1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.34b9/48": {
"last_register": "11:09:51",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.34ce/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"04eb.40ff.3402/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.342f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.343e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.3444/48": {
"last_register": "04:54:48",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.347d/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.35be/48": {
"last_register": "00:57:09",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.35c4/48": {
"last_register": "1d02h",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.35d3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.35e8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.35eb/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.3522/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.3525/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.3540/48": {
"last_register": "1w2d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.356a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"04eb.40ff.3579/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.35a6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.35ac/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.363c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.3669/48": {
"last_register": "04:58:48",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.3672/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"04eb.40ff.3675/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.3690/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.36b7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.37c8/48": {
"last_register": "1w2d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.3702/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.3711/48": {
"last_register": "19:06:15",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.3744/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.3801/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.3831/48": {
"last_register": "00:03:50",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.3849/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"04eb.40ff.3852/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"04eb.40ff.3939/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.3957/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.395d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.3972/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.3975/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.398d/48": {
"last_register": "03:43:28",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.3a71/48": {
"last_register": "07:38:54",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.3bd9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.3bf1/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.3ccc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.3cdb/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.9708/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"04eb.40ff.970e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.971a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.972c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"04eb.40ff.9735/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.9738/48": {
"last_register": "06:15:18",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.974a/48": {
"last_register": "07:53:51",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.98d0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.98d9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.98eb/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.9816/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8191,
},
"04eb.40ff.9819/48": {
"last_register": "11:30:19",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.981f/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.9822/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.9837/48": {
"last_register": "08:42:51",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.983a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.9855/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.9882/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.9897/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"04eb.40ff.98a9/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.99cc/48": {
"last_register": "00:20:52",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.99e4/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.9900/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.9912/48": {
"last_register": "08:20:48",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.9918/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.9924/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.992a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.992d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.9942/48": {
"last_register": "05:31:32",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.997b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.997e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.999f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.99a2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.99ae/48": {
"last_register": "09:16:51",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.99b4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.9ac8/48": {
"last_register": "11:54:10",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.9ae9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"04eb.40ff.9afb/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"04eb.40ff.9a38/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.9a3e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"04eb.40ff.9a41/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.9a47/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.9a86/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.9ab3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.9bc7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.9bcd/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.9bd0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.9bd3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.9bd6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.9beb/48": {
"last_register": "01:19:34",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.9bee/48": {
"last_register": "04:48:46",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.9bf1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.9bf4/48": {
"last_register": "02:29:24",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.9bfd/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.9b13/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.9b4c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"04eb.40ff.9b55/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"04eb.40ff.9b64/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.9b73/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.9b8b/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.9b91/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.9b9d/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.9ba6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.9bb5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.9cc3/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.9cf0/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.9c00/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.9c2d/48": {
"last_register": "06:44:42",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.9c33/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.9c4e/48": {
"last_register": "10:46:48",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.9c57/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.9d1d/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.9d32/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.9d35/48": {
"last_register": "10:16:58",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.9d44/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"04eb.40ff.9d56/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.9d59/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.9f12/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"04eb.40ff.9f18/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.9f2a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"04eb.40ff.9f36/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"04eb.40ff.9f3c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.9f45/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"04eb.40ff.9f57/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.9f5d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.9f99/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.9fa5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.a0c2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.a0f5/48": {
"last_register": "10:15:24",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.a017/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.a01d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.a020/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.a023/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.a026/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"04eb.40ff.a02c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.a035/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.a038/48": {
"last_register": "08:59:28",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.a03e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"04eb.40ff.a044/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.a053/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.a059/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.a05c/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.a08f/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.a092/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.a09b/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.a0b3/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.a0b9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"04eb.40ff.a1c1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.a131/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.a158/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.a164/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"04eb.40ff.a167/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.a16a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.a170/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.a176/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"04eb.40ff.a188/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.a191/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.a194/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"04eb.40ff.a1b5/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.a2d2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"04eb.40ff.a2fc/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.a203/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.a215/48": {
"last_register": "03:09:12",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.a260/48": {
"last_register": "00:30:22",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.a3d4/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.a3e3/48": {
"last_register": "20:13:35",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.a3ec/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"04eb.40ff.a3fb/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.a3fe/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"04eb.40ff.a311/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"04eb.40ff.a314/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"04eb.40ff.a437/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"04eb.40ff.a443/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"04eb.40ff.a449/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.a44c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.a45e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.a752/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.a755/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.a782/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.a7ac/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.a7b2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.a7b5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.a8cf/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.a8d5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.a8f3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.a85d/48": {
"last_register": "15:39:16",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.a8b1/48": {
"last_register": "00:21:49",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.a8b4/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.a9bc/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.a98c/48": {
"last_register": "4d04h",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.a98f/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.a9b6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.aacd/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.aad0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.aae2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.aaf1/48": {
"last_register": "01:11:40",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.aa28/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.abea/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"04eb.40ff.ab1e/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.ab21/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"04eb.40ff.ab2d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"04eb.40ff.ad0a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.ad4c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"04eb.40ff.ad5e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8191,
},
"04eb.40ff.ad73/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.ada9/48": {
"last_register": "00:44:41",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.adb5/48": {
"last_register": "1w2d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.aebd/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.aee7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.ae99/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.ae9c/48": {
"last_register": "00:56:08",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.b1db/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.b1de/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.b1e1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.b133/48": {
"last_register": "1d06h",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.b136/48": {
"last_register": "1d01h",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.b13c/48": {
"last_register": "10:52:01",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.b142/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.b145/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.b14e/48": {
"last_register": "13:06:00",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.b17b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.b181/48": {
"last_register": "1d10h",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.b18d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.b1ab/48": {
"last_register": "15:56:15",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.b4fc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.b400/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.b7c9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.b72a/48": {
"last_register": "11:51:18",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.b730/48": {
"last_register": "00:34:06",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.b742/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.b745/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.b748/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.b74e/48": {
"last_register": "1d02h",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.b7ab/48": {
"last_register": "05:31:58",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.b7b1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.b8d7/48": {
"last_register": "00:01:56",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"04eb.40ff.b8e0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"04eb.40ff.b8f5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.b8f8/48": {
"last_register": "05:16:54",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.b82f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.b844/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.b85f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"04eb.40ff.b862/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.b871/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.b889/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"04eb.40ff.b892/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.b9ca/48": {
"last_register": "1w2d",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.b9d6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.b901/48": {
"last_register": "10:14:47",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"04eb.40ff.b931/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.b93d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"04eb.40ff.b943/48": {
"last_register": "22:40:18",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"04eb.40ff.b970/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"04eb.40ff.b97c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"0817.35ff.b5b1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.8:43876",
"inst_id": 8191,
},
"0896.adff.3dcd/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0896.adff.764d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"0896.adff.a484/48": {
"last_register": "1d03h",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"0896.adff.dae8/48": {
"last_register": "1d19h",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"0896.adff.899b/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"0896.adff.f148/48": {
"last_register": "1d19h",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"0896.adff.ef45/48": {
"last_register": "1d19h",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"08cc.68ff.eecc/48": {
"last_register": "00:19:15",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"08cc.68ff.ef69/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.172:11801",
"inst_id": 8191,
},
"08cc.68ff.f198/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"08cc.68ff.f272/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"08cc.68ff.f344/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"08cc.68ff.99ad/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"08cc.68ff.9c70/48": {
"last_register": "00:49:28",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"08cc.68ff.e750/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"08cc.68ff.1894/48": {
"last_register": "1w0d",
"up": "yes#",
"who_last_registered": "10.8.128.252:16799",
"inst_id": 8191,
},
"08cc.68ff.194d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"08cc.68ff.19cc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"08cc.68ff.1b3e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.172:11801",
"inst_id": 8191,
},
"08cc.68ff.1b47/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.172:11801",
"inst_id": 8191,
},
"08cc.68ff.1cd2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"08cc.68ff.1cd4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.172:11801",
"inst_id": 8191,
},
"08cc.68ff.1d3c/48": {
"last_register": "1w6d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"08cc.68ff.c3ec/48": {
"last_register": "02:18:09",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"08ec.f5ff.f753/48": {
"last_register": "1d05h",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"08ec.f5ff.911a/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"08ec.f5ff.c633/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"08ec.f5ff.c7ef/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"0c11.67ff.15cc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"0c27.24ff.4eaa/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"0c27.24ff.4eb0/48": {
"last_register": "1w4d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"0c75.bdff.46a2/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"10b3.d6ff.48be/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"10bd.18ff.e4aa/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"10bd.18ff.9fb0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"1833.9dff.15c4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"189c.5dff.e2c1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"189c.5dff.1313/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.23:20011",
"inst_id": 8191,
},
"189c.5dff.1f4a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"189c.5dff.20db/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"1c17.d3ff.93f1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"1c1d.86ff.ce51/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"1c1d.86ff.d0e7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"1c1d.86ff.d186/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"1c1d.86ff.6ced/48": {
"last_register": "00:35:52",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"1c1d.86ff.6d04/48": {
"last_register": "1d01h",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"1c1d.86ff.0069/48": {
"last_register": "1w5d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"1c1d.86ff.042b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"1c1d.86ff.0706/48": {
"last_register": "03:04:23",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"1c1d.86ff.07b3/48": {
"last_register": "02:20:19",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"1c1d.86ff.08d1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"1c1d.86ff.26f4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"1c1d.86ff.272c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"1c1d.86ff.2790/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"1c1d.86ff.281b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"1c1d.86ff.29cc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"1c1d.86ff.2912/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"1c1d.86ff.292f/48": {
"last_register": "03:49:28",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"1c1d.86ff.2939/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"1c1d.86ff.4301/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"1c1d.86ff.4392/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"1c1d.86ff.44ce/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"1c1d.86ff.44e7/48": {
"last_register": "00:41:54",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"1c1d.86ff.4410/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"1c1d.86ff.467f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"1c1d.86ff.479e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"1c6a.7aff.1fb4/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"1c6a.7aff.392e/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"1c6a.7aff.3b4a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"1c6a.7aff.3d68/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"1c6a.7aff.419a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"1c6a.7aff.4cc2/48": {
"last_register": "1d05h",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"1c6a.7aff.55e2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"1c6a.7aff.5860/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"1c6a.7aff.5e6a/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"1c6a.7aff.5f17/48": {
"last_register": "1d04h",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"1c6a.7aff.62d5/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"1c6a.7aff.6462/48": {
"last_register": "1d19h",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"1c6a.7aff.65e9/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"1c6a.7aff.7026/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"1c6a.7aff.709a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"1c6a.7aff.76fc/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"1c6a.7aff.83e0/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"1c6a.7aff.8539/48": {
"last_register": "5d19h",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"1c6a.7aff.87a5/48": {
"last_register": "1w0d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"1c6a.7aff.95a6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"1c6a.7aff.9bb5/48": {
"last_register": "1w2d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"1c6a.7aff.9d1f/48": {
"last_register": "1w2d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"1c6a.7aff.a284/48": {
"last_register": "1w2d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"1c6a.7aff.a286/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"1c6a.7aff.a382/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"1c6a.7aff.aabc/48": {
"last_register": "1d19h",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"1c6a.7aff.adb9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"1c6a.7aff.afa7/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"1c6a.7aff.b592/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"1c6a.7aff.b5b4/48": {
"last_register": "00:04:01",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"1c6a.7aff.b696/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"1c6a.7aff.b703/48": {
"last_register": "1d05h",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"1c6a.7aff.b957/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"1c6a.7aff.b9a9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"1c6a.7aff.c76c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"1c6a.7aff.c853/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"1c6a.7aff.d203/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"1c6a.7aff.d499/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"1c6a.7aff.dc90/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"1c6a.7aff.df2f/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"1c6a.7aff.e49b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"1c6a.7aff.e741/48": {
"last_register": "5d23h",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"1c6a.7aff.e8be/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"1c6a.7aff.f1f8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"1c6a.7aff.f115/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"1c6a.7aff.fb74/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"1c6a.7aff.fc99/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"1c6a.7aff.0021/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"1c6a.7aff.0318/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"1ce8.5dff.dd5f/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"1ce8.5dff.fe12/48": {
"last_register": "2d00h",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"1ce8.5dff.b80d/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"203a.07ff.6701/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.23:20011",
"inst_id": 8191,
},
"203a.07ff.6ada/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"24b6.57ff.41c7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"2834.a2ff.7029/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"2c01.b5ff.1828/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"2c01.b5ff.1a87/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"2c01.b5ff.1e92/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"2c01.b5ff.c320/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"2c01.b5ff.c356/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"2c01.b5ff.c620/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"2c01.b5ff.ca1f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"2c01.b5ff.dd0c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"2c0b.e9ff.ca4c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8191,
},
"2c31.24ff.60f0/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"2c31.24ff.6000/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"2c31.24ff.8713/48": {
"last_register": "1d19h",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"2c31.24ff.adb3/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"2c31.24ff.4e76/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"2c31.24ff.b476/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"2c31.24ff.ebc7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"2c3e.cfff.1d6d/48": {
"last_register": "3d10h",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"2c86.d2ff.9612/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"2cab.ebff.946a/48": {
"last_register": "00:03:52",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"34bd.c8ff.505f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"34bd.c8ff.0c1c/48": {
"last_register": "23:57:44",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"34db.fdff.d2a8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"3c0e.23ff.9056/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"3c0e.23ff.d039/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"3c0e.23ff.d198/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"3c0e.23ff.d24b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"3c0e.23ff.d47e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"3c0e.23ff.d591/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"3c0e.23ff.6a94/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"3c0e.23ff.6ad8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"3c0e.23ff.6a42/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"3c0e.23ff.6b89/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"3c0e.23ff.6bc4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"3c0e.23ff.6b46/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"3c0e.23ff.6c79/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"3c0e.23ff.6c13/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"3c0e.23ff.6eaa/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"3c0e.23ff.6f88/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"3c0e.23ff.2ba4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"3c0e.23ff.2baf/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"3c0e.23ff.2bce/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"3c0e.23ff.2c16/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"3c0e.23ff.2c1e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"3c0e.23ff.2c67/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"3c0e.23ff.2ddd/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"3c0e.23ff.2e52/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"3c0e.23ff.2e59/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"3c0e.23ff.2f87/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"3c0e.23ff.2f89/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"3c0e.23ff.2f92/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"3c41.0eff.bea6/48": {
"last_register": "08:34:00",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"3c41.0eff.bff0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.172:11801",
"inst_id": 8191,
},
"3c41.0eff.c48e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"3c41.0eff.d445/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.172:11801",
"inst_id": 8191,
},
"3c41.0eff.d547/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"3c41.0eff.dda5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"3c41.0eff.e459/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.184:44273",
"inst_id": 8191,
},
"3c41.0eff.e492/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"3c41.0eff.e5b8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"3c41.0eff.6699/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"3c41.0eff.67bc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.252:16799",
"inst_id": 8191,
},
"44e4.d9ff.de32/48": {
"last_register": "00:34:58",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"4cbc.48ff.6f0a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"4ce1.76ff.cba6/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"5006.abff.8996/48": {
"last_register": "06:13:25",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"5006.abff.8aa1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"5006.abff.8e76/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"5006.abff.e937/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"5006.abff.ec31/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"5006.abff.51b1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"5006.abff.52d4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"5006.abff.5f07/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"5006.abff.66c3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"5006.abff.6a5c/48": {
"last_register": "04:14:18",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"5006.abff.6ba0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"5006.abff.75f3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"5006.abff.779d/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"5006.abff.7a67/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"5006.abff.7d1c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"5006.abff.7e9c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.184:44273",
"inst_id": 8191,
},
"5006.abff.9ab7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"5006.abff.9d0f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"5006.abff.a0cf/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"5006.abff.a5a0/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"5006.abff.ab97/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"5006.abff.abdf/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"5006.abff.ac81/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"5006.abff.acd2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"5006.abff.aeb8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"5006.abff.aedc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"5006.abff.afba/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"5006.abff.aff9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"5006.abff.af15/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"5006.abff.b410/48": {
"last_register": "04:10:51",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"5006.abff.3262/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"5006.abff.3274/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"5017.ffff.75c9/48": {
"last_register": "1d22h",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"501c.bfff.c2a7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"50f7.22ff.8d1a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"50f7.22ff.ce8a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"50f7.22ff.d3e4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"5897.1eff.35dc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"5897.bdff.8bb1/48": {
"last_register": "00:03:16",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"5897.bdff.9031/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"58ac.78ff.3fdc/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"58ac.78ff.3f35/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"58ac.78ff.478f/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"58ac.78ff.7772/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"58ac.78ff.7774/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"58ac.78ff.7775/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"58ac.78ff.777b/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"58ac.78ff.777d/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"58ac.78ff.7c1f/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"58ac.78ff.7dce/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"58ac.78ff.7dcf/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"5c50.15ff.71b8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"5c50.15ff.7c03/48": {
"last_register": "00:46:31",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"5c83.8fff.87b6/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"5c83.8fff.a1d8/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"5c83.8fff.b57e/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"5c83.8fff.b5b4/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"5c83.8fff.b5b6/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"5c83.8fff.b5bb/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"5c83.8fff.b5c2/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"5c83.8fff.b5db/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"5c83.8fff.bff2/48": {
"last_register": "1w2d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"5c83.8fff.bf1b/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"5c83.8fff.ccc9/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"5c83.8fff.cc04/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"5c83.8fff.cc3a/48": {
"last_register": "2d23h",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"5c83.8fff.cc3b/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"5c83.8fff.cc4a/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"5c83.8fff.d509/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"5c83.8fff.d510/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"5c83.8fff.d511/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"5c83.8fff.d519/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"5c83.8fff.d51a/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"5c83.8fff.e6b3/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"5c83.8fff.f713/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"5c83.8fff.0717/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"5c83.8fff.3de7/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"5c83.8fff.b69b/48": {
"last_register": "1w2d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"5c83.8fff.b6a2/48": {
"last_register": "1w2d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"5c83.8fff.b6a3/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"5c83.8fff.b6ab/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"5c83.8fff.b6c6/48": {
"last_register": "1w2d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"5c83.8fff.b7e0/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"5c83.8fff.b7e2/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"5c83.8fff.b789/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"5c83.8fff.d22a/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"649e.f3ff.88c1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"649e.f3ff.898f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"649e.f3ff.89ce/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"649e.f3ff.89eb/48": {
"last_register": "1w2d",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"649e.f3ff.894f/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"649e.f3ff.8f23/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"649e.f3ff.90dc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"649e.f3ff.91ab/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"649e.f3ff.9536/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"649e.f3ff.9791/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"649e.f3ff.c886/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"649e.f3ff.cca8/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"649e.f3ff.e91c/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"649e.f3ff.eb96/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"649e.f3ff.ec62/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"649e.f3ff.ecfd/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"649e.f3ff.f75c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"649e.f3ff.0c0e/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"649e.f3ff.306c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"649e.f3ff.594b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"64f6.9dff.c957/48": {
"last_register": "1d19h",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"64f6.9dff.275f/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"64f6.9dff.83bd/48": {
"last_register": "04:03:45",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8191,
},
"64f6.9dff.8668/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"64f6.9dff.8b20/48": {
"last_register": "04:02:53",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"682c.7bff.556b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"682c.7bff.55dd/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"682c.7bff.55ec/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"682c.7bff.55fe/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"682c.7bff.589e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"682c.7bff.7736/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.252:16799",
"inst_id": 8191,
},
"682c.7bff.9ee7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.252:16799",
"inst_id": 8191,
},
"682c.7bff.a3af/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"682c.7bff.a463/48": {
"last_register": "00:36:44",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"682c.7bff.a841/48": {
"last_register": "09:56:41",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"682c.7bff.aaa5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"682c.7bff.acc7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"682c.7bff.aeb3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"682c.7bff.b09c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"682c.7bff.b012/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"682c.7bff.b18c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"682c.7bff.b1d7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"682c.7bff.b1e9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"682c.7bff.b261/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"682c.7bff.b285/48": {
"last_register": "01:56:00",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"682c.7bff.b28b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"682c.7bff.b3ab/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"682c.7bff.b3b1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"682c.7bff.b336/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"682c.7bff.b35a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"682c.7bff.b4ce/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"682c.7bff.b411/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"682c.7bff.b438/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"682c.7bff.b5dc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"682c.7bff.b51c/48": {
"last_register": "03:41:14",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"6886.a7ff.e080/48": {
"last_register": "1d01h",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"6886.a7ff.e14e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.252:16799",
"inst_id": 8191,
},
"6886.a7ff.e287/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.172:11801",
"inst_id": 8191,
},
"6886.a7ff.f68e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"68bd.abff.4b18/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.179:15443",
"inst_id": 8191,
},
"68bd.abff.bfba/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"68bd.abff.c1c1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8191,
},
"6c6c.d3ff.4497/48": {
"last_register": "1d03h",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"6c71.0dff.3759/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"6c71.0dff.47e9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.172:11801",
"inst_id": 8191,
},
"6c71.0dff.7f63/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"6c71.0dff.86b0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"7001.b5ff.962d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"7001.b5ff.9776/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"7001.b5ff.97b0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"7001.b5ff.9739/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"7001.b5ff.973d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"7001.b5ff.9755/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"7001.b5ff.988c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"7001.b5ff.988e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"7001.b5ff.9894/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"7001.b5ff.9896/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"7001.b5ff.65109/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"7001.b5ff.99b4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"7001.b5ff.99cc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"7001.b5ff.990b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"7001.b5ff.a245/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"7001.b5ff.a6e0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"7001.b5ff.e9b8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"7001.b5ff.f4ad/48": {
"last_register": "06:18:28",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"700b.4fff.0274/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"7035.09ff.68f2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"7035.09ff.6caf/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"7035.09ff.9745/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"7035.09ff.106c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"706e.6dff.b286/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"706e.6dff.b386/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"70e4.22ff.492f/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"70e4.22ff.4967/48": {
"last_register": "1w2d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"70e4.22ff.1b6e/48": {
"last_register": "2d00h",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"70f0.96ff.3eca/48": {
"last_register": "1d22h",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"7426.acff.f513/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"7426.acff.f5c2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"7426.acff.f899/48": {
"last_register": "4d16h",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"7488.bbff.1a0c/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"7488.bbff.c15d/48": {
"last_register": "1w2d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"7488.bbff.d507/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"74a0.2fff.57cb/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"74a0.2fff.5d12/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"74a0.2fff.6c37/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"74a0.2fff.6e4a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"74a0.2fff.73f1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"74a0.2fff.75be/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"74a0.2fff.7ae9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"74a0.2fff.ada2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"74a0.2fff.bc84/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"74a0.2fff.bedc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"7802.b1ff.be7e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"7872.5dff.7bd9/48": {
"last_register": "1d05h",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"7872.5dff.4c63/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"7872.5dff.0055/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"78da.6eff.42e0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"7c95.f3ff.c98c/48": {
"last_register": "00:23:00",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"80e8.6fff.be14/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"881d.fcff.57f7/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"881d.fcff.6f13/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"881d.fcff.7566/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"8843.e1ff.b66b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"8843.e1ff.f0cf/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"8843.e1ff.37d0/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"8843.e1ff.82f6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"8875.56ff.7346/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"8875.56ff.74ee/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"8875.56ff.cbc5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.252:16799",
"inst_id": 8191,
},
"8cb6.4fff.45a2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"94d4.69ff.e681/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"94d4.69ff.e606/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"94d4.69ff.e711/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"94d4.69ff.e774/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"9c57.adff.4368/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8191,
},
"9c57.adff.43c8/48": {
"last_register": "10:03:29",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"9c57.adff.43ec/48": {
"last_register": "01:43:20",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"9c57.adff.447c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8191,
},
"9c57.adff.44a2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8191,
},
"9c57.adff.44c6/48": {
"last_register": "00:02:16",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"9c57.adff.44ee/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8191,
},
"9c57.adff.4401/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"9c57.adff.4518/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"9c57.adff.453f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8191,
},
"9c57.adff.4558/48": {
"last_register": "1d02h",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"9c57.adff.456f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8191,
},
"9c57.adff.4577/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8191,
},
"9c57.adff.4657/48": {
"last_register": "00:09:33",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"9c57.adff.465e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"9c57.adff.46ec/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"9c57.adff.4743/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"9c57.adff.47ad/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8191,
},
"9c57.adff.47ae/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"9c57.adff.47f1/48": {
"last_register": "3d16h",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"9c57.adff.4917/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"9c57.adff.494c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"9c57.adff.4a15/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"9c57.adff.4abe/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"9c57.adff.4ac5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8191,
},
"a456.30ff.041f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"a46c.2aff.f113/48": {
"last_register": "2d03h",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"a89d.21ff.83ba/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"a89d.21ff.9c56/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"a89d.21ff.9c64/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"a89d.21ff.9c6c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"ac7e.8aff.ccb2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"ac7e.8aff.db40/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"ac7e.8aff.ed9e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"ac7e.8aff.eee3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"ac7e.8aff.f7fd/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"ac7e.8aff.f73c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"ac7e.8aff.1518/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"ac7e.8aff.1b8e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"ac7e.8aff.3f10/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"ac7e.8aff.52b6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"ac7e.8aff.585c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"ac7e.8aff.5868/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"ac7e.8aff.5961/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"ac7e.8aff.5a03/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"ac7e.8aff.5cc4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"ac7e.8aff.6372/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"ac7e.8aff.663c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"ac7e.8aff.6837/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"ac7e.8aff.69ab/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"ac7e.8aff.6bc1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"ac7e.8aff.6be5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"ac7e.8aff.6b04/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"ac7e.8aff.75a2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"ac7e.8aff.7c9b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"ac7e.8aff.4217/48": {
"last_register": "2w0d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"ac7e.8aff.428d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"ac7e.8aff.8e74/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"ac7e.8aff.9450/48": {
"last_register": "1d08h",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"ac7e.8aff.94b0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"ac7e.8aff.9750/48": {
"last_register": "1w4d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"ac7e.8aff.b5bf/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.252:16799",
"inst_id": 8191,
},
"aca0.16ff.920f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"aca0.16ff.4672/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"aca0.16ff.dd49/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"aca0.16ff.e748/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"b000.b4ff.de10/48": {
"last_register": "2d23h",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"b000.b4ff.de79/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"b000.b4ff.e29f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"b026.80ff.3bbb/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"b026.80ff.5a89/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"b026.80ff.ec67/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"b026.80ff.ec72/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"b026.80ff.ec7b/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"b8be.bfff.9415/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"bc16.f5ff.523c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"bcf1.f2ff.25b3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"c062.6bff.7d07/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"c40a.cbff.e5ea/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8191,
},
"c40a.cbff.4920/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"c414.3cff.3a0e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"c414.3cff.3d6d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8191,
},
"c414.3cff.6101/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"c414.3cff.6129/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"c414.3cff.63f8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"c414.3cff.d74c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.166:31256",
"inst_id": 8191,
},
"c4b3.6aff.77c1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"c4b3.6aff.d501/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"c4b3.6aff.d525/48": {
"last_register": "1w0d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8191,
},
"c4b3.6aff.95d7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"c4b3.6aff.a1e0/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"cc5a.53ff.26d4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"cc5a.53ff.a5c5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"d057.4cff.1cb2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"d057.4cff.1d09/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.179:15443",
"inst_id": 8191,
},
"d057.4cff.12d9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"d0c2.82ff.7da1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"d0ec.35ff.02a4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"d0ec.35ff.9754/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"d0ec.35ff.5393/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"d4ad.71ff.85df/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"d4ad.71ff.867b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"d4ad.71ff.8d7d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"d4ad.71ff.9785/48": {
"last_register": "2d03h",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"d4ad.71ff.e682/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"d4ad.71ff.f88e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"d4ad.bdff.e91b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"d824.bdff.c2e1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"d824.bdff.28d1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"dc8c.37ff.1148/48": {
"last_register": "1d19h",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"dceb.94ff.60f7/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"dceb.94ff.6002/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"dceb.94ff.8fb4/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"dceb.94ff.a43e/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"dceb.94ff.bba2/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"dceb.94ff.bbaf/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"dceb.94ff.6f7d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"dceb.94ff.7379/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"dceb.94ff.7475/48": {
"last_register": "00:04:52",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"dceb.94ff.8275/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"dceb.94ff.8303/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"dcf7.19ff.fd09/48": {
"last_register": "05:00:53",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"dcf7.19ff.4633/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"dcf7.19ff.46ab/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"dcf7.19ff.4756/48": {
"last_register": "03:00:56",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"dcf7.19ff.5509/48": {
"last_register": "05:17:50",
"up": "yes#",
"who_last_registered": "10.8.128.167:48866",
"inst_id": 8191,
},
"dcf7.19ff.550c/48": {
"last_register": "03:19:12",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"dcf7.19ff.5db6/48": {
"last_register": "1d00h",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"dcf7.19ff.6188/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"dcf7.19ff.631a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.135:31929",
"inst_id": 8191,
},
"e089.9dff.4cad/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"e0d1.73ff.47c6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"e4aa.5dff.9616/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"e4aa.5dff.961a/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"e4aa.5dff.962a/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.185:21744",
"inst_id": 8191,
},
"e4aa.5dff.9632/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8191,
},
"e4aa.5dff.964e/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"e4aa.5dff.9782/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"e4aa.5dff.978a/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"e4aa.5dff.9796/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.147:40916",
"inst_id": 8191,
},
"e4aa.5dff.98a5/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.128.140:30271",
"inst_id": 8191,
},
"e4aa.5dff.ef93/48": {
"last_register": "00:01:27",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"e4aa.5dff.f047/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8191,
},
"e4aa.5dff.f3ca/48": {
"last_register": "00:02:24",
"up": "yes#",
"who_last_registered": "10.8.128.178:28565",
"inst_id": 8191,
},
"e4aa.5dff.05ec/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"e4aa.5dff.0856/48": {
"last_register": "1d19h",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8191,
},
"e4c7.22ff.ea8a/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"e4c7.22ff.d1ca/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"e4c7.22ff.de2f/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"e4c7.22ff.e069/48": {
"last_register": "1d19h",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"e4c7.22ff.3e7a/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"e4c7.22ff.8f6a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8191,
},
"e4c7.22ff.dd93/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"e4c7.22ff.045c/48": {
"last_register": "1d03h",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"e4c7.22ff.05e7/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"e4c7.22ff.13ef/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"e4c7.22ff.143c/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"e4c7.22ff.166f/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"e4c7.22ff.8239/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"e4c7.22ff.954c/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"e4c7.22ff.9565/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"e4c7.22ff.9cd1/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"e4c7.22ff.9cd2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"e4c7.22ff.9c16/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"e4c7.22ff.f56f/48": {
"last_register": "1d03h",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"e4c7.22ff.033f/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"e4c7.22ff.267a/48": {
"last_register": "1d05h",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"e4c7.22ff.3a51/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"e4c7.22ff.4d45/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"e4c7.22ff.3cf9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"e4c7.22ff.42d7/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"e4c7.22ff.47d9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8191,
},
"e4c7.22ff.290c/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"e4c7.22ff.70c2/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"e4c7.22ff.7564/48": {
"last_register": "1d19h",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"e840.40ff.001f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8191,
},
"e8ba.70ff.b489/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"e8ba.70ff.0643/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.97:26541",
"inst_id": 8191,
},
"ecc8.82ff.f783/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.172:11801",
"inst_id": 8191,
},
"f029.29ff.a0cc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"f029.29ff.a19a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.22:50531",
"inst_id": 8191,
},
"f029.29ff.a753/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.106:18298",
"inst_id": 8191,
},
"f029.29ff.a953/48": {
"last_register": "00:02:19",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8191,
},
"f029.29ff.2548/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.179:15443",
"inst_id": 8191,
},
"f029.29ff.33cf/48": {
"last_register": "2d19h",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"f07f.06ff.325c/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"f07f.06ff.3808/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.129:32741",
"inst_id": 8191,
},
"f07f.06ff.4062/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"f07f.06ff.44f9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.33:17709",
"inst_id": 8191,
},
"f07f.06ff.4614/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.118:38318",
"inst_id": 8191,
},
"f07f.06ff.47fa/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.1:25983",
"inst_id": 8191,
},
"f07f.06ff.4b72/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"f07f.06ff.5adc/48": {
"last_register": "19:20:03",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"f07f.06ff.660a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8191,
},
"f07f.06ff.a05e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"f07f.06ff.c8d6/48": {
"last_register": "1d12h",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"f07f.06ff.c8e5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8191,
},
"f07f.06ff.c804/48": {
"last_register": "1w3d",
"up": "yes#",
"who_last_registered": "10.8.129.138:21275",
"inst_id": 8191,
},
"f41f.c2ff.477c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.225:16171",
"inst_id": 8191,
},
"f4ea.67ff.5bd7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"f4ea.67ff.5b46/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"f87b.20ff.c977/48": {
"last_register": "1d19h",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8191,
},
"f8a5.c5ff.98c2/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.23:20011",
"inst_id": 8191,
},
"f8a5.c5ff.d71f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.30:20273",
"inst_id": 8191,
},
"f8a5.c5ff.e172/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.152:20085",
"inst_id": 8191,
},
"f8a5.c5ff.1dcb/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.44:27830",
"inst_id": 8191,
},
"f8a5.c5ff.3a2a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8191,
},
}
},
},
8192: {
"lisp": 0,
"site_name": {
"site_uci": {
"any-mac": {
"last_register": "never",
"up": "no",
"who_last_registered": "--",
"inst_id": 8192,
},
"0002.d1ff.bb40/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8192,
},
"0002.d1ff.2b65/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8192,
},
"000f.e5ff.80b5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8192,
},
"000f.e5ff.80b8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8192,
},
"000f.e5ff.80bf/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8192,
},
"000f.e5ff.bf2c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8192,
},
"000f.e5ff.bf2d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8192,
},
"000f.e5ff.bf46/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"000f.e5ff.bf4b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"000f.e5ff.bf4c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8192,
},
"000f.e5ff.e915/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"000f.e5ff.e91c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8192,
},
"0017.5aff.b156/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8192,
},
"0017.5aff.b159/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8192,
},
"0017.5aff.b15b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8192,
},
"0017.5aff.b161/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8192,
},
"0017.5aff.b169/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8192,
},
"0017.5aff.b183/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8192,
},
"0017.5aff.b184/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8192,
},
"0017.5aff.b187/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.107:24262",
"inst_id": 8192,
},
"0017.5aff.b18a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8192,
},
"0017.5aff.c321/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8192,
},
"0017.5aff.c322/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8192,
},
"0017.5aff.c324/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.112:11299",
"inst_id": 8192,
},
"00a2.eeff.29cc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8192,
},
"00a2.eeff.2ae3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8192,
},
"00a2.eeff.2a3f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8192,
},
"00a2.eeff.2a40/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8192,
},
"00a2.eeff.2a41/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8192,
},
"00a2.eeff.2a42/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8192,
},
"00a2.eeff.2a43/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8192,
},
"00a2.eeff.2f8b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8192,
},
"00e0.c9ff.7bea/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8192,
},
"00e0.c9ff.9679/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8192,
},
"00e0.c9ff.a7b1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"0c75.bdff.b120/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8192,
},
"0c75.bdff.b13f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"0c75.bdff.c007/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8192,
},
"0c75.bdff.c121/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8192,
},
"0c75.bdff.c150/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8192,
},
"0c75.bdff.c154/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8192,
},
"0c75.bdff.c164/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8192,
},
"0c75.bdff.4472/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8192,
},
"0c75.bdff.447e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"0c75.bdff.447f/48": {
"last_register": "1w0d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8192,
},
"0c75.bdff.448a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"0c75.bdff.448f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8192,
},
"0c75.bdff.4491/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"0c75.bdff.46f5/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8192,
},
"0c75.bdff.4601/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8192,
},
"0c75.bdff.4602/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8192,
},
"0c75.bdff.4603/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"0c75.bdff.460b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8192,
},
"0c75.bdff.460c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8192,
},
"0c75.bdff.4610/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8192,
},
"0c75.bdff.4712/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8192,
},
"0c75.bdff.4713/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8192,
},
"0c75.bdff.4717/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"0c75.bdff.4719/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8192,
},
"0c75.bdff.471a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8192,
},
"0c75.bdff.471d/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8192,
},
"0c75.bdff.471e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8192,
},
"0c75.bdff.4723/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8192,
},
"0c75.bdff.4731/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8192,
},
"0c75.bdff.4732/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8192,
},
"0c75.bdff.4733/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"0c75.bdff.473a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8192,
},
"0c75.bdff.4741/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8192,
},
"0c75.bdff.4761/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.11:52315",
"inst_id": 8192,
},
"0c75.bdff.48d8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8192,
},
"0c75.bdff.4b68/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8192,
},
"0c75.bdff.4bac/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8192,
},
"0c75.bdff.4da4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8192,
},
"0c75.bdff.4dae/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8192,
},
"0c75.bdff.4dc8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8192,
},
"0c75.bdff.4dc9/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8192,
},
"0c75.bdff.4dca/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8192,
},
"0c75.bdff.00c7/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8192,
},
"0c75.bdff.01cd/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8192,
},
"0c75.bdff.da7a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"0c75.bdff.dbfa/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8192,
},
"0c75.bdff.3631/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"0c75.bdff.3b13/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8192,
},
"0c75.bdff.3b16/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8192,
},
"0c75.bdff.3b1a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8192,
},
"0c75.bdff.3b1b/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8192,
},
"0c75.bdff.3cf1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.125:21918",
"inst_id": 8192,
},
"0c75.bdff.3cf4/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.17:12848",
"inst_id": 8192,
},
"0c75.bdff.3d73/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"0c75.bdff.41bb/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8192,
},
"0c75.bdff.79ed/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8192,
},
"0c75.bdff.83db/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8192,
},
"0c75.bdff.8311/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.254:32391",
"inst_id": 8192,
},
"0c75.bdff.8312/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8192,
},
"0c75.bdff.8315/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"0c75.bdff.8317/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"0c75.bdff.8318/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"0c75.bdff.8443/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8192,
},
"0c75.bdff.8447/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8192,
},
"0c75.bdff.ac41/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"0c75.bdff.ac5e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8192,
},
"0c75.bdff.ac84/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.65:31210",
"inst_id": 8192,
},
"0c75.bdff.ac86/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8192,
},
"0c75.bdff.ac88/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8192,
},
"0c75.bdff.ac90/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"0c75.bdff.ac94/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"0c75.bdff.b765/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8192,
},
"0c75.bdff.b76c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8192,
},
"0c75.bdff.be13/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"0c75.bdff.be16/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"0c75.bdff.be1a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"0c75.bdff.bffa/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8192,
},
"0c75.bdff.bffb/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.10:40360",
"inst_id": 8192,
},
"0c75.bdff.bffc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8192,
},
"0c75.bdff.bffd/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.153:11837",
"inst_id": 8192,
},
"7426.acff.f7cc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8192,
},
"7426.acff.0282/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.141:39931",
"inst_id": 8192,
},
"a89d.21ff.23dc/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8192,
},
"a89d.21ff.2818/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.16:36870",
"inst_id": 8192,
},
"a89d.21ff.35f6/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8192,
},
"a89d.21ff.36fd/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8192,
},
"a89d.21ff.3e8a/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8192,
},
"a89d.21ff.3e8c/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8192,
},
"a89d.21ff.3e8f/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.94:39184",
"inst_id": 8192,
},
"a89d.21ff.3e90/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.146:48858",
"inst_id": 8192,
},
"a89d.21ff.40b8/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.128.173:32229",
"inst_id": 8192,
},
"a89d.21ff.40f1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8192,
},
"a89d.21ff.40f3/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.119:51728",
"inst_id": 8192,
},
"a89d.21ff.515e/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.29:37127",
"inst_id": 8192,
},
"a89d.21ff.54de/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.124:39959",
"inst_id": 8192,
},
"a89d.21ff.54e1/48": {
"last_register": "2w1d",
"up": "yes#",
"who_last_registered": "10.8.129.113:24192",
"inst_id": 8192,
},
}
},
},
}
}
| expected_output = {'instance_id': {4097: {'lisp': 0}, 4099: {'lisp': 0}, 4100: {'lisp': 0}, 8188: {'lisp': 0, 'site_name': {'site_uci': {'any-mac': {'last_register': 'never', 'up': 'no', 'who_last_registered': '--', 'inst_id': 8188}, '1416.9dff.e928/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.eae8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.eb28/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.ebc8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.1328/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.13e8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.16c8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.2428/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.10a9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.01eb/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.1bcb/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.248b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.254b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.264b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.260c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.278b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.d16f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.1074/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.10b4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.10d4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.54f4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.5616/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.6816/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.6955/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.6ad5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.6af5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.6a16/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.6d95/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.6ef5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.6ff5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7095/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.70d5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7395/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.73f5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7336/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7495/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7416/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7555/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.75f5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7695/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.76f5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.77b5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7855/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7875/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7895/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.78f5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7836/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7955/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7975/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7936/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7a55/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7af5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7a36/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7b75/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7b95/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7bb5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7bf5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7c75/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7cd5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7cf5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7d55/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7dd5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.7e55/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.8436/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.8555/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.8636/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '1416.9dff.89f5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6e29/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8188}, '2c57.41ff.96ec/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8188}, '2c57.41ff.9929/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8188}, '2c57.41ff.9a41/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8188}, '2c57.41ff.9b58/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8188}, '2c57.41ff.9b78/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8188}, '2c57.41ff.9b90/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8188}, '2c57.41ff.9ba0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8188}, '2c57.41ff.a6cc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8188}, '2c57.41ff.a6d4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8188}, '2c57.41ff.a6d8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8188}, '2c57.41ff.af5c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8188}, '2c57.41ff.afa0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8188}, '2c57.41ff.b1e0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8188}, '2c57.41ff.b1e8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8188}, '2c57.41ff.b119/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8188}, '2c57.41ff.b11d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8188}, '2c57.41ff.b121/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8188}, '2c57.41ff.b270/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8188}, '2c57.41ff.b29c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8188}, '2c57.41ff.b2bc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8188}, '2c57.41ff.b2d0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8188}, '2c57.41ff.b2d8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8188}, '2c57.41ff.b231/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8188}, '2c57.41ff.b23d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8188}, '2c57.41ff.b245/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8188}, '2c57.41ff.b251/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8188}, '2c57.41ff.b360/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8188}, '2c57.41ff.b368/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8188}, '2c57.41ff.b37c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8188}, '2c57.41ff.b390/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8188}, '2c57.41ff.b39c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8188}, '2c57.41ff.b3b4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8188}, '2c57.41ff.b3c8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8188}, '2c57.41ff.b3cc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8188}, '2c57.41ff.b3d0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8188}, '2c57.41ff.b3dc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8188}, '2c57.41ff.b3e4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8188}, '2c57.41ff.b3e8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8188}, '2c57.41ff.b3ec/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8188}, '2c57.41ff.b305/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8188}, '2c57.41ff.b309/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8188}, '2c57.41ff.b31d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8188}, '2c57.41ff.b325/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8188}, '2c57.41ff.b32d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8188}, '2c57.41ff.b331/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8188}, '2c57.41ff.b335/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8188}, '2c57.41ff.b33d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8188}, '2c57.41ff.b34d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8188}, '2c57.41ff.b458/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8188}, '2c57.41ff.b45c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8188}, '2c57.41ff.b468/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8188}, '2c57.41ff.b478/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8188}, '2c57.41ff.b488/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8188}, '2c57.41ff.b564/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8188}, '2c57.41ff.b568/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8188}, '2c57.41ff.b5a4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8188}, '2c57.41ff.b5fc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8188}, '2c57.41ff.74e3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1a07/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1cc6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.67c6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.d7a7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.4768/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.48e7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.4808/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.4a28/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.4be7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.4b08/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.4b68/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.4c08/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.4f87/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.50e7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5108/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5268/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5908/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5948/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5aa7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5ac7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5b87/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5ba7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5bc7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5b28/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5b48/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5b68/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5cc7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5ce7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5c48/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5c68/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5d87/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5dc7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5de7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5d08/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5d28/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5ea7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5ec7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5ee7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5e08/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5e28/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5e68/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5f87/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5fa7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5fc7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5fe7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5f08/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6087/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.60a7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.60e7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6008/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6028/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6048/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.61a7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.61c7/48': {'last_register': '2d17h', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.61e7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6168/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6287/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.62a7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.62e7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6208/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6248/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.63a7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.63e7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6308/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6328/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6348/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6368/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6487/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.64a7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.64c7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.64e7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6428/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6448/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6468/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6587/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.65a7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6528/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6548/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6568/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.66a7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.66c7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.66e7/48': {'last_register': '2w0d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6668/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.67a7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.67c7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.67e7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6728/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6887/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.68c7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.68e7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6808/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.69c7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6948/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6968/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6ac7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6a48/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6a68/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6bc7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6b08/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6b48/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6dc7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6d48/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.76e7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.7987/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.79e7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.7908/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.7ac7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.7a68/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.7b87/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.8068/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.8168/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.8708/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.8768/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.ef69/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.f029/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.f069/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.f1c8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.f249/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.f269/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.f3c8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.f3e8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.f4a8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.f529/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.f549/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.f569/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.f688/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.f6a8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.f649/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.f7a8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.f7e8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.f729/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.f749/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.0469/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.05e8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1109/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1288/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1269/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1388/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.13e8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1309/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1369/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1488/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1469/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1588/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1629/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.17a8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.17c8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.18c8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1988/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.19c8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1aa8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1a49/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1bc8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1be8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.46e8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.4c88/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.5309/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.6e09/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.8688/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.87a8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.ab4a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.bc4a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.bd89/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.bda9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.bdc9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.bd2a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.be89/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.bea9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.02a9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.0ac9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.156a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.192a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.194a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.196a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1ac9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1ae9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1ba9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1b0a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1e2a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1e4a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1e6a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1fc9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1fe9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1f2a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.1f4a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2089/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.20e9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.200a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.202a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.204a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.206a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.21a9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.21c9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.21e9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.210a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.212a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.214a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2289/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.22a9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.22c9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.22e9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.220a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.222a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.224a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.226a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2389/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.23a9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.23c9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.23e9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.230a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.232a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.234a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.236a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2489/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.24a9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.24c9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.24e9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.240a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.244a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.246a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.25a9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.25e9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.250a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.252a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.256a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2689/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.26a9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.26c9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.26e9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.260a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.262a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.266a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2789/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.27a9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.27c9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.27e9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.270a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.272a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.274a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.276a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.28a9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.28c9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.28e9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.280a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.282a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.284a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.286a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2989/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.29a9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.29c9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.29e9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.290a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.294a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.296a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2a89/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2aa9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2ac9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2ae9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2a0a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2a2a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2a4a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2a6a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2b89/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2bc9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2be9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2b0a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2b2a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2b6a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2c89/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2ca9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2cc9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2ce9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2c0a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2c4a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2c6a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2dc9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2de9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2ea9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.2fc9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3089/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.30a9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.30c9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.302a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.306a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.31a9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.312a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.316a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3289/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.32a9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.32c9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.33c9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.330a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.34c9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.34e9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.340a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.342a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.344a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.346a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.35a9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.35c9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.35e9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.350a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.356a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3689/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.36a9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.36c9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.360a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.362a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3789/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.37a9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.37c9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.37e9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.370a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.38c9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.380a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.384a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3989/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.39a9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.39e9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.390a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.392a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.396a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3a89/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3aa9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3a0a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3a4a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3b89/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3ba9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3be9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3b0a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3b2a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3b6a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3ce9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3c0a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3c2a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3c4a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3de9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3d0a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3e89/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3ea9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3ec9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3e4a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3fe9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.3f0a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.4c6a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.502a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.516a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.520a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.524a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.536a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.540a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.562a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.57c9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.712a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.72e9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.750a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '2c57.41ff.78c9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '3c41.0eff.4073/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8188}, '3c41.0eff.577f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8188}, '3c41.0eff.57b7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8188}, '3c41.0eff.57bf/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8188}, '3c41.0eff.57d3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8188}, '3c41.0eff.5c9f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8188}, '3c41.0eff.5cb7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8188}, '3c41.0eff.5d13/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8188}, '3c41.0eff.5ebf/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8188}, '683b.78ff.ccf9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8188}, '683b.78ff.d3ca/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, '6c71.0dff.1abf/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8188}, '6c71.0dff.1bd3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8188}, '6c71.0dff.1ccb/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8188}, '6c71.0dff.1e8b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8188}, '6c71.0dff.39ab/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8188}, '6c71.0dff.39e3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8188}, '6c71.0dff.3ae6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8188}, '6c71.0dff.3afe/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8188}, '6c71.0dff.3a57/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8188}, '6c71.0dff.3a5f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8188}, '6c71.0dff.3a63/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8188}, '6c71.0dff.feb5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8188}, '6c71.0dff.1221/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8188}, '6c71.0dff.145d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8188}, '6c71.0dff.156d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8188}, '6c71.0dff.1619/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8188}, '7c21.0eff.427f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.8:43876', 'inst_id': 8188}, '7c21.0eff.fd0d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60669', 'inst_id': 8188}, 'a4b2.39ff.4d2a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8188}, 'a4b2.39ff.54c2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8188}, 'a4b2.39ff.54fa/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8188}, 'a4b2.39ff.5e5a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8188}, 'a4b2.39ff.3c25/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, 'a4b2.39ff.44c5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, 'a4b2.39ff.4c85/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, 'a4b2.39ff.5a85/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, 'a4b2.39ff.9ae6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, 'a4b2.39ff.9ca6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, 'a4b2.39ff.9cc6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, 'a4b2.39ff.9d86/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, 'a4b2.39ff.a046/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, 'a4b2.39ff.a086/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, 'a4b2.39ff.a0a6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, 'a4b2.39ff.4dc7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, 'a4b2.39ff.e127/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, 'a4b2.39ff.f307/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, 'a4b2.39ff.fb87/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, 'a4b2.39ff.01e7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8188}, 'a4b2.39ff.0bfc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8188}, 'a4b2.39ff.19f4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8188}, 'a4b2.39ff.1905/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8188}, 'a4b2.39ff.1a08/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8188}, 'a4b2.39ff.1a4c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8188}, 'a4b2.39ff.1a64/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.1a68/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8188}, 'a4b2.39ff.1a74/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8188}, 'a4b2.39ff.1a88/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8188}, 'a4b2.39ff.1ad8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8188}, 'a4b2.39ff.1a05/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8188}, 'a4b2.39ff.1b28/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8188}, 'a4b2.39ff.1b54/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8188}, 'a4b2.39ff.1c28/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8188}, 'a4b2.39ff.1c30/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8188}, 'a4b2.39ff.1c3c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8188}, 'a4b2.39ff.1c40/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8188}, 'a4b2.39ff.1c58/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8188}, 'a4b2.39ff.1c5c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8188}, 'a4b2.39ff.1c60/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8188}, 'a4b2.39ff.1c6c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8188}, 'a4b2.39ff.1c70/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8188}, 'a4b2.39ff.1c74/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8188}, 'a4b2.39ff.1c80/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8188}, 'a4b2.39ff.1c84/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8188}, 'a4b2.39ff.1c90/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8188}, 'a4b2.39ff.1c94/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8188}, 'a4b2.39ff.1c98/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8188}, 'a4b2.39ff.1ca0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8188}, 'a4b2.39ff.1ca4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8188}, 'a4b2.39ff.1ca8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8188}, 'a4b2.39ff.1cac/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8188}, 'a4b2.39ff.1cbc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8188}, 'a4b2.39ff.1cc0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8188}, 'a4b2.39ff.1cc4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8188}, 'a4b2.39ff.1cc8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8188}, 'a4b2.39ff.1ccc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.1cd4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8188}, 'a4b2.39ff.1cd8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8188}, 'a4b2.39ff.1cdc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8188}, 'a4b2.39ff.1ce0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8188}, 'a4b2.39ff.1ce4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.1ce8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8188}, 'a4b2.39ff.1cf8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.1cfc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.1c05/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8188}, 'a4b2.39ff.1d08/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.1d0c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8188}, 'a4b2.39ff.1d10/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.1d1c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8188}, 'a4b2.39ff.1d20/48': {'last_register': '2d17h', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.1d24/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.1d34/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8188}, 'a4b2.39ff.1d38/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8188}, 'a4b2.39ff.1d3c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8188}, 'a4b2.39ff.1d44/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8188}, 'a4b2.39ff.1d48/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.1d50/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8188}, 'a4b2.39ff.1d5c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8188}, 'a4b2.39ff.1d64/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.1d68/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8188}, 'a4b2.39ff.1d6c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8188}, 'a4b2.39ff.1d70/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8188}, 'a4b2.39ff.1d74/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8188}, 'a4b2.39ff.1d78/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8188}, 'a4b2.39ff.1d7c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8188}, 'a4b2.39ff.1d80/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8188}, 'a4b2.39ff.1d84/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8188}, 'a4b2.39ff.1d8c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8188}, 'a4b2.39ff.1d90/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8188}, 'a4b2.39ff.1d94/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8188}, 'a4b2.39ff.1d98/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8188}, 'a4b2.39ff.1d9c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8188}, 'a4b2.39ff.1dac/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8188}, 'a4b2.39ff.1db0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8188}, 'a4b2.39ff.1db4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8188}, 'a4b2.39ff.1dbc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8188}, 'a4b2.39ff.1dc0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8188}, 'a4b2.39ff.1dc4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8188}, 'a4b2.39ff.1dd4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8188}, 'a4b2.39ff.1ddc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8188}, 'a4b2.39ff.1de0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8188}, 'a4b2.39ff.1de4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8188}, 'a4b2.39ff.1dec/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8188}, 'a4b2.39ff.1df8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8188}, 'a4b2.39ff.1d01/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8188}, 'a4b2.39ff.1d05/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8188}, 'a4b2.39ff.1e08/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8188}, 'a4b2.39ff.1e20/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8188}, 'a4b2.39ff.1e30/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8188}, 'a4b2.39ff.1e34/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8188}, 'a4b2.39ff.1e40/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8188}, 'a4b2.39ff.1e50/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8188}, 'a4b2.39ff.1e54/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8188}, 'a4b2.39ff.1e60/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8188}, 'a4b2.39ff.1e68/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8188}, 'a4b2.39ff.1e70/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8188}, 'a4b2.39ff.1ea0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.1eb0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.1fc4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8188}, 'a4b2.39ff.2018/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8188}, 'a4b2.39ff.2024/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8188}, 'a4b2.39ff.2028/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8188}, 'a4b2.39ff.2040/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8188}, 'a4b2.39ff.2054/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8188}, 'a4b2.39ff.2058/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8188}, 'a4b2.39ff.2114/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8188}, 'a4b2.39ff.2134/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8188}, 'a4b2.39ff.21e8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8188}, 'a4b2.39ff.21f4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8188}, 'a4b2.39ff.2228/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8188}, 'a4b2.39ff.2240/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8188}, 'a4b2.39ff.2248/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8188}, 'a4b2.39ff.2254/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8188}, 'a4b2.39ff.2284/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8188}, 'a4b2.39ff.2288/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8188}, 'a4b2.39ff.2294/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8188}, 'a4b2.39ff.2298/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8188}, 'a4b2.39ff.22b0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8188}, 'a4b2.39ff.22e0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8188}, 'a4b2.39ff.22e4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8188}, 'a4b2.39ff.22e8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.22ec/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8188}, 'a4b2.39ff.22f0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8188}, 'a4b2.39ff.2205/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8188}, 'a4b2.39ff.2310/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8188}, 'a4b2.39ff.2318/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8188}, 'a4b2.39ff.2320/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8188}, 'a4b2.39ff.2324/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8188}, 'a4b2.39ff.24a8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8188}, 'a4b2.39ff.24b8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8188}, 'a4b2.39ff.263c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8188}, 'a4b2.39ff.264c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8188}, 'a4b2.39ff.2668/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8188}, 'a4b2.39ff.266c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.2678/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8188}, 'a4b2.39ff.267c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8188}, 'a4b2.39ff.2688/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8188}, 'a4b2.39ff.268c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8188}, 'a4b2.39ff.26a8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8188}, 'a4b2.39ff.26ac/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8188}, 'a4b2.39ff.26e0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8188}, 'a4b2.39ff.26f0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8188}, 'a4b2.39ff.26f4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8188}, 'a4b2.39ff.2714/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8188}, 'a4b2.39ff.272c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8188}, 'a4b2.39ff.2734/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8188}, 'a4b2.39ff.2750/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8188}, 'a4b2.39ff.2764/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.2774/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8188}, 'a4b2.39ff.2778/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8188}, 'a4b2.39ff.2cd8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8188}, 'a4b2.39ff.2d8c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8188}, 'a4b2.39ff.2e7c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8188}, 'a4b2.39ff.31dc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8188}, 'a4b2.39ff.34cc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8188}, 'a4b2.39ff.34f0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8188}, 'a4b2.39ff.3984/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8188}, 'a4b2.39ff.3ba4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8188}, 'a4b2.39ff.3bac/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8188}, 'a4b2.39ff.3bb0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8188}, 'a4b2.39ff.3bb4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8188}, 'a4b2.39ff.3bc0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8188}, 'a4b2.39ff.3bcc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8188}, 'a4b2.39ff.3bd0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8188}, 'a4b2.39ff.4430/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8188}, 'a4b2.39ff.4534/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8188}, 'a4b2.39ff.46a8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.4720/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8188}, 'a4b2.39ff.4724/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8188}, 'a4b2.39ff.4728/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8188}, 'a4b2.39ff.4734/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8188}, 'a4b2.39ff.4738/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8188}, 'a4b2.39ff.4750/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8188}, 'a4b2.39ff.475c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8188}, 'a4b2.39ff.47c0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8188}, 'a4b2.39ff.47c4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8188}, 'a4b2.39ff.47c8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8188}, 'a4b2.39ff.47d4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8188}, 'a4b2.39ff.47d8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8188}, 'a4b2.39ff.47e0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8188}, 'a4b2.39ff.47e4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8188}, 'a4b2.39ff.47ec/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8188}, 'a4b2.39ff.47f8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8188}, 'a4b2.39ff.47fc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8188}, 'a4b2.39ff.4701/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8188}, 'a4b2.39ff.4705/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8188}, 'a4b2.39ff.4808/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8188}, 'a4b2.39ff.4810/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8188}, 'a4b2.39ff.4814/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8188}, 'a4b2.39ff.4818/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8188}, 'a4b2.39ff.481c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8188}, 'a4b2.39ff.4820/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8188}, 'a4b2.39ff.4824/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8188}, 'a4b2.39ff.482c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8188}, 'a4b2.39ff.4830/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8188}, 'a4b2.39ff.4834/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8188}, 'a4b2.39ff.4838/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8188}, 'a4b2.39ff.483c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8188}, 'a4b2.39ff.4840/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8188}, 'a4b2.39ff.4844/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8188}, 'a4b2.39ff.4848/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8188}, 'a4b2.39ff.484c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8188}, 'a4b2.39ff.4850/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8188}, 'a4b2.39ff.4854/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8188}, 'a4b2.39ff.4858/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8188}, 'a4b2.39ff.485c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8188}, 'a4b2.39ff.4860/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8188}, 'a4b2.39ff.4864/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8188}, 'a4b2.39ff.4868/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8188}, 'a4b2.39ff.486c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8188}, 'a4b2.39ff.4870/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8188}, 'a4b2.39ff.4874/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8188}, 'a4b2.39ff.4878/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8188}, 'a4b2.39ff.487c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8188}, 'a4b2.39ff.4884/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8188}, 'a4b2.39ff.4888/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8188}, 'a4b2.39ff.4890/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8188}, 'a4b2.39ff.4898/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8188}, 'a4b2.39ff.489c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8188}, 'a4b2.39ff.48a0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8188}, 'a4b2.39ff.48a8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8188}, 'a4b2.39ff.48ac/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8188}, 'a4b2.39ff.48b0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8188}, 'a4b2.39ff.48b4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8188}, 'a4b2.39ff.48b8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8188}, 'a4b2.39ff.48bc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8188}, 'a4b2.39ff.48c0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8188}, 'a4b2.39ff.48c8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8188}, 'a4b2.39ff.48cc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8188}, 'a4b2.39ff.48d0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8188}, 'a4b2.39ff.48d4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8188}, 'a4b2.39ff.48d8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8188}, 'a4b2.39ff.48dc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8188}, 'a4b2.39ff.48e0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8188}, 'a4b2.39ff.48e4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8188}, 'a4b2.39ff.48e8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8188}, 'a4b2.39ff.48f0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8188}, 'a4b2.39ff.48f4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8188}, 'a4b2.39ff.48f8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8188}, 'a4b2.39ff.48fc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8188}, 'a4b2.39ff.4801/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8188}, 'a4b2.39ff.4805/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8188}, 'a4b2.39ff.4908/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8188}, 'a4b2.39ff.490c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8188}, 'a4b2.39ff.4910/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8188}, 'a4b2.39ff.4914/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8188}, 'a4b2.39ff.4918/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8188}, 'a4b2.39ff.491c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8188}, 'a4b2.39ff.4924/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8188}, 'a4b2.39ff.4928/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8188}, 'a4b2.39ff.492c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8188}, 'a4b2.39ff.4930/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8188}, 'a4b2.39ff.4934/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8188}, 'a4b2.39ff.4938/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8188}, 'a4b2.39ff.493c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8188}, 'a4b2.39ff.4940/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8188}, 'a4b2.39ff.4944/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8188}, 'a4b2.39ff.4948/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8188}, 'a4b2.39ff.494c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8188}, 'a4b2.39ff.4954/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8188}, 'a4b2.39ff.4958/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8188}, 'a4b2.39ff.495c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8188}, 'a4b2.39ff.4960/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8188}, 'a4b2.39ff.4968/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8188}, 'a4b2.39ff.496c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8188}, 'a4b2.39ff.4970/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8188}, 'a4b2.39ff.4974/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8188}, 'a4b2.39ff.4978/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8188}, 'a4b2.39ff.497c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8188}, 'a4b2.39ff.4984/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8188}, 'a4b2.39ff.4988/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8188}, 'a4b2.39ff.4994/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.4998/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.49b0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8188}, 'a4b2.39ff.49d4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.49ec/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8188}, 'a4b2.39ff.49f0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.49f4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8188}, 'a4b2.39ff.4901/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8188}, 'a4b2.39ff.4a08/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8188}, 'a4b2.39ff.4a10/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.4a20/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.4a28/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8188}, 'a4b2.39ff.4a2c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8188}, 'a4b2.39ff.4a30/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8188}, 'a4b2.39ff.4a34/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8188}, 'a4b2.39ff.4a54/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8188}, 'a4b2.39ff.4a5c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8188}, 'a4b2.39ff.4a74/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8188}, 'a4b2.39ff.4a78/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8188}, 'a4b2.39ff.4a7c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8188}, 'a4b2.39ff.4a80/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8188}, 'a4b2.39ff.4a84/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8188}, 'a4b2.39ff.4a88/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8188}, 'a4b2.39ff.4a90/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8188}, 'a4b2.39ff.4a94/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8188}, 'a4b2.39ff.4a98/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8188}, 'a4b2.39ff.4a9c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8188}, 'a4b2.39ff.4aa8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8188}, 'a4b2.39ff.4aac/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8188}, 'a4b2.39ff.4ab0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8188}, 'a4b2.39ff.4ab4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8188}, 'a4b2.39ff.4abc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8188}, 'a4b2.39ff.4ac0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8188}, 'a4b2.39ff.4acc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8188}, 'a4b2.39ff.4ad0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8188}, 'a4b2.39ff.4ad4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8188}, 'a4b2.39ff.4ad8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8188}, 'a4b2.39ff.4adc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8188}, 'a4b2.39ff.4af4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8188}, 'a4b2.39ff.4afc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8188}, 'a4b2.39ff.4a05/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.4b0c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.4b10/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8188}, 'a4b2.39ff.4b18/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8188}, 'a4b2.39ff.4b1c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8188}, 'a4b2.39ff.4b20/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8188}, 'a4b2.39ff.4b28/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8188}, 'a4b2.39ff.4b2c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8188}, 'a4b2.39ff.4b30/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8188}, 'a4b2.39ff.4b3c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8188}, 'a4b2.39ff.4b44/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.4b4c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8188}, 'a4b2.39ff.4b50/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8188}, 'a4b2.39ff.4b58/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8188}, 'a4b2.39ff.4b5c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8188}, 'a4b2.39ff.4b60/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8188}, 'a4b2.39ff.4b68/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8188}, 'a4b2.39ff.4b78/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8188}, 'a4b2.39ff.4b7c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.4b80/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8188}, 'a4b2.39ff.4b84/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8188}, 'a4b2.39ff.4b98/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8188}, 'a4b2.39ff.4b9c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8188}, 'a4b2.39ff.4bac/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8188}, 'a4b2.39ff.4bb0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8188}, 'a4b2.39ff.4bb4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8188}, 'a4b2.39ff.4bc4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8188}, 'a4b2.39ff.4bd8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8188}, 'a4b2.39ff.4bdc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8188}, 'a4b2.39ff.5238/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8188}, 'a4b2.39ff.52b0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8188}, 'a4b2.39ff.52d8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8188}, 'a4b2.39ff.52ec/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8188}, 'a4b2.39ff.52f4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8188}, 'a4b2.39ff.5318/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8188}, 'a4b2.39ff.532c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8188}, 'a4b2.39ff.5370/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8188}, 'a4b2.39ff.5384/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8188}, 'a4b2.39ff.56d0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8188}, 'a4b2.39ff.56e8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8188}, 'a4b2.39ff.574c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8188}, 'a4b2.39ff.57a4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8188}}}}, 8189: {'lisp': 0, 'site_name': {'site_uci': {'any-mac': {'last_register': 'never', 'up': 'no', 'who_last_registered': '--', 'inst_id': 8189}, '0000.0cff.94fb/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8189}, '0000.0cff.94fd/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8189}, '0001.2eff.ac9b/48': {'last_register': '1d10h', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8189}, '000c.29ff.90c1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8189}, '0016.25ff.5de1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8189}, '0016.25ff.62be/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8189}, '0016.25ff.63de/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8189}, '0016.25ff.68ef/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8189}, '0016.25ff.680a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8189}, '0016.25ff.6e2c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8189}, '0016.25ff.6e44/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8189}, '0016.25ff.6e45/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8189}, '0016.25ff.6e58/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8189}, '0016.25ff.6e59/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8189}, '0016.25ff.6e64/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8189}, '0016.25ff.6e75/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8189}, '0016.25ff.6e85/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8189}, '0016.25ff.6fea/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8189}, '0016.25ff.742e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8189}, '0016.25ff.743f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8189}, '0016.25ff.b93e/48': {'last_register': '00:01:42', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8189}, '001f.29ff.b6df/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8189}, '0022.64ff.df2d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8189}, '0024.81ff.32ba/48': {'last_register': '14:54:26', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8189}, '0025.64ff.fa82/48': {'last_register': '19:19:47', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8189}, '0025.64ff.4716/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8189}, '00cc.fcff.a6f3/48': {'last_register': '00:00:53', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8189}, '00e0.4cff.8bd7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8189}, '00e0.b4ff.da01/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8189}, '14da.e9ff.f734/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8189}, '1860.24ff.d2bd/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8189}, '1c87.2cff.44b3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8189}, '1cc1.deff.5a00/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8189}, '30f7.0dff.66c0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8189}, '3417.ebff.27a8/48': {'last_register': '19:20:04', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8189}, '3c07.54ff.315b/48': {'last_register': '01:58:40', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8189}, '3c07.54ff.e75e/48': {'last_register': '19:19:01', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8189}, '3c28.6dff.65ea/48': {'last_register': '00:00:08', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8189}, '402c.f4ff.6577/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8189}, '4061.86ff.8e6d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8189}, '482a.e3ff.6c27/48': {'last_register': '4d23h', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8189}, '4860.5fff.95ad/48': {'last_register': '01:07:34', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8189}, '4ccc.6aff.622a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8189}, '58cb.52ff.f545/48': {'last_register': '00:49:52', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8189}, '683b.78ff.c7ed/48': {'last_register': '03:04:27', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8189}, '685b.35ff.b659/48': {'last_register': '00:17:30', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8189}, '6c0b.84ff.2cca/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8189}, '6c0b.84ff.2fe6/48': {'last_register': '04:14:31', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8189}, '6c0b.84ff.b83c/48': {'last_register': '10:48:19', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8189}, '6c71.0dff.4a07/48': {'last_register': '03:43:47', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8189}, '7020.84ff.7860/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8189}, '7020.84ff.78fe/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8189}, '7020.84ff.f237/48': {'last_register': '23:55:52', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8189}, '7020.84ff.018f/48': {'last_register': '21:55:20', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8189}, '705a.0fff.ac28/48': {'last_register': '00:01:48', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8189}, '7085.c2ff.e523/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8189}, '70f3.95ff.81c2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8189}, '70f3.95ff.2be2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8189}, '70f3.95ff.f3e1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8189}, '7824.afff.be8a/48': {'last_register': '00:07:17', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8189}, '78e7.d1ff.f128/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8189}, '8c8e.f2ff.cbb7/48': {'last_register': '01:27:47', 'up': 'yes#', 'who_last_registered': '10.8.130.4:60995', 'inst_id': 8189}, '8e5d.1fff.b08a/48': {'last_register': '00:02:56', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8189}, '9818.88ff.67e3/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8189}, '9818.88ff.67e6/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8189}, '9818.88ff.67ec/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8189}, 'a0cc.2bff.f634/48': {'last_register': '00:00:08', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8189}, 'a4ae.11ff.6b3c/48': {'last_register': '19:15:07', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8189}, 'a4ae.11ff.6b3d/48': {'last_register': '19:15:07', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8189}, 'a4c3.f0ff.2571/48': {'last_register': '01:25:41', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8189}, 'a81e.84ff.54e0/48': {'last_register': '02:44:44', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8189}, 'a860.b6ff.448a/48': {'last_register': '19:20:03', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8189}, 'b827.ebff.2c06/48': {'last_register': '00:00:46', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8189}, 'b827.ebff.2fe0/48': {'last_register': '00:00:57', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8189}, 'b827.ebff.8759/48': {'last_register': '00:10:33', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8189}, 'bc16.65ff.66a2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8189}, 'c8cb.b8ff.c63d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8189}, 'd004.01ff.67f9/48': {'last_register': '00:04:09', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8189}, 'd485.64ff.529e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8189}, 'dc4a.3eff.5d38/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8189}, 'dca6.32ff.5e2c/48': {'last_register': '00:03:08', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8189}, 'dca6.32ff.fc60/48': {'last_register': '00:01:59', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8189}, 'dca6.32ff.2868/48': {'last_register': '19:30:09', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8189}, 'e04f.43ff.6443/48': {'last_register': '00:16:34', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8189}, 'e069.95ff.9fd8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8189}, 'e0cb.4eff.466d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8189}, 'e4e7.49ff.87df/48': {'last_register': '00:29:31', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8189}, 'e86a.64ff.4277/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8189}, 'f493.9fff.ddd3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8189}, 'f493.9fff.dddc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8189}, 'fc4d.d4ff.9bcb/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8189}, 'fc4d.d4ff.103c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8189}}}}, 8190: {'lisp': 0, 'site_name': {'site_uci': {'any-mac': {'last_register': 'never', 'up': 'no', 'who_last_registered': '--', 'inst_id': 8190}, '000f.44ff.8b76/48': {'last_register': '21:28:40', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8190}, '0010.83ff.54ab/48': {'last_register': '4d23h', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8190}, '0018.feff.7f87/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8190}, '0019.17ff.73a7/48': {'last_register': '5d08h', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8190}, '0019.17ff.6bc8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8190}, '0019.17ff.6bd1/48': {'last_register': '1w5d', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8190}, '0019.17ff.6b1d/48': {'last_register': '5d09h', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8190}, '0019.17ff.6b2a/48': {'last_register': '5d09h', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8190}, '0019.17ff.fb7f/48': {'last_register': '6d08h', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8190}, '001f.c6ff.63b8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8190}, '0023.68ff.e685/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8190}, '0023.68ff.1a9d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8190}, '0023.68ff.4b9a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8190}, '0023.68ff.4ccf/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8190}, '0023.68ff.4cf1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8190}, '0023.68ff.4c4b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8190}, '0023.68ff.4c69/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8190}, '0023.68ff.4c7e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, '0023.68ff.4e4e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8190}, '0023.68ff.4fc2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8190}, '0023.68ff.51e1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8190}, '0023.68ff.5428/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8190}, '0023.68ff.5530/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8190}, '0024.d6ff.394d/48': {'last_register': '00:48:59', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, '0024.d6ff.8793/48': {'last_register': '00:37:10', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8190}, '0026.73ff.20f5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8190}, '0050.b6ff.3ed8/48': {'last_register': '00:22:29', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8190}, '0050.b6ff.f623/48': {'last_register': '00:12:54', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8190}, '005d.73ff.585b/48': {'last_register': '1d07h', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8190}, '00e0.70ff.56d8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8190}, '00e0.c9ff.56e9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8190}, '00e0.c9ff.0375/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8190}, '00e0.c9ff.5ace/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8190}, '020a.c1ff.3d01/48': {'last_register': '20:18:31', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8190}, '04d4.c4ff.d068/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8190}, '04ed.33ff.fd35/48': {'last_register': '04:08:32', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, '04ed.33ff.2488/48': {'last_register': '00:11:17', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8190}, '08d4.6aff.09c9/48': {'last_register': '00:03:10', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8190}, '0cd7.46ff.7ba9/48': {'last_register': '00:04:12', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8190}, '0e0b.ccff.4074/48': {'last_register': '00:05:19', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8190}, '10f9.20ff.e77f/48': {'last_register': '13:52:49', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8190}, '1418.77ff.0518/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8190}, '144f.8aff.4b55/48': {'last_register': '02:13:47', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8190}, '144f.8aff.e6b5/48': {'last_register': '03:49:10', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8190}, '144f.8aff.f1c3/48': {'last_register': '03:16:36', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8190}, '147d.daff.dcde/48': {'last_register': '00:17:47', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8190}, '14ab.c5ff.3b26/48': {'last_register': '00:08:05', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8190}, '160e.f9ff.4ff6/48': {'last_register': '00:40:05', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8190}, '181d.eaff.4d4a/48': {'last_register': '00:20:58', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, '1c1a.dfff.030e/48': {'last_register': '4d01h', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8190}, '1c69.7aff.8e57/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8190}, '1eb8.08ff.dbe5/48': {'last_register': '00:04:46', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8190}, '2477.03ff.f002/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8190}, '28c6.3fff.6282/48': {'last_register': '00:04:31', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, '28c6.3fff.331f/48': {'last_register': '01:21:47', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, '28c6.3fff.348c/48': {'last_register': '00:48:32', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8190}, '309c.23ff.d4cb/48': {'last_register': '02:44:47', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8190}, '30d9.d9ff.4da9/48': {'last_register': '00:11:26', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8190}, '38de.adff.7f68/48': {'last_register': '00:19:57', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8190}, '38f9.d3ff.b38f/48': {'last_register': '00:18:00', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8190}, '38f9.d3ff.fdc3/48': {'last_register': '01:55:55', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8190}, '38f9.d3ff.a4ee/48': {'last_register': '00:06:10', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8190}, '3ce1.a1ff.a6cd/48': {'last_register': '00:19:25', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, '402c.f4ff.66d5/48': {'last_register': '2w0d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8190}, '4098.adff.2b2a/48': {'last_register': '00:01:26', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8190}, '409c.28ff.df99/48': {'last_register': '00:29:03', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8190}, '40a3.ccff.b7b8/48': {'last_register': '00:09:49', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8190}, '40a3.ccff.8458/48': {'last_register': '01:53:00', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8190}, '40a3.ccff.8a3e/48': {'last_register': '00:53:59', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8190}, '40cb.c0ff.5dc9/48': {'last_register': '00:37:43', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8190}, '4439.c4ff.50c0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8190}, '444a.dbff.dd5e/48': {'last_register': '00:22:40', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, '48a4.72ff.dc11/48': {'last_register': '00:39:28', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8190}, '4a64.40ff.62d1/48': {'last_register': '01:35:41', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8190}, '4c32.75ff.7f50/48': {'last_register': '00:27:16', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8190}, '4c74.bfff.6334/48': {'last_register': '03:32:25', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8190}, '50eb.71ff.7d74/48': {'last_register': '02:59:28', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8190}, '5254.ddff.1c7f/48': {'last_register': '00:04:39', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8190}, '5254.ddff.a58a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8190}, '54bf.64ff.987d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8190}, '54e1.adff.d965/48': {'last_register': '00:37:34', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8190}, '5838.79ff.5224/48': {'last_register': '1w4d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8190}, '5838.79ff.cfde/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8190}, '5838.79ff.c260/48': {'last_register': '1w4d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8190}, '5838.79ff.c261/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, '5838.79ff.c26d/48': {'last_register': '1w6d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8190}, '5838.79ff.c2ae/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8190}, '5838.79ff.c200/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8190}, '5838.79ff.c205/48': {'last_register': '1w2d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8190}, '5838.79ff.c36a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8190}, '5838.79ff.c38e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8190}, '5838.79ff.c394/48': {'last_register': '1w0d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8190}, '5838.79ff.c3bf/48': {'last_register': '1w4d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8190}, '5838.79ff.c3c2/48': {'last_register': '3d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8190}, '5838.79ff.c3cc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8190}, '5838.79ff.c44e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8190}, '5838.79ff.c4f5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8190}, '5838.79ff.c583/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8190}, '5838.79ff.87a7/48': {'last_register': '1w2d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8190}, '58d5.0aff.1d00/48': {'last_register': '00:09:37', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, '5e28.44ff.7070/48': {'last_register': '01:31:15', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8190}, '5ea9.78ff.b6e1/48': {'last_register': '04:44:07', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8190}, '60f2.62ff.8285/48': {'last_register': '03:28:48', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8190}, '6805.caff.691b/48': {'last_register': '6d23h', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8190}, '6805.caff.8a63/48': {'last_register': '3d22h', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8190}, '6805.caff.3b18/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8190}, '6805.caff.3ccb/48': {'last_register': '3d22h', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8190}, '6c0b.84ff.6a31/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8190}, '6c0b.84ff.4703/48': {'last_register': '04:35:36', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8190}, '6c0b.84ff.5256/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8190}, '6c0b.84ff.6629/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8190}, '6c0b.84ff.662a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8190}, '6c3b.e5ff.7e8f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8190}, '6c3b.e5ff.01fb/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8190}, '7020.84ff.54d0/48': {'last_register': '1w0d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8190}, '70f3.95ff.8bd1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8190}, '74e5.f9ff.b161/48': {'last_register': '00:02:29', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8190}, '74e5.f9ff.7e5a/48': {'last_register': '00:09:50', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8190}, '787b.8aff.d6b1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8190}, '7c2a.31ff.13a3/48': {'last_register': '00:22:40', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, '7c76.35ff.5cc1/48': {'last_register': '02:06:40', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, '8032.53ff.77c8/48': {'last_register': '00:07:39', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8190}, '80ed.2cff.e8b6/48': {'last_register': '02:07:41', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8190}, '84ab.1aff.de14/48': {'last_register': '00:12:44', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8190}, '84fd.d1ff.d2a9/48': {'last_register': '03:05:27', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8190}, '84fd.d1ff.256e/48': {'last_register': '00:22:43', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8190}, '8851.fbff.05b0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8190}, '8851.fbff.2fcc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8190}, '88b1.11ff.789e/48': {'last_register': '00:55:20', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, '8c85.90ff.8e13/48': {'last_register': '03:53:59', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8190}, '8c85.90ff.6b01/48': {'last_register': '01:27:05', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8190}, '8c85.90ff.1927/48': {'last_register': '00:12:03', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8190}, '8c85.90ff.ed0f/48': {'last_register': '03:38:10', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8190}, '8c85.90ff.f1ed/48': {'last_register': '00:12:00', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8190}, '8c85.90ff.a14d/48': {'last_register': '02:12:34', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8190}, '8c85.90ff.05b4/48': {'last_register': '04:11:05', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8190}, '90ac.3fff.1a80/48': {'last_register': '06:59:46', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8190}, '90ac.3fff.1aaf/48': {'last_register': '06:59:46', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8190}, '90ac.3fff.1acd/48': {'last_register': '06:59:51', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, '90ac.3fff.1ad7/48': {'last_register': '06:59:58', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8190}, '90ac.3fff.1af1/48': {'last_register': '06:59:45', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8190}, '90ac.3fff.1af8/48': {'last_register': '06:59:59', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8190}, '90ac.3fff.1a03/48': {'last_register': '06:59:49', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8190}, '90ac.3fff.1b0a/48': {'last_register': '06:59:55', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8190}, '90ac.3fff.1b11/48': {'last_register': '06:59:41', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8190}, '90ac.3fff.1b4e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8190}, '90ac.3fff.1b5f/48': {'last_register': '06:59:43', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8190}, '90ac.3fff.1b6b/48': {'last_register': '06:59:52', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8190}, '90ac.3fff.1b78/48': {'last_register': '06:59:50', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8190}, '90ac.3fff.1b79/48': {'last_register': '06:59:48', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8190}, '90ac.3fff.1b7d/48': {'last_register': '06:59:41', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8190}, '90ac.3fff.2ca6/48': {'last_register': '06:59:43', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8190}, '90ac.3fff.2cb0/48': {'last_register': '06:59:58', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8190}, '90ac.3fff.2d36/48': {'last_register': '06:59:49', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8190}, '90ac.3fff.2d7e/48': {'last_register': '06:59:45', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, '90ac.3fff.2d7f/48': {'last_register': '06:59:52', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8190}, '90ac.3fff.2d80/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8190}, '90ac.3fff.2d83/48': {'last_register': '06:59:45', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8190}, '90ac.3fff.2d88/48': {'last_register': '06:59:58', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8190}, '90ac.3fff.2d98/48': {'last_register': '06:59:55', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8190}, '90ac.3fff.2d9b/48': {'last_register': '06:59:54', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8190}, '90ac.3fff.2da5/48': {'last_register': '06:59:41', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8190}, '90ac.3fff.2da6/48': {'last_register': '06:59:54', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8190}, '90ac.3fff.2da9/48': {'last_register': '06:59:52', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8190}, '90ac.3fff.2daa/48': {'last_register': '06:59:54', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8190}, '90ac.3fff.2db0/48': {'last_register': '06:59:59', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8190}, '90ac.3fff.2dbf/48': {'last_register': '06:59:53', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8190}, '90ac.3fff.2dc2/48': {'last_register': '06:59:45', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8190}, '90ac.3fff.2df7/48': {'last_register': '06:59:53', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8190}, '90ac.3fff.2d03/48': {'last_register': '06:59:58', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8190}, '90ac.3fff.2483/48': {'last_register': '05:26:35', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8190}, '90ac.3fff.2485/48': {'last_register': '06:59:46', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8190}, '90ac.3fff.2486/48': {'last_register': '06:59:47', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8190}, '90ac.3fff.248d/48': {'last_register': '06:59:54', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8190}, '90ac.3fff.248e/48': {'last_register': '06:59:56', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8190}, '90ac.3fff.2491/48': {'last_register': '06:59:58', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8190}, '90ac.3fff.2494/48': {'last_register': '06:59:50', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8190}, '90ac.3fff.2496/48': {'last_register': '06:59:54', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8190}, '90ac.3fff.249c/48': {'last_register': '06:59:58', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8190}, '90ac.3fff.249e/48': {'last_register': '06:59:41', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8190}, '90ac.3fff.249f/48': {'last_register': '06:59:56', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8190}, '90ac.3fff.24b4/48': {'last_register': '06:59:50', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8190}, '90ac.3fff.24c3/48': {'last_register': '06:59:42', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8190}, '90ac.3fff.24c9/48': {'last_register': '06:59:48', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8190}, '90ac.3fff.24d2/48': {'last_register': '06:59:47', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8190}, '90ac.3fff.24d3/48': {'last_register': '06:59:47', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8190}, '90ac.3fff.2401/48': {'last_register': '06:59:49', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8190}, '90ac.3fff.2407/48': {'last_register': '06:59:51', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8190}, '90ac.3fff.2409/48': {'last_register': '06:59:42', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8190}, '90ac.3fff.254f/48': {'last_register': '06:59:57', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8190}, '90ac.3fff.258c/48': {'last_register': '06:59:43', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8190}, '90ac.3fff.268b/48': {'last_register': '06:59:43', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8190}, '90ac.3fff.2692/48': {'last_register': '06:59:58', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8190}, '90ac.3fff.26aa/48': {'last_register': '06:59:47', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8190}, '90ac.3fff.26b0/48': {'last_register': '06:59:44', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8190}, '90ac.3fff.61f2/48': {'last_register': '06:59:42', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8190}, '90e2.baff.41ab/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8190}, '90e2.baff.648b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8190}, '92b7.daff.501e/48': {'last_register': '00:23:05', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8190}, '94e6.f7ff.289b/48': {'last_register': '00:37:05', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8190}, '94e6.f7ff.10cd/48': {'last_register': '00:23:48', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, '983b.8fff.1e2b/48': {'last_register': '00:14:28', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8190}, 'a408.eaff.b6f3/48': {'last_register': '00:27:37', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8190}, 'a434.d9ff.75a2/48': {'last_register': '1d02h', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8190}, 'a483.e7ff.1a54/48': {'last_register': '03:42:46', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8190}, 'a483.e7ff.abee/48': {'last_register': '01:31:25', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8190}, 'a860.b6ff.78ce/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8190}, 'a86d.aaff.87af/48': {'last_register': '00:35:07', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8190}, 'aaf8.e8ff.94d6/48': {'last_register': '00:14:37', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8190}, 'aced.5cff.1dd7/48': {'last_register': '01:16:19', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8190}, 'b46b.fcff.a998/48': {'last_register': '01:25:30', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, 'b808.cfff.ce97/48': {'last_register': '01:51:25', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, 'b841.a4ff.827d/48': {'last_register': '00:01:01', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8190}, 'b863.4dff.a4f4/48': {'last_register': '00:06:37', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8190}, 'b8d7.afff.46a9/48': {'last_register': '00:14:16', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8190}, 'b8d7.afff.0fe0/48': {'last_register': '00:00:53', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8190}, 'b8d7.afff.e3fd/48': {'last_register': '00:54:37', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8190}, 'bc98.dfff.39e9/48': {'last_register': '02:45:15', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8190}, 'bca8.a6ff.326b/48': {'last_register': '01:21:10', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, 'c6c5.1bff.f5a2/48': {'last_register': '01:59:52', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8190}, 'ca8e.82ff.6e1d/48': {'last_register': '02:36:33', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8190}, 'cc3d.82ff.41e0/48': {'last_register': '00:26:58', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, 'ccc0.79ff.44d9/48': {'last_register': '1d08h', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8190}, 'd0a6.37ff.2224/48': {'last_register': '00:39:04', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8190}, 'd4ae.52ff.ae5e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8190}, 'd4ae.52ff.3a85/48': {'last_register': '2w0d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8190}, 'd4d2.52ff.5294/48': {'last_register': '03:14:13', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, 'd63d.a7ff.34aa/48': {'last_register': '00:03:02', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, 'd81d.72ff.85e4/48': {'last_register': '00:28:51', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8190}, 'd8bb.2cff.b9db/48': {'last_register': '00:01:21', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8190}, 'dc08.0fff.47e4/48': {'last_register': '00:02:47', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8190}, 'dc37.14ff.1b32/48': {'last_register': '00:00:14', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8190}, 'dca9.04ff.66a2/48': {'last_register': '01:11:33', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8190}, 'dca9.04ff.7024/48': {'last_register': '02:12:48', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8190}, 'e04f.43ff.5854/48': {'last_register': '4d04h', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8190}, 'e04f.43ff.6efa/48': {'last_register': '2w0d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8190}, 'e201.8cff.57e0/48': {'last_register': '00:31:03', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8190}, 'e2e4.50ff.290b/48': {'last_register': '00:10:11', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8190}, 'e470.b8ff.bd26/48': {'last_register': '01:29:27', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8190}, 'e470.b8ff.97a8/48': {'last_register': '01:02:32', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8190}, 'e4b3.18ff.e93e/48': {'last_register': '01:02:05', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8190}, 'e86a.64ff.56fd/48': {'last_register': '03:37:53', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8190}, 'f018.98ff.d24c/48': {'last_register': '01:29:41', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8190}, 'f018.98ff.d664/48': {'last_register': '02:06:54', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8190}, 'f018.98ff.ea10/48': {'last_register': '00:15:16', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8190}, 'f018.98ff.6304/48': {'last_register': '05:01:49', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8190}, 'f018.98ff.ce4e/48': {'last_register': '01:56:21', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8190}, 'f018.98ff.a199/48': {'last_register': '00:01:10', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8190}, 'f2dc.88ff.3f09/48': {'last_register': '00:02:17', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8190}, 'f40e.01ff.df89/48': {'last_register': '01:00:46', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8190}, 'f493.9fff.aec0/48': {'last_register': '1d16h', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8190}, 'f493.9fff.4765/48': {'last_register': '1d10h', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8190}, 'f496.34ff.00d6/48': {'last_register': '02:39:57', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, 'f859.71ff.bdb0/48': {'last_register': '19:55:17', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8190}, 'f8ff.c2ff.5f98/48': {'last_register': '00:00:05', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8190}, 'f8ff.c2ff.2830/48': {'last_register': '02:34:03', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8190}, 'f8ff.c2ff.123e/48': {'last_register': '02:44:17', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8190}, 'f8ff.c2ff.b2d6/48': {'last_register': '00:19:56', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8190}, 'fc4d.d4ff.9ba5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8190}, 'fc4d.d4ff.25ab/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8190}}}}, 8191: {'lisp': 0, 'site_name': {'site_uci': {'any-mac': {'last_register': 'never', 'up': 'no', 'who_last_registered': '--', 'inst_id': 8191}, '0000.0cff.94fd/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '0002.b9ff.e707/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.172:11801', 'inst_id': 8191}, '0002.fdff.f596/48': {'last_register': '05:41:20', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8191}, '0004.f2ff.c644/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '0007.7dff.0fb1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.172:11801', 'inst_id': 8191}, '0007.7dff.11f6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.184:44273', 'inst_id': 8191}, '0008.32ff.b366/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '000b.abff.6eab/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '0015.f9ff.2a95/48': {'last_register': '3d17h', 'up': 'yes#', 'who_last_registered': '10.8.128.184:44273', 'inst_id': 8191}, '0019.55ff.d54a/48': {'last_register': '1w6d', 'up': 'yes#', 'who_last_registered': '10.8.128.161:29272', 'inst_id': 8191}, '0023.33ff.3c9c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0023.33ff.40a1/48': {'last_register': '00:04:08', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0023.33ff.45d5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '0024.c4ff.ad75/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '0025.84ff.782f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, '0027.90ff.05db/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.252:16799', 'inst_id': 8191}, '0027.90ff.084b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '0027.90ff.099e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '0027.90ff.0c23/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '0027.90ff.3e99/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.252:16799', 'inst_id': 8191}, '0027.90ff.48b3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '0027.90ff.5c3c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '0027.90ff.61b5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '0029.c2ff.862d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '0038.dfff.64ab/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '0045.1dff.7615/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '0045.1dff.a630/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.172:11801', 'inst_id': 8191}, '0050.60ff.dc12/48': {'last_register': '00:07:14', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, '0050.60ff.f272/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '0050.60ff.0abe/48': {'last_register': '1w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, '0050.60ff.a1e9/48': {'last_register': '00:08:23', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, '0050.60ff.42ac/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '0050.60ff.925f/48': {'last_register': '00:07:15', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, '0050.60ff.9d91/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '0050.60ff.a34d/48': {'last_register': '19:20:02', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '0050.60ff.a613/48': {'last_register': '19:20:03', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '0050.60ff.f6a0/48': {'last_register': '19:20:02', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '0050.60ff.3148/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '0050.60ff.4288/48': {'last_register': '19:20:02', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '0057.d2ff.ce2c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '0057.d2ff.ce65/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '0057.d2ff.cfce/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '0057.d2ff.cf65/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '0057.d2ff.cf86/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '0057.d2ff.cfa1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '0057.d2ff.530f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '0057.d2ff.55f1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '0057.d2ff.56fc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '0057.d2ff.57bf/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.5bdc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0057.d2ff.5dda/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '0057.d2ff.5e3f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '0057.d2ff.5e66/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '0057.d2ff.5f08/48': {'last_register': '12:48:17', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '0057.d2ff.5f20/48': {'last_register': '1d13h', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0057.d2ff.5f74/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '0057.d2ff.61c9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '0057.d2ff.6157/48': {'last_register': '1d03h', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0057.d2ff.6190/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '0057.d2ff.6256/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '0057.d2ff.633d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '0057.d2ff.6415/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '0057.d2ff.6433/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0057.d2ff.66c4/48': {'last_register': '09:27:42', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0057.d2ff.66d3/48': {'last_register': '06:18:05', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0057.d2ff.6916/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0057.d2ff.694c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '0057.d2ff.6f5b/48': {'last_register': '00:38:37', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0057.d2ff.72dc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '0057.d2ff.7228/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '0057.d2ff.72be/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0057.d2ff.73ed/48': {'last_register': '11:17:48', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0057.d2ff.7312/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '0057.d2ff.768a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0057.d2ff.92dd/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0057.d2ff.95e0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '0057.d2ff.95ec/48': {'last_register': '2d15h', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0057.d2ff.96c4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '0057.d2ff.96dc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '0057.d2ff.9682/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '0057.d2ff.975a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '0057.d2ff.979c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '0057.d2ff.98e9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0057.d2ff.98fe/48': {'last_register': '04:24:07', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0057.d2ff.9808/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '0057.d2ff.99c7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '0057.d2ff.9973/48': {'last_register': '22:13:48', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0057.d2ff.998e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0057.d2ff.99b2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '0057.d2ff.9ae7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '0057.d2ff.9af6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '0057.d2ff.9afc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '0057.d2ff.9a24/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '0057.d2ff.9a3f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '0057.d2ff.9a51/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '0057.d2ff.9a66/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '0057.d2ff.9a81/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '0057.d2ff.9aba/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '0057.d2ff.9b41/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '0057.d2ff.9b7a/48': {'last_register': '07:00:12', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0057.d2ff.9cdc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '0057.d2ff.9d4b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0057.d2ff.9e50/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '0057.d2ff.9f31/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '0057.d2ff.9f9d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '0057.d2ff.a0c3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '0057.d2ff.a252/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '0057.d2ff.a25b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '0057.d2ff.a6d2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '0057.d2ff.a966/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0057.d2ff.20e7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '0057.d2ff.21f8/48': {'last_register': '1w2d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '0057.d2ff.2102/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '0057.d2ff.211a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '0057.d2ff.213e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '0057.d2ff.2144/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '0057.d2ff.214a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '0057.d2ff.2159/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '0057.d2ff.215f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '0057.d2ff.2162/48': {'last_register': '02:10:46', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '0057.d2ff.21a7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '0057.d2ff.21b9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '0057.d2ff.22d6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '0057.d2ff.236f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '0057.d2ff.2384/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '0057.d2ff.23b7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '0057.d2ff.2d53/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '0057.d2ff.2e58/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '0057.d2ff.2e7c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '0057.d2ff.2e88/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '0057.d2ff.2e9a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '0057.d2ff.2ebe/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '0057.d2ff.3005/48': {'last_register': '03:46:32', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '0057.d2ff.341c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.161:29272', 'inst_id': 8191}, '0057.d2ff.3437/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '0057.d2ff.a04d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0057.d2ff.aa71/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '0057.d2ff.aaa1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '0057.d2ff.af06/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '0057.d2ff.af45/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '0057.d2ff.b092/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '0057.d2ff.b0a4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.b0b3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '0057.d2ff.b1c1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '0057.d2ff.b1d0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '0057.d2ff.b1e2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '0057.d2ff.b1e5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '0057.d2ff.b1e8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '0057.d2ff.b11f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '0057.d2ff.b143/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.b15e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.b16d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.b173/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.b17c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '0057.d2ff.b191/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '0057.d2ff.b194/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.b19d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.b1be/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '0057.d2ff.b1c1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.b2cc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.b2d8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.b2de/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.b2ed/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '0057.d2ff.b206/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, '0057.d2ff.b233/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '0057.d2ff.b23c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '0057.d2ff.b24e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '0057.d2ff.b27e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '0057.d2ff.b2a2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.b2a8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '0057.d2ff.b2b4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.b3c8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.b3da/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.b3e0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '0057.d2ff.b3e6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.b3ef/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '0057.d2ff.b3f2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.b3fb/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.b305/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '0057.d2ff.b30b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '0057.d2ff.b30e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.b317/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '0057.d2ff.b31d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '0057.d2ff.b32c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '0057.d2ff.b33b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.b353/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '0057.d2ff.b374/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.b383/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, '0057.d2ff.b3b6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '0057.d2ff.b4c4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '0057.d2ff.b4c7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.b4cd/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.b4df/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '0057.d2ff.b4ee/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, '0057.d2ff.b401/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '0057.d2ff.b41c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.b440/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '0057.d2ff.b446/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.b44c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.b44f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '0057.d2ff.b455/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '0057.d2ff.b458/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.b45b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.b45e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.b476/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '0057.d2ff.b488/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.b48e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '0057.d2ff.b5d2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.b5e4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.b5f9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '0057.d2ff.b503/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '0057.d2ff.b509/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '0057.d2ff.b512/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '0057.d2ff.b521/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '0057.d2ff.b524/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '0057.d2ff.b545/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '0057.d2ff.b566/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '0057.d2ff.b575/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.b59c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.b5a2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.b5ab/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '0057.d2ff.b61a/48': {'last_register': '1d10h', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '0057.d2ff.b65c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '0057.d2ff.b8db/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '0057.d2ff.b836/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.b84b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '0057.d2ff.b88a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.b8a8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.b90b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '0057.d2ff.b917/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '0057.d2ff.b9b9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '0057.d2ff.b9bf/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '0057.d2ff.bac7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.bad3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.badf/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '0057.d2ff.bae2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.ba04/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '0057.d2ff.ba22/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '0057.d2ff.ba64/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.baa0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '0057.d2ff.bac1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.bbed/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.bb1b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '0057.d2ff.bb45/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.bb72/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.bb81/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '0057.d2ff.bcef/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '0057.d2ff.bc02/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '0057.d2ff.bdb5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.be51/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.be99/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '0057.d2ff.c0f7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.c001/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.c007/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '0057.d2ff.c019/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '0057.d2ff.c05e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.c067/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0057.d2ff.c082/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '0057.d2ff.c139/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '005f.86ff.c676/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '0062.ecff.e576/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '0062.ecff.384b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '006c.bcff.1c92/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '006c.bcff.1d2d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '006c.bcff.1e59/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '006c.bcff.20db/48': {'last_register': '1d19h', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '006c.bcff.1189/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '006c.bcff.1c7f/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '006c.bcff.1c80/48': {'last_register': '1d19h', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '006c.bcff.1c86/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '006c.bcff.848a/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '0072.78ff.fa5a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '0076.86ff.a30f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '0076.86ff.adf5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '0076.86ff.b6c2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0077.8dff.3aba/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '0087.31ff.3851/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '009e.1eff.eab7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '009e.1eff.9ec2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '009e.1eff.a924/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '009e.1eff.b596/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '009e.1eff.bea2/48': {'last_register': '04:49:36', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '009e.1eff.1a67/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.252:16799', 'inst_id': 8191}, '009e.1eff.a062/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '009e.1eff.a227/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '009e.1eff.a5cf/48': {'last_register': '02:53:18', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00a3.d1ff.d059/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '00a3.d1ff.2e75/48': {'last_register': '1w0d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '00a5.bfff.2153/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '00a5.bfff.32d4/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '00a5.bfff.70f5/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, '00a5.bfff.7e39/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '00a7.42ff.ca4c/48': {'last_register': '1d05h', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '00a7.42ff.7046/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '00a7.42ff.704b/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '00aa.6eff.0b7f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '00af.1fff.47d7/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '00af.1fff.ce6d/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '00af.1fff.e5ed/48': {'last_register': '1d19h', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00af.1fff.f1d2/48': {'last_register': '1d19h', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '00b1.e3ff.bb2c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '00b1.e3ff.bb41/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '00b1.e3ff.bb7a/48': {'last_register': '08:18:39', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '00b1.e3ff.bb80/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '00b1.e3ff.bb92/48': {'last_register': '10:48:23', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '00b1.e3ff.bc19/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '00b1.e3ff.bc25/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '00b1.e3ff.bdcf/48': {'last_register': '04:22:38', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '00b1.e3ff.bde1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '00b1.e3ff.bdea/48': {'last_register': '14:57:37', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '00b1.e3ff.bdf6/48': {'last_register': '15:03:49', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '00b1.e3ff.bd7e/48': {'last_register': '05:02:13', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '00b1.e3ff.bd90/48': {'last_register': '02:17:56', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '00b1.e3ff.bd96/48': {'last_register': '1d17h', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '00b1.e3ff.bda8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '00b1.e3ff.bdae/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '00b1.e3ff.be62/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '00b1.e3ff.be8f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '00b1.e3ff.be92/48': {'last_register': '09:56:06', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '00b1.e3ff.beb6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '00b1.e3ff.bfbb/48': {'last_register': '07:04:21', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '00b1.e3ff.bfd9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '00b1.e3ff.bfe2/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '00b1.e3ff.bf52/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '00b1.e3ff.bf5b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '00b1.e3ff.bf6d/48': {'last_register': '03:29:36', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '00b1.e3ff.c036/48': {'last_register': '11:50:16', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '00b1.e3ff.c039/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '00b1.e3ff.c066/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '00b1.e3ff.c1ce/48': {'last_register': '1w2d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '00b1.e3ff.c11a/48': {'last_register': '01:37:27', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00b1.e3ff.c147/48': {'last_register': '01:37:23', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '00b1.e3ff.c168/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '00b1.e3ff.c25b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '00b1.e3ff.c29d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '00b1.e3ff.c2a6/48': {'last_register': '00:11:27', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '00b1.e3ff.c2b2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '00b1.e3ff.c3e1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '00b1.e3ff.c3ed/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '00b1.e3ff.c306/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '00b1.e3ff.c38d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '00b1.e3ff.c402/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '00b1.e3ff.c43e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '00b1.e3ff.c5cd/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '00b1.e3ff.c5d6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '00b1.e3ff.c5e5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '00b1.e3ff.c5f4/48': {'last_register': '1d06h', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '00b1.e3ff.c5f7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '00b1.e3ff.c552/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '00b1.e3ff.c573/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '00b1.e3ff.c576/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '00b1.e3ff.c57f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00b1.e3ff.c591/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '00b1.e3ff.c6ba/48': {'last_register': '14:19:31', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '00b1.e3ff.c60c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '00b1.e3ff.c636/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '00b1.e3ff.c7c2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '00b1.e3ff.c70b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '00b1.e3ff.c70e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '00b1.e3ff.c71a/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00b1.e3ff.c71d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '00b1.e3ff.c73b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '00b1.e3ff.c8be/48': {'last_register': '08:01:32', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '00b1.e3ff.c822/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '00b1.e3ff.c82e/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '00b1.e3ff.c9e1/48': {'last_register': '06:27:10', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00b1.e3ff.c9e4/48': {'last_register': '01:06:57', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00b1.e3ff.c9e7/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '00b1.e3ff.c918/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00b1.e3ff.c91b/48': {'last_register': '00:24:24', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00b1.e3ff.c933/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00b1.e3ff.cbca/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '00b1.e3ff.cb9a/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '00b1.e3ff.ccc6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '00b1.e3ff.cc9f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '00b1.e3ff.cca8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '00b1.e3ff.cddd/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '00b1.e3ff.cde6/48': {'last_register': '11:57:10', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00b1.e3ff.cd17/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '00b1.e3ff.ce10/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '00b1.e3ff.cfc0/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00b1.e3ff.cfc9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '00b1.e3ff.cfe1/48': {'last_register': '04:59:58', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '00b1.e3ff.d0bf/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '00b1.e3ff.d095/48': {'last_register': '07:01:35', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '00b1.e3ff.d1d0/48': {'last_register': '08:20:24', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '00b1.e3ff.d1d9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '00b1.e3ff.d25a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '00b1.e3ff.d3bc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '00b1.e3ff.d395/48': {'last_register': '01:08:56', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '00b1.e3ff.d39b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '00b1.e3ff.d43d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '00b1.e3ff.d440/48': {'last_register': '01:35:56', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00b1.e3ff.d467/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '00b1.e3ff.d48b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '00b1.e3ff.d716/48': {'last_register': '00:10:08', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '00b1.e3ff.d719/48': {'last_register': '07:29:42', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '00b1.e3ff.d72e/48': {'last_register': '16:20:11', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '00b1.e3ff.d863/48': {'last_register': '00:27:59', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '00b1.e3ff.d8a8/48': {'last_register': '02:31:29', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '00b1.e3ff.d9c2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00b1.e3ff.d9c5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '00b1.e3ff.d9c8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '00b1.e3ff.d9ce/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '00b1.e3ff.d9d1/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00b1.e3ff.d9f2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '00b1.e3ff.d9fe/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00b1.e3ff.d911/48': {'last_register': '00:10:31', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00b1.e3ff.d929/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '00b1.e3ff.d92f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '00b1.e3ff.d938/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00b1.e3ff.d93e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '00b1.e3ff.d956/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '00b1.e3ff.d98f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '00b1.e3ff.d995/48': {'last_register': '00:47:35', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '00b1.e3ff.d998/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '00b1.e3ff.575a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '00b1.e3ff.72c9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '00bf.77ff.c396/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '00bf.77ff.2829/48': {'last_register': '1w2d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '00c1.64ff.a3af/48': {'last_register': '1d04h', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00c1.64ff.6a7a/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '00c1.64ff.ba27/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '00c1.b1ff.ac3e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '00c8.8bff.4ac7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, '00ca.e5ff.bdc9/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '00ca.e5ff.c151/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00ca.e5ff.c155/48': {'last_register': '1d19h', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00ca.e5ff.c195/48': {'last_register': '2d00h', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '00ca.e5ff.c1ad/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00ca.e5ff.c1b1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00ca.e5ff.1c46/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '00cc.fcff.3be1/48': {'last_register': '2d00h', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '00cc.fcff.5769/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '00cc.fcff.98a5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '00cc.fcff.98ab/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '00cc.fcff.98b7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '00cc.fcff.98ed/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '00cc.fcff.9827/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '00cc.fcff.9857/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '00cc.fcff.985d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '00cc.fcff.9866/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '00cc.fcff.986c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '00cc.fcff.987b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '00cc.fcff.987e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '00cc.fcff.9887/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '00cc.fcff.99b9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '00cc.fcff.99d1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '00cc.fcff.99e3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '00cc.fcff.99ec/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '00cc.fcff.99f5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '00cc.fcff.99f8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00cc.fcff.99fb/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '00cc.fcff.991d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '00cc.fcff.9920/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '00cc.fcff.993b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '00cc.fcff.9941/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '00cc.fcff.9953/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00cc.fcff.9a07/48': {'last_register': '1w6d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8191}, '00cc.fcff.9f77/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '00cc.fcff.a0f7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '00cc.fcff.a1ea/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '00cc.fcff.a106/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '00cc.fcff.a256/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00cc.fcff.a286/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00cc.fcff.a289/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '00cc.fcff.a3a6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '00cc.fcff.a3c1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8191}, '00cc.fcff.a3ca/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '00cc.fcff.a3cd/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00cc.fcff.a3df/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00cc.fcff.a3f4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '00cc.fcff.a3fa/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '00cc.fcff.a40f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '00cc.fcff.a472/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '00cc.fcff.a487/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '00cc.fcff.a48a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '00cc.fcff.a598/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '00cc.fcff.a5aa/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '00cc.fcff.a5c2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '00cc.fcff.a5da/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00cc.fcff.a5ef/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, '00cc.fcff.a505/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00cc.fcff.a50b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '00cc.fcff.a6eb/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '00cc.fcff.a628/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '00cc.fcff.a646/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00cc.fcff.a658/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '00cc.fcff.a65b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '00cc.fcff.a682/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '00cc.fcff.a694/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '00cc.fcff.a7e4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '00cc.fcff.a703/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '00cc.fcff.a70c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '00cc.fcff.a72d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00cc.fcff.a730/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00cc.fcff.a73c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '00cc.fcff.a75d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '00cc.fcff.a778/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, '00cc.fcff.a793/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00cc.fcff.a8a4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00cc.fcff.a826/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00cc.fcff.a96d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00cc.fcff.a98e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00cc.fcff.acf4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00cc.fcff.ad00/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00cc.fcff.b44b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '00cc.fcff.dd58/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '00cc.fcff.dea8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '00cc.fcff.e853/48': {'last_register': '01:13:00', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '00cc.fcff.f141/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '00cc.fcff.f3ba/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '00cc.fcff.f79b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '00cc.fcff.fd98/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '00cc.fcff.fec4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '00cc.fcff.fe10/48': {'last_register': '2d00h', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '00cc.fcff.0060/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '00cc.fcff.036c/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '00cc.fcff.0f84/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.252:16799', 'inst_id': 8191}, '00cc.fcff.110a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '00cc.fcff.1113/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '00cc.fcff.12ae/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '00cc.fcff.12d5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '00cc.fcff.125d/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00cc.fcff.17eb/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00cc.fcff.187e/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00cc.fcff.1953/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '00cc.fcff.1ad9/48': {'last_register': '09:49:46', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00cc.fcff.1adf/48': {'last_register': '09:35:59', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00cc.fcff.1a2b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '00cc.fcff.1a3a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '00cc.fcff.1a4c/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00cc.fcff.1a4f/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00cc.fcff.1a73/48': {'last_register': '00:40:53', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00cc.fcff.1a82/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '00cc.fcff.1a88/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00cc.fcff.1a8b/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00cc.fcff.1a94/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00cc.fcff.1b48/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '00cc.fcff.1b99/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00cc.fcff.1c9e/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00cc.fcff.1caa/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '00cc.fcff.1cf2/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00cc.fcff.1cf5/48': {'last_register': '15:09:12', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '00cc.fcff.2424/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '00cc.fcff.2b3e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '00cc.fcff.4272/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '00eb.d5ff.0e1e/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '00eb.d5ff.1661/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '00fd.22ff.46eb/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '00fd.22ff.60af/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '00fe.c8ff.0734/48': {'last_register': '1w2d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '00fe.c8ff.075e/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '00fe.c8ff.228c/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '00fe.c8ff.23bd/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '00fe.c8ff.23ed/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '00fe.c8ff.3ead/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '00fe.c8ff.77e0/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '00fe.c8ff.b0ec/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '00fe.c8ff.c94d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '00fe.c8ff.ca3d/48': {'last_register': '1d19h', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '00fe.c8ff.dad8/48': {'last_register': '1d19h', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '00fe.c8ff.dcc0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '042a.e2ff.2b33/48': {'last_register': '1d04h', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '042a.e2ff.28cf/48': {'last_register': '1d19h', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '042a.e2ff.2c40/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '042a.e2ff.c454/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '0462.73ff.1ce0/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '0462.73ff.1cea/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '0462.73ff.1cfd/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '0462.73ff.60fa/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '0462.73ff.60fc/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '0462.73ff.313c/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04c5.a4ff.ee8a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '04da.d2ff.65a2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '04eb.40ff.c21e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.c8d8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.df31/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.e44a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.e9ab/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.3860/48': {'last_register': '10:35:34', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.6e4e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '04eb.40ff.73d6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8191}, '04eb.40ff.8d53/48': {'last_register': '01:52:52', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.f474/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.f486/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.f555/48': {'last_register': '03:21:05', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.f5b5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.f6c9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.f6cc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.f6f3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.f60f/48': {'last_register': '04:24:22', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.f66f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.f765/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.f768/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.f8d0/48': {'last_register': '00:13:33', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.f8d3/48': {'last_register': '1d01h', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.f8f1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.f828/48': {'last_register': '04:15:56', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.f83d/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.f846/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.f9a2/48': {'last_register': '00:37:42', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.fac2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '04eb.40ff.faf2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.fa23/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.fa35/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.fa6e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.fab0/48': {'last_register': '03:58:29', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.fb10/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.fcf6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.fc33/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.fde9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.fdf5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.febe/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.fe67/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.fe88/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.00cc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '04eb.40ff.0048/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '04eb.40ff.0057/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.0147/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.0156/48': {'last_register': '02:26:47', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.015c/48': {'last_register': '2d01h', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.0162/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.0186/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.02df/48': {'last_register': '20:28:06', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.02e5/48': {'last_register': '09:06:08', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.02eb/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.02ee/48': {'last_register': '03:42:42', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.02f7/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.02fa/48': {'last_register': '4d04h', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.0201/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.0207/48': {'last_register': '06:16:17', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.022e/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.0276/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.0318/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '04eb.40ff.035d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '04eb.40ff.045f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, '04eb.40ff.0465/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '04eb.40ff.0468/48': {'last_register': '1d04h', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.0546/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.06d5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.06de/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.06e4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '04eb.40ff.0642/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '04eb.40ff.0645/48': {'last_register': '01:03:58', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.07b9/48': {'last_register': '21:01:29', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.07c5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '04eb.40ff.07cb/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '04eb.40ff.07ce/48': {'last_register': '05:57:23', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.071a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '04eb.40ff.07a1/48': {'last_register': '08:21:00', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.07b3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.080d/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.0810/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.0825/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.084f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.0879/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '04eb.40ff.08a0/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.08b5/48': {'last_register': '23:09:23', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.09f6/48': {'last_register': '06:51:08', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.0903/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.0936/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.0957/48': {'last_register': '1w2d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.0960/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.0969/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.096c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.097e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.0996/48': {'last_register': '01:34:58', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.09ab/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.0aec/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.0afb/48': {'last_register': '08:57:19', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.0a20/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.0a38/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.0a47/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.0a5f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.0a7d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.0a86/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.0a9e/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.0ab3/48': {'last_register': '03:51:38', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.0bbe/48': {'last_register': '13:21:01', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.0bc7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.0bfd/48': {'last_register': '1d16h', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.0b0a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '04eb.40ff.0b31/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.0b34/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.0b73/48': {'last_register': '12:19:48', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.0b91/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.0b97/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '04eb.40ff.0ced/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.0c60/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '04eb.40ff.0c81/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.0dd7/48': {'last_register': '08:34:33', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.0dda/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '04eb.40ff.0dfe/48': {'last_register': '07:48:54', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.0d56/48': {'last_register': '18:34:05', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.0d71/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '04eb.40ff.0e10/48': {'last_register': '05:53:48', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.0e52/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.0e76/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.0e8e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.0fed/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.0f1e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.0f24/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.0f5a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '04eb.40ff.10cb/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.1020/48': {'last_register': '1d14h', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.102f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.106b/48': {'last_register': '14:50:25', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.108f/48': {'last_register': '15:20:00', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.1125/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.1146/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '04eb.40ff.118e/48': {'last_register': '05:27:56', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.12c6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.12e1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.12ed/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '04eb.40ff.123c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '04eb.40ff.1272/48': {'last_register': '16:41:45', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.1284/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.13d4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '04eb.40ff.13fb/48': {'last_register': '07:56:06', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.142e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '04eb.40ff.15e4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.15f3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '04eb.40ff.1524/48': {'last_register': '05:14:46', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.1527/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.156f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '04eb.40ff.1581/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.1599/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.15b7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.16c8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '04eb.40ff.1629/48': {'last_register': '09:06:56', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.165f/48': {'last_register': '4d23h', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '04eb.40ff.17ac/48': {'last_register': '03:15:57', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.17af/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.17b2/48': {'last_register': '1d01h', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.1827/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '04eb.40ff.183c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.187b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.1881/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.189f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.192c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.1950/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.1959/48': {'last_register': '16:07:57', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.198c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '04eb.40ff.1995/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.19aa/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.1ac7/48': {'last_register': '09:02:41', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.1a28/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.1a2b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '04eb.40ff.1a73/48': {'last_register': '08:32:52', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.1a8b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.1be4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.1b03/48': {'last_register': '18:27:06', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.1b06/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.1b12/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '04eb.40ff.1b4b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.1b4e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '04eb.40ff.1b78/48': {'last_register': '14:37:34', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.1b93/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.1cf8/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.1c08/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.1c11/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.1c38/48': {'last_register': '2d10h', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.1c59/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '04eb.40ff.1c5c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.1c89/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '04eb.40ff.1dd6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.1df7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '04eb.40ff.1d16/48': {'last_register': '05:30:45', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.1d22/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.1d4f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.1d67/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.1d9d/48': {'last_register': '1d19h', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.1eba/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.1ee7/48': {'last_register': '2d19h', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '04eb.40ff.1e00/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '04eb.40ff.1e7e/48': {'last_register': '13:54:40', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.1e8d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '04eb.40ff.1ea2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '04eb.40ff.1ea5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.1fbc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '04eb.40ff.1fcb/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '04eb.40ff.1fdd/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.1f05/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.1f0b/48': {'last_register': '01:13:45', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.1f2c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.20d9/48': {'last_register': '14:07:24', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.20f1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '04eb.40ff.20fd/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '04eb.40ff.2031/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '04eb.40ff.2052/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.2061/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.207c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '04eb.40ff.2097/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.21cc/48': {'last_register': '00:32:44', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.21e1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.2124/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.212a/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.21b7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.22e9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '04eb.40ff.22ec/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.22f8/48': {'last_register': '10:50:13', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.2259/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '04eb.40ff.2283/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.23fd/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.2304/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '04eb.40ff.2310/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.2313/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.235e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.2364/48': {'last_register': '19:50:00', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.237c/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.24c0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '04eb.40ff.2400/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '04eb.40ff.2415/48': {'last_register': '01:22:49', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.241e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.2526/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.26c4/48': {'last_register': '2w0d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.26c7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '04eb.40ff.26df/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.2694/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.2715/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '04eb.40ff.274e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.2751/48': {'last_register': '04:28:40', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.29d0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.2af9/48': {'last_register': '04:39:52', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.2a0f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.2bfb/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.2b6b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.2b80/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.2cfa/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.2c4c/48': {'last_register': '13:00:56', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.2d00/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '04eb.40ff.2d03/48': {'last_register': '00:24:02', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.2d4e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.2d5a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.2ebf/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.2fc1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.2fc7/48': {'last_register': '10:57:02', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.2fe8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.2ff1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.2f2e/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.2f49/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.2f4f/48': {'last_register': '02:35:00', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.2f55/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.2f5b/48': {'last_register': '05:25:08', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.2f61/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.2f82/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.2f94/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.2fb5/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.30c0/48': {'last_register': '1d01h', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.30cf/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '04eb.40ff.305a/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.30ae/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.31fb/48': {'last_register': '02:11:44', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.3102/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.3123/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.32c7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.321f/48': {'last_register': '22:40:42', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.3327/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '04eb.40ff.3354/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '04eb.40ff.33b1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.34b9/48': {'last_register': '11:09:51', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.34ce/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '04eb.40ff.3402/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.342f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.343e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.3444/48': {'last_register': '04:54:48', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.347d/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.35be/48': {'last_register': '00:57:09', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.35c4/48': {'last_register': '1d02h', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.35d3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.35e8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.35eb/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.3522/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.3525/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.3540/48': {'last_register': '1w2d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.356a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '04eb.40ff.3579/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.35a6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.35ac/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.363c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.3669/48': {'last_register': '04:58:48', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.3672/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '04eb.40ff.3675/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.3690/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.36b7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.37c8/48': {'last_register': '1w2d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.3702/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.3711/48': {'last_register': '19:06:15', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.3744/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.3801/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.3831/48': {'last_register': '00:03:50', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.3849/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '04eb.40ff.3852/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '04eb.40ff.3939/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.3957/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.395d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.3972/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.3975/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.398d/48': {'last_register': '03:43:28', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.3a71/48': {'last_register': '07:38:54', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.3bd9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.3bf1/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.3ccc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.3cdb/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.9708/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '04eb.40ff.970e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.971a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.972c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '04eb.40ff.9735/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.9738/48': {'last_register': '06:15:18', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.974a/48': {'last_register': '07:53:51', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.98d0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.98d9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.98eb/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.9816/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8191}, '04eb.40ff.9819/48': {'last_register': '11:30:19', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.981f/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.9822/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.9837/48': {'last_register': '08:42:51', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.983a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.9855/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.9882/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.9897/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '04eb.40ff.98a9/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.99cc/48': {'last_register': '00:20:52', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.99e4/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.9900/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.9912/48': {'last_register': '08:20:48', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.9918/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.9924/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.992a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.992d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.9942/48': {'last_register': '05:31:32', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.997b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.997e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.999f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.99a2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.99ae/48': {'last_register': '09:16:51', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.99b4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.9ac8/48': {'last_register': '11:54:10', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.9ae9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '04eb.40ff.9afb/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '04eb.40ff.9a38/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.9a3e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '04eb.40ff.9a41/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.9a47/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.9a86/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.9ab3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.9bc7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.9bcd/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.9bd0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.9bd3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.9bd6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.9beb/48': {'last_register': '01:19:34', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.9bee/48': {'last_register': '04:48:46', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.9bf1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.9bf4/48': {'last_register': '02:29:24', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.9bfd/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.9b13/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.9b4c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '04eb.40ff.9b55/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '04eb.40ff.9b64/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.9b73/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.9b8b/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.9b91/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.9b9d/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.9ba6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.9bb5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.9cc3/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.9cf0/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.9c00/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.9c2d/48': {'last_register': '06:44:42', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.9c33/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.9c4e/48': {'last_register': '10:46:48', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.9c57/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.9d1d/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.9d32/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.9d35/48': {'last_register': '10:16:58', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.9d44/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '04eb.40ff.9d56/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.9d59/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.9f12/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '04eb.40ff.9f18/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.9f2a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '04eb.40ff.9f36/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '04eb.40ff.9f3c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.9f45/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '04eb.40ff.9f57/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.9f5d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.9f99/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.9fa5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.a0c2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.a0f5/48': {'last_register': '10:15:24', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.a017/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.a01d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.a020/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.a023/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.a026/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '04eb.40ff.a02c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.a035/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.a038/48': {'last_register': '08:59:28', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.a03e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '04eb.40ff.a044/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.a053/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.a059/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.a05c/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.a08f/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.a092/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.a09b/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.a0b3/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.a0b9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '04eb.40ff.a1c1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.a131/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.a158/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.a164/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '04eb.40ff.a167/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.a16a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.a170/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.a176/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '04eb.40ff.a188/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.a191/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.a194/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '04eb.40ff.a1b5/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.a2d2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '04eb.40ff.a2fc/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.a203/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.a215/48': {'last_register': '03:09:12', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.a260/48': {'last_register': '00:30:22', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.a3d4/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.a3e3/48': {'last_register': '20:13:35', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.a3ec/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '04eb.40ff.a3fb/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.a3fe/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '04eb.40ff.a311/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '04eb.40ff.a314/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '04eb.40ff.a437/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '04eb.40ff.a443/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '04eb.40ff.a449/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.a44c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.a45e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.a752/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.a755/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.a782/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.a7ac/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.a7b2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.a7b5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.a8cf/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.a8d5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.a8f3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.a85d/48': {'last_register': '15:39:16', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.a8b1/48': {'last_register': '00:21:49', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.a8b4/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.a9bc/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.a98c/48': {'last_register': '4d04h', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.a98f/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.a9b6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.aacd/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.aad0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.aae2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.aaf1/48': {'last_register': '01:11:40', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.aa28/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.abea/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '04eb.40ff.ab1e/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.ab21/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '04eb.40ff.ab2d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '04eb.40ff.ad0a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.ad4c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '04eb.40ff.ad5e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8191}, '04eb.40ff.ad73/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.ada9/48': {'last_register': '00:44:41', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.adb5/48': {'last_register': '1w2d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.aebd/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.aee7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.ae99/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.ae9c/48': {'last_register': '00:56:08', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.b1db/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.b1de/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.b1e1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.b133/48': {'last_register': '1d06h', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.b136/48': {'last_register': '1d01h', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.b13c/48': {'last_register': '10:52:01', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.b142/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.b145/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.b14e/48': {'last_register': '13:06:00', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.b17b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.b181/48': {'last_register': '1d10h', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.b18d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.b1ab/48': {'last_register': '15:56:15', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.b4fc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.b400/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.b7c9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.b72a/48': {'last_register': '11:51:18', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.b730/48': {'last_register': '00:34:06', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.b742/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.b745/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.b748/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.b74e/48': {'last_register': '1d02h', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.b7ab/48': {'last_register': '05:31:58', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.b7b1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.b8d7/48': {'last_register': '00:01:56', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '04eb.40ff.b8e0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '04eb.40ff.b8f5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.b8f8/48': {'last_register': '05:16:54', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.b82f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.b844/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.b85f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '04eb.40ff.b862/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.b871/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.b889/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '04eb.40ff.b892/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.b9ca/48': {'last_register': '1w2d', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.b9d6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.b901/48': {'last_register': '10:14:47', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '04eb.40ff.b931/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.b93d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '04eb.40ff.b943/48': {'last_register': '22:40:18', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '04eb.40ff.b970/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '04eb.40ff.b97c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '0817.35ff.b5b1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.8:43876', 'inst_id': 8191}, '0896.adff.3dcd/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0896.adff.764d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '0896.adff.a484/48': {'last_register': '1d03h', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '0896.adff.dae8/48': {'last_register': '1d19h', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '0896.adff.899b/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '0896.adff.f148/48': {'last_register': '1d19h', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '0896.adff.ef45/48': {'last_register': '1d19h', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '08cc.68ff.eecc/48': {'last_register': '00:19:15', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '08cc.68ff.ef69/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.172:11801', 'inst_id': 8191}, '08cc.68ff.f198/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '08cc.68ff.f272/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '08cc.68ff.f344/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '08cc.68ff.99ad/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '08cc.68ff.9c70/48': {'last_register': '00:49:28', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '08cc.68ff.e750/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '08cc.68ff.1894/48': {'last_register': '1w0d', 'up': 'yes#', 'who_last_registered': '10.8.128.252:16799', 'inst_id': 8191}, '08cc.68ff.194d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '08cc.68ff.19cc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '08cc.68ff.1b3e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.172:11801', 'inst_id': 8191}, '08cc.68ff.1b47/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.172:11801', 'inst_id': 8191}, '08cc.68ff.1cd2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '08cc.68ff.1cd4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.172:11801', 'inst_id': 8191}, '08cc.68ff.1d3c/48': {'last_register': '1w6d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '08cc.68ff.c3ec/48': {'last_register': '02:18:09', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '08ec.f5ff.f753/48': {'last_register': '1d05h', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '08ec.f5ff.911a/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '08ec.f5ff.c633/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '08ec.f5ff.c7ef/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '0c11.67ff.15cc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '0c27.24ff.4eaa/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '0c27.24ff.4eb0/48': {'last_register': '1w4d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '0c75.bdff.46a2/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '10b3.d6ff.48be/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '10bd.18ff.e4aa/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '10bd.18ff.9fb0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '1833.9dff.15c4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '189c.5dff.e2c1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '189c.5dff.1313/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.23:20011', 'inst_id': 8191}, '189c.5dff.1f4a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '189c.5dff.20db/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '1c17.d3ff.93f1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, '1c1d.86ff.ce51/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '1c1d.86ff.d0e7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '1c1d.86ff.d186/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '1c1d.86ff.6ced/48': {'last_register': '00:35:52', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '1c1d.86ff.6d04/48': {'last_register': '1d01h', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '1c1d.86ff.0069/48': {'last_register': '1w5d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '1c1d.86ff.042b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '1c1d.86ff.0706/48': {'last_register': '03:04:23', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '1c1d.86ff.07b3/48': {'last_register': '02:20:19', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '1c1d.86ff.08d1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '1c1d.86ff.26f4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '1c1d.86ff.272c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '1c1d.86ff.2790/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '1c1d.86ff.281b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '1c1d.86ff.29cc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '1c1d.86ff.2912/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '1c1d.86ff.292f/48': {'last_register': '03:49:28', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '1c1d.86ff.2939/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '1c1d.86ff.4301/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '1c1d.86ff.4392/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '1c1d.86ff.44ce/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '1c1d.86ff.44e7/48': {'last_register': '00:41:54', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '1c1d.86ff.4410/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '1c1d.86ff.467f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '1c1d.86ff.479e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '1c6a.7aff.1fb4/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '1c6a.7aff.392e/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '1c6a.7aff.3b4a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, '1c6a.7aff.3d68/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '1c6a.7aff.419a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '1c6a.7aff.4cc2/48': {'last_register': '1d05h', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '1c6a.7aff.55e2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '1c6a.7aff.5860/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '1c6a.7aff.5e6a/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '1c6a.7aff.5f17/48': {'last_register': '1d04h', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '1c6a.7aff.62d5/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '1c6a.7aff.6462/48': {'last_register': '1d19h', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '1c6a.7aff.65e9/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '1c6a.7aff.7026/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '1c6a.7aff.709a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '1c6a.7aff.76fc/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '1c6a.7aff.83e0/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '1c6a.7aff.8539/48': {'last_register': '5d19h', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '1c6a.7aff.87a5/48': {'last_register': '1w0d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '1c6a.7aff.95a6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '1c6a.7aff.9bb5/48': {'last_register': '1w2d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '1c6a.7aff.9d1f/48': {'last_register': '1w2d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '1c6a.7aff.a284/48': {'last_register': '1w2d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '1c6a.7aff.a286/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '1c6a.7aff.a382/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '1c6a.7aff.aabc/48': {'last_register': '1d19h', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '1c6a.7aff.adb9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '1c6a.7aff.afa7/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '1c6a.7aff.b592/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '1c6a.7aff.b5b4/48': {'last_register': '00:04:01', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '1c6a.7aff.b696/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '1c6a.7aff.b703/48': {'last_register': '1d05h', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, '1c6a.7aff.b957/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '1c6a.7aff.b9a9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '1c6a.7aff.c76c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '1c6a.7aff.c853/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '1c6a.7aff.d203/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '1c6a.7aff.d499/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '1c6a.7aff.dc90/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '1c6a.7aff.df2f/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '1c6a.7aff.e49b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '1c6a.7aff.e741/48': {'last_register': '5d23h', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '1c6a.7aff.e8be/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '1c6a.7aff.f1f8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '1c6a.7aff.f115/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '1c6a.7aff.fb74/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '1c6a.7aff.fc99/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '1c6a.7aff.0021/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '1c6a.7aff.0318/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '1ce8.5dff.dd5f/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '1ce8.5dff.fe12/48': {'last_register': '2d00h', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '1ce8.5dff.b80d/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '203a.07ff.6701/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.23:20011', 'inst_id': 8191}, '203a.07ff.6ada/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '24b6.57ff.41c7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '2834.a2ff.7029/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '2c01.b5ff.1828/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '2c01.b5ff.1a87/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '2c01.b5ff.1e92/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '2c01.b5ff.c320/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '2c01.b5ff.c356/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '2c01.b5ff.c620/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '2c01.b5ff.ca1f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '2c01.b5ff.dd0c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '2c0b.e9ff.ca4c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8191}, '2c31.24ff.60f0/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '2c31.24ff.6000/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '2c31.24ff.8713/48': {'last_register': '1d19h', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '2c31.24ff.adb3/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '2c31.24ff.4e76/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '2c31.24ff.b476/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '2c31.24ff.ebc7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '2c3e.cfff.1d6d/48': {'last_register': '3d10h', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '2c86.d2ff.9612/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '2cab.ebff.946a/48': {'last_register': '00:03:52', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '34bd.c8ff.505f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '34bd.c8ff.0c1c/48': {'last_register': '23:57:44', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '34db.fdff.d2a8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '3c0e.23ff.9056/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '3c0e.23ff.d039/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '3c0e.23ff.d198/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '3c0e.23ff.d24b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '3c0e.23ff.d47e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '3c0e.23ff.d591/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '3c0e.23ff.6a94/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '3c0e.23ff.6ad8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '3c0e.23ff.6a42/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '3c0e.23ff.6b89/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '3c0e.23ff.6bc4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '3c0e.23ff.6b46/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '3c0e.23ff.6c79/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '3c0e.23ff.6c13/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '3c0e.23ff.6eaa/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '3c0e.23ff.6f88/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '3c0e.23ff.2ba4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '3c0e.23ff.2baf/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '3c0e.23ff.2bce/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '3c0e.23ff.2c16/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '3c0e.23ff.2c1e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '3c0e.23ff.2c67/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '3c0e.23ff.2ddd/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '3c0e.23ff.2e52/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '3c0e.23ff.2e59/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '3c0e.23ff.2f87/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '3c0e.23ff.2f89/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '3c0e.23ff.2f92/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '3c41.0eff.bea6/48': {'last_register': '08:34:00', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '3c41.0eff.bff0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.172:11801', 'inst_id': 8191}, '3c41.0eff.c48e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '3c41.0eff.d445/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.172:11801', 'inst_id': 8191}, '3c41.0eff.d547/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '3c41.0eff.dda5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '3c41.0eff.e459/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.184:44273', 'inst_id': 8191}, '3c41.0eff.e492/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '3c41.0eff.e5b8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '3c41.0eff.6699/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '3c41.0eff.67bc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.252:16799', 'inst_id': 8191}, '44e4.d9ff.de32/48': {'last_register': '00:34:58', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '4cbc.48ff.6f0a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '4ce1.76ff.cba6/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, '5006.abff.8996/48': {'last_register': '06:13:25', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '5006.abff.8aa1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '5006.abff.8e76/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '5006.abff.e937/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '5006.abff.ec31/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '5006.abff.51b1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '5006.abff.52d4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '5006.abff.5f07/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '5006.abff.66c3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '5006.abff.6a5c/48': {'last_register': '04:14:18', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '5006.abff.6ba0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '5006.abff.75f3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '5006.abff.779d/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '5006.abff.7a67/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '5006.abff.7d1c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '5006.abff.7e9c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.184:44273', 'inst_id': 8191}, '5006.abff.9ab7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '5006.abff.9d0f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '5006.abff.a0cf/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '5006.abff.a5a0/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '5006.abff.ab97/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '5006.abff.abdf/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '5006.abff.ac81/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '5006.abff.acd2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '5006.abff.aeb8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '5006.abff.aedc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '5006.abff.afba/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '5006.abff.aff9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '5006.abff.af15/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '5006.abff.b410/48': {'last_register': '04:10:51', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '5006.abff.3262/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '5006.abff.3274/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '5017.ffff.75c9/48': {'last_register': '1d22h', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '501c.bfff.c2a7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '50f7.22ff.8d1a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '50f7.22ff.ce8a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '50f7.22ff.d3e4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '5897.1eff.35dc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '5897.bdff.8bb1/48': {'last_register': '00:03:16', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '5897.bdff.9031/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '58ac.78ff.3fdc/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '58ac.78ff.3f35/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '58ac.78ff.478f/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '58ac.78ff.7772/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '58ac.78ff.7774/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '58ac.78ff.7775/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '58ac.78ff.777b/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '58ac.78ff.777d/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '58ac.78ff.7c1f/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '58ac.78ff.7dce/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '58ac.78ff.7dcf/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '5c50.15ff.71b8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '5c50.15ff.7c03/48': {'last_register': '00:46:31', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '5c83.8fff.87b6/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '5c83.8fff.a1d8/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '5c83.8fff.b57e/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '5c83.8fff.b5b4/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '5c83.8fff.b5b6/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '5c83.8fff.b5bb/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '5c83.8fff.b5c2/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '5c83.8fff.b5db/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '5c83.8fff.bff2/48': {'last_register': '1w2d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '5c83.8fff.bf1b/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '5c83.8fff.ccc9/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '5c83.8fff.cc04/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '5c83.8fff.cc3a/48': {'last_register': '2d23h', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '5c83.8fff.cc3b/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '5c83.8fff.cc4a/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '5c83.8fff.d509/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '5c83.8fff.d510/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '5c83.8fff.d511/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '5c83.8fff.d519/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '5c83.8fff.d51a/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '5c83.8fff.e6b3/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '5c83.8fff.f713/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '5c83.8fff.0717/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '5c83.8fff.3de7/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '5c83.8fff.b69b/48': {'last_register': '1w2d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '5c83.8fff.b6a2/48': {'last_register': '1w2d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '5c83.8fff.b6a3/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '5c83.8fff.b6ab/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '5c83.8fff.b6c6/48': {'last_register': '1w2d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '5c83.8fff.b7e0/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '5c83.8fff.b7e2/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '5c83.8fff.b789/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '5c83.8fff.d22a/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '649e.f3ff.88c1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '649e.f3ff.898f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '649e.f3ff.89ce/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '649e.f3ff.89eb/48': {'last_register': '1w2d', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '649e.f3ff.894f/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '649e.f3ff.8f23/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '649e.f3ff.90dc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '649e.f3ff.91ab/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, '649e.f3ff.9536/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '649e.f3ff.9791/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '649e.f3ff.c886/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '649e.f3ff.cca8/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '649e.f3ff.e91c/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '649e.f3ff.eb96/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '649e.f3ff.ec62/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '649e.f3ff.ecfd/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '649e.f3ff.f75c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '649e.f3ff.0c0e/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, '649e.f3ff.306c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '649e.f3ff.594b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '64f6.9dff.c957/48': {'last_register': '1d19h', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '64f6.9dff.275f/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '64f6.9dff.83bd/48': {'last_register': '04:03:45', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8191}, '64f6.9dff.8668/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '64f6.9dff.8b20/48': {'last_register': '04:02:53', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '682c.7bff.556b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '682c.7bff.55dd/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '682c.7bff.55ec/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '682c.7bff.55fe/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '682c.7bff.589e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '682c.7bff.7736/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.252:16799', 'inst_id': 8191}, '682c.7bff.9ee7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.252:16799', 'inst_id': 8191}, '682c.7bff.a3af/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '682c.7bff.a463/48': {'last_register': '00:36:44', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '682c.7bff.a841/48': {'last_register': '09:56:41', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '682c.7bff.aaa5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '682c.7bff.acc7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '682c.7bff.aeb3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '682c.7bff.b09c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '682c.7bff.b012/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '682c.7bff.b18c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '682c.7bff.b1d7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '682c.7bff.b1e9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '682c.7bff.b261/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '682c.7bff.b285/48': {'last_register': '01:56:00', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '682c.7bff.b28b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, '682c.7bff.b3ab/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '682c.7bff.b3b1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '682c.7bff.b336/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '682c.7bff.b35a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '682c.7bff.b4ce/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '682c.7bff.b411/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '682c.7bff.b438/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '682c.7bff.b5dc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, '682c.7bff.b51c/48': {'last_register': '03:41:14', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '6886.a7ff.e080/48': {'last_register': '1d01h', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, '6886.a7ff.e14e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.252:16799', 'inst_id': 8191}, '6886.a7ff.e287/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.172:11801', 'inst_id': 8191}, '6886.a7ff.f68e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '68bd.abff.4b18/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.179:15443', 'inst_id': 8191}, '68bd.abff.bfba/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '68bd.abff.c1c1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8191}, '6c6c.d3ff.4497/48': {'last_register': '1d03h', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '6c71.0dff.3759/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '6c71.0dff.47e9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.172:11801', 'inst_id': 8191}, '6c71.0dff.7f63/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '6c71.0dff.86b0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '7001.b5ff.962d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '7001.b5ff.9776/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '7001.b5ff.97b0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '7001.b5ff.9739/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '7001.b5ff.973d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '7001.b5ff.9755/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '7001.b5ff.988c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '7001.b5ff.988e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '7001.b5ff.9894/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '7001.b5ff.9896/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '7001.b5ff.65109/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '7001.b5ff.99b4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '7001.b5ff.99cc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '7001.b5ff.990b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '7001.b5ff.a245/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '7001.b5ff.a6e0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '7001.b5ff.e9b8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '7001.b5ff.f4ad/48': {'last_register': '06:18:28', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '700b.4fff.0274/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '7035.09ff.68f2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '7035.09ff.6caf/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '7035.09ff.9745/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '7035.09ff.106c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '706e.6dff.b286/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '706e.6dff.b386/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '70e4.22ff.492f/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '70e4.22ff.4967/48': {'last_register': '1w2d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '70e4.22ff.1b6e/48': {'last_register': '2d00h', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '70f0.96ff.3eca/48': {'last_register': '1d22h', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '7426.acff.f513/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '7426.acff.f5c2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '7426.acff.f899/48': {'last_register': '4d16h', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '7488.bbff.1a0c/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '7488.bbff.c15d/48': {'last_register': '1w2d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, '7488.bbff.d507/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '74a0.2fff.57cb/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '74a0.2fff.5d12/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, '74a0.2fff.6c37/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '74a0.2fff.6e4a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, '74a0.2fff.73f1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, '74a0.2fff.75be/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, '74a0.2fff.7ae9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, '74a0.2fff.ada2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '74a0.2fff.bc84/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '74a0.2fff.bedc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, '7802.b1ff.be7e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, '7872.5dff.7bd9/48': {'last_register': '1d05h', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '7872.5dff.4c63/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '7872.5dff.0055/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '78da.6eff.42e0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, '7c95.f3ff.c98c/48': {'last_register': '00:23:00', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '80e8.6fff.be14/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, '881d.fcff.57f7/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, '881d.fcff.6f13/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, '881d.fcff.7566/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '8843.e1ff.b66b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '8843.e1ff.f0cf/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '8843.e1ff.37d0/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '8843.e1ff.82f6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '8875.56ff.7346/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '8875.56ff.74ee/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '8875.56ff.cbc5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.252:16799', 'inst_id': 8191}, '8cb6.4fff.45a2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, '94d4.69ff.e681/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, '94d4.69ff.e606/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, '94d4.69ff.e711/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, '94d4.69ff.e774/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, '9c57.adff.4368/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8191}, '9c57.adff.43c8/48': {'last_register': '10:03:29', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '9c57.adff.43ec/48': {'last_register': '01:43:20', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '9c57.adff.447c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8191}, '9c57.adff.44a2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8191}, '9c57.adff.44c6/48': {'last_register': '00:02:16', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '9c57.adff.44ee/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8191}, '9c57.adff.4401/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '9c57.adff.4518/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '9c57.adff.453f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8191}, '9c57.adff.4558/48': {'last_register': '1d02h', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, '9c57.adff.456f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8191}, '9c57.adff.4577/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8191}, '9c57.adff.4657/48': {'last_register': '00:09:33', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '9c57.adff.465e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '9c57.adff.46ec/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '9c57.adff.4743/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '9c57.adff.47ad/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8191}, '9c57.adff.47ae/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, '9c57.adff.47f1/48': {'last_register': '3d16h', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, '9c57.adff.4917/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '9c57.adff.494c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '9c57.adff.4a15/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, '9c57.adff.4abe/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, '9c57.adff.4ac5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8191}, 'a456.30ff.041f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, 'a46c.2aff.f113/48': {'last_register': '2d03h', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, 'a89d.21ff.83ba/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, 'a89d.21ff.9c56/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, 'a89d.21ff.9c64/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, 'a89d.21ff.9c6c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, 'ac7e.8aff.ccb2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, 'ac7e.8aff.db40/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, 'ac7e.8aff.ed9e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, 'ac7e.8aff.eee3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, 'ac7e.8aff.f7fd/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, 'ac7e.8aff.f73c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, 'ac7e.8aff.1518/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, 'ac7e.8aff.1b8e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, 'ac7e.8aff.3f10/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, 'ac7e.8aff.52b6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, 'ac7e.8aff.585c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, 'ac7e.8aff.5868/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, 'ac7e.8aff.5961/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, 'ac7e.8aff.5a03/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, 'ac7e.8aff.5cc4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, 'ac7e.8aff.6372/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, 'ac7e.8aff.663c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, 'ac7e.8aff.6837/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, 'ac7e.8aff.69ab/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, 'ac7e.8aff.6bc1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, 'ac7e.8aff.6be5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, 'ac7e.8aff.6b04/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, 'ac7e.8aff.75a2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, 'ac7e.8aff.7c9b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, 'ac7e.8aff.4217/48': {'last_register': '2w0d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, 'ac7e.8aff.428d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, 'ac7e.8aff.8e74/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, 'ac7e.8aff.9450/48': {'last_register': '1d08h', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, 'ac7e.8aff.94b0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, 'ac7e.8aff.9750/48': {'last_register': '1w4d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, 'ac7e.8aff.b5bf/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.252:16799', 'inst_id': 8191}, 'aca0.16ff.920f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, 'aca0.16ff.4672/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, 'aca0.16ff.dd49/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, 'aca0.16ff.e748/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, 'b000.b4ff.de10/48': {'last_register': '2d23h', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, 'b000.b4ff.de79/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, 'b000.b4ff.e29f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, 'b026.80ff.3bbb/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, 'b026.80ff.5a89/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, 'b026.80ff.ec67/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, 'b026.80ff.ec72/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, 'b026.80ff.ec7b/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, 'b8be.bfff.9415/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, 'bc16.f5ff.523c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, 'bcf1.f2ff.25b3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, 'c062.6bff.7d07/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, 'c40a.cbff.e5ea/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8191}, 'c40a.cbff.4920/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, 'c414.3cff.3a0e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, 'c414.3cff.3d6d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8191}, 'c414.3cff.6101/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, 'c414.3cff.6129/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, 'c414.3cff.63f8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, 'c414.3cff.d74c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.166:31256', 'inst_id': 8191}, 'c4b3.6aff.77c1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, 'c4b3.6aff.d501/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, 'c4b3.6aff.d525/48': {'last_register': '1w0d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8191}, 'c4b3.6aff.95d7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, 'c4b3.6aff.a1e0/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, 'cc5a.53ff.26d4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, 'cc5a.53ff.a5c5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, 'd057.4cff.1cb2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, 'd057.4cff.1d09/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.179:15443', 'inst_id': 8191}, 'd057.4cff.12d9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, 'd0c2.82ff.7da1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, 'd0ec.35ff.02a4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, 'd0ec.35ff.9754/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, 'd0ec.35ff.5393/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, 'd4ad.71ff.85df/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, 'd4ad.71ff.867b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, 'd4ad.71ff.8d7d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, 'd4ad.71ff.9785/48': {'last_register': '2d03h', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, 'd4ad.71ff.e682/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, 'd4ad.71ff.f88e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, 'd4ad.bdff.e91b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, 'd824.bdff.c2e1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, 'd824.bdff.28d1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, 'dc8c.37ff.1148/48': {'last_register': '1d19h', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, 'dceb.94ff.60f7/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, 'dceb.94ff.6002/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, 'dceb.94ff.8fb4/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, 'dceb.94ff.a43e/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, 'dceb.94ff.bba2/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, 'dceb.94ff.bbaf/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, 'dceb.94ff.6f7d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, 'dceb.94ff.7379/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, 'dceb.94ff.7475/48': {'last_register': '00:04:52', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, 'dceb.94ff.8275/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, 'dceb.94ff.8303/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, 'dcf7.19ff.fd09/48': {'last_register': '05:00:53', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, 'dcf7.19ff.4633/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, 'dcf7.19ff.46ab/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, 'dcf7.19ff.4756/48': {'last_register': '03:00:56', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, 'dcf7.19ff.5509/48': {'last_register': '05:17:50', 'up': 'yes#', 'who_last_registered': '10.8.128.167:48866', 'inst_id': 8191}, 'dcf7.19ff.550c/48': {'last_register': '03:19:12', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, 'dcf7.19ff.5db6/48': {'last_register': '1d00h', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, 'dcf7.19ff.6188/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, 'dcf7.19ff.631a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.135:31929', 'inst_id': 8191}, 'e089.9dff.4cad/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, 'e0d1.73ff.47c6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, 'e4aa.5dff.9616/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, 'e4aa.5dff.961a/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, 'e4aa.5dff.962a/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.185:21744', 'inst_id': 8191}, 'e4aa.5dff.9632/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8191}, 'e4aa.5dff.964e/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, 'e4aa.5dff.9782/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, 'e4aa.5dff.978a/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, 'e4aa.5dff.9796/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.147:40916', 'inst_id': 8191}, 'e4aa.5dff.98a5/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.128.140:30271', 'inst_id': 8191}, 'e4aa.5dff.ef93/48': {'last_register': '00:01:27', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, 'e4aa.5dff.f047/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8191}, 'e4aa.5dff.f3ca/48': {'last_register': '00:02:24', 'up': 'yes#', 'who_last_registered': '10.8.128.178:28565', 'inst_id': 8191}, 'e4aa.5dff.05ec/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, 'e4aa.5dff.0856/48': {'last_register': '1d19h', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8191}, 'e4c7.22ff.ea8a/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, 'e4c7.22ff.d1ca/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, 'e4c7.22ff.de2f/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, 'e4c7.22ff.e069/48': {'last_register': '1d19h', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, 'e4c7.22ff.3e7a/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, 'e4c7.22ff.8f6a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8191}, 'e4c7.22ff.dd93/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, 'e4c7.22ff.045c/48': {'last_register': '1d03h', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, 'e4c7.22ff.05e7/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, 'e4c7.22ff.13ef/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, 'e4c7.22ff.143c/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, 'e4c7.22ff.166f/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, 'e4c7.22ff.8239/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, 'e4c7.22ff.954c/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, 'e4c7.22ff.9565/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, 'e4c7.22ff.9cd1/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, 'e4c7.22ff.9cd2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, 'e4c7.22ff.9c16/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, 'e4c7.22ff.f56f/48': {'last_register': '1d03h', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, 'e4c7.22ff.033f/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, 'e4c7.22ff.267a/48': {'last_register': '1d05h', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, 'e4c7.22ff.3a51/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, 'e4c7.22ff.4d45/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, 'e4c7.22ff.3cf9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, 'e4c7.22ff.42d7/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, 'e4c7.22ff.47d9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8191}, 'e4c7.22ff.290c/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, 'e4c7.22ff.70c2/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, 'e4c7.22ff.7564/48': {'last_register': '1d19h', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, 'e840.40ff.001f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8191}, 'e8ba.70ff.b489/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, 'e8ba.70ff.0643/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.97:26541', 'inst_id': 8191}, 'ecc8.82ff.f783/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.172:11801', 'inst_id': 8191}, 'f029.29ff.a0cc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, 'f029.29ff.a19a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.22:50531', 'inst_id': 8191}, 'f029.29ff.a753/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.106:18298', 'inst_id': 8191}, 'f029.29ff.a953/48': {'last_register': '00:02:19', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8191}, 'f029.29ff.2548/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.179:15443', 'inst_id': 8191}, 'f029.29ff.33cf/48': {'last_register': '2d19h', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, 'f07f.06ff.325c/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, 'f07f.06ff.3808/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.129:32741', 'inst_id': 8191}, 'f07f.06ff.4062/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, 'f07f.06ff.44f9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.33:17709', 'inst_id': 8191}, 'f07f.06ff.4614/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.118:38318', 'inst_id': 8191}, 'f07f.06ff.47fa/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.1:25983', 'inst_id': 8191}, 'f07f.06ff.4b72/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, 'f07f.06ff.5adc/48': {'last_register': '19:20:03', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, 'f07f.06ff.660a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8191}, 'f07f.06ff.a05e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, 'f07f.06ff.c8d6/48': {'last_register': '1d12h', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, 'f07f.06ff.c8e5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8191}, 'f07f.06ff.c804/48': {'last_register': '1w3d', 'up': 'yes#', 'who_last_registered': '10.8.129.138:21275', 'inst_id': 8191}, 'f41f.c2ff.477c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.225:16171', 'inst_id': 8191}, 'f4ea.67ff.5bd7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, 'f4ea.67ff.5b46/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, 'f87b.20ff.c977/48': {'last_register': '1d19h', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8191}, 'f8a5.c5ff.98c2/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.23:20011', 'inst_id': 8191}, 'f8a5.c5ff.d71f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.30:20273', 'inst_id': 8191}, 'f8a5.c5ff.e172/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.152:20085', 'inst_id': 8191}, 'f8a5.c5ff.1dcb/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.44:27830', 'inst_id': 8191}, 'f8a5.c5ff.3a2a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8191}}}}, 8192: {'lisp': 0, 'site_name': {'site_uci': {'any-mac': {'last_register': 'never', 'up': 'no', 'who_last_registered': '--', 'inst_id': 8192}, '0002.d1ff.bb40/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8192}, '0002.d1ff.2b65/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8192}, '000f.e5ff.80b5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8192}, '000f.e5ff.80b8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8192}, '000f.e5ff.80bf/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8192}, '000f.e5ff.bf2c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8192}, '000f.e5ff.bf2d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8192}, '000f.e5ff.bf46/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, '000f.e5ff.bf4b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, '000f.e5ff.bf4c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8192}, '000f.e5ff.e915/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, '000f.e5ff.e91c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8192}, '0017.5aff.b156/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8192}, '0017.5aff.b159/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8192}, '0017.5aff.b15b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8192}, '0017.5aff.b161/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8192}, '0017.5aff.b169/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8192}, '0017.5aff.b183/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8192}, '0017.5aff.b184/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8192}, '0017.5aff.b187/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.107:24262', 'inst_id': 8192}, '0017.5aff.b18a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8192}, '0017.5aff.c321/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8192}, '0017.5aff.c322/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8192}, '0017.5aff.c324/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.112:11299', 'inst_id': 8192}, '00a2.eeff.29cc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8192}, '00a2.eeff.2ae3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8192}, '00a2.eeff.2a3f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8192}, '00a2.eeff.2a40/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8192}, '00a2.eeff.2a41/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8192}, '00a2.eeff.2a42/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8192}, '00a2.eeff.2a43/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8192}, '00a2.eeff.2f8b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8192}, '00e0.c9ff.7bea/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8192}, '00e0.c9ff.9679/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8192}, '00e0.c9ff.a7b1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, '0c75.bdff.b120/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8192}, '0c75.bdff.b13f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, '0c75.bdff.c007/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8192}, '0c75.bdff.c121/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8192}, '0c75.bdff.c150/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8192}, '0c75.bdff.c154/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8192}, '0c75.bdff.c164/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8192}, '0c75.bdff.4472/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8192}, '0c75.bdff.447e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, '0c75.bdff.447f/48': {'last_register': '1w0d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8192}, '0c75.bdff.448a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, '0c75.bdff.448f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8192}, '0c75.bdff.4491/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, '0c75.bdff.46f5/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8192}, '0c75.bdff.4601/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8192}, '0c75.bdff.4602/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8192}, '0c75.bdff.4603/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, '0c75.bdff.460b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8192}, '0c75.bdff.460c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8192}, '0c75.bdff.4610/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8192}, '0c75.bdff.4712/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8192}, '0c75.bdff.4713/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8192}, '0c75.bdff.4717/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, '0c75.bdff.4719/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8192}, '0c75.bdff.471a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8192}, '0c75.bdff.471d/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8192}, '0c75.bdff.471e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8192}, '0c75.bdff.4723/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8192}, '0c75.bdff.4731/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8192}, '0c75.bdff.4732/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8192}, '0c75.bdff.4733/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, '0c75.bdff.473a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8192}, '0c75.bdff.4741/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8192}, '0c75.bdff.4761/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.11:52315', 'inst_id': 8192}, '0c75.bdff.48d8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8192}, '0c75.bdff.4b68/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8192}, '0c75.bdff.4bac/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8192}, '0c75.bdff.4da4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8192}, '0c75.bdff.4dae/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8192}, '0c75.bdff.4dc8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8192}, '0c75.bdff.4dc9/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8192}, '0c75.bdff.4dca/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8192}, '0c75.bdff.00c7/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8192}, '0c75.bdff.01cd/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8192}, '0c75.bdff.da7a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, '0c75.bdff.dbfa/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8192}, '0c75.bdff.3631/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, '0c75.bdff.3b13/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8192}, '0c75.bdff.3b16/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8192}, '0c75.bdff.3b1a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8192}, '0c75.bdff.3b1b/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8192}, '0c75.bdff.3cf1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.125:21918', 'inst_id': 8192}, '0c75.bdff.3cf4/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.17:12848', 'inst_id': 8192}, '0c75.bdff.3d73/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, '0c75.bdff.41bb/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8192}, '0c75.bdff.79ed/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8192}, '0c75.bdff.83db/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8192}, '0c75.bdff.8311/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.254:32391', 'inst_id': 8192}, '0c75.bdff.8312/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8192}, '0c75.bdff.8315/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, '0c75.bdff.8317/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, '0c75.bdff.8318/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, '0c75.bdff.8443/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8192}, '0c75.bdff.8447/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8192}, '0c75.bdff.ac41/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, '0c75.bdff.ac5e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8192}, '0c75.bdff.ac84/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.65:31210', 'inst_id': 8192}, '0c75.bdff.ac86/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8192}, '0c75.bdff.ac88/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8192}, '0c75.bdff.ac90/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, '0c75.bdff.ac94/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, '0c75.bdff.b765/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8192}, '0c75.bdff.b76c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8192}, '0c75.bdff.be13/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, '0c75.bdff.be16/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, '0c75.bdff.be1a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, '0c75.bdff.bffa/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8192}, '0c75.bdff.bffb/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.10:40360', 'inst_id': 8192}, '0c75.bdff.bffc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8192}, '0c75.bdff.bffd/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.153:11837', 'inst_id': 8192}, '7426.acff.f7cc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8192}, '7426.acff.0282/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.141:39931', 'inst_id': 8192}, 'a89d.21ff.23dc/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8192}, 'a89d.21ff.2818/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.16:36870', 'inst_id': 8192}, 'a89d.21ff.35f6/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8192}, 'a89d.21ff.36fd/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8192}, 'a89d.21ff.3e8a/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8192}, 'a89d.21ff.3e8c/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8192}, 'a89d.21ff.3e8f/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.94:39184', 'inst_id': 8192}, 'a89d.21ff.3e90/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.146:48858', 'inst_id': 8192}, 'a89d.21ff.40b8/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.128.173:32229', 'inst_id': 8192}, 'a89d.21ff.40f1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8192}, 'a89d.21ff.40f3/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.119:51728', 'inst_id': 8192}, 'a89d.21ff.515e/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.29:37127', 'inst_id': 8192}, 'a89d.21ff.54de/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.124:39959', 'inst_id': 8192}, 'a89d.21ff.54e1/48': {'last_register': '2w1d', 'up': 'yes#', 'who_last_registered': '10.8.129.113:24192', 'inst_id': 8192}}}}}} |
'''
Given two strings A and B of lowercase letters, return true if and only if we can swap two letters in A so that the result equals B.
Example 1:
Input: A = "ab", B = "ba"
Output: true
Example 2:
Input: A = "ab", B = "ab"
Output: false
Example 3:
Input: A = "aa", B = "aa"
Output: true
Example 4:
Input: A = "aaaaaaabc", B = "aaaaaaacb"
Output: true
Example 5:
Input: A = "", B = "aa"
Output: false
Note:
0 <= A.length <= 20000
0 <= B.length <= 20000
A and B consist only of lowercase letters.
Lets start with eliminating false corner cases like
1. Length of A not equals to B
2. if 1. is true then length of both A and B is equal; now lets check when length of both of them is 1 and if A == B or not
3. if 1 and 2 are true; lets check if all the elements in A are present in B
4. Create an empty set, a variable to count the conflicts and another to flag if there are repetitions
5. compare each item in both the strings consecutively; if its equal save it in the set if its already not there. Incase, its there increase the flag's value to hint that there were duplicates -> that too on the same places. Remember cases like -> A = aa and B = aa are true
6. in the end if we have count's value 2 or if count is 0 but there are repetitive duplicates; our answer is true otherwise false
'''
class Solution(object):
def buddyStrings(self, A, B):
"""
:type A: str
:type B: str
:rtype: bool
"""
count, rep = 0, 0
if len(A) != len(B) or (len(A) == 1 and A != B) or sorted(A) != sorted(B):
return False
EqualElements = set()
for (X,Y) in zip(A,B):
if X == Y:
if X in EqualElements:
rep += 1
else:
EqualElements.add(X)
else:
count += 1
return True if count == 2 or (count == 0 and rep) else False
| """
Given two strings A and B of lowercase letters, return true if and only if we can swap two letters in A so that the result equals B.
Example 1:
Input: A = "ab", B = "ba"
Output: true
Example 2:
Input: A = "ab", B = "ab"
Output: false
Example 3:
Input: A = "aa", B = "aa"
Output: true
Example 4:
Input: A = "aaaaaaabc", B = "aaaaaaacb"
Output: true
Example 5:
Input: A = "", B = "aa"
Output: false
Note:
0 <= A.length <= 20000
0 <= B.length <= 20000
A and B consist only of lowercase letters.
Lets start with eliminating false corner cases like
1. Length of A not equals to B
2. if 1. is true then length of both A and B is equal; now lets check when length of both of them is 1 and if A == B or not
3. if 1 and 2 are true; lets check if all the elements in A are present in B
4. Create an empty set, a variable to count the conflicts and another to flag if there are repetitions
5. compare each item in both the strings consecutively; if its equal save it in the set if its already not there. Incase, its there increase the flag's value to hint that there were duplicates -> that too on the same places. Remember cases like -> A = aa and B = aa are true
6. in the end if we have count's value 2 or if count is 0 but there are repetitive duplicates; our answer is true otherwise false
"""
class Solution(object):
def buddy_strings(self, A, B):
"""
:type A: str
:type B: str
:rtype: bool
"""
(count, rep) = (0, 0)
if len(A) != len(B) or (len(A) == 1 and A != B) or sorted(A) != sorted(B):
return False
equal_elements = set()
for (x, y) in zip(A, B):
if X == Y:
if X in EqualElements:
rep += 1
else:
EqualElements.add(X)
else:
count += 1
return True if count == 2 or (count == 0 and rep) else False |
class Solution:
def twoSum(self, nums: list[int], target: int) -> list[int]:
"""Find indices of the terms.
Given an array of integers nums and an integer target, return indices
of the two numbers such that they add up to target.
"""
my_dict = {}
result = []
for i in range(len(nums)):
complement = target - nums[i]
if complement in my_dict.keys():
result = [my_dict[complement], i]
break
my_dict[nums[i]] = i
return result
| class Solution:
def two_sum(self, nums: list[int], target: int) -> list[int]:
"""Find indices of the terms.
Given an array of integers nums and an integer target, return indices
of the two numbers such that they add up to target.
"""
my_dict = {}
result = []
for i in range(len(nums)):
complement = target - nums[i]
if complement in my_dict.keys():
result = [my_dict[complement], i]
break
my_dict[nums[i]] = i
return result |
class SOFATrace:
data = []
name = []
title = []
color = []
x_field = []
y_field = []
highlight = None
| class Sofatrace:
data = []
name = []
title = []
color = []
x_field = []
y_field = []
highlight = None |
num = int(input())
def input_lines(number):
lines = set()
for _ in range(number):
lines.add(input())
return lines
def print_data(names):
for name in names:
print(name)
names = input_lines(num)
print_data(names) | num = int(input())
def input_lines(number):
lines = set()
for _ in range(number):
lines.add(input())
return lines
def print_data(names):
for name in names:
print(name)
names = input_lines(num)
print_data(names) |
"""
Column aliasing.
"""
class ColumnAlias:
"""
Descriptor to reference a column by a well known alias.
"""
def __init__(self, name):
self.name = name
def __get__(self, cls, owner):
return getattr(cls or owner, self.name)
def __set__(self, cls, value):
return setattr(cls, self.name, value)
| """
Column aliasing.
"""
class Columnalias:
"""
Descriptor to reference a column by a well known alias.
"""
def __init__(self, name):
self.name = name
def __get__(self, cls, owner):
return getattr(cls or owner, self.name)
def __set__(self, cls, value):
return setattr(cls, self.name, value) |
# Definition for singly-linked list.
class ListNode(object):
def __init__(self, x):
self.val = x
self.next = None
class Solution(object):
def partition(self, head, x):
"""
:type head: ListNode
:type x: int
:rtype: ListNode
"""
less = ListNode(-1)
more = ListNode(-2)
l = less
m = more
p = head
while p:
if p.val < x:
l.next = p
l = p
else:
m.next = p
m = p
p = p.next
m.next = None
l.next = more.next
return less.next
if __name__ == '__main__':
S = Solution()
a = ListNode(1)
print(S.partition(head=a, x=2).val)
| class Listnode(object):
def __init__(self, x):
self.val = x
self.next = None
class Solution(object):
def partition(self, head, x):
"""
:type head: ListNode
:type x: int
:rtype: ListNode
"""
less = list_node(-1)
more = list_node(-2)
l = less
m = more
p = head
while p:
if p.val < x:
l.next = p
l = p
else:
m.next = p
m = p
p = p.next
m.next = None
l.next = more.next
return less.next
if __name__ == '__main__':
s = solution()
a = list_node(1)
print(S.partition(head=a, x=2).val) |
class BaseColumnsProvider(object):
ROW_ID = 'row_id'
def get_columns_list_with_types(self):
dtypes_list = list()
dtypes_list.append((BaseColumnsProvider.ROW_ID, 'int32'))
return dtypes_list
| class Basecolumnsprovider(object):
row_id = 'row_id'
def get_columns_list_with_types(self):
dtypes_list = list()
dtypes_list.append((BaseColumnsProvider.ROW_ID, 'int32'))
return dtypes_list |
# Copyright (c) Open-MMLab. All rights reserved.
__version__ = '0.18.0'
short_version = __version__
| __version__ = '0.18.0'
short_version = __version__ |
def maxProfit(prices):
profit = 0
for i in range(len(prices)-1):
if prices[i] < prices[i+1]:
profit += (prices[i+1] - prices[i])
return profit
| def max_profit(prices):
profit = 0
for i in range(len(prices) - 1):
if prices[i] < prices[i + 1]:
profit += prices[i + 1] - prices[i]
return profit |
# Using the print function
# Simple usage
print("London")
print(100)
print(20.20)
# print with Variables
first_name = "John"
last_name = "Papa"
print(first_name, last_name, 1, 2, "Hello")
# Using +
print(first_name + last_name)
print(first_name + ", " +last_name)
# Inserting new line character & tab
print("Apples")
print("Banana")
print("Mangoes")
print("-----")
print("Apples \nBanana \nMangoes")
print("-----")
print("Apples \tBanana \tMangoes")
| print('London')
print(100)
print(20.2)
first_name = 'John'
last_name = 'Papa'
print(first_name, last_name, 1, 2, 'Hello')
print(first_name + last_name)
print(first_name + ', ' + last_name)
print('Apples')
print('Banana')
print('Mangoes')
print('-----')
print('Apples \nBanana \nMangoes')
print('-----')
print('Apples \tBanana \tMangoes') |
class LRUCache:
"""
Our LRUCache class keeps track of the max number of nodes it
can hold, the current number of nodes it is holding, a doubly-
linked list that holds the key-value entries in the correct
order, as well as a storage dict that provides fast access
to every node stored in the cache.
"""
def __init__(self, limit=10):
pass
"""
Retrieves the value associated with the given key. Also
needs to move the key-value pair to the end of the order
such that the pair is considered most-recently used.
Returns the value associated with the key or None if the
key-value pair doesn't exist in the cache.
"""
def get(self, key):
pass
"""
Adds the given key-value pair to the cache. The newly-
added pair should be considered the most-recently used
entry in the cache. If the cache is already at max capacity
before this entry is added, then the oldest entry in the
cache needs to be removed to make room. Additionally, in the
case that the key already exists in the cache, we simply
want to overwrite the old value associated with the key with
the newly-specified value.
"""
def set(self, key, value):
pass
| class Lrucache:
"""
Our LRUCache class keeps track of the max number of nodes it
can hold, the current number of nodes it is holding, a doubly-
linked list that holds the key-value entries in the correct
order, as well as a storage dict that provides fast access
to every node stored in the cache.
"""
def __init__(self, limit=10):
pass
"\n Retrieves the value associated with the given key. Also\n needs to move the key-value pair to the end of the order\n such that the pair is considered most-recently used.\n Returns the value associated with the key or None if the\n key-value pair doesn't exist in the cache. \n "
def get(self, key):
pass
'\n Adds the given key-value pair to the cache. The newly-\n added pair should be considered the most-recently used\n entry in the cache. If the cache is already at max capacity\n before this entry is added, then the oldest entry in the\n cache needs to be removed to make room. Additionally, in the\n case that the key already exists in the cache, we simply \n want to overwrite the old value associated with the key with\n the newly-specified value. \n '
def set(self, key, value):
pass |
class Solution:
def reverse(self, x):
"""
:type x: int
:rtype: int
"""
sign = -1 if x < 0 else 1
temp_str = str(abs(x))
if len(temp_str) <= 1:
return sign*int(temp_str)
temp_str = temp_str[::-1]
while(temp_str[0] == '0'):
temp_str = temp_str[1:]
res = int(temp_str)
if (sign*res >= 2147483647 or sign*res <= -2147483648):
return 0
return sign*res
| class Solution:
def reverse(self, x):
"""
:type x: int
:rtype: int
"""
sign = -1 if x < 0 else 1
temp_str = str(abs(x))
if len(temp_str) <= 1:
return sign * int(temp_str)
temp_str = temp_str[::-1]
while temp_str[0] == '0':
temp_str = temp_str[1:]
res = int(temp_str)
if sign * res >= 2147483647 or sign * res <= -2147483648:
return 0
return sign * res |
Text1 = "#"
Text2 = '''
\nadd_core = MSW
owner = MSW
controller = MSW
culture = minesweeper_culture
religion = animism
hre = no
base_tax = 0
base_production = 0
base_manpower = 0
trade_goods = copper\n'''
Text3 = "capital = \""
Text4 = '''"
is_city = yes'''
for i in range (5000, 5100):
stri = str(i)
out = Text1 + stri + Text2 + Text3 + stri + Text4
fname = stri + " - " + stri + ".txt"
with open(fname, "w") as f:
f.write(out) | text1 = '#'
text2 = '\n\nadd_core = MSW\nowner = MSW\ncontroller = MSW\nculture = minesweeper_culture\nreligion = animism\nhre = no\nbase_tax = 0\nbase_production = 0\nbase_manpower = 0\ntrade_goods = copper\n'
text3 = 'capital = "'
text4 = '"\nis_city = yes'
for i in range(5000, 5100):
stri = str(i)
out = Text1 + stri + Text2 + Text3 + stri + Text4
fname = stri + ' - ' + stri + '.txt'
with open(fname, 'w') as f:
f.write(out) |
# file.py
def create_name():
return "new_file.txt"
def create_time():
return "today"
| def create_name():
return 'new_file.txt'
def create_time():
return 'today' |
#%% File
def write(text):
with open("./myFile.txt", "w") as file:
file.write(text)
def append(text):
with open("./myFile.txt", "a") as file:
file.write(text)
def readDirty():
file = open("./myFile.txt", "r")
content = file.readlines()
file.close()
return content
def read():
with open("./myFile.txt", "r") as file:
for l in file:
yield l #-> generator
def printFile():
with open("./myFile.txt", "r") as file:
for line in file:
print(line.strip())
write("ABC\n")
append("CDE\n")
append("EFG\n")
names = [".NEt", "VSCode", ".NET Core"]
for name in names:
append(name)
append("\n")
print(read())
printFile()
| def write(text):
with open('./myFile.txt', 'w') as file:
file.write(text)
def append(text):
with open('./myFile.txt', 'a') as file:
file.write(text)
def read_dirty():
file = open('./myFile.txt', 'r')
content = file.readlines()
file.close()
return content
def read():
with open('./myFile.txt', 'r') as file:
for l in file:
yield l
def print_file():
with open('./myFile.txt', 'r') as file:
for line in file:
print(line.strip())
write('ABC\n')
append('CDE\n')
append('EFG\n')
names = ['.NEt', 'VSCode', '.NET Core']
for name in names:
append(name)
append('\n')
print(read())
print_file() |
def main():
while True:
# input
n = int(input())
if n:
xyrs = [[*map(int, input().split())] for _ in range(n)]
else:
return
# compute
# output
if __name__ == '__main__':
main()
| def main():
while True:
n = int(input())
if n:
xyrs = [[*map(int, input().split())] for _ in range(n)]
else:
return
if __name__ == '__main__':
main() |
'Check if string is of format a.(b+c)*'
print("Enter z to terminate.\n")
string = ""
while string != "z":
string = input("Enter the string to be checked: ")
count = 0
if string[0] == "a":
for i in range(1, len(string)):
if string[i] == "b" or string[i] == "c":
count += 1
else:
print("Not of format a.(b+c)*\n")
break
if count == len(string) - 1:
print("It is of format a.(b+c)*\n")
else:
print("Not of format a.(b+c)*\n")
| """Check if string is of format a.(b+c)*"""
print('Enter z to terminate.\n')
string = ''
while string != 'z':
string = input('Enter the string to be checked: ')
count = 0
if string[0] == 'a':
for i in range(1, len(string)):
if string[i] == 'b' or string[i] == 'c':
count += 1
else:
print('Not of format a.(b+c)*\n')
break
if count == len(string) - 1:
print('It is of format a.(b+c)*\n')
else:
print('Not of format a.(b+c)*\n') |
# -*- coding: utf-8 -*-
# Copyright (c) 2017-18 Richard Hull and contributors
# See LICENSE.rst for details.
class mutable_string(object):
def __init__(self, value):
assert value.__class__ is str
self.target = value
def __getattr__(self, attr):
return self.target.__getattribute__(attr)
def __getitem__(self, key):
return self.target[key]
def __setitem__(self, key, value):
assert value.__class__ is str
tmp = list(self.target)
tmp[key] = value
self.target = "".join(tmp)
def __delitem__(self, key):
tmp = list(self.target)
del tmp[key]
self.target = "".join(tmp)
def __len__(self):
return len(self.target)
def __iter__(self):
return iter(self.target)
def __str__(self):
return str(self.target)
def __repr__(self):
return repr(self.target)
def __eq__(self, other):
return str(self.target) == str(other)
def __hash__(self):
return hash(self.target)
class observable(object):
"""
Wraps any container object such that on inserting, updating or deleting,
an observer is notified with a payload of the target. All other special
name methods are passed through parameters unhindered.
"""
def __init__(self, target, observer):
self.target = target
self.observer = observer
self.observer(self.target)
def __getattr__(self, attr):
return self.target.__getattribute__(attr)
def __getitem__(self, key):
return self.target.__getitem__(key)
def __setitem__(self, key, value):
self.target.__setitem__(key, value)
self.observer(self.target)
def __delitem__(self, key):
self.target.__delitem__(key)
self.observer(self.target)
def __len__(self):
return self.target.__len__()
def __iter__(self):
return self.target.__iter__()
def __str__(self):
return self.target.__str__()
def __repr__(self):
return self.target.__repr__()
| class Mutable_String(object):
def __init__(self, value):
assert value.__class__ is str
self.target = value
def __getattr__(self, attr):
return self.target.__getattribute__(attr)
def __getitem__(self, key):
return self.target[key]
def __setitem__(self, key, value):
assert value.__class__ is str
tmp = list(self.target)
tmp[key] = value
self.target = ''.join(tmp)
def __delitem__(self, key):
tmp = list(self.target)
del tmp[key]
self.target = ''.join(tmp)
def __len__(self):
return len(self.target)
def __iter__(self):
return iter(self.target)
def __str__(self):
return str(self.target)
def __repr__(self):
return repr(self.target)
def __eq__(self, other):
return str(self.target) == str(other)
def __hash__(self):
return hash(self.target)
class Observable(object):
"""
Wraps any container object such that on inserting, updating or deleting,
an observer is notified with a payload of the target. All other special
name methods are passed through parameters unhindered.
"""
def __init__(self, target, observer):
self.target = target
self.observer = observer
self.observer(self.target)
def __getattr__(self, attr):
return self.target.__getattribute__(attr)
def __getitem__(self, key):
return self.target.__getitem__(key)
def __setitem__(self, key, value):
self.target.__setitem__(key, value)
self.observer(self.target)
def __delitem__(self, key):
self.target.__delitem__(key)
self.observer(self.target)
def __len__(self):
return self.target.__len__()
def __iter__(self):
return self.target.__iter__()
def __str__(self):
return self.target.__str__()
def __repr__(self):
return self.target.__repr__() |
def psychologist():
print('Please tell me your problems')
while True:
answer = (yield)
if answer is not None:
if answer.endswith('?'):
print("Don't ask yourself too much questions")
elif 'good' in answer:
print("Ahh that's good, go on")
elif 'bad' in answer:
print("Don't be so negative")
elif answer in ('q', 'quit'):
print("Goodbye")
yield
return
else:
print("Please continue")
if __name__ == "__main__":
print("Starting psychologist session, type 'q' or 'quit' to end session")
freud = psychologist()
for phrase in freud:
problem = input("> ")
freud.send(problem) | def psychologist():
print('Please tell me your problems')
while True:
answer = (yield)
if answer is not None:
if answer.endswith('?'):
print("Don't ask yourself too much questions")
elif 'good' in answer:
print("Ahh that's good, go on")
elif 'bad' in answer:
print("Don't be so negative")
elif answer in ('q', 'quit'):
print('Goodbye')
yield
return
else:
print('Please continue')
if __name__ == '__main__':
print("Starting psychologist session, type 'q' or 'quit' to end session")
freud = psychologist()
for phrase in freud:
problem = input('> ')
freud.send(problem) |
include_gcode_from("/home/michael/Documents/Cross1.ngc")
send_gcode_lines()
i = -2
include_gcode_from("/home/michael/Documents/CrossOutline.ngc",False)
comment("BEGINNING CrossOutline")
while i > -11:
move(0,0)
i -= 2
print("i is: {}".format(i))
if i < -11:
i = -11
setv("#1",i)
send_gcode_lines()
comment("End CrossOutline")
include_gcode_from("/home/michael/Documents/CrossOutlinePunch.ngc",False)
comment("BEGINNING CrossOutlinePunch")
while i > -14:
move(0,0)
i -= 2
print("now i is: {}".format(i))
if i < -14:
i = -14
setv("#1",i)
send_gcode_lines()
comment("End CrossOutlinePunch") | include_gcode_from('/home/michael/Documents/Cross1.ngc')
send_gcode_lines()
i = -2
include_gcode_from('/home/michael/Documents/CrossOutline.ngc', False)
comment('BEGINNING CrossOutline')
while i > -11:
move(0, 0)
i -= 2
print('i is: {}'.format(i))
if i < -11:
i = -11
setv('#1', i)
send_gcode_lines()
comment('End CrossOutline')
include_gcode_from('/home/michael/Documents/CrossOutlinePunch.ngc', False)
comment('BEGINNING CrossOutlinePunch')
while i > -14:
move(0, 0)
i -= 2
print('now i is: {}'.format(i))
if i < -14:
i = -14
setv('#1', i)
send_gcode_lines()
comment('End CrossOutlinePunch') |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.