content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
string = '<option value="1" >Malda</option><option value="2" >Hooghly</option><option value="3" >Calcutta</option><option value="4" >Jalpaiguri</option><option value="6" >Coochbehar</option><option value="7" >Paschim Medinpur</option><option value="8" >Birbhum</option><option value="9" >Purba Medinipur</option><option value="10" >Purulia</option><option value="11" >Howrah</option><option value="12" >Murshidabad</option><option value="13" >South Dinajpur</option><option value="14" >North Twenty Four Parganas</option><option value="17" >Darjeeling</option><option value="18" >Purba Bardhaman</option><option value="19" >Bankura</option><option value="20" >South Twenty Four Parganas</option><option value="21" >North Dinajpur</option><option value="22" >Nadia</option><option value="23" >kalimpong</option><option value="24" >Paschim Bardhaman</option><option value="25" >Jhargram</option> </select>' separated = string.split("</option>") codes = [each[15:].split('" >') for each in separated[:-1]] print(codes) #districts = [each[1] for each in codes] #codes = [each[0] for each in codes] codes = [",".join([each[1],each[0]]) for each in codes] print(len(codes)) print("\n".join(sorted(codes))) #print("\n".join(districts))
string = '<option value="1" >Malda</option><option value="2" >Hooghly</option><option value="3" >Calcutta</option><option value="4" >Jalpaiguri</option><option value="6" >Coochbehar</option><option value="7" >Paschim Medinpur</option><option value="8" >Birbhum</option><option value="9" >Purba Medinipur</option><option value="10" >Purulia</option><option value="11" >Howrah</option><option value="12" >Murshidabad</option><option value="13" >South Dinajpur</option><option value="14" >North Twenty Four Parganas</option><option value="17" >Darjeeling</option><option value="18" >Purba Bardhaman</option><option value="19" >Bankura</option><option value="20" >South Twenty Four Parganas</option><option value="21" >North Dinajpur</option><option value="22" >Nadia</option><option value="23" >kalimpong</option><option value="24" >Paschim Bardhaman</option><option value="25" >Jhargram</option> </select>' separated = string.split('</option>') codes = [each[15:].split('" >') for each in separated[:-1]] print(codes) codes = [','.join([each[1], each[0]]) for each in codes] print(len(codes)) print('\n'.join(sorted(codes)))
class Calls(object): def __init__(self): self.calls = [] def addCall(self, call): self.calls.append(call) def endCall(self, call): for c in self.calls: if call.ID == c.ID: self.calls.remove(call) def searchCall(self, call_id): for c in self.calls: if call_id == c.ID: return c return None def printaCalls(self): for i in self.calls: print(i.status)
class Calls(object): def __init__(self): self.calls = [] def add_call(self, call): self.calls.append(call) def end_call(self, call): for c in self.calls: if call.ID == c.ID: self.calls.remove(call) def search_call(self, call_id): for c in self.calls: if call_id == c.ID: return c return None def printa_calls(self): for i in self.calls: print(i.status)
# Suppose Andy and Doris want to choose a restaurant for dinner, and they both have a list of favorite # restaurants represented by strings. # You need to help them find out their common interest with the least list index sum. If there is a # choice tie between answers, output all of them with no order requirement. You could assume there always # exists an answer. # Example 1: # Input: # ["Shogun", "Tapioca Express", "Burger King", "KFC"] # ["KFC", "Shogun", "Burger King"] # Output: ["Shogun"] # Explanation: The restaurant they both like and have the least index sum is "Shogun" with index sum 1 (0+1). # Note: # The index is starting from 0 to the list length minus 1. # No duplicates in both lists. # Time complexity : O(l1 + l2) # Space complexity : O(l1 * x), hashmap size grows upto l1 * x where x refers to average string length. class Solution: def findRestaurant(self, list1: 'list[str]', list2: 'list[str]') -> 'list[str]': placesMap = {} minSum = float('inf') res = [] for i, cur in enumerate(list1): placesMap[cur] = i for i, cur in enumerate(list2): if cur in placesMap: if (placesMap[cur] + i) < minSum: res = [cur] minSum = placesMap[cur] + i elif (placesMap[cur] + i) == minSum: res.append(cur) return res
class Solution: def find_restaurant(self, list1: 'list[str]', list2: 'list[str]') -> 'list[str]': places_map = {} min_sum = float('inf') res = [] for (i, cur) in enumerate(list1): placesMap[cur] = i for (i, cur) in enumerate(list2): if cur in placesMap: if placesMap[cur] + i < minSum: res = [cur] min_sum = placesMap[cur] + i elif placesMap[cur] + i == minSum: res.append(cur) return res
def gcd(a,b): if a < b: a, b = b, a if b == 0: return a return gcd(b, a %b) def gcdlist(l): if len(l) == 2: return gcd(l[0], l[1]) f = l.pop() s = l.pop() m = gcd(f, s) l.append(m) return gcdlist(l) def main(): n, x = map(int, input().split()) a = [int(v) for v in input().split(' ')] a.append(x) a.sort() dis = [x2 - x1 for x1, x2 in zip(a, a[1:])] max_ = 0 for i in range(n): if len(dis) == 1: max_ = dis[0] break try: max_ = gcdlist(dis) except: max_ = 1 print(max_) if __name__ == '__main__': main()
def gcd(a, b): if a < b: (a, b) = (b, a) if b == 0: return a return gcd(b, a % b) def gcdlist(l): if len(l) == 2: return gcd(l[0], l[1]) f = l.pop() s = l.pop() m = gcd(f, s) l.append(m) return gcdlist(l) def main(): (n, x) = map(int, input().split()) a = [int(v) for v in input().split(' ')] a.append(x) a.sort() dis = [x2 - x1 for (x1, x2) in zip(a, a[1:])] max_ = 0 for i in range(n): if len(dis) == 1: max_ = dis[0] break try: max_ = gcdlist(dis) except: max_ = 1 print(max_) if __name__ == '__main__': main()
#! /bin/env python3 ''' Class that represents a bit mask. It has methods representing all the bitwise operations plus some additional features. The methods return a new BitMask object or a boolean result. See the bits module for more on the operations provided. ''' class BitMask(int): def AND(self,bm): return BitMask(self & bm) def OR(self,bm): return BitMask(self | bm) def XOR(self,bm): return BitMask(self ^ bm) def NOT(self): return BitMask(~self) def shiftleft(self, num): return BitMask(self << num) def shiftright(self, num): return BitMask(self >> num) def bit(self, num): mask = 1 << num return bool(self & mask) def setbit(self, num): mask = 1 << num return BitMask(self | mask) def zerobit(self, num): mask = ~(1 << num) return BitMask(self & mask) def listbits(self, start=0,end=None): if end: end = end if end < 0 else end+2 return [int(c) for c in bin(self)[start+2:end]]
""" Class that represents a bit mask. It has methods representing all the bitwise operations plus some additional features. The methods return a new BitMask object or a boolean result. See the bits module for more on the operations provided. """ class Bitmask(int): def and(self, bm): return bit_mask(self & bm) def or(self, bm): return bit_mask(self | bm) def xor(self, bm): return bit_mask(self ^ bm) def not(self): return bit_mask(~self) def shiftleft(self, num): return bit_mask(self << num) def shiftright(self, num): return bit_mask(self >> num) def bit(self, num): mask = 1 << num return bool(self & mask) def setbit(self, num): mask = 1 << num return bit_mask(self | mask) def zerobit(self, num): mask = ~(1 << num) return bit_mask(self & mask) def listbits(self, start=0, end=None): if end: end = end if end < 0 else end + 2 return [int(c) for c in bin(self)[start + 2:end]]
n,reqsum=map(int,input().split()) a=list(map(int,input().split())) arr=[] for i in range(1,n+1): arr.append([i,a[i-1]]) arr=sorted(arr,key=lambda x:x[1]) #print(arr) i=0 j=n-1 while(i<=j and i!=j): #print("{}+{}={}".format(arr[i][1],arr[j][1],arr[i][1]+arr[j][1])) if(arr[i][1]+arr[j][1]==reqsum): print("{} {}".format(arr[i][0],arr[j][0])) break elif(arr[i][1]+arr[j][1]<reqsum): i+=1 elif(arr[i][1]+arr[j][1]>reqsum): j-=1 else: print("IMPOSSIBLE")
(n, reqsum) = map(int, input().split()) a = list(map(int, input().split())) arr = [] for i in range(1, n + 1): arr.append([i, a[i - 1]]) arr = sorted(arr, key=lambda x: x[1]) i = 0 j = n - 1 while i <= j and i != j: if arr[i][1] + arr[j][1] == reqsum: print('{} {}'.format(arr[i][0], arr[j][0])) break elif arr[i][1] + arr[j][1] < reqsum: i += 1 elif arr[i][1] + arr[j][1] > reqsum: j -= 1 else: print('IMPOSSIBLE')
# 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 flatten(self, root: TreeNode) -> None: preorderList = list() def preorderTraversal(root: TreeNode): if root: preorderList.append(root) preorderTraversal(root.left) preorderTraversal(root.right) preorderTraversal(root) size = len(preorderList) for i in range(1, size): prev, curr = preorderList[i - 1], preorderList[i] prev.left = None prev.right = curr
class Solution: def flatten(self, root: TreeNode) -> None: preorder_list = list() def preorder_traversal(root: TreeNode): if root: preorderList.append(root) preorder_traversal(root.left) preorder_traversal(root.right) preorder_traversal(root) size = len(preorderList) for i in range(1, size): (prev, curr) = (preorderList[i - 1], preorderList[i]) prev.left = None prev.right = curr
str = "Python Program" print(str[0]) print(str[1]) print(str[2]) print(str[3]) print(str[4]) print(str[5]) print(str[0:8]) print(str[::-1]) #to reverse the string
str = 'Python Program' print(str[0]) print(str[1]) print(str[2]) print(str[3]) print(str[4]) print(str[5]) print(str[0:8]) print(str[::-1])
vid_parttern = r'' class Video: def __init__(self): pass
vid_parttern = '' class Video: def __init__(self): pass
expected_output = { 'Node number is ': '1', 'Node status is ': 'NODE_STATUS_UP', 'Tunnel status is ': 'NODE_TUNNEL_UP', 'Node Sudi is ': '11 FDO25390VQP', 'Node Name is ': '4 Node', 'Node type is ': 'CLUSTER_NODE_TYPE_MASTER', 'Node role is ': 'CLUSTER_NODE_ROLE_LEADER' }
expected_output = {'Node number is ': '1', 'Node status is ': 'NODE_STATUS_UP', 'Tunnel status is ': 'NODE_TUNNEL_UP', 'Node Sudi is ': '11 FDO25390VQP', 'Node Name is ': '4 Node', 'Node type is ': 'CLUSTER_NODE_TYPE_MASTER', 'Node role is ': 'CLUSTER_NODE_ROLE_LEADER'}
class Service: def __init__(self): self.base = 7 def set_val(self, val): self.func_val = val def get_val(self): return self.func_val class Service2(Service): def __init__(self): # pragma: no cover self.base = 8
class Service: def __init__(self): self.base = 7 def set_val(self, val): self.func_val = val def get_val(self): return self.func_val class Service2(Service): def __init__(self): self.base = 8
vowels = "aeiou" #user input word = input("Enter a word ('quit' to quit): ") word = word.lower() if word == 'quit': quit() #mainloop while word != 'quit': if word[0] in vowels: word = word + "way" #if word is one letter consonant elif word[0] not in vowels and len(word) == 1: word = word + 'ay' else: for i, ch in enumerate(word): if ch in vowels: word = word[i:] + word[:i] + "ay" break print(word) #user input word = input("Enter a word ('quit' to quit): ") word = word.lower()
vowels = 'aeiou' word = input("Enter a word ('quit' to quit): ") word = word.lower() if word == 'quit': quit() while word != 'quit': if word[0] in vowels: word = word + 'way' elif word[0] not in vowels and len(word) == 1: word = word + 'ay' else: for (i, ch) in enumerate(word): if ch in vowels: word = word[i:] + word[:i] + 'ay' break print(word) word = input("Enter a word ('quit' to quit): ") word = word.lower()
class Event: def __init__(self, event_date, event_type, machine_name, user): self.date = event_date self.type = event_type self.machine = machine_name self.user = user
class Event: def __init__(self, event_date, event_type, machine_name, user): self.date = event_date self.type = event_type self.machine = machine_name self.user = user
pkgname = "python-urllib3" pkgver = "1.26.9" pkgrel = 0 build_style = "python_module" hostmakedepends = ["python-setuptools"] depends = ["python-six"] pkgdesc = "HTTP library with thread-safe connection pooling" maintainer = "q66 <q66@chimera-linux.org>" license = "MIT" url = "https://urllib3.readthedocs.io" source = f"$(PYPI_SITE)/u/urllib3/urllib3-{pkgver}.tar.gz" sha256 = "aabaf16477806a5e1dd19aa41f8c2b7950dd3c746362d7e3223dbe6de6ac448e" # unpackaged dependency options = ["!check", "brokenlinks"] def post_install(self): for f in (self.destdir / "usr/lib").glob( "python*/site-packages/urllib3/packages/six.py" ): f.unlink() f.symlink_to("../../six.py") self.install_license("LICENSE.txt")
pkgname = 'python-urllib3' pkgver = '1.26.9' pkgrel = 0 build_style = 'python_module' hostmakedepends = ['python-setuptools'] depends = ['python-six'] pkgdesc = 'HTTP library with thread-safe connection pooling' maintainer = 'q66 <q66@chimera-linux.org>' license = 'MIT' url = 'https://urllib3.readthedocs.io' source = f'$(PYPI_SITE)/u/urllib3/urllib3-{pkgver}.tar.gz' sha256 = 'aabaf16477806a5e1dd19aa41f8c2b7950dd3c746362d7e3223dbe6de6ac448e' options = ['!check', 'brokenlinks'] def post_install(self): for f in (self.destdir / 'usr/lib').glob('python*/site-packages/urllib3/packages/six.py'): f.unlink() f.symlink_to('../../six.py') self.install_license('LICENSE.txt')
___assertEqual(0**17, 0) ___assertEqual(17**0, 1) ___assertEqual(0**0, 1) ___assertEqual(17**1, 17) ___assertEqual(2**10, 1024) ___assertEqual(2**-2, 0.25)
___assert_equal(0 ** 17, 0) ___assert_equal(17 ** 0, 1) ___assert_equal(0 ** 0, 1) ___assert_equal(17 ** 1, 17) ___assert_equal(2 ** 10, 1024) ___assert_equal(2 ** (-2), 0.25)
record4 = [[({'t4.103.114.0': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.0': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.0': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.0': [0.559, 10.0], 't3.103.114.0': [0.733, 5.0], 't5.103.114.0': [0.413, 5.0]}), 'newmec-3'], [({'t5.103.114.1': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.1': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.1': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.1': [0.438, 5.0], 't2.103.114.1': [0.452, 5.0], 't3.103.114.1': [0.698, 5.0]}), 'newmec-3'], [({'t5.103.114.2': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.2': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.2': [0.413, 5.0], 't2.103.114.2': [0.416, 5.0]}), 'newmec-3'], [({'t4.101.114.3': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.3': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.3': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.3': [0.446, 10.0], 't2.101.114.3': [0.628, 5.0], 't5.101.114.3': [0.564, 5.0]}), 'newmec-1'], [({'t2.102.114.4': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.4': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.4': [0.491, 5.0], 't5.102.114.4': [0.716, 5.0]}), 'newmec-2'], [({'t1.101.114.5': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.5': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.5': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.5': [0.72, 6.667], 't2.101.114.5': [0.648, 5.0], 't3.101.114.5': [0.591, 5.0]}), 'newmec-1'], [({'t3.102.114.6': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.6': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.6': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.6': [0.708, 5.0], 't5.102.114.6': [0.491, 5.0], 't2.102.114.6': [0.557, 5.0]}), 'newmec-2'], [({'t5.101.114.7': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.7': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.7': [0.799, 5.0], 't1.101.114.7': [0.621, 6.667]}), 'newmec-1'], [({'t3.101.114.8': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.8': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.8': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.8': [0.587, 5.0], 't2.101.114.8': [0.538, 5.0], 't4.101.114.8': [0.404, 10.0]}), 'newmec-1'], [({'t2.103.114.9': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.9': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.9': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.9': [0.413, 5.0], 't1.103.114.9': [0.585, 6.667], 't5.103.114.9': [0.797, 5.0]}), 'newmec-3'], [({'t1.102.114.10': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.10': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.10': [0.774, 6.667], 't3.102.114.10': [0.732, 5.0]}), 'newmec-2'], [({'t2.103.114.11': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.11': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.11': [0.644, 5.0], 't4.103.114.11': [0.742, 10.0]}), 'newmec-3'], [({'t2.101.114.12': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.12': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.12': [0.697, 5.0], 't5.101.114.12': [0.467, 5.0]}), 'newmec-1'], [({'t4.101.114.13': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.13': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.13': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.13': [0.743, 10.0], 't1.101.114.13': [0.471, 6.667], 't2.101.114.13': [0.609, 5.0]}), 'newmec-1'], [({'t5.101.114.14': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.14': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.14': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.14': [0.501, 5.0], 't4.101.114.14': [0.727, 10.0], 't2.101.114.14': [0.433, 5.0]}), 'newmec-1'], [({'t2.101.114.15': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.15': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.15': [0.665, 5.0], 't5.101.114.15': [0.552, 5.0]}), 'newmec-1'], [({'t2.101.114.16': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.16': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.16': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.16': [0.693, 5.0], 't3.101.114.16': [0.769, 5.0], 't5.101.114.16': [0.449, 5.0]}), 'newmec-1'], [({'t4.102.114.17': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.17': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.17': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.17': [0.741, 10.0], 't5.102.114.17': [0.701, 5.0], 't3.102.114.17': [0.662, 5.0]}), 'newmec-2'], [({'t2.103.114.18': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.18': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.18': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.18': [0.508, 5.0], 't5.103.114.18': [0.787, 5.0], 't3.103.114.18': [0.757, 5.0]}), 'newmec-3'], [({'t4.103.114.19': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.19': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.19': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.19': [0.769, 10.0], 't5.103.114.19': [0.535, 5.0], 't1.103.114.19': [0.556, 6.667]}), 'newmec-3'], [({'t5.101.114.20': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.20': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.20': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.20': [0.504, 5.0], 't3.101.114.20': [0.455, 5.0], 't1.101.114.20': [0.743, 6.667]}), 'newmec-1'], [({'t3.103.114.21': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.21': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.21': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.21': [0.654, 5.0], 't1.103.114.21': [0.523, 6.667], 't2.103.114.21': [0.768, 5.0]}), 'newmec-3'], [({'t1.101.114.22': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.22': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.22': [0.545, 6.667], 't5.101.114.22': [0.419, 5.0]}), 'newmec-1'], [({'t5.103.114.23': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.23': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.23': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.23': [0.699, 5.0], 't3.103.114.23': [0.614, 5.0], 't2.103.114.23': [0.778, 5.0]}), 'newmec-3'], [({'t2.103.114.24': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.24': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.24': [0.787, 5.0], 't1.103.114.24': [0.724, 6.667]}), 'newmec-3'], [({'t1.102.114.25': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.25': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.25': [0.784, 6.667], 't4.102.114.25': [0.467, 10.0]}), 'newmec-2'], [({'t1.101.114.26': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.26': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.26': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.26': [0.536, 6.667], 't2.101.114.26': [0.465, 5.0], 't5.101.114.26': [0.742, 5.0]}), 'newmec-1'], [({'t2.101.114.27': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.27': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.27': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.27': [0.55, 5.0], 't4.101.114.27': [0.486, 10.0], 't1.101.114.27': [0.798, 6.667]}), 'newmec-1'], [({'t2.103.114.28': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.28': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.28': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.28': [0.452, 5.0], 't4.103.114.28': [0.56, 10.0], 't1.103.114.28': [0.724, 6.667]}), 'newmec-3'], [({'t4.103.114.29': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.29': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.29': [0.669, 10.0], 't3.103.114.29': [0.708, 5.0]}), 'newmec-3'], [({'t3.103.114.30': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.30': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.30': [0.784, 5.0], 't5.103.114.30': [0.502, 5.0]}), 'newmec-3'], [({'t1.156.114.31': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.31': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.31': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.31': [0.537, 6.667], 't3.156.114.31': [0.545, 5.0], 't2.156.114.31': [0.61, 5.0]}), 'osboxes-0'], [({'t5.103.114.32': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.32': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.32': [0.644, 5.0], 't3.103.114.32': [0.73, 5.0]}), 'newmec-3'], [({'t1.156.114.33': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.33': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.33': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.33': [0.49, 6.667], 't3.156.114.33': [0.648, 5.0], 't2.156.114.33': [0.502, 5.0]}), 'osboxes-0'], [({'t1.103.114.34': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.34': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.34': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.34': [0.474, 6.667], 't4.103.114.34': [0.654, 10.0], 't2.103.114.34': [0.498, 5.0]}), 'newmec-3'], [({'t3.101.114.35': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.35': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.35': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.35': [0.416, 5.0], 't1.101.114.35': [0.674, 6.667], 't5.101.114.35': [0.583, 5.0]}), 'newmec-1'], [({'t3.103.114.36': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.36': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.36': [0.512, 5.0], 't2.103.114.36': [0.535, 5.0]}), 'newmec-3'], [({'t1.101.114.37': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.37': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.37': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.37': [0.789, 6.667], 't4.101.114.37': [0.477, 10.0], 't3.101.114.37': [0.742, 5.0]}), 'newmec-1'], [({'t2.156.114.38': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.38': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.38': [0.78, 5.0], 't5.156.114.38': [0.713, 5.0]}), 'osboxes-0'], [({'t3.103.114.39': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.39': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.39': [0.448, 5.0], 't5.103.114.39': [0.763, 5.0]}), 'newmec-3'], [({'t3.102.114.40': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.40': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.40': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.40': [0.584, 5.0], 't4.102.114.40': [0.415, 10.0], 't1.102.114.40': [0.458, 6.667]}), 'newmec-2'], [({'t2.101.114.41': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.41': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.41': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.41': [0.784, 5.0], 't1.101.114.41': [0.445, 6.667], 't3.101.114.41': [0.703, 5.0]}), 'newmec-1'], [({'t5.103.114.42': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.42': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.42': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.42': [0.555, 5.0], 't2.103.114.42': [0.488, 5.0], 't4.103.114.42': [0.539, 10.0]}), 'newmec-3'], [({'t4.102.114.43': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.43': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.43': [0.646, 10.0], 't2.102.114.43': [0.709, 5.0]}), 'newmec-2'], [({'t5.103.114.44': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.44': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.44': [0.435, 5.0], 't4.103.114.44': [0.542, 10.0]}), 'newmec-3'], [({'t4.102.114.45': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.45': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.45': [0.44, 10.0], 't1.102.114.45': [0.692, 6.667]}), 'newmec-2'], [({'t3.102.114.46': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.46': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.46': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.46': [0.692, 5.0], 't4.102.114.46': [0.596, 10.0], 't5.102.114.46': [0.624, 5.0]}), 'newmec-2'], [({'t2.101.114.47': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.47': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.47': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.47': [0.698, 5.0], 't1.101.114.47': [0.6, 6.667], 't5.101.114.47': [0.429, 5.0]}), 'newmec-1'], [({'t5.101.114.48': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.48': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.48': [0.505, 5.0], 't2.101.114.48': [0.482, 5.0]}), 'newmec-1'], [({'t2.103.114.49': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.49': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.49': [0.707, 5.0], 't1.103.114.49': [0.66, 6.667]}), 'newmec-3'], [({'t4.101.114.50': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.50': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.50': [0.683, 10.0], 't2.101.114.50': [0.479, 5.0]}), 'newmec-1'], [({'t3.103.114.51': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.51': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.51': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.51': [0.549, 5.0], 't4.103.114.51': [0.71, 10.0], 't1.103.114.51': [0.432, 6.667]}), 'newmec-3'], [({'t2.101.114.52': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.52': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.52': [0.786, 5.0], 't3.101.114.52': [0.773, 5.0]}), 'newmec-1'], [({'t1.103.114.53': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.53': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.53': [0.682, 6.667], 't4.103.114.53': [0.562, 10.0]}), 'newmec-3'], [({'t5.103.114.54': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.54': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.54': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.54': [0.675, 5.0], 't4.103.114.54': [0.528, 10.0], 't2.103.114.54': [0.426, 5.0]}), 'newmec-3'], [({'t5.103.114.55': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.55': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.55': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.55': [0.486, 5.0], 't2.103.114.55': [0.426, 5.0], 't3.103.114.55': [0.791, 5.0]}), 'newmec-3'], [({'t4.156.114.56': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.56': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.56': [0.601, 10.0], 't3.156.114.56': [0.429, 5.0]}), 'osboxes-0'], [({'t4.103.114.57': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.57': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.57': [0.473, 10.0], 't2.103.114.57': [0.489, 5.0]}), 'newmec-3'], [({'t5.101.114.58': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.58': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.58': [0.564, 5.0], 't2.101.114.58': [0.438, 5.0]}), 'newmec-1'], [({'t3.103.114.59': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.59': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.59': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.59': [0.449, 5.0], 't5.103.114.59': [0.609, 5.0], 't2.103.114.59': [0.473, 5.0]}), 'newmec-3'], [({'t5.102.114.60': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.60': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.60': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.60': [0.622, 5.0], 't3.102.114.60': [0.594, 5.0], 't2.102.114.60': [0.669, 5.0]}), 'newmec-2'], [({'t3.102.114.61': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.61': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.61': [0.685, 5.0], 't1.102.114.61': [0.465, 6.667]}), 'newmec-2'], [({'t1.101.114.62': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.62': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.62': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.62': [0.755, 6.667], 't4.101.114.62': [0.401, 10.0], 't2.101.114.62': [0.726, 5.0]}), 'newmec-1'], [({'t3.103.114.63': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.63': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.63': [0.594, 5.0], 't5.103.114.63': [0.582, 5.0]}), 'newmec-3'], [({'t2.101.114.64': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.64': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.64': [0.787, 5.0], 't5.101.114.64': [0.694, 5.0]}), 'newmec-1'], [({'t1.103.114.65': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.65': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.65': [0.567, 6.667], 't3.103.114.65': [0.582, 5.0]}), 'newmec-3'], [({'t2.156.114.66': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.66': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.66': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.66': [0.567, 5.0], 't3.156.114.66': [0.689, 5.0], 't4.156.114.66': [0.478, 10.0]}), 'osboxes-0'], [({'t2.103.114.67': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.67': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.67': [0.433, 5.0], 't1.103.114.67': [0.576, 6.667]}), 'newmec-3'], [({'t1.103.114.68': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.68': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.68': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.68': [0.443, 6.667], 't2.103.114.68': [0.586, 5.0], 't4.103.114.68': [0.739, 10.0]}), 'newmec-3'], [({'t4.101.114.69': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.69': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.69': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.69': [0.548, 10.0], 't3.101.114.69': [0.792, 5.0], 't5.101.114.69': [0.664, 5.0]}), 'newmec-1'], [({'t4.103.114.70': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.70': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.70': [0.537, 10.0], 't1.103.114.70': [0.764, 6.667]}), 'newmec-3'], [({'t2.103.114.71': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.71': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.71': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.71': [0.415, 5.0], 't3.103.114.71': [0.581, 5.0], 't4.103.114.71': [0.478, 10.0]}), 'newmec-3'], [({'t4.102.114.72': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.72': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.72': [0.452, 10.0], 't2.102.114.72': [0.594, 5.0]}), 'newmec-2'], [({'t3.101.114.73': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.73': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.73': [0.44, 5.0], 't5.101.114.73': [0.61, 5.0]}), 'newmec-1'], [({'t1.101.114.74': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.74': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.74': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.74': [0.7, 6.667], 't2.101.114.74': [0.641, 5.0], 't4.101.114.74': [0.75, 10.0]}), 'newmec-1'], [({'t3.103.114.75': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.75': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.75': [0.451, 5.0], 't5.103.114.75': [0.57, 5.0]}), 'newmec-3'], [({'t2.103.114.76': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.76': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.76': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.76': [0.56, 5.0], 't1.103.114.76': [0.692, 6.667], 't3.103.114.76': [0.76, 5.0]}), 'newmec-3'], [({'t5.103.114.77': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.77': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.77': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.77': [0.72, 5.0], 't4.103.114.77': [0.506, 10.0], 't1.103.114.77': [0.59, 6.667]}), 'newmec-3'], [({'t3.103.114.78': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.78': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.78': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.78': [0.625, 5.0], 't2.103.114.78': [0.511, 5.0], 't5.103.114.78': [0.672, 5.0]}), 'newmec-3'], [({'t3.101.114.79': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.79': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.79': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.79': [0.785, 5.0], 't1.101.114.79': [0.404, 6.667], 't5.101.114.79': [0.612, 5.0]}), 'newmec-1'], [({'t4.103.114.80': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.80': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.80': [0.752, 10.0], 't5.103.114.80': [0.689, 5.0]}), 'newmec-3'], [({'t3.103.114.81': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.81': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.81': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.81': [0.548, 5.0], 't1.103.114.81': [0.668, 6.667], 't2.103.114.81': [0.756, 5.0]}), 'newmec-3'], [({'t4.101.114.82': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.82': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.82': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.82': [0.413, 10.0], 't2.101.114.82': [0.452, 5.0], 't3.101.114.82': [0.461, 5.0]}), 'newmec-1'], [({'t1.156.114.83': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.83': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.83': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.83': [0.543, 6.667], 't4.156.114.83': [0.736, 10.0], 't2.156.114.83': [0.611, 5.0]}), 'osboxes-0'], [({'t5.101.114.84': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.84': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.84': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.84': [0.635, 5.0], 't1.101.114.84': [0.518, 6.667], 't4.101.114.84': [0.44, 10.0]}), 'newmec-1'], [({'t2.101.114.85': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.85': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.85': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.85': [0.444, 5.0], 't4.101.114.85': [0.684, 10.0], 't5.101.114.85': [0.498, 5.0]}), 'newmec-1'], [({'t5.102.114.86': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.86': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.86': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.86': [0.794, 5.0], 't4.102.114.86': [0.546, 10.0], 't2.102.114.86': [0.445, 5.0]}), 'newmec-2'], [({'t4.103.114.87': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.87': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.87': [0.481, 10.0], 't3.103.114.87': [0.46, 5.0]}), 'newmec-3'], [({'t2.101.114.88': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.88': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.88': [0.68, 5.0], 't4.101.114.88': [0.616, 10.0]}), 'newmec-1'], [({'t4.101.114.89': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.89': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.89': [0.781, 10.0], 't5.101.114.89': [0.782, 5.0]}), 'newmec-1'], [({'t3.103.114.90': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.90': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.90': [0.618, 5.0], 't2.103.114.90': [0.664, 5.0]}), 'newmec-3'], [({'t5.103.114.91': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.91': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.91': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.91': [0.758, 5.0], 't3.103.114.91': [0.747, 5.0], 't4.103.114.91': [0.409, 10.0]}), 'newmec-3'], [({'t5.101.114.92': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.92': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.92': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.92': [0.694, 5.0], 't3.101.114.92': [0.604, 5.0], 't1.101.114.92': [0.597, 6.667]}), 'newmec-1'], [({'t2.101.114.93': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.93': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.93': [0.439, 5.0], 't4.101.114.93': [0.424, 10.0]}), 'newmec-1'], [({'t3.101.114.94': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.94': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.94': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.94': [0.435, 5.0], 't2.101.114.94': [0.736, 5.0], 't4.101.114.94': [0.445, 10.0]}), 'newmec-1'], [({'t5.103.114.95': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.95': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.95': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.95': [0.512, 5.0], 't3.103.114.95': [0.78, 5.0], 't2.103.114.95': [0.715, 5.0]}), 'newmec-3'], [({'t2.156.114.96': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.96': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.96': [0.794, 5.0], 't1.156.114.96': [0.645, 6.667]}), 'osboxes-0'], [({'t4.102.114.97': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.97': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.97': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.97': [0.612, 10.0], 't2.102.114.97': [0.668, 5.0], 't5.102.114.97': [0.61, 5.0]}), 'newmec-2'], [({'t2.103.114.98': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.98': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.98': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.98': [0.784, 5.0], 't5.103.114.98': [0.655, 5.0], 't1.103.114.98': [0.465, 6.667]}), 'newmec-3'], [({'t1.101.114.99': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.99': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.99': [0.72, 6.667], 't4.101.114.99': [0.683, 10.0]}), 'newmec-1'], [({'t1.102.114.100': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.100': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.100': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.100': [0.632, 6.667], 't2.102.114.100': [0.732, 5.0], 't5.102.114.100': [0.797, 5.0]}), 'newmec-2'], [({'t5.103.114.101': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.101': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.101': [0.509, 5.0], 't4.103.114.101': [0.463, 10.0]}), 'newmec-3'], [({'t3.101.114.102': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.102': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.102': [0.632, 5.0], 't4.101.114.102': [0.627, 10.0]}), 'newmec-1'], [({'t1.156.114.103': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.103': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.103': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.103': [0.503, 6.667], 't3.156.114.103': [0.78, 5.0], 't5.156.114.103': [0.732, 5.0]}), 'osboxes-0'], [({'t2.103.114.104': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.104': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.104': [0.442, 5.0], 't1.103.114.104': [0.479, 6.667]}), 'newmec-3'], [({'t5.103.114.105': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.105': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.105': [0.746, 5.0], 't2.103.114.105': [0.762, 5.0]}), 'newmec-3'], [({'t3.101.114.106': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.106': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.106': [0.69, 5.0], 't4.101.114.106': [0.501, 10.0]}), 'newmec-1'], [({'t2.103.114.107': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.107': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.107': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.107': [0.601, 5.0], 't3.103.114.107': [0.629, 5.0], 't1.103.114.107': [0.531, 6.667]}), 'newmec-3'], [({'t5.103.114.108': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.108': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.108': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.108': [0.53, 5.0], 't1.103.114.108': [0.673, 6.667], 't4.103.114.108': [0.552, 10.0]}), 'newmec-3'], [({'t3.101.114.109': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.109': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.109': [0.61, 5.0], 't2.101.114.109': [0.77, 5.0]}), 'newmec-1'], [({'t4.101.114.110': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.110': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.110': [0.602, 10.0], 't5.101.114.110': [0.798, 5.0]}), 'newmec-1'], [({'t5.103.114.111': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.111': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.111': [0.596, 5.0], 't1.103.114.111': [0.42, 6.667]}), 'newmec-3'], [({'t5.103.114.112': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.112': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.112': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.112': [0.708, 5.0], 't3.103.114.112': [0.516, 5.0], 't2.103.114.112': [0.541, 5.0]}), 'newmec-3'], [({'t4.101.114.113': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.113': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.113': [0.654, 10.0], 't3.101.114.113': [0.609, 5.0]}), 'newmec-1'], [({'t5.103.114.114': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.114': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.114': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.114': [0.699, 5.0], 't4.103.114.114': [0.476, 10.0], 't1.103.114.114': [0.502, 6.667]}), 'newmec-3'], [({'t5.103.114.115': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.115': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.115': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.115': [0.571, 5.0], 't1.103.114.115': [0.727, 6.667], 't3.103.114.115': [0.524, 5.0]}), 'newmec-3'], [({'t2.102.114.116': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.116': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.116': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.116': [0.566, 5.0], 't5.102.114.116': [0.63, 5.0], 't4.102.114.116': [0.539, 10.0]}), 'newmec-2'], [({'t3.103.114.117': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.117': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.117': [0.718, 5.0], 't5.103.114.117': [0.571, 5.0]}), 'newmec-3'], [({'t2.102.114.118': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.118': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.118': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.118': [0.703, 5.0], 't3.102.114.118': [0.495, 5.0], 't1.102.114.118': [0.79, 6.667]}), 'newmec-2'], [({'t5.101.114.119': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.119': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.119': [0.615, 5.0], 't2.101.114.119': [0.78, 5.0]}), 'newmec-1'], [({'t5.102.114.120': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.120': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.120': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.120': [0.561, 5.0], 't4.102.114.120': [0.52, 10.0], 't1.102.114.120': [0.53, 6.667]}), 'newmec-2'], [({'t4.103.114.121': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.121': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.121': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.121': [0.595, 10.0], 't2.103.114.121': [0.568, 5.0], 't3.103.114.121': [0.412, 5.0]}), 'newmec-3'], [({'t3.102.114.122': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.122': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.122': [0.652, 5.0], 't1.102.114.122': [0.712, 6.667]}), 'newmec-2'], [({'t4.156.114.123': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.123': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.123': [0.474, 10.0], 't1.156.114.123': [0.734, 6.667]}), 'osboxes-0'], [({'t4.101.114.124': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.124': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.124': [0.666, 10.0], 't5.101.114.124': [0.472, 5.0]}), 'newmec-1'], [({'t1.101.114.125': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.125': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.125': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.125': [0.787, 6.667], 't4.101.114.125': [0.433, 10.0], 't3.101.114.125': [0.566, 5.0]}), 'newmec-1'], [({'t5.102.114.126': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.126': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.126': [0.526, 5.0], 't4.102.114.126': [0.8, 10.0]}), 'newmec-2'], [({'t3.156.114.127': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.127': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.127': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.156.114.127': [0.651, 5.0], 't5.156.114.127': [0.771, 5.0], 't2.156.114.127': [0.719, 5.0]}), 'osboxes-0'], [({'t4.102.114.128': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.128': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.128': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.128': [0.471, 10.0], 't1.102.114.128': [0.763, 6.667], 't5.102.114.128': [0.592, 5.0]}), 'newmec-2'], [({'t3.103.114.129': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.129': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.129': [0.657, 5.0], 't1.103.114.129': [0.643, 6.667]}), 'newmec-3'], [({'t2.101.114.130': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.130': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.130': [0.605, 5.0], 't1.101.114.130': [0.424, 6.667]}), 'newmec-1'], [({'t4.103.114.131': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.131': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.131': [0.511, 10.0], 't3.103.114.131': [0.675, 5.0]}), 'newmec-3'], [({'t2.101.114.132': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.132': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.132': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.132': [0.615, 5.0], 't4.101.114.132': [0.739, 10.0], 't5.101.114.132': [0.507, 5.0]}), 'newmec-1'], [({'t1.102.114.133': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.133': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.133': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.133': [0.53, 6.667], 't3.102.114.133': [0.788, 5.0], 't2.102.114.133': [0.611, 5.0]}), 'newmec-2'], [({'t3.103.114.134': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.134': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.134': [0.425, 5.0], 't5.103.114.134': [0.709, 5.0]}), 'newmec-3'], [({'t3.101.114.135': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.135': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.135': [0.685, 5.0], 't5.101.114.135': [0.403, 5.0]}), 'newmec-1'], [({'t4.101.114.136': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.136': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.136': [0.775, 10.0], 't5.101.114.136': [0.538, 5.0]}), 'newmec-1'], [({'t1.103.114.137': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.137': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.137': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.137': [0.707, 6.667], 't5.103.114.137': [0.729, 5.0], 't4.103.114.137': [0.475, 10.0]}), 'newmec-3'], [({'t4.103.114.138': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.138': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.138': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.138': [0.552, 10.0], 't5.103.114.138': [0.723, 5.0], 't2.103.114.138': [0.655, 5.0]}), 'newmec-3'], [({'t1.102.114.139': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.139': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.139': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.139': [0.733, 6.667], 't3.102.114.139': [0.566, 5.0], 't2.102.114.139': [0.597, 5.0]}), 'newmec-2'], [({'t4.103.114.140': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.140': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.140': [0.405, 10.0], 't3.103.114.140': [0.709, 5.0]}), 'newmec-3'], [({'t3.101.114.141': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.141': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.141': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.141': [0.616, 5.0], 't2.101.114.141': [0.781, 5.0], 't4.101.114.141': [0.417, 10.0]}), 'newmec-1'], [({'t5.156.114.142': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.142': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.142': [0.747, 5.0], 't3.156.114.142': [0.423, 5.0]}), 'osboxes-0'], [({'t4.102.114.143': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.143': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.143': [0.494, 10.0], 't3.102.114.143': [0.479, 5.0]}), 'newmec-2'], [({'t5.103.114.144': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.144': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.144': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.144': [0.666, 5.0], 't4.103.114.144': [0.542, 10.0], 't3.103.114.144': [0.743, 5.0]}), 'newmec-3'], [({'t2.101.114.145': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.145': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.145': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.145': [0.699, 5.0], 't4.101.114.145': [0.642, 10.0], 't5.101.114.145': [0.475, 5.0]}), 'newmec-1'], [({'t4.101.114.146': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.146': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.146': [0.464, 10.0], 't2.101.114.146': [0.731, 5.0]}), 'newmec-1'], [({'t5.103.114.147': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.147': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.147': [0.562, 5.0], 't2.103.114.147': [0.64, 5.0]}), 'newmec-3'], [({'t3.103.114.148': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.148': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.148': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.148': [0.573, 5.0], 't4.103.114.148': [0.702, 10.0], 't5.103.114.148': [0.563, 5.0]}), 'newmec-3'], [({'t5.103.114.149': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.149': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.149': [0.716, 5.0], 't4.103.114.149': [0.775, 10.0]}), 'newmec-3'], [({'t2.101.114.150': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.150': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.150': [0.74, 5.0], 't3.101.114.150': [0.798, 5.0]}), 'newmec-1'], [({'t4.101.114.151': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.151': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.151': [0.49, 10.0], 't2.101.114.151': [0.679, 5.0]}), 'newmec-1'], [({'t5.101.114.152': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.152': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.152': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.152': [0.687, 5.0], 't3.101.114.152': [0.772, 5.0], 't4.101.114.152': [0.719, 10.0]}), 'newmec-1'], [({'t4.103.114.153': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.153': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.153': [0.443, 10.0], 't2.103.114.153': [0.788, 5.0]}), 'newmec-3'], [({'t4.103.114.154': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.154': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.154': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.154': [0.764, 10.0], 't2.103.114.154': [0.585, 5.0], 't1.103.114.154': [0.788, 6.667]}), 'newmec-3'], [({'t3.101.114.155': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.155': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.155': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.155': [0.46, 5.0], 't5.101.114.155': [0.524, 5.0], 't4.101.114.155': [0.756, 10.0]}), 'newmec-1'], [({'t5.101.114.156': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.156': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.156': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.156': [0.724, 5.0], 't4.101.114.156': [0.457, 10.0], 't2.101.114.156': [0.619, 5.0]}), 'newmec-1'], [({'t3.103.114.157': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.157': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.157': [0.485, 5.0], 't5.103.114.157': [0.712, 5.0]}), 'newmec-3'], [({'t2.103.114.158': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.158': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.158': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.158': [0.797, 5.0], 't3.103.114.158': [0.497, 5.0], 't4.103.114.158': [0.462, 10.0]}), 'newmec-3'], [({'t4.156.114.159': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.159': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.159': [0.676, 10.0], 't1.156.114.159': [0.793, 6.667]}), 'osboxes-0'], [({'t3.103.114.160': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.160': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.160': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.160': [0.606, 5.0], 't4.103.114.160': [0.589, 10.0], 't5.103.114.160': [0.674, 5.0]}), 'newmec-3'], [({'t2.103.114.161': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.161': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.161': [0.624, 5.0], 't4.103.114.161': [0.745, 10.0]}), 'newmec-3'], [({'t3.101.114.162': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.162': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.162': [0.419, 5.0], 't2.101.114.162': [0.527, 5.0]}), 'newmec-1'], [({'t4.101.114.163': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.163': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.163': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.163': [0.419, 10.0], 't2.101.114.163': [0.692, 5.0], 't1.101.114.163': [0.564, 6.667]}), 'newmec-1'], [({'t4.156.114.164': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.164': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.164': [0.456, 10.0], 't1.156.114.164': [0.434, 6.667]}), 'osboxes-0'], [({'t5.101.114.165': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.165': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.165': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.165': [0.553, 5.0], 't3.101.114.165': [0.674, 5.0], 't1.101.114.165': [0.604, 6.667]}), 'newmec-1'], [({'t2.103.114.166': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.166': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.166': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.166': [0.447, 5.0], 't4.103.114.166': [0.48, 10.0], 't5.103.114.166': [0.556, 5.0]}), 'newmec-3'], [({'t2.101.114.167': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.167': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.167': [0.459, 5.0], 't4.101.114.167': [0.664, 10.0]}), 'newmec-1'], [({'t5.101.114.168': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.168': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.168': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.168': [0.586, 5.0], 't4.101.114.168': [0.565, 10.0], 't3.101.114.168': [0.691, 5.0]}), 'newmec-1'], [({'t3.101.114.169': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.169': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.169': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.169': [0.602, 5.0], 't2.101.114.169': [0.707, 5.0], 't4.101.114.169': [0.467, 10.0]}), 'newmec-1'], [({'t2.103.114.170': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.170': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.170': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.170': [0.557, 5.0], 't4.103.114.170': [0.697, 10.0], 't5.103.114.170': [0.698, 5.0]}), 'newmec-3'], [({'t4.101.114.171': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.171': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.171': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.171': [0.733, 10.0], 't1.101.114.171': [0.758, 6.667], 't2.101.114.171': [0.565, 5.0]}), 'newmec-1'], [({'t2.156.114.172': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.172': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.172': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.172': [0.492, 5.0], 't4.156.114.172': [0.767, 10.0], 't5.156.114.172': [0.619, 5.0]}), 'osboxes-0'], [({'t2.103.114.173': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.173': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.173': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.173': [0.529, 5.0], 't4.103.114.173': [0.557, 10.0], 't5.103.114.173': [0.651, 5.0]}), 'newmec-3'], [({'t5.101.114.174': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.174': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.174': [0.625, 5.0], 't2.101.114.174': [0.452, 5.0]}), 'newmec-1'], [({'t2.103.114.175': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.175': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.175': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.175': [0.547, 5.0], 't3.103.114.175': [0.448, 5.0], 't4.103.114.175': [0.76, 10.0]}), 'newmec-3'], [({'t1.101.114.176': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.176': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.176': [0.783, 6.667], 't2.101.114.176': [0.734, 5.0]}), 'newmec-1'], [({'t4.103.114.177': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.177': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.177': [0.441, 10.0], 't1.103.114.177': [0.614, 6.667]}), 'newmec-3'], [({'t4.156.114.178': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.178': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.178': [0.79, 10.0], 't5.156.114.178': [0.562, 5.0]}), 'osboxes-0'], [({'t1.103.114.179': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.179': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.179': [0.751, 6.667], 't2.103.114.179': [0.429, 5.0]}), 'newmec-3'], [({'t4.156.114.180': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.180': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.180': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.180': [0.563, 10.0], 't2.156.114.180': [0.776, 5.0], 't3.156.114.180': [0.541, 5.0]}), 'osboxes-0'], [({'t2.101.114.181': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.181': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.181': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.181': [0.413, 5.0], 't3.101.114.181': [0.506, 5.0], 't1.101.114.181': [0.792, 6.667]}), 'newmec-1'], [({'t2.101.114.182': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.182': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.182': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.182': [0.504, 5.0], 't5.101.114.182': [0.532, 5.0], 't4.101.114.182': [0.481, 10.0]}), 'newmec-1'], [({'t5.101.114.183': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.183': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.183': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.183': [0.684, 5.0], 't4.101.114.183': [0.776, 10.0], 't1.101.114.183': [0.518, 6.667]}), 'newmec-1'], [({'t2.102.114.184': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.184': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.184': [0.571, 5.0], 't1.102.114.184': [0.659, 6.667]}), 'newmec-2'], [({'t5.103.114.185': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.185': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.185': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.185': [0.416, 5.0], 't4.103.114.185': [0.799, 10.0], 't3.103.114.185': [0.626, 5.0]}), 'newmec-3'], [({'t2.103.114.186': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.186': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.186': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.186': [0.564, 5.0], 't4.103.114.186': [0.565, 10.0], 't5.103.114.186': [0.643, 5.0]}), 'newmec-3'], [({'t2.102.114.187': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.187': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.187': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.187': [0.701, 5.0], 't5.102.114.187': [0.73, 5.0], 't4.102.114.187': [0.668, 10.0]}), 'newmec-2'], [({'t2.103.114.188': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.188': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.188': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.188': [0.795, 5.0], 't1.103.114.188': [0.666, 6.667], 't3.103.114.188': [0.516, 5.0]}), 'newmec-3'], [({'t2.103.114.189': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.189': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.189': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.189': [0.41, 5.0], 't1.103.114.189': [0.779, 6.667], 't5.103.114.189': [0.767, 5.0]}), 'newmec-3'], [({'t1.101.114.190': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.190': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.190': [0.412, 6.667], 't5.101.114.190': [0.574, 5.0]}), 'newmec-1'], [({'t1.103.114.191': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.191': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.191': [0.453, 6.667], 't4.103.114.191': [0.639, 10.0]}), 'newmec-3'], [({'t5.101.114.192': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.192': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.192': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.192': [0.428, 5.0], 't1.101.114.192': [0.518, 6.667], 't2.101.114.192': [0.766, 5.0]}), 'newmec-1'], [({'t3.101.114.193': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.193': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.193': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.193': [0.609, 5.0], 't5.101.114.193': [0.48, 5.0], 't1.101.114.193': [0.6, 6.667]}), 'newmec-1'], [({'t5.103.114.194': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.194': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.194': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.194': [0.675, 5.0], 't2.103.114.194': [0.779, 5.0], 't1.103.114.194': [0.564, 6.667]}), 'newmec-3'], [({'t5.101.114.195': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.195': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.195': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.195': [0.6, 5.0], 't1.101.114.195': [0.65, 6.667], 't4.101.114.195': [0.551, 10.0]}), 'newmec-1'], [({'t2.101.114.196': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.196': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.196': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.196': [0.516, 5.0], 't1.101.114.196': [0.512, 6.667], 't4.101.114.196': [0.506, 10.0]}), 'newmec-1'], [({'t3.103.114.197': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.197': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.197': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.197': [0.609, 5.0], 't2.103.114.197': [0.412, 5.0], 't5.103.114.197': [0.574, 5.0]}), 'newmec-3'], [({'t5.103.114.198': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.198': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.198': [0.603, 5.0], 't2.103.114.198': [0.756, 5.0]}), 'newmec-3'], [({'t5.101.114.199': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.199': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.199': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.199': [0.648, 5.0], 't4.101.114.199': [0.47, 10.0], 't2.101.114.199': [0.507, 5.0]}), 'newmec-1'], [({'t2.102.114.200': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.200': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.200': [0.574, 5.0], 't1.102.114.200': [0.455, 6.667]}), 'newmec-2'], [({'t1.103.114.201': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.201': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.201': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.201': [0.62, 6.667], 't4.103.114.201': [0.437, 10.0], 't5.103.114.201': [0.742, 5.0]}), 'newmec-3'], [({'t4.101.114.202': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.202': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.202': [0.608, 10.0], 't3.101.114.202': [0.529, 5.0]}), 'newmec-1'], [({'t3.156.114.203': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.203': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.203': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.203': [0.611, 5.0], 't1.156.114.203': [0.542, 6.667], 't4.156.114.203': [0.713, 10.0]}), 'osboxes-0'], [({'t1.103.114.204': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.204': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.204': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.204': [0.41, 6.667], 't5.103.114.204': [0.731, 5.0], 't2.103.114.204': [0.656, 5.0]}), 'newmec-3'], [({'t2.101.114.205': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.205': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.205': [0.522, 5.0], 't1.101.114.205': [0.676, 6.667]}), 'newmec-1'], [({'t3.101.114.206': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.206': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.206': [0.709, 5.0], 't4.101.114.206': [0.675, 10.0]}), 'newmec-1'], [({'t2.103.114.207': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.207': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.207': [0.476, 5.0], 't5.103.114.207': [0.796, 5.0]}), 'newmec-3'], [({'t2.156.114.208': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.208': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.208': [0.658, 5.0], 't3.156.114.208': [0.462, 5.0]}), 'osboxes-0'], [({'t1.101.114.209': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.209': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.209': [0.766, 6.667], 't4.101.114.209': [0.686, 10.0]}), 'newmec-1'], [({'t2.103.114.210': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.210': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.210': [0.501, 5.0], 't5.103.114.210': [0.656, 5.0]}), 'newmec-3'], [({'t3.103.114.211': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.211': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.211': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.211': [0.749, 5.0], 't4.103.114.211': [0.742, 10.0], 't1.103.114.211': [0.713, 6.667]}), 'newmec-3'], [({'t5.102.114.212': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.212': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.212': [0.695, 5.0], 't2.102.114.212': [0.594, 5.0]}), 'newmec-2'], [({'t3.101.114.213': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.213': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.213': [0.711, 5.0], 't1.101.114.213': [0.59, 6.667]}), 'newmec-1'], [({'t1.103.114.214': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.214': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.214': [0.663, 6.667], 't2.103.114.214': [0.68, 5.0]}), 'newmec-3'], [({'t3.156.114.215': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.215': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.215': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.215': [0.618, 5.0], 't5.156.114.215': [0.581, 5.0], 't4.156.114.215': [0.742, 10.0]}), 'osboxes-0'], [({'t2.102.114.216': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.216': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.216': [0.646, 5.0], 't5.102.114.216': [0.489, 5.0]}), 'newmec-2'], [({'t2.102.114.217': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.217': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.217': [0.42, 5.0], 't3.102.114.217': [0.561, 5.0]}), 'newmec-2'], [({'t2.156.114.218': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.218': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.218': [0.666, 5.0], 't1.156.114.218': [0.467, 6.667]}), 'osboxes-0'], [({'t5.103.114.219': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.219': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.219': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.219': [0.53, 5.0], 't1.103.114.219': [0.747, 6.667], 't4.103.114.219': [0.648, 10.0]}), 'newmec-3'], [({'t5.103.114.220': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.220': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.220': [0.69, 5.0], 't3.103.114.220': [0.643, 5.0]}), 'newmec-3'], [({'t5.101.114.221': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.221': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.221': [0.436, 5.0], 't3.101.114.221': [0.667, 5.0]}), 'newmec-1'], [({'t4.101.114.222': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.222': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.222': [0.471, 10.0], 't2.101.114.222': [0.467, 5.0]}), 'newmec-1'], [({'t2.103.114.223': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.223': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.223': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.223': [0.774, 5.0], 't3.103.114.223': [0.432, 5.0], 't1.103.114.223': [0.701, 6.667]}), 'newmec-3'], [({'t4.103.114.224': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.224': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.224': [0.49, 10.0], 't2.103.114.224': [0.459, 5.0]}), 'newmec-3'], [({'t5.103.114.225': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.225': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.225': [0.475, 5.0], 't3.103.114.225': [0.685, 5.0]}), 'newmec-3'], [({'t2.103.114.226': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.226': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.226': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.226': [0.53, 5.0], 't3.103.114.226': [0.545, 5.0], 't5.103.114.226': [0.623, 5.0]}), 'newmec-3'], [({'t5.101.114.227': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.227': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.227': [0.78, 5.0], 't2.101.114.227': [0.596, 5.0]}), 'newmec-1'], [({'t4.101.114.228': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.228': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.228': [0.685, 10.0], 't2.101.114.228': [0.723, 5.0]}), 'newmec-1'], [({'t3.103.114.229': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.229': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.229': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.229': [0.458, 5.0], 't4.103.114.229': [0.615, 10.0], 't5.103.114.229': [0.421, 5.0]}), 'newmec-3'], [({'t3.101.114.230': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.230': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.230': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.230': [0.719, 5.0], 't2.101.114.230': [0.664, 5.0], 't4.101.114.230': [0.585, 10.0]}), 'newmec-1'], [({'t1.103.114.231': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.231': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.231': [0.752, 6.667], 't4.103.114.231': [0.752, 10.0]}), 'newmec-3'], [({'t5.156.114.232': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.232': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.156.114.232': [0.44, 5.0], 't1.156.114.232': [0.596, 6.667]}), 'osboxes-0'], [({'t4.103.114.233': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.233': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.233': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.233': [0.505, 10.0], 't3.103.114.233': [0.495, 5.0], 't2.103.114.233': [0.453, 5.0]}), 'newmec-3'], [({'t5.101.114.234': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.234': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.234': [0.774, 5.0], 't1.101.114.234': [0.766, 6.667]}), 'newmec-1'], [({'t5.103.114.235': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.235': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.235': [0.476, 5.0], 't2.103.114.235': [0.664, 5.0]}), 'newmec-3'], [({'t2.101.114.236': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.236': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.236': [0.456, 5.0], 't5.101.114.236': [0.559, 5.0]}), 'newmec-1'], [({'t4.103.114.237': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.237': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.237': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.237': [0.65, 10.0], 't2.103.114.237': [0.637, 5.0], 't3.103.114.237': [0.507, 5.0]}), 'newmec-3'], [({'t5.103.114.238': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.238': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.238': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.238': [0.673, 5.0], 't2.103.114.238': [0.742, 5.0], 't1.103.114.238': [0.642, 6.667]}), 'newmec-3'], [({'t3.103.114.239': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.239': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.239': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.239': [0.756, 5.0], 't2.103.114.239': [0.509, 5.0], 't1.103.114.239': [0.6, 6.667]}), 'newmec-3'], [({'t5.102.114.240': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.240': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.240': [0.561, 5.0], 't1.102.114.240': [0.601, 6.667]}), 'newmec-2'], [({'t2.103.114.241': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.241': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.241': [0.564, 5.0], 't5.103.114.241': [0.542, 5.0]}), 'newmec-3'], [({'t4.101.114.242': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.242': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.242': [0.733, 10.0], 't1.101.114.242': [0.587, 6.667]}), 'newmec-1'], [({'t5.156.114.243': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.243': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.243': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.243': [0.459, 5.0], 't4.156.114.243': [0.621, 10.0], 't2.156.114.243': [0.635, 5.0]}), 'osboxes-0'], [({'t1.101.114.244': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.244': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.244': [0.679, 6.667], 't2.101.114.244': [0.78, 5.0]}), 'newmec-1'], [({'t4.156.114.245': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.245': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.245': [0.786, 10.0], 't2.156.114.245': [0.755, 5.0]}), 'osboxes-0'], [({'t3.103.114.246': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.246': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.246': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.246': [0.735, 5.0], 't2.103.114.246': [0.662, 5.0], 't4.103.114.246': [0.569, 10.0]}), 'newmec-3'], [({'t5.102.114.247': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.247': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.247': [0.7, 5.0], 't4.102.114.247': [0.544, 10.0]}), 'newmec-2'], [({'t4.102.114.248': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.248': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.248': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.248': [0.473, 10.0], 't5.102.114.248': [0.609, 5.0], 't3.102.114.248': [0.539, 5.0]}), 'newmec-2'], [({'t2.103.114.249': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.249': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.249': [0.578, 5.0], 't3.103.114.249': [0.742, 5.0]}), 'newmec-3'], [({'t2.103.114.250': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.250': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.250': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.250': [0.473, 5.0], 't3.103.114.250': [0.436, 5.0], 't4.103.114.250': [0.524, 10.0]}), 'newmec-3'], [({'t1.103.114.251': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.251': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.251': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.251': [0.494, 6.667], 't2.103.114.251': [0.581, 5.0], 't5.103.114.251': [0.784, 5.0]}), 'newmec-3'], [({'t2.101.114.252': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.252': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.252': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.252': [0.746, 5.0], 't3.101.114.252': [0.457, 5.0], 't1.101.114.252': [0.62, 6.667]}), 'newmec-1'], [({'t2.103.114.253': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.253': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.253': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.253': [0.621, 5.0], 't5.103.114.253': [0.623, 5.0], 't3.103.114.253': [0.483, 5.0]}), 'newmec-3'], [({'t1.103.114.254': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.254': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.254': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.254': [0.623, 6.667], 't5.103.114.254': [0.664, 5.0], 't2.103.114.254': [0.463, 5.0]}), 'newmec-3'], [({'t2.103.114.255': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.255': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.255': [0.656, 5.0], 't5.103.114.255': [0.706, 5.0]}), 'newmec-3'], [({'t2.103.114.256': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.256': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.256': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.256': [0.684, 5.0], 't1.103.114.256': [0.421, 6.667], 't5.103.114.256': [0.767, 5.0]}), 'newmec-3'], [({'t4.103.114.257': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.257': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.257': [0.412, 10.0], 't2.103.114.257': [0.766, 5.0]}), 'newmec-3'], [({'t3.101.114.258': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.258': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.258': [0.764, 5.0], 't1.101.114.258': [0.68, 6.667]}), 'newmec-1'], [({'t4.156.114.259': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.259': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.259': [0.53, 10.0], 't1.156.114.259': [0.683, 6.667]}), 'osboxes-0'], [({'t2.156.114.260': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.260': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.260': [0.752, 5.0], 't3.156.114.260': [0.475, 5.0]}), 'osboxes-0'], [({'t4.156.114.261': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.261': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.261': [0.489, 10.0], 't2.156.114.261': [0.771, 5.0]}), 'osboxes-0'], [({'t3.103.114.262': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.262': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.262': [0.542, 5.0], 't2.103.114.262': [0.412, 5.0]}), 'newmec-3'], [({'t4.103.114.263': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.263': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.263': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.263': [0.512, 10.0], 't1.103.114.263': [0.683, 6.667], 't2.103.114.263': [0.631, 5.0]}), 'newmec-3'], [({'t3.101.114.264': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.264': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.264': [0.407, 5.0], 't5.101.114.264': [0.599, 5.0]}), 'newmec-1'], [({'t3.101.114.265': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.265': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.265': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.265': [0.652, 5.0], 't5.101.114.265': [0.408, 5.0], 't4.101.114.265': [0.434, 10.0]}), 'newmec-1'], [({'t4.156.114.266': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.266': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.266': [0.472, 10.0], 't1.156.114.266': [0.527, 6.667]}), 'osboxes-0'], [({'t5.156.114.267': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.267': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.267': [0.729, 5.0], 't4.156.114.267': [0.579, 10.0]}), 'osboxes-0'], [({'t5.101.114.268': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.268': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.268': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.268': [0.746, 5.0], 't4.101.114.268': [0.539, 10.0], 't3.101.114.268': [0.622, 5.0]}), 'newmec-1'], [({'t4.103.114.269': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.269': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.269': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.269': [0.781, 10.0], 't2.103.114.269': [0.763, 5.0], 't1.103.114.269': [0.577, 6.667]}), 'newmec-3'], [({'t2.103.114.270': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.270': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.270': [0.473, 5.0], 't3.103.114.270': [0.466, 5.0]}), 'newmec-3'], [({'t5.103.114.271': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.271': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.271': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.271': [0.635, 5.0], 't3.103.114.271': [0.485, 5.0], 't2.103.114.271': [0.694, 5.0]}), 'newmec-3'], [({'t3.101.114.272': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.272': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.272': [0.514, 5.0], 't4.101.114.272': [0.657, 10.0]}), 'newmec-1'], [({'t5.101.114.273': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.273': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.273': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.273': [0.602, 5.0], 't2.101.114.273': [0.485, 5.0], 't4.101.114.273': [0.668, 10.0]}), 'newmec-1'], [({'t3.103.114.274': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.274': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.274': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.274': [0.716, 5.0], 't4.103.114.274': [0.614, 10.0], 't2.103.114.274': [0.51, 5.0]}), 'newmec-3'], [({'t4.101.114.275': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.275': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.275': [0.676, 10.0], 't3.101.114.275': [0.46, 5.0]}), 'newmec-1'], [({'t4.101.114.276': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.276': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.276': [0.618, 10.0], 't5.101.114.276': [0.656, 5.0]}), 'newmec-1'], [({'t3.101.114.277': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.277': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.277': [0.432, 5.0], 't4.101.114.277': [0.695, 10.0]}), 'newmec-1'], [({'t3.156.114.278': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.278': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.278': [0.54, 5.0], 't4.156.114.278': [0.701, 10.0]}), 'osboxes-0'], [({'t2.101.114.279': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.279': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.279': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.279': [0.633, 5.0], 't4.101.114.279': [0.571, 10.0], 't3.101.114.279': [0.489, 5.0]}), 'newmec-1'], [({'t2.101.114.280': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.280': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.280': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.280': [0.524, 5.0], 't5.101.114.280': [0.495, 5.0], 't1.101.114.280': [0.742, 6.667]}), 'newmec-1'], [({'t4.101.114.281': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.281': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.281': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.281': [0.769, 10.0], 't2.101.114.281': [0.588, 5.0], 't5.101.114.281': [0.627, 5.0]}), 'newmec-1'], [({'t4.101.114.282': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.282': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.282': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.282': [0.53, 10.0], 't3.101.114.282': [0.466, 5.0], 't1.101.114.282': [0.657, 6.667]}), 'newmec-1'], [({'t3.101.114.283': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.283': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.283': [0.526, 5.0], 't1.101.114.283': [0.454, 6.667]}), 'newmec-1'], [({'t2.102.114.284': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.284': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.284': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.284': [0.556, 5.0], 't4.102.114.284': [0.639, 10.0], 't3.102.114.284': [0.627, 5.0]}), 'newmec-2'], [({'t5.102.114.285': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.285': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.285': [0.452, 5.0], 't2.102.114.285': [0.776, 5.0]}), 'newmec-2'], [({'t3.102.114.286': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.286': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.286': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.286': [0.662, 5.0], 't1.102.114.286': [0.545, 6.667], 't2.102.114.286': [0.436, 5.0]}), 'newmec-2'], [({'t4.101.114.287': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.287': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.287': [0.764, 10.0], 't3.101.114.287': [0.47, 5.0]}), 'newmec-1'], [({'t1.102.114.288': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.288': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.288': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.288': [0.439, 6.667], 't3.102.114.288': [0.644, 5.0], 't5.102.114.288': [0.689, 5.0]}), 'newmec-2'], [({'t3.101.114.289': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.289': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.289': [0.474, 5.0], 't2.101.114.289': [0.715, 5.0]}), 'newmec-1'], [({'t3.103.114.290': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.290': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.290': [0.612, 5.0], 't4.103.114.290': [0.5, 10.0]}), 'newmec-3'], [({'t1.103.114.291': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.291': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.291': [0.779, 6.667], 't2.103.114.291': [0.468, 5.0]}), 'newmec-3'], [({'t4.101.114.292': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.292': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.292': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.292': [0.637, 10.0], 't2.101.114.292': [0.676, 5.0], 't5.101.114.292': [0.594, 5.0]}), 'newmec-1'], [({'t2.101.114.293': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.293': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.293': [0.657, 5.0], 't4.101.114.293': [0.479, 10.0]}), 'newmec-1'], [({'t2.103.114.294': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.294': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.294': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.294': [0.537, 5.0], 't5.103.114.294': [0.429, 5.0], 't4.103.114.294': [0.69, 10.0]}), 'newmec-3'], [({'t4.103.114.295': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.295': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.295': [0.607, 10.0], 't2.103.114.295': [0.664, 5.0]}), 'newmec-3'], [({'t4.101.114.296': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.296': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.296': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.296': [0.469, 10.0], 't5.101.114.296': [0.62, 5.0], 't1.101.114.296': [0.524, 6.667]}), 'newmec-1'], [({'t3.101.114.297': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.297': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.297': [0.435, 5.0], 't1.101.114.297': [0.529, 6.667]}), 'newmec-1'], [({'t4.102.114.298': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.298': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.298': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.298': [0.643, 10.0], 't2.102.114.298': [0.662, 5.0], 't1.102.114.298': [0.432, 6.667]}), 'newmec-2'], [({'t5.103.114.299': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.299': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.299': [0.591, 5.0], 't4.103.114.299': [0.59, 10.0]}), 'newmec-3'], [({'t3.101.114.300': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.300': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.300': [0.426, 5.0], 't1.101.114.300': [0.623, 6.667]}), 'newmec-1'], [({'t5.101.114.301': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.301': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.301': [0.542, 5.0], 't4.101.114.301': [0.442, 10.0]}), 'newmec-1'], [({'t3.101.114.302': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.302': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.302': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.302': [0.744, 5.0], 't4.101.114.302': [0.497, 10.0], 't5.101.114.302': [0.668, 5.0]}), 'newmec-1'], [({'t1.103.114.303': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.303': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.303': [0.438, 6.667], 't2.103.114.303': [0.468, 5.0]}), 'newmec-3'], [({'t2.101.114.304': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.304': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.304': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.304': [0.491, 5.0], 't3.101.114.304': [0.513, 5.0], 't4.101.114.304': [0.693, 10.0]}), 'newmec-1'], [({'t4.101.114.305': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.305': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.305': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.305': [0.454, 10.0], 't3.101.114.305': [0.745, 5.0], 't2.101.114.305': [0.415, 5.0]}), 'newmec-1'], [({'t3.102.114.306': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.306': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.306': [0.503, 5.0], 't4.102.114.306': [0.556, 10.0]}), 'newmec-2'], [({'t4.103.114.307': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.307': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.307': [0.572, 10.0], 't2.103.114.307': [0.47, 5.0]}), 'newmec-3'], [({'t2.103.114.308': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.308': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.308': [0.752, 5.0], 't1.103.114.308': [0.499, 6.667]}), 'newmec-3'], [({'t3.101.114.309': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.309': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.309': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.309': [0.514, 5.0], 't5.101.114.309': [0.515, 5.0], 't4.101.114.309': [0.42, 10.0]}), 'newmec-1'], [({'t5.103.114.310': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.310': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.310': [0.444, 5.0], 't3.103.114.310': [0.794, 5.0]}), 'newmec-3'], [({'t3.103.114.311': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.311': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.311': [0.509, 5.0], 't1.103.114.311': [0.422, 6.667]}), 'newmec-3'], [({'t1.102.114.312': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.312': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.312': [0.717, 6.667], 't3.102.114.312': [0.741, 5.0]}), 'newmec-2'], [({'t3.101.114.313': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.313': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.313': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.313': [0.517, 5.0], 't1.101.114.313': [0.552, 6.667], 't2.101.114.313': [0.654, 5.0]}), 'newmec-1'], [({'t3.156.114.314': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.314': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.156.114.314': [0.633, 5.0], 't2.156.114.314': [0.786, 5.0]}), 'osboxes-0'], [({'t1.102.114.315': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.315': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.315': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.315': [0.552, 6.667], 't5.102.114.315': [0.716, 5.0], 't2.102.114.315': [0.507, 5.0]}), 'newmec-2'], [({'t3.101.114.316': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.316': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.316': [0.486, 5.0], 't5.101.114.316': [0.669, 5.0]}), 'newmec-1'], [({'t3.103.114.317': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.317': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.317': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.317': [0.634, 5.0], 't4.103.114.317': [0.474, 10.0], 't2.103.114.317': [0.773, 5.0]}), 'newmec-3'], [({'t2.101.114.318': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.318': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.318': [0.419, 5.0], 't5.101.114.318': [0.701, 5.0]}), 'newmec-1'], [({'t3.103.114.319': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.319': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.319': [0.626, 5.0], 't2.103.114.319': [0.737, 5.0]}), 'newmec-3'], [({'t5.103.114.320': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.320': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.320': [0.787, 5.0], 't1.103.114.320': [0.449, 6.667]}), 'newmec-3'], [({'t4.101.114.321': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.321': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.321': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.321': [0.442, 10.0], 't2.101.114.321': [0.556, 5.0], 't3.101.114.321': [0.653, 5.0]}), 'newmec-1'], [({'t5.156.114.322': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.322': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.322': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.322': [0.576, 5.0], 't2.156.114.322': [0.479, 5.0], 't3.156.114.322': [0.411, 5.0]}), 'osboxes-0'], [({'t4.103.114.323': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.323': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.323': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.323': [0.58, 10.0], 't2.103.114.323': [0.611, 5.0], 't3.103.114.323': [0.673, 5.0]}), 'newmec-3'], [({'t5.103.114.324': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.324': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.324': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.324': [0.493, 5.0], 't4.103.114.324': [0.547, 10.0], 't2.103.114.324': [0.635, 5.0]}), 'newmec-3'], [({'t4.103.114.325': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.325': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.325': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.325': [0.615, 10.0], 't1.103.114.325': [0.568, 6.667], 't2.103.114.325': [0.56, 5.0]}), 'newmec-3'], [({'t4.103.114.326': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.326': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.326': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.326': [0.637, 10.0], 't2.103.114.326': [0.457, 5.0], 't1.103.114.326': [0.781, 6.667]}), 'newmec-3'], [({'t1.101.114.327': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.327': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.327': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.327': [0.617, 6.667], 't3.101.114.327': [0.503, 5.0], 't5.101.114.327': [0.496, 5.0]}), 'newmec-1'], [({'t3.156.114.328': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.328': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.328': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.328': [0.632, 5.0], 't4.156.114.328': [0.511, 10.0], 't5.156.114.328': [0.528, 5.0]}), 'osboxes-0'], [({'t2.103.114.329': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.329': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.329': [0.561, 5.0], 't1.103.114.329': [0.573, 6.667]}), 'newmec-3'], [({'t2.103.114.330': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.330': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.330': [0.601, 5.0], 't1.103.114.330': [0.461, 6.667]}), 'newmec-3'], [({'t4.101.114.331': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.331': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.331': [0.663, 10.0], 't3.101.114.331': [0.591, 5.0]}), 'newmec-1'], [({'t5.102.114.332': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.332': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.332': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.332': [0.789, 5.0], 't3.102.114.332': [0.696, 5.0], 't2.102.114.332': [0.488, 5.0]}), 'newmec-2'], [({'t1.101.114.333': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.333': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.333': [0.753, 6.667], 't4.101.114.333': [0.771, 10.0]}), 'newmec-1'], [({'t5.103.114.334': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.334': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.334': [0.717, 5.0], 't2.103.114.334': [0.494, 5.0]}), 'newmec-3'], [({'t4.101.114.335': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.335': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.335': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.335': [0.455, 10.0], 't2.101.114.335': [0.752, 5.0], 't5.101.114.335': [0.566, 5.0]}), 'newmec-1'], [({'t2.101.114.336': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.336': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.336': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.336': [0.684, 5.0], 't5.101.114.336': [0.43, 5.0], 't3.101.114.336': [0.54, 5.0]}), 'newmec-1'], [({'t5.101.114.337': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.337': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.337': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.337': [0.599, 5.0], 't1.101.114.337': [0.713, 6.667], 't3.101.114.337': [0.502, 5.0]}), 'newmec-1'], [({'t3.101.114.338': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.338': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.338': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.338': [0.556, 5.0], 't5.101.114.338': [0.478, 5.0], 't2.101.114.338': [0.639, 5.0]}), 'newmec-1'], [({'t5.156.114.339': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.339': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.339': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.156.114.339': [0.515, 5.0], 't3.156.114.339': [0.769, 5.0], 't1.156.114.339': [0.535, 6.667]}), 'osboxes-0'], [({'t2.101.114.340': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.340': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.340': [0.474, 5.0], 't5.101.114.340': [0.543, 5.0]}), 'newmec-1'], [({'t5.103.114.341': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.341': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.341': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.341': [0.539, 5.0], 't4.103.114.341': [0.761, 10.0], 't1.103.114.341': [0.63, 6.667]}), 'newmec-3'], [({'t3.156.114.342': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.342': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.342': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.342': [0.555, 5.0], 't2.156.114.342': [0.49, 5.0], 't4.156.114.342': [0.424, 10.0]}), 'osboxes-0'], [({'t3.103.114.343': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.343': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.343': [0.651, 5.0], 't4.103.114.343': [0.417, 10.0]}), 'newmec-3'], [({'t4.101.114.344': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.344': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.344': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.344': [0.713, 10.0], 't5.101.114.344': [0.636, 5.0], 't1.101.114.344': [0.672, 6.667]}), 'newmec-1'], [({'t5.103.114.345': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.345': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.345': [0.658, 5.0], 't1.103.114.345': [0.609, 6.667]}), 'newmec-3'], [({'t2.101.114.346': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.346': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.346': [0.548, 5.0], 't4.101.114.346': [0.715, 10.0]}), 'newmec-1'], [({'t4.101.114.347': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.347': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.347': [0.411, 10.0], 't1.101.114.347': [0.622, 6.667]}), 'newmec-1'], [({'t2.101.114.348': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.348': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.348': [0.74, 5.0], 't5.101.114.348': [0.456, 5.0]}), 'newmec-1'], [({'t5.103.114.349': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.349': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.349': [0.572, 5.0], 't2.103.114.349': [0.764, 5.0]}), 'newmec-3'], [({'t5.103.114.350': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.350': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.350': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.350': [0.788, 5.0], 't4.103.114.350': [0.543, 10.0], 't3.103.114.350': [0.643, 5.0]}), 'newmec-3'], [({'t3.101.114.351': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.351': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.351': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.351': [0.499, 5.0], 't2.101.114.351': [0.604, 5.0], 't4.101.114.351': [0.589, 10.0]}), 'newmec-1'], [({'t2.156.114.352': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.352': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.352': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.352': [0.545, 5.0], 't3.156.114.352': [0.402, 5.0], 't5.156.114.352': [0.711, 5.0]}), 'osboxes-0'], [({'t3.103.114.353': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.353': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.353': [0.757, 5.0], 't5.103.114.353': [0.58, 5.0]}), 'newmec-3'], [({'t3.101.114.354': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.354': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.354': [0.455, 5.0], 't2.101.114.354': [0.607, 5.0]}), 'newmec-1'], [({'t3.102.114.355': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.355': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.355': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.355': [0.537, 5.0], 't5.102.114.355': [0.794, 5.0], 't2.102.114.355': [0.459, 5.0]}), 'newmec-2'], [({'t5.101.114.356': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.356': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.356': [0.776, 5.0], 't3.101.114.356': [0.521, 5.0]}), 'newmec-1'], [({'t4.102.114.357': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.357': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.357': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.357': [0.605, 10.0], 't3.102.114.357': [0.701, 5.0], 't2.102.114.357': [0.415, 5.0]}), 'newmec-2'], [({'t4.102.114.358': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.358': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.358': [0.595, 10.0], 't2.102.114.358': [0.59, 5.0]}), 'newmec-2'], [({'t1.103.114.359': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.359': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.359': [0.694, 6.667], 't3.103.114.359': [0.41, 5.0]}), 'newmec-3'], [({'t2.103.114.360': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.360': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.360': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.360': [0.523, 5.0], 't3.103.114.360': [0.54, 5.0], 't5.103.114.360': [0.662, 5.0]}), 'newmec-3'], [({'t3.156.114.361': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.361': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.361': [0.56, 5.0], 't4.156.114.361': [0.43, 10.0]}), 'osboxes-0'], [({'t3.103.114.362': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.362': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.362': [0.489, 5.0], 't5.103.114.362': [0.471, 5.0]}), 'newmec-3'], [({'t2.103.114.363': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.363': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.363': [0.479, 5.0], 't5.103.114.363': [0.539, 5.0]}), 'newmec-3'], [({'t3.101.114.364': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.364': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.364': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.364': [0.69, 5.0], 't4.101.114.364': [0.473, 10.0], 't1.101.114.364': [0.428, 6.667]}), 'newmec-1'], [({'t2.101.114.365': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.365': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.365': [0.758, 5.0], 't4.101.114.365': [0.582, 10.0]}), 'newmec-1'], [({'t3.102.114.366': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.366': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.366': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.366': [0.468, 5.0], 't1.102.114.366': [0.41, 6.667], 't2.102.114.366': [0.54, 5.0]}), 'newmec-2'], [({'t5.102.114.367': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.367': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.367': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.367': [0.619, 5.0], 't1.102.114.367': [0.719, 6.667], 't4.102.114.367': [0.416, 10.0]}), 'newmec-2'], [({'t1.103.114.368': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.368': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.368': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.368': [0.653, 6.667], 't2.103.114.368': [0.789, 5.0], 't4.103.114.368': [0.763, 10.0]}), 'newmec-3'], [({'t5.103.114.369': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.369': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.369': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.369': [0.663, 5.0], 't4.103.114.369': [0.441, 10.0], 't1.103.114.369': [0.693, 6.667]}), 'newmec-3'], [({'t1.101.114.370': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.370': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.370': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.370': [0.559, 6.667], 't3.101.114.370': [0.598, 5.0], 't2.101.114.370': [0.569, 5.0]}), 'newmec-1'], [({'t1.101.114.371': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.371': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.371': [0.544, 6.667], 't4.101.114.371': [0.425, 10.0]}), 'newmec-1'], [({'t2.101.114.372': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.372': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.372': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.372': [0.641, 5.0], 't5.101.114.372': [0.614, 5.0], 't3.101.114.372': [0.612, 5.0]}), 'newmec-1'], [({'t5.103.114.373': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.373': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.373': [0.416, 5.0], 't2.103.114.373': [0.547, 5.0]}), 'newmec-3'], [({'t2.156.114.374': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.374': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.374': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.374': [0.687, 5.0], 't3.156.114.374': [0.794, 5.0], 't5.156.114.374': [0.437, 5.0]}), 'osboxes-0'], [({'t3.103.114.375': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.375': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.375': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.375': [0.62, 5.0], 't4.103.114.375': [0.774, 10.0], 't5.103.114.375': [0.488, 5.0]}), 'newmec-3'], [({'t5.101.114.376': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.376': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.376': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.376': [0.402, 5.0], 't1.101.114.376': [0.752, 6.667], 't2.101.114.376': [0.697, 5.0]}), 'newmec-1'], [({'t5.102.114.377': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.377': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.377': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.377': [0.663, 5.0], 't1.102.114.377': [0.711, 6.667], 't4.102.114.377': [0.523, 10.0]}), 'newmec-2'], [({'t5.103.114.378': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.378': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.378': [0.798, 5.0], 't2.103.114.378': [0.526, 5.0]}), 'newmec-3'], [({'t2.101.114.379': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.379': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.379': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.379': [0.536, 5.0], 't4.101.114.379': [0.45, 10.0], 't3.101.114.379': [0.403, 5.0]}), 'newmec-1'], [({'t1.156.114.380': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.156.114.380': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.380': [0.731, 6.667], 't2.156.114.380': [0.624, 5.0]}), 'osboxes-0'], [({'t5.101.114.381': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.381': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.381': [0.793, 5.0], 't2.101.114.381': [0.542, 5.0]}), 'newmec-1'], [({'t1.103.114.382': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.382': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.382': [0.754, 6.667], 't2.103.114.382': [0.677, 5.0]}), 'newmec-3'], [({'t4.101.114.383': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.383': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.383': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.383': [0.769, 10.0], 't2.101.114.383': [0.44, 5.0], 't5.101.114.383': [0.675, 5.0]}), 'newmec-1'], [({'t4.101.114.384': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.384': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.384': [0.404, 10.0], 't3.101.114.384': [0.722, 5.0]}), 'newmec-1'], [({'t3.103.114.385': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.385': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.385': [0.435, 5.0], 't2.103.114.385': [0.405, 5.0]}), 'newmec-3'], [({'t2.101.114.386': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.386': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.386': [0.433, 5.0], 't4.101.114.386': [0.614, 10.0]}), 'newmec-1'], [({'t3.101.114.387': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.387': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.387': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.387': [0.555, 5.0], 't1.101.114.387': [0.415, 6.667], 't2.101.114.387': [0.516, 5.0]}), 'newmec-1'], [({'t2.103.114.388': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.388': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.388': [0.643, 5.0], 't4.103.114.388': [0.6, 10.0]}), 'newmec-3'], [({'t5.101.114.389': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.389': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.389': [0.732, 5.0], 't3.101.114.389': [0.716, 5.0]}), 'newmec-1'], [({'t1.101.114.390': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.390': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.390': [0.796, 6.667], 't2.101.114.390': [0.718, 5.0]}), 'newmec-1'], [({'t2.103.114.391': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.391': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.391': [0.718, 5.0], 't4.103.114.391': [0.741, 10.0]}), 'newmec-3'], [({'t4.101.114.392': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.392': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.392': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.392': [0.686, 10.0], 't3.101.114.392': [0.582, 5.0], 't5.101.114.392': [0.649, 5.0]}), 'newmec-1'], [({'t4.101.114.393': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.393': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.393': [0.734, 10.0], 't3.101.114.393': [0.417, 5.0]}), 'newmec-1'], [({'t2.103.114.394': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.394': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.394': [0.721, 5.0], 't1.103.114.394': [0.629, 6.667]}), 'newmec-3'], [({'t2.101.114.395': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.395': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.395': [0.441, 5.0], 't1.101.114.395': [0.682, 6.667]}), 'newmec-1'], [({'t1.101.114.396': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.396': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.396': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.396': [0.415, 6.667], 't3.101.114.396': [0.513, 5.0], 't4.101.114.396': [0.468, 10.0]}), 'newmec-1'], [({'t5.103.114.397': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.397': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.397': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.397': [0.494, 5.0], 't4.103.114.397': [0.501, 10.0], 't3.103.114.397': [0.532, 5.0]}), 'newmec-3'], [({'t5.101.114.398': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.398': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.398': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.398': [0.664, 5.0], 't2.101.114.398': [0.742, 5.0], 't1.101.114.398': [0.417, 6.667]}), 'newmec-1'], [({'t1.103.114.399': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.399': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.399': [0.466, 6.667], 't3.103.114.399': [0.643, 5.0]}), 'newmec-3'], [({'t4.103.114.400': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.400': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.400': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.400': [0.598, 10.0], 't1.103.114.400': [0.574, 6.667], 't2.103.114.400': [0.715, 5.0]}), 'newmec-3'], [({'t4.101.114.401': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.401': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.401': [0.72, 10.0], 't1.101.114.401': [0.776, 6.667]}), 'newmec-1'], [({'t5.103.114.402': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.402': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.402': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.402': [0.625, 5.0], 't3.103.114.402': [0.531, 5.0], 't4.103.114.402': [0.578, 10.0]}), 'newmec-3'], [({'t3.101.114.403': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.403': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.403': [0.459, 5.0], 't4.101.114.403': [0.737, 10.0]}), 'newmec-1'], [({'t3.102.114.404': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.404': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.404': [0.795, 5.0], 't4.102.114.404': [0.524, 10.0]}), 'newmec-2'], [({'t2.156.114.405': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.405': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.405': [0.483, 5.0], 't4.156.114.405': [0.523, 10.0]}), 'osboxes-0'], [({'t1.103.114.406': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.406': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.406': [0.492, 6.667], 't2.103.114.406': [0.675, 5.0]}), 'newmec-3'], [({'t1.103.114.407': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.407': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.407': [0.759, 6.667], 't5.103.114.407': [0.528, 5.0]}), 'newmec-3'], [({'t2.156.114.408': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.408': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.408': [0.469, 5.0], 't3.156.114.408': [0.71, 5.0]}), 'osboxes-0'], [({'t3.101.114.409': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.409': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.409': [0.554, 5.0], 't2.101.114.409': [0.754, 5.0]}), 'newmec-1'], [({'t4.101.114.410': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.410': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.410': [0.651, 10.0], 't5.101.114.410': [0.423, 5.0]}), 'newmec-1'], [({'t1.102.114.411': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.411': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.411': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.411': [0.687, 6.667], 't5.102.114.411': [0.796, 5.0], 't2.102.114.411': [0.589, 5.0]}), 'newmec-2'], [({'t1.101.114.412': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.412': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.412': [0.668, 6.667], 't4.101.114.412': [0.62, 10.0]}), 'newmec-1'], [({'t4.101.114.413': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.413': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.413': [0.794, 10.0], 't2.101.114.413': [0.648, 5.0]}), 'newmec-1'], [({'t1.101.114.414': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.414': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.414': [0.65, 6.667], 't2.101.114.414': [0.643, 5.0]}), 'newmec-1'], [({'t5.102.114.415': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.415': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.415': [0.579, 5.0], 't3.102.114.415': [0.68, 5.0]}), 'newmec-2'], [({'t2.101.114.416': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.416': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.416': [0.795, 5.0], 't5.101.114.416': [0.403, 5.0]}), 'newmec-1'], [({'t5.103.114.417': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.417': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.417': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.417': [0.706, 5.0], 't2.103.114.417': [0.776, 5.0], 't1.103.114.417': [0.69, 6.667]}), 'newmec-3'], [({'t4.102.114.418': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.418': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.418': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.418': [0.588, 10.0], 't2.102.114.418': [0.556, 5.0], 't5.102.114.418': [0.744, 5.0]}), 'newmec-2'], [({'t2.103.114.419': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.419': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.419': [0.534, 5.0], 't3.103.114.419': [0.784, 5.0]}), 'newmec-3'], [({'t3.103.114.420': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.420': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.420': [0.749, 5.0], 't5.103.114.420': [0.467, 5.0]}), 'newmec-3'], [({'t4.103.114.421': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.421': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.421': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.421': [0.571, 10.0], 't2.103.114.421': [0.545, 5.0], 't5.103.114.421': [0.517, 5.0]}), 'newmec-3'], [({'t4.101.114.422': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.422': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.422': [0.511, 10.0], 't3.101.114.422': [0.59, 5.0]}), 'newmec-1'], [({'t5.103.114.423': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.423': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.423': [0.495, 5.0], 't2.103.114.423': [0.5, 5.0]}), 'newmec-3'], [({'t4.103.114.424': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.424': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.424': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.424': [0.773, 10.0], 't2.103.114.424': [0.715, 5.0], 't3.103.114.424': [0.757, 5.0]}), 'newmec-3'], [({'t3.102.114.425': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.425': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.425': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.425': [0.606, 5.0], 't2.102.114.425': [0.636, 5.0], 't1.102.114.425': [0.543, 6.667]}), 'newmec-2'], [({'t5.101.114.426': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.426': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.426': [0.503, 5.0], 't4.101.114.426': [0.478, 10.0]}), 'newmec-1'], [({'t5.101.114.427': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.427': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.427': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.427': [0.743, 5.0], 't2.101.114.427': [0.597, 5.0], 't1.101.114.427': [0.66, 6.667]}), 'newmec-1'], [({'t4.156.114.428': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.428': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.428': [0.775, 10.0], 't3.156.114.428': [0.428, 5.0]}), 'osboxes-0'], [({'t2.101.114.429': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.429': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.429': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.429': [0.668, 5.0], 't4.101.114.429': [0.449, 10.0], 't5.101.114.429': [0.789, 5.0]}), 'newmec-1'], [({'t2.101.114.430': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.430': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.430': [0.596, 5.0], 't3.101.114.430': [0.722, 5.0]}), 'newmec-1'], [({'t4.101.114.431': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.431': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.431': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.431': [0.592, 10.0], 't5.101.114.431': [0.795, 5.0], 't1.101.114.431': [0.719, 6.667]}), 'newmec-1'], [({'t2.103.114.432': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.432': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.432': [0.623, 5.0], 't5.103.114.432': [0.594, 5.0]}), 'newmec-3'], [({'t1.103.114.433': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.433': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.433': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.433': [0.697, 6.667], 't2.103.114.433': [0.512, 5.0], 't3.103.114.433': [0.502, 5.0]}), 'newmec-3'], [({'t5.103.114.434': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.434': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.434': [0.506, 5.0], 't2.103.114.434': [0.445, 5.0]}), 'newmec-3'], [({'t5.101.114.435': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.435': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.435': [0.53, 5.0], 't4.101.114.435': [0.475, 10.0]}), 'newmec-1'], [({'t3.103.114.436': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.436': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.436': [0.533, 5.0], 't5.103.114.436': [0.771, 5.0]}), 'newmec-3'], [({'t2.156.114.437': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.437': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.437': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.437': [0.617, 5.0], 't1.156.114.437': [0.455, 6.667], 't3.156.114.437': [0.73, 5.0]}), 'osboxes-0'], [({'t5.156.114.438': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.438': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.438': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.438': [0.692, 5.0], 't4.156.114.438': [0.494, 10.0], 't2.156.114.438': [0.563, 5.0]}), 'osboxes-0'], [({'t2.156.114.439': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.439': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.439': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.439': [0.47, 5.0], 't1.156.114.439': [0.671, 6.667], 't3.156.114.439': [0.663, 5.0]}), 'osboxes-0'], [({'t2.102.114.440': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.440': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.440': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.440': [0.671, 5.0], 't4.102.114.440': [0.76, 10.0], 't5.102.114.440': [0.737, 5.0]}), 'newmec-2'], [({'t4.102.114.441': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.441': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.441': [0.583, 10.0], 't2.102.114.441': [0.565, 5.0]}), 'newmec-2'], [({'t2.102.114.442': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.442': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.442': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.442': [0.435, 5.0], 't1.102.114.442': [0.71, 6.667], 't3.102.114.442': [0.708, 5.0]}), 'newmec-2'], [({'t2.103.114.443': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.443': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.443': [0.509, 5.0], 't4.103.114.443': [0.691, 10.0]}), 'newmec-3'], [({'t3.103.114.444': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.444': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.444': [0.497, 5.0], 't2.103.114.444': [0.782, 5.0]}), 'newmec-3'], [({'t3.101.114.445': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.445': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.445': [0.658, 5.0], 't5.101.114.445': [0.406, 5.0]}), 'newmec-1'], [({'t2.101.114.446': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.446': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.446': [0.581, 5.0], 't4.101.114.446': [0.772, 10.0]}), 'newmec-1'], [({'t1.156.114.447': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.447': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.447': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.447': [0.744, 6.667], 't4.156.114.447': [0.532, 10.0], 't2.156.114.447': [0.413, 5.0]}), 'osboxes-0'], [({'t5.101.114.448': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.448': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.448': [0.48, 5.0], 't3.101.114.448': [0.455, 5.0]}), 'newmec-1'], [({'t1.101.114.449': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.449': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.449': [0.619, 6.667], 't4.101.114.449': [0.656, 10.0]}), 'newmec-1'], [({'t4.101.114.450': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.450': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.450': [0.47, 10.0], 't3.101.114.450': [0.679, 5.0]}), 'newmec-1'], [({'t5.103.114.451': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.451': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.451': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.451': [0.776, 5.0], 't4.103.114.451': [0.43, 10.0], 't1.103.114.451': [0.79, 6.667]}), 'newmec-3'], [({'t5.103.114.452': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.452': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.452': [0.713, 5.0], 't2.103.114.452': [0.572, 5.0]}), 'newmec-3'], [({'t3.103.114.453': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.453': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.453': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.453': [0.499, 5.0], 't1.103.114.453': [0.615, 6.667], 't2.103.114.453': [0.757, 5.0]}), 'newmec-3'], [({'t2.102.114.454': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.454': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.454': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.454': [0.663, 5.0], 't3.102.114.454': [0.506, 5.0], 't1.102.114.454': [0.683, 6.667]}), 'newmec-2'], [({'t4.103.114.455': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.455': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.455': [0.582, 10.0], 't2.103.114.455': [0.577, 5.0]}), 'newmec-3'], [({'t4.103.114.456': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.456': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.456': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.456': [0.625, 10.0], 't2.103.114.456': [0.577, 5.0], 't5.103.114.456': [0.534, 5.0]}), 'newmec-3'], [({'t5.103.114.457': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.457': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.457': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.457': [0.626, 5.0], 't1.103.114.457': [0.7, 6.667], 't4.103.114.457': [0.424, 10.0]}), 'newmec-3'], [({'t5.103.114.458': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.458': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.458': [0.675, 5.0], 't4.103.114.458': [0.406, 10.0]}), 'newmec-3'], [({'t2.156.114.459': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.459': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.459': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.459': [0.424, 5.0], 't3.156.114.459': [0.723, 5.0], 't4.156.114.459': [0.482, 10.0]}), 'osboxes-0'], [({'t2.103.114.460': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.460': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.460': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.460': [0.74, 5.0], 't5.103.114.460': [0.496, 5.0], 't1.103.114.460': [0.763, 6.667]}), 'newmec-3'], [({'t3.156.114.461': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.461': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.461': [0.583, 5.0], 't4.156.114.461': [0.494, 10.0]}), 'osboxes-0'], [({'t5.102.114.462': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.462': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.462': [0.587, 5.0], 't2.102.114.462': [0.623, 5.0]}), 'newmec-2'], [({'t5.103.114.463': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.463': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.463': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.463': [0.556, 5.0], 't1.103.114.463': [0.584, 6.667], 't2.103.114.463': [0.549, 5.0]}), 'newmec-3'], [({'t4.102.114.464': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.464': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.464': [0.783, 10.0], 't3.102.114.464': [0.457, 5.0]}), 'newmec-2'], [({'t3.101.114.465': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.465': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.465': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.465': [0.757, 5.0], 't4.101.114.465': [0.641, 10.0], 't5.101.114.465': [0.558, 5.0]}), 'newmec-1'], [({'t4.156.114.466': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.466': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.466': [0.476, 10.0], 't5.156.114.466': [0.72, 5.0]}), 'osboxes-0'], [({'t4.101.114.467': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.467': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.467': [0.424, 10.0], 't3.101.114.467': [0.521, 5.0]}), 'newmec-1'], [({'t4.101.114.468': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.468': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.468': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.468': [0.783, 10.0], 't2.101.114.468': [0.722, 5.0], 't3.101.114.468': [0.493, 5.0]}), 'newmec-1'], [({'t1.103.114.469': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.469': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.469': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.469': [0.531, 6.667], 't4.103.114.469': [0.694, 10.0], 't5.103.114.469': [0.508, 5.0]}), 'newmec-3'], [({'t4.103.114.470': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.470': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.470': [0.513, 10.0], 't3.103.114.470': [0.681, 5.0]}), 'newmec-3'], [({'t5.103.114.471': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.471': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.471': [0.488, 5.0], 't1.103.114.471': [0.751, 6.667]}), 'newmec-3'], [({'t3.103.114.472': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.472': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.472': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.472': [0.517, 5.0], 't5.103.114.472': [0.545, 5.0], 't1.103.114.472': [0.482, 6.667]}), 'newmec-3'], [({'t5.101.114.473': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.473': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.473': [0.73, 5.0], 't2.101.114.473': [0.589, 5.0]}), 'newmec-1'], [({'t5.103.114.474': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.474': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.474': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.474': [0.74, 5.0], 't3.103.114.474': [0.651, 5.0], 't4.103.114.474': [0.646, 10.0]}), 'newmec-3'], [({'t3.103.114.475': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.475': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.475': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.475': [0.408, 5.0], 't5.103.114.475': [0.503, 5.0], 't2.103.114.475': [0.452, 5.0]}), 'newmec-3'], [({'t3.101.114.476': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.476': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.476': [0.472, 5.0], 't5.101.114.476': [0.517, 5.0]}), 'newmec-1'], [({'t5.103.114.477': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.477': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.477': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.477': [0.702, 5.0], 't4.103.114.477': [0.599, 10.0], 't3.103.114.477': [0.519, 5.0]}), 'newmec-3'], [({'t1.103.114.478': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.478': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.478': [0.62, 6.667], 't2.103.114.478': [0.503, 5.0]}), 'newmec-3'], [({'t1.156.114.479': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.479': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.479': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.156.114.479': [0.786, 6.667], 't3.156.114.479': [0.565, 5.0], 't4.156.114.479': [0.753, 10.0]}), 'osboxes-0'], [({'t5.103.114.480': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.480': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.480': [0.665, 5.0], 't3.103.114.480': [0.429, 5.0]}), 'newmec-3'], [({'t1.102.114.481': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.481': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.481': [0.503, 6.667], 't2.102.114.481': [0.653, 5.0]}), 'newmec-2'], [({'t1.103.114.482': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.482': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.482': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.482': [0.425, 6.667], 't4.103.114.482': [0.586, 10.0], 't2.103.114.482': [0.608, 5.0]}), 'newmec-3'], [({'t1.103.114.483': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.483': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.483': [0.485, 6.667], 't4.103.114.483': [0.604, 10.0]}), 'newmec-3'], [({'t3.101.114.484': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.484': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.484': [0.774, 5.0], 't2.101.114.484': [0.438, 5.0]}), 'newmec-1'], [({'t5.103.114.485': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.485': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.485': [0.427, 5.0], 't2.103.114.485': [0.702, 5.0]}), 'newmec-3'], [({'t2.103.114.486': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.486': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.486': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.486': [0.602, 5.0], 't4.103.114.486': [0.549, 10.0], 't5.103.114.486': [0.677, 5.0]}), 'newmec-3'], [({'t5.101.114.487': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.487': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.487': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.487': [0.684, 5.0], 't2.101.114.487': [0.713, 5.0], 't4.101.114.487': [0.691, 10.0]}), 'newmec-1'], [({'t2.103.114.488': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.488': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.488': [0.434, 5.0], 't1.103.114.488': [0.712, 6.667]}), 'newmec-3'], [({'t1.103.114.489': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.489': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.489': [0.676, 6.667], 't2.103.114.489': [0.697, 5.0]}), 'newmec-3'], [({'t2.156.114.490': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.490': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.490': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.490': [0.585, 5.0], 't4.156.114.490': [0.437, 10.0], 't5.156.114.490': [0.485, 5.0]}), 'osboxes-0'], [({'t5.101.114.491': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.491': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.491': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.491': [0.705, 5.0], 't4.101.114.491': [0.751, 10.0], 't2.101.114.491': [0.512, 5.0]}), 'newmec-1'], [({'t4.103.114.492': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.492': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.492': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.492': [0.509, 10.0], 't5.103.114.492': [0.552, 5.0], 't2.103.114.492': [0.745, 5.0]}), 'newmec-3'], [({'t4.101.114.493': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.493': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.493': [0.607, 10.0], 't1.101.114.493': [0.406, 6.667]}), 'newmec-1'], [({'t2.103.114.494': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.494': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.494': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.494': [0.515, 5.0], 't4.103.114.494': [0.69, 10.0], 't3.103.114.494': [0.552, 5.0]}), 'newmec-3'], [({'t2.103.114.495': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.495': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.495': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.495': [0.783, 5.0], 't3.103.114.495': [0.408, 5.0], 't4.103.114.495': [0.422, 10.0]}), 'newmec-3'], [({'t3.103.114.496': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.496': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.496': [0.469, 5.0], 't4.103.114.496': [0.764, 10.0]}), 'newmec-3'], [({'t4.102.114.497': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.497': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.497': [0.771, 10.0], 't5.102.114.497': [0.411, 5.0]}), 'newmec-2'], [({'t1.101.114.498': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.498': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.498': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.498': [0.504, 6.667], 't5.101.114.498': [0.644, 5.0], 't2.101.114.498': [0.496, 5.0]}), 'newmec-1'], [({'t3.101.114.499': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.499': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.499': [0.671, 5.0], 't2.101.114.499': [0.645, 5.0]}), 'newmec-1'], [({'t3.102.114.500': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.500': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.500': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.500': [0.66, 5.0], 't2.102.114.500': [0.582, 5.0], 't5.102.114.500': [0.549, 5.0]}), 'newmec-2'], [({'t4.102.114.501': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.501': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.501': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.501': [0.52, 10.0], 't5.102.114.501': [0.471, 5.0], 't2.102.114.501': [0.608, 5.0]}), 'newmec-2'], [({'t2.103.114.502': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.502': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.502': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.502': [0.789, 5.0], 't3.103.114.502': [0.678, 5.0], 't4.103.114.502': [0.631, 10.0]}), 'newmec-3'], [({'t5.156.114.503': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.503': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.503': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.156.114.503': [0.537, 5.0], 't4.156.114.503': [0.583, 10.0], 't1.156.114.503': [0.467, 6.667]}), 'osboxes-0'], [({'t2.102.114.504': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.504': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.504': [0.407, 5.0], 't5.102.114.504': [0.692, 5.0]}), 'newmec-2'], [({'t5.101.114.505': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.505': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.505': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.505': [0.436, 5.0], 't2.101.114.505': [0.549, 5.0], 't4.101.114.505': [0.698, 10.0]}), 'newmec-1'], [({'t2.101.114.506': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.506': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.506': [0.424, 5.0], 't5.101.114.506': [0.777, 5.0]}), 'newmec-1'], [({'t4.103.114.507': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.507': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.507': [0.63, 10.0], 't2.103.114.507': [0.758, 5.0]}), 'newmec-3'], [({'t4.101.114.508': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.508': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.508': [0.635, 10.0], 't3.101.114.508': [0.457, 5.0]}), 'newmec-1'], [({'t3.156.114.509': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.509': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.509': [0.602, 5.0], 't5.156.114.509': [0.688, 5.0]}), 'osboxes-0'], [({'t3.101.114.510': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.510': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.510': [0.468, 5.0], 't2.101.114.510': [0.718, 5.0]}), 'newmec-1'], [({'t2.102.114.511': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.511': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.511': [0.493, 5.0], 't1.102.114.511': [0.487, 6.667]}), 'newmec-2'], [({'t4.101.114.512': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.512': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.512': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.512': [0.521, 10.0], 't1.101.114.512': [0.427, 6.667], 't5.101.114.512': [0.598, 5.0]}), 'newmec-1'], [({'t2.103.114.513': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.513': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.513': [0.723, 5.0], 't4.103.114.513': [0.487, 10.0]}), 'newmec-3'], [({'t1.103.114.514': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.514': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.514': [0.448, 6.667], 't4.103.114.514': [0.517, 10.0]}), 'newmec-3'], [({'t4.103.114.515': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.515': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.515': [0.489, 10.0], 't2.103.114.515': [0.492, 5.0]}), 'newmec-3'], [({'t1.156.114.516': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.156.114.516': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.516': [0.718, 6.667], 't2.156.114.516': [0.414, 5.0]}), 'osboxes-0'], [({'t5.103.114.517': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.517': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.517': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.517': [0.568, 5.0], 't2.103.114.517': [0.733, 5.0], 't3.103.114.517': [0.55, 5.0]}), 'newmec-3'], [({'t2.103.114.518': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.518': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.518': [0.665, 5.0], 't1.103.114.518': [0.694, 6.667]}), 'newmec-3'], [({'t2.101.114.519': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.519': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.519': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.519': [0.551, 5.0], 't3.101.114.519': [0.442, 5.0], 't1.101.114.519': [0.417, 6.667]}), 'newmec-1'], [({'t5.101.114.520': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.520': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.520': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.520': [0.726, 5.0], 't1.101.114.520': [0.652, 6.667], 't3.101.114.520': [0.534, 5.0]}), 'newmec-1'], [({'t3.103.114.521': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.521': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.521': [0.656, 5.0], 't2.103.114.521': [0.4, 5.0]}), 'newmec-3'], [({'t3.101.114.522': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.522': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.522': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.522': [0.739, 5.0], 't5.101.114.522': [0.699, 5.0], 't2.101.114.522': [0.416, 5.0]}), 'newmec-1'], [({'t5.102.114.523': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.523': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.523': [0.738, 5.0], 't3.102.114.523': [0.403, 5.0]}), 'newmec-2'], [({'t1.103.114.524': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.524': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.524': [0.776, 6.667], 't5.103.114.524': [0.635, 5.0]}), 'newmec-3'], [({'t3.103.114.525': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.525': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.525': [0.566, 5.0], 't4.103.114.525': [0.409, 10.0]}), 'newmec-3'], [({'t3.103.114.526': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.526': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.526': [0.763, 5.0], 't2.103.114.526': [0.576, 5.0]}), 'newmec-3'], [({'t1.101.114.527': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.527': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.527': [0.546, 6.667], 't5.101.114.527': [0.477, 5.0]}), 'newmec-1'], [({'t4.103.114.528': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.528': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.528': [0.611, 10.0], 't2.103.114.528': [0.599, 5.0]}), 'newmec-3'], [({'t1.101.114.529': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.529': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.529': [0.437, 6.667], 't5.101.114.529': [0.403, 5.0]}), 'newmec-1'], [({'t3.103.114.530': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.530': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.530': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.530': [0.496, 5.0], 't5.103.114.530': [0.676, 5.0], 't4.103.114.530': [0.703, 10.0]}), 'newmec-3'], [({'t2.103.114.531': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.531': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.531': [0.436, 5.0], 't3.103.114.531': [0.511, 5.0]}), 'newmec-3'], [({'t4.156.114.532': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.532': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.532': [0.452, 10.0], 't1.156.114.532': [0.695, 6.667]}), 'osboxes-0'], [({'t2.103.114.533': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.533': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.533': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.533': [0.682, 5.0], 't3.103.114.533': [0.676, 5.0], 't4.103.114.533': [0.472, 10.0]}), 'newmec-3'], [({'t4.103.114.534': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.534': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.534': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.534': [0.411, 10.0], 't2.103.114.534': [0.451, 5.0], 't3.103.114.534': [0.562, 5.0]}), 'newmec-3'], [({'t3.103.114.535': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.535': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.535': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.535': [0.426, 5.0], 't2.103.114.535': [0.675, 5.0], 't4.103.114.535': [0.731, 10.0]}), 'newmec-3'], [({'t3.102.114.536': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.536': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.536': [0.537, 5.0], 't2.102.114.536': [0.715, 5.0]}), 'newmec-2'], [({'t3.101.114.537': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.537': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.537': [0.608, 5.0], 't5.101.114.537': [0.669, 5.0]}), 'newmec-1'], [({'t2.101.114.538': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.538': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.538': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.538': [0.62, 5.0], 't1.101.114.538': [0.645, 6.667], 't5.101.114.538': [0.517, 5.0]}), 'newmec-1'], [({'t4.101.114.539': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.539': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.539': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.539': [0.578, 10.0], 't5.101.114.539': [0.555, 5.0], 't2.101.114.539': [0.59, 5.0]}), 'newmec-1'], [({'t1.101.114.540': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.540': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.540': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.540': [0.568, 6.667], 't3.101.114.540': [0.713, 5.0], 't4.101.114.540': [0.416, 10.0]}), 'newmec-1'], [({'t5.101.114.541': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.541': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.541': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.541': [0.541, 5.0], 't4.101.114.541': [0.765, 10.0], 't3.101.114.541': [0.787, 5.0]}), 'newmec-1'], [({'t2.156.114.542': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.542': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.542': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.542': [0.723, 5.0], 't1.156.114.542': [0.501, 6.667], 't4.156.114.542': [0.774, 10.0]}), 'osboxes-0'], [({'t3.103.114.543': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.543': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.543': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.543': [0.587, 5.0], 't5.103.114.543': [0.765, 5.0], 't4.103.114.543': [0.689, 10.0]}), 'newmec-3'], [({'t4.101.114.544': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.544': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.544': [0.415, 10.0], 't5.101.114.544': [0.646, 5.0]}), 'newmec-1'], [({'t4.102.114.545': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.545': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.545': [0.416, 10.0], 't5.102.114.545': [0.793, 5.0]}), 'newmec-2'], [({'t2.103.114.546': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.546': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.546': [0.752, 5.0], 't4.103.114.546': [0.424, 10.0]}), 'newmec-3'], [({'t5.103.114.547': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.547': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.547': [0.763, 5.0], 't2.103.114.547': [0.723, 5.0]}), 'newmec-3'], [({'t4.102.114.548': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.548': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.548': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.548': [0.711, 10.0], 't3.102.114.548': [0.573, 5.0], 't1.102.114.548': [0.518, 6.667]}), 'newmec-2'], [({'t5.103.114.549': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.549': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.549': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.549': [0.698, 5.0], 't1.103.114.549': [0.505, 6.667], 't2.103.114.549': [0.606, 5.0]}), 'newmec-3'], [({'t3.156.114.550': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.550': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.156.114.550': [0.695, 5.0], 't1.156.114.550': [0.716, 6.667]}), 'osboxes-0'], [({'t1.102.114.551': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.551': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.551': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.551': [0.687, 6.667], 't5.102.114.551': [0.79, 5.0], 't4.102.114.551': [0.682, 10.0]}), 'newmec-2'], [({'t2.101.114.552': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.552': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.552': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.552': [0.406, 5.0], 't5.101.114.552': [0.763, 5.0], 't4.101.114.552': [0.728, 10.0]}), 'newmec-1'], [({'t2.101.114.553': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.553': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.553': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.553': [0.53, 5.0], 't3.101.114.553': [0.751, 5.0], 't1.101.114.553': [0.627, 6.667]}), 'newmec-1'], [({'t3.101.114.554': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.554': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.554': [0.521, 5.0], 't2.101.114.554': [0.603, 5.0]}), 'newmec-1'], [({'t3.156.114.555': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.555': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.555': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.555': [0.486, 5.0], 't2.156.114.555': [0.433, 5.0], 't5.156.114.555': [0.797, 5.0]}), 'osboxes-0'], [({'t1.101.114.556': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.556': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.556': [0.456, 6.667], 't5.101.114.556': [0.506, 5.0]}), 'newmec-1'], [({'t3.102.114.557': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.557': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.557': [0.56, 5.0], 't5.102.114.557': [0.671, 5.0]}), 'newmec-2'], [({'t2.103.114.558': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.558': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.558': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.558': [0.401, 5.0], 't4.103.114.558': [0.448, 10.0], 't3.103.114.558': [0.449, 5.0]}), 'newmec-3'], [({'t5.103.114.559': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.559': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.559': [0.67, 5.0], 't4.103.114.559': [0.558, 10.0]}), 'newmec-3'], [({'t5.103.114.560': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.560': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.560': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.560': [0.782, 5.0], 't4.103.114.560': [0.689, 10.0], 't2.103.114.560': [0.593, 5.0]}), 'newmec-3'], [({'t5.101.114.561': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.561': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.561': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.561': [0.56, 5.0], 't4.101.114.561': [0.41, 10.0], 't2.101.114.561': [0.483, 5.0]}), 'newmec-1'], [({'t2.103.114.562': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.562': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.562': [0.516, 5.0], 't5.103.114.562': [0.417, 5.0]}), 'newmec-3'], [({'t3.103.114.563': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.563': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.563': [0.754, 5.0], 't5.103.114.563': [0.594, 5.0]}), 'newmec-3'], [({'t4.103.114.564': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.564': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.564': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.564': [0.47, 10.0], 't5.103.114.564': [0.768, 5.0], 't2.103.114.564': [0.49, 5.0]}), 'newmec-3'], [({'t5.102.114.565': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.565': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.565': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.565': [0.597, 5.0], 't1.102.114.565': [0.472, 6.667], 't2.102.114.565': [0.413, 5.0]}), 'newmec-2'], [({'t1.101.114.566': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.566': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.566': [0.45, 6.667], 't5.101.114.566': [0.74, 5.0]}), 'newmec-1'], [({'t3.101.114.567': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.567': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.567': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.567': [0.59, 5.0], 't1.101.114.567': [0.559, 6.667], 't5.101.114.567': [0.719, 5.0]}), 'newmec-1'], [({'t2.102.114.568': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.568': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.568': [0.567, 5.0], 't5.102.114.568': [0.788, 5.0]}), 'newmec-2'], [({'t2.103.114.569': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.569': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.569': [0.764, 5.0], 't3.103.114.569': [0.718, 5.0]}), 'newmec-3'], [({'t5.101.114.570': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.570': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.570': [0.544, 5.0], 't4.101.114.570': [0.407, 10.0]}), 'newmec-1'], [({'t2.103.114.571': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.571': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.571': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.571': [0.453, 5.0], 't3.103.114.571': [0.604, 5.0], 't4.103.114.571': [0.64, 10.0]}), 'newmec-3'], [({'t1.101.114.572': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.572': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.572': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.572': [0.669, 6.667], 't3.101.114.572': [0.443, 5.0], 't4.101.114.572': [0.554, 10.0]}), 'newmec-1'], [({'t4.101.114.573': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.573': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.573': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.573': [0.525, 10.0], 't3.101.114.573': [0.462, 5.0], 't2.101.114.573': [0.468, 5.0]}), 'newmec-1'], [({'t3.101.114.574': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.574': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.574': [0.7, 5.0], 't4.101.114.574': [0.793, 10.0]}), 'newmec-1'], [({'t5.101.114.575': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.575': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.575': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.575': [0.672, 5.0], 't2.101.114.575': [0.568, 5.0], 't4.101.114.575': [0.732, 10.0]}), 'newmec-1'], [({'t1.101.114.576': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.576': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.576': [0.445, 6.667], 't4.101.114.576': [0.762, 10.0]}), 'newmec-1'], [({'t5.102.114.577': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.577': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.577': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.577': [0.502, 5.0], 't3.102.114.577': [0.754, 5.0], 't1.102.114.577': [0.599, 6.667]}), 'newmec-2'], [({'t2.102.114.578': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.578': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.578': [0.49, 5.0], 't4.102.114.578': [0.555, 10.0]}), 'newmec-2'], [({'t5.103.114.579': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.579': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.579': [0.528, 5.0], 't4.103.114.579': [0.677, 10.0]}), 'newmec-3'], [({'t5.101.114.580': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.580': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.580': [0.525, 5.0], 't3.101.114.580': [0.587, 5.0]}), 'newmec-1'], [({'t4.101.114.581': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.581': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.581': [0.404, 10.0], 't3.101.114.581': [0.783, 5.0]}), 'newmec-1'], [({'t1.101.114.582': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.582': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.582': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.582': [0.475, 6.667], 't3.101.114.582': [0.441, 5.0], 't4.101.114.582': [0.773, 10.0]}), 'newmec-1'], [({'t5.101.114.583': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.583': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.583': [0.63, 5.0], 't3.101.114.583': [0.701, 5.0]}), 'newmec-1'], [({'t4.156.114.584': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.584': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.584': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.584': [0.424, 10.0], 't2.156.114.584': [0.555, 5.0], 't5.156.114.584': [0.754, 5.0]}), 'osboxes-0'], [({'t5.101.114.585': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.585': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.585': [0.681, 5.0], 't4.101.114.585': [0.679, 10.0]}), 'newmec-1'], [({'t1.103.114.586': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.586': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.586': [0.738, 6.667], 't5.103.114.586': [0.406, 5.0]}), 'newmec-3'], [({'t2.101.114.587': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.587': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.587': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.587': [0.741, 5.0], 't4.101.114.587': [0.722, 10.0], 't3.101.114.587': [0.726, 5.0]}), 'newmec-1'], [({'t4.156.114.588': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.588': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.588': [0.6, 10.0], 't5.156.114.588': [0.444, 5.0]}), 'osboxes-0'], [({'t4.102.114.589': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.589': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.589': [0.733, 10.0], 't5.102.114.589': [0.597, 5.0]}), 'newmec-2'], [({'t4.101.114.590': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.590': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.590': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.590': [0.757, 10.0], 't3.101.114.590': [0.508, 5.0], 't5.101.114.590': [0.47, 5.0]}), 'newmec-1'], [({'t4.101.114.591': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.591': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.591': [0.717, 10.0], 't2.101.114.591': [0.446, 5.0]}), 'newmec-1'], [({'t5.101.114.592': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.592': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.592': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.592': [0.488, 5.0], 't2.101.114.592': [0.461, 5.0], 't3.101.114.592': [0.433, 5.0]}), 'newmec-1'], [({'t1.103.114.593': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.593': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.593': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.593': [0.742, 6.667], 't4.103.114.593': [0.681, 10.0], 't3.103.114.593': [0.499, 5.0]}), 'newmec-3'], [({'t3.101.114.594': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.594': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.594': [0.567, 5.0], 't5.101.114.594': [0.629, 5.0]}), 'newmec-1'], [({'t2.103.114.595': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.595': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.595': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.595': [0.594, 5.0], 't3.103.114.595': [0.748, 5.0], 't5.103.114.595': [0.452, 5.0]}), 'newmec-3'], [({'t2.103.114.596': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.596': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.596': [0.677, 5.0], 't5.103.114.596': [0.498, 5.0]}), 'newmec-3'], [({'t1.156.114.597': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.156.114.597': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.597': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.156.114.597': [0.765, 6.667], 't2.156.114.597': [0.604, 5.0], 't4.156.114.597': [0.618, 10.0]}), 'osboxes-0'], [({'t5.103.114.598': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.598': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.598': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.598': [0.683, 5.0], 't3.103.114.598': [0.74, 5.0], 't4.103.114.598': [0.578, 10.0]}), 'newmec-3'], [({'t1.102.114.599': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.599': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.599': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.599': [0.43, 6.667], 't5.102.114.599': [0.672, 5.0], 't3.102.114.599': [0.71, 5.0]}), 'newmec-2']] host_names4 = {'192.168.122.102': 'newmec-2', '192.168.122.103': 'newmec-3', '192.168.122.156': 'osboxes-0', '192.168.122.101': 'newmec-1'} record5 = [[({'t4.101.114.0': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.0': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.0': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.0': [0.784, 10.0], 't3.101.114.0': [0.666, 5.0], 't1.101.114.0': [0.754, 6.667]}), 'newmec-1'], [({'t1.101.114.1': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.1': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.1': [0.794, 6.667], 't5.101.114.1': [0.703, 5.0]}), 'newmec-1'], [({'t2.156.114.2': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.2': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.2': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.2': [0.612, 5.0], 't4.156.114.2': [0.676, 10.0], 't1.156.114.2': [0.773, 6.667]}), 'osboxes-0'], [({'t1.102.114.3': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.3': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.3': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.3': [0.76, 6.667], 't5.102.114.3': [0.593, 5.0], 't4.102.114.3': [0.668, 10.0]}), 'newmec-2'], [({'t2.102.114.4': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.4': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.4': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.4': [0.563, 5.0], 't4.102.114.4': [0.487, 10.0], 't3.102.114.4': [0.616, 5.0]}), 'newmec-2'], [({'t5.104.114.5': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.5': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.5': [0.756, 5.0], 't4.104.114.5': [0.772, 10.0]}), 'newmec-4'], [({'t1.101.114.6': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.6': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.6': [0.593, 6.667], 't2.101.114.6': [0.633, 5.0]}), 'newmec-1'], [({'t2.102.114.7': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.7': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.7': [0.778, 5.0], 't5.102.114.7': [0.5, 5.0]}), 'newmec-2'], [({'t5.103.114.8': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.8': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.8': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.8': [0.699, 5.0], 't3.103.114.8': [0.735, 5.0], 't2.103.114.8': [0.525, 5.0]}), 'newmec-3'], [({'t2.102.114.9': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.9': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.9': [0.606, 5.0], 't4.102.114.9': [0.755, 10.0]}), 'newmec-2'], [({'t1.104.114.10': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.10': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.10': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.10': [0.656, 6.667], 't5.104.114.10': [0.696, 5.0], 't4.104.114.10': [0.654, 10.0]}), 'newmec-4'], [({'t1.156.114.11': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.11': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.11': [0.695, 6.667], 't5.156.114.11': [0.607, 5.0]}), 'osboxes-0'], [({'t4.104.114.12': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.12': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.12': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.12': [0.655, 10.0], 't5.104.114.12': [0.658, 5.0], 't2.104.114.12': [0.693, 5.0]}), 'newmec-4'], [({'t5.156.114.13': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.13': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.13': [0.47, 5.0], 't3.156.114.13': [0.536, 5.0]}), 'osboxes-0'], [({'t3.101.114.14': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.14': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.14': [0.634, 5.0], 't2.101.114.14': [0.6, 5.0]}), 'newmec-1'], [({'t3.101.114.15': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.15': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.15': [0.506, 5.0], 't5.101.114.15': [0.7, 5.0]}), 'newmec-1'], [({'t3.101.114.16': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.16': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.16': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.16': [0.661, 5.0], 't4.101.114.16': [0.714, 10.0], 't2.101.114.16': [0.469, 5.0]}), 'newmec-1'], [({'t3.101.114.17': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.17': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.17': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.17': [0.423, 5.0], 't4.101.114.17': [0.662, 10.0], 't1.101.114.17': [0.464, 6.667]}), 'newmec-1'], [({'t4.102.114.18': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.18': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.18': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.18': [0.459, 10.0], 't5.102.114.18': [0.402, 5.0], 't1.102.114.18': [0.614, 6.667]}), 'newmec-2'], [({'t3.101.114.19': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.19': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.19': [0.603, 5.0], 't4.101.114.19': [0.612, 10.0]}), 'newmec-1'], [({'t5.156.114.20': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.20': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.20': [0.515, 5.0], 't4.156.114.20': [0.684, 10.0]}), 'osboxes-0'], [({'t5.102.114.21': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.21': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.21': [0.526, 5.0], 't4.102.114.21': [0.709, 10.0]}), 'newmec-2'], [({'t3.104.114.22': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.22': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.22': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.22': [0.485, 5.0], 't5.104.114.22': [0.545, 5.0], 't2.104.114.22': [0.519, 5.0]}), 'newmec-4'], [({'t5.104.114.23': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.23': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.23': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.23': [0.791, 5.0], 't2.104.114.23': [0.766, 5.0], 't3.104.114.23': [0.671, 5.0]}), 'newmec-4'], [({'t2.156.114.24': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.24': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.24': [0.514, 5.0], 't4.156.114.24': [0.411, 10.0]}), 'osboxes-0'], [({'t1.103.114.25': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.25': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.25': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.25': [0.545, 6.667], 't3.103.114.25': [0.624, 5.0], 't4.103.114.25': [0.648, 10.0]}), 'newmec-3'], [({'t2.103.114.26': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.26': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.26': [0.667, 5.0], 't5.103.114.26': [0.74, 5.0]}), 'newmec-3'], [({'t3.156.114.27': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.27': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.27': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.27': [0.626, 5.0], 't1.156.114.27': [0.53, 6.667], 't4.156.114.27': [0.67, 10.0]}), 'osboxes-0'], [({'t4.104.114.28': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.28': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.28': [0.781, 10.0], 't2.104.114.28': [0.439, 5.0]}), 'newmec-4'], [({'t5.101.114.29': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.29': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.29': [0.418, 5.0], 't2.101.114.29': [0.738, 5.0]}), 'newmec-1'], [({'t3.104.114.30': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.30': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.30': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.30': [0.558, 5.0], 't5.104.114.30': [0.477, 5.0], 't4.104.114.30': [0.494, 10.0]}), 'newmec-4'], [({'t4.104.114.31': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.31': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.31': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.31': [0.48, 10.0], 't2.104.114.31': [0.748, 5.0], 't1.104.114.31': [0.403, 6.667]}), 'newmec-4'], [({'t3.101.114.32': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.32': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.32': [0.617, 5.0], 't5.101.114.32': [0.419, 5.0]}), 'newmec-1'], [({'t2.101.114.33': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.33': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.33': [0.491, 5.0], 't5.101.114.33': [0.606, 5.0]}), 'newmec-1'], [({'t3.101.114.34': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.34': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.34': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.34': [0.518, 5.0], 't4.101.114.34': [0.595, 10.0], 't2.101.114.34': [0.4, 5.0]}), 'newmec-1'], [({'t2.104.114.35': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.35': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.35': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.35': [0.775, 5.0], 't3.104.114.35': [0.432, 5.0], 't4.104.114.35': [0.665, 10.0]}), 'newmec-4'], [({'t1.104.114.36': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.36': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.36': [0.471, 6.667], 't4.104.114.36': [0.532, 10.0]}), 'newmec-4'], [({'t2.103.114.37': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.37': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.37': [0.64, 5.0], 't5.103.114.37': [0.49, 5.0]}), 'newmec-3'], [({'t5.101.114.38': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.38': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.38': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.38': [0.464, 5.0], 't1.101.114.38': [0.57, 6.667], 't2.101.114.38': [0.764, 5.0]}), 'newmec-1'], [({'t4.102.114.39': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.39': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.39': [0.417, 10.0], 't1.102.114.39': [0.476, 6.667]}), 'newmec-2'], [({'t4.103.114.40': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.40': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.40': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.40': [0.633, 10.0], 't5.103.114.40': [0.515, 5.0], 't3.103.114.40': [0.546, 5.0]}), 'newmec-3'], [({'t1.103.114.41': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.41': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.41': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.41': [0.748, 6.667], 't3.103.114.41': [0.495, 5.0], 't4.103.114.41': [0.77, 10.0]}), 'newmec-3'], [({'t2.103.114.42': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.42': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.42': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.42': [0.427, 5.0], 't1.103.114.42': [0.638, 6.667], 't3.103.114.42': [0.629, 5.0]}), 'newmec-3'], [({'t4.101.114.43': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.43': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.43': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.43': [0.482, 10.0], 't5.101.114.43': [0.602, 5.0], 't2.101.114.43': [0.739, 5.0]}), 'newmec-1'], [({'t5.102.114.44': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.44': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.44': [0.681, 5.0], 't2.102.114.44': [0.665, 5.0]}), 'newmec-2'], [({'t4.101.114.45': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.45': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.45': [0.739, 10.0], 't5.101.114.45': [0.687, 5.0]}), 'newmec-1'], [({'t5.104.114.46': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.46': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.46': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.46': [0.654, 5.0], 't2.104.114.46': [0.69, 5.0], 't1.104.114.46': [0.647, 6.667]}), 'newmec-4'], [({'t4.104.114.47': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.47': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.47': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.47': [0.434, 10.0], 't2.104.114.47': [0.507, 5.0], 't1.104.114.47': [0.431, 6.667]}), 'newmec-4'], [({'t1.101.114.48': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.48': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.48': [0.55, 6.667], 't3.101.114.48': [0.647, 5.0]}), 'newmec-1'], [({'t2.156.114.49': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.49': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.49': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.49': [0.736, 5.0], 't1.156.114.49': [0.622, 6.667], 't3.156.114.49': [0.673, 5.0]}), 'osboxes-0'], [({'t2.104.114.50': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.50': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.50': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.50': [0.639, 5.0], 't5.104.114.50': [0.738, 5.0], 't4.104.114.50': [0.707, 10.0]}), 'newmec-4'], [({'t2.103.114.51': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.51': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.51': [0.673, 5.0], 't3.103.114.51': [0.533, 5.0]}), 'newmec-3'], [({'t2.104.114.52': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.52': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.52': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.52': [0.534, 5.0], 't1.104.114.52': [0.455, 6.667], 't3.104.114.52': [0.607, 5.0]}), 'newmec-4'], [({'t5.101.114.53': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.53': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.53': [0.737, 5.0], 't1.101.114.53': [0.423, 6.667]}), 'newmec-1'], [({'t4.102.114.54': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.54': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.54': [0.618, 10.0], 't5.102.114.54': [0.555, 5.0]}), 'newmec-2'], [({'t2.101.114.55': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.55': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.55': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.55': [0.478, 5.0], 't3.101.114.55': [0.641, 5.0], 't1.101.114.55': [0.482, 6.667]}), 'newmec-1'], [({'t3.102.114.56': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.56': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.56': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.56': [0.531, 5.0], 't5.102.114.56': [0.678, 5.0], 't4.102.114.56': [0.688, 10.0]}), 'newmec-2'], [({'t1.103.114.57': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.57': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.57': [0.45, 6.667], 't5.103.114.57': [0.578, 5.0]}), 'newmec-3'], [({'t3.101.114.58': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.58': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.58': [0.685, 5.0], 't4.101.114.58': [0.434, 10.0]}), 'newmec-1'], [({'t3.103.114.59': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.59': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.59': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.59': [0.759, 5.0], 't5.103.114.59': [0.564, 5.0], 't2.103.114.59': [0.64, 5.0]}), 'newmec-3'], [({'t1.102.114.60': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.60': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.60': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.60': [0.647, 6.667], 't2.102.114.60': [0.612, 5.0], 't4.102.114.60': [0.78, 10.0]}), 'newmec-2'], [({'t5.156.114.61': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.61': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.61': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.61': [0.784, 5.0], 't4.156.114.61': [0.593, 10.0], 't3.156.114.61': [0.416, 5.0]}), 'osboxes-0'], [({'t5.156.114.62': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.62': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.62': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.62': [0.503, 5.0], 't2.156.114.62': [0.666, 5.0], 't4.156.114.62': [0.573, 10.0]}), 'osboxes-0'], [({'t1.101.114.63': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.63': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.63': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.63': [0.727, 6.667], 't3.101.114.63': [0.693, 5.0], 't2.101.114.63': [0.601, 5.0]}), 'newmec-1'], [({'t5.102.114.64': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.64': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.64': [0.532, 5.0], 't3.102.114.64': [0.786, 5.0]}), 'newmec-2'], [({'t4.102.114.65': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.65': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.65': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.65': [0.511, 10.0], 't1.102.114.65': [0.699, 6.667], 't2.102.114.65': [0.483, 5.0]}), 'newmec-2'], [({'t4.102.114.66': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.66': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.66': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.66': [0.618, 10.0], 't2.102.114.66': [0.786, 5.0], 't3.102.114.66': [0.597, 5.0]}), 'newmec-2'], [({'t5.156.114.67': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.67': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.67': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.67': [0.747, 5.0], 't2.156.114.67': [0.417, 5.0], 't3.156.114.67': [0.643, 5.0]}), 'osboxes-0'], [({'t5.156.114.68': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.68': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.68': [0.49, 5.0], 't4.156.114.68': [0.432, 10.0]}), 'osboxes-0'], [({'t3.104.114.69': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.69': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.69': [0.67, 5.0], 't2.104.114.69': [0.444, 5.0]}), 'newmec-4'], [({'t1.104.114.70': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.70': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.70': [0.676, 6.667], 't4.104.114.70': [0.495, 10.0]}), 'newmec-4'], [({'t5.156.114.71': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.71': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.71': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.71': [0.465, 5.0], 't2.156.114.71': [0.759, 5.0], 't4.156.114.71': [0.622, 10.0]}), 'osboxes-0'], [({'t1.104.114.72': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.72': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.72': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.72': [0.692, 6.667], 't2.104.114.72': [0.603, 5.0], 't3.104.114.72': [0.604, 5.0]}), 'newmec-4'], [({'t4.102.114.73': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.73': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.73': [0.779, 10.0], 't2.102.114.73': [0.514, 5.0]}), 'newmec-2'], [({'t5.103.114.74': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.74': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.74': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.74': [0.799, 5.0], 't3.103.114.74': [0.691, 5.0], 't2.103.114.74': [0.667, 5.0]}), 'newmec-3'], [({'t3.102.114.75': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.75': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.75': [0.55, 5.0], 't2.102.114.75': [0.529, 5.0]}), 'newmec-2'], [({'t4.156.114.76': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.76': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.76': [0.75, 10.0], 't5.156.114.76': [0.675, 5.0]}), 'osboxes-0'], [({'t5.104.114.77': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.77': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.77': [0.785, 5.0], 't2.104.114.77': [0.486, 5.0]}), 'newmec-4'], [({'t4.156.114.78': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.78': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.78': [0.554, 10.0], 't5.156.114.78': [0.487, 5.0]}), 'osboxes-0'], [({'t1.104.114.79': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.79': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.79': [0.782, 6.667], 't2.104.114.79': [0.628, 5.0]}), 'newmec-4'], [({'t2.102.114.80': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.80': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.80': [0.495, 5.0], 't3.102.114.80': [0.482, 5.0]}), 'newmec-2'], [({'t3.104.114.81': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.81': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.81': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.81': [0.744, 5.0], 't1.104.114.81': [0.594, 6.667], 't4.104.114.81': [0.648, 10.0]}), 'newmec-4'], [({'t3.102.114.82': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.82': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.82': [0.79, 5.0], 't5.102.114.82': [0.765, 5.0]}), 'newmec-2'], [({'t1.102.114.83': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.83': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.83': [0.401, 6.667], 't5.102.114.83': [0.663, 5.0]}), 'newmec-2'], [({'t5.104.114.84': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.84': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.84': [0.505, 5.0], 't3.104.114.84': [0.788, 5.0]}), 'newmec-4'], [({'t5.156.114.85': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.85': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.85': [0.785, 5.0], 't4.156.114.85': [0.645, 10.0]}), 'osboxes-0'], [({'t2.101.114.86': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.86': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.86': [0.431, 5.0], 't5.101.114.86': [0.471, 5.0]}), 'newmec-1'], [({'t3.156.114.87': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.87': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.156.114.87': [0.727, 5.0], 't1.156.114.87': [0.722, 6.667]}), 'osboxes-0'], [({'t4.103.114.88': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.88': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.88': [0.581, 10.0], 't2.103.114.88': [0.731, 5.0]}), 'newmec-3'], [({'t3.104.114.89': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.89': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.89': [0.505, 5.0], 't4.104.114.89': [0.713, 10.0]}), 'newmec-4'], [({'t1.103.114.90': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.90': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.90': [0.49, 6.667], 't4.103.114.90': [0.463, 10.0]}), 'newmec-3'], [({'t2.102.114.91': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.91': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.91': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.91': [0.511, 5.0], 't4.102.114.91': [0.698, 10.0], 't5.102.114.91': [0.502, 5.0]}), 'newmec-2'], [({'t3.101.114.92': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.92': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.92': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.92': [0.709, 5.0], 't2.101.114.92': [0.547, 5.0], 't5.101.114.92': [0.745, 5.0]}), 'newmec-1'], [({'t5.101.114.93': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.93': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.93': [0.749, 5.0], 't4.101.114.93': [0.446, 10.0]}), 'newmec-1'], [({'t3.156.114.94': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.94': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.94': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.94': [0.528, 5.0], 't2.156.114.94': [0.405, 5.0], 't4.156.114.94': [0.531, 10.0]}), 'osboxes-0'], [({'t4.102.114.95': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.95': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.95': [0.429, 10.0], 't5.102.114.95': [0.622, 5.0]}), 'newmec-2'], [({'t3.103.114.96': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.96': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.96': [0.541, 5.0], 't5.103.114.96': [0.76, 5.0]}), 'newmec-3'], [({'t3.156.114.97': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.97': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.97': [0.529, 5.0], 't5.156.114.97': [0.501, 5.0]}), 'osboxes-0'], [({'t1.104.114.98': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.98': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.98': [0.447, 6.667], 't3.104.114.98': [0.418, 5.0]}), 'newmec-4'], [({'t3.156.114.99': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.99': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.99': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.99': [0.624, 5.0], 't2.156.114.99': [0.507, 5.0], 't5.156.114.99': [0.712, 5.0]}), 'osboxes-0'], [({'t3.156.114.100': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.100': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.100': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.100': [0.551, 5.0], 't5.156.114.100': [0.628, 5.0], 't4.156.114.100': [0.687, 10.0]}), 'osboxes-0'], [({'t2.156.114.101': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.101': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.101': [0.559, 5.0], 't5.156.114.101': [0.749, 5.0]}), 'osboxes-0'], [({'t4.104.114.102': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.102': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.102': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.102': [0.481, 10.0], 't3.104.114.102': [0.787, 5.0], 't5.104.114.102': [0.405, 5.0]}), 'newmec-4'], [({'t2.102.114.103': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.103': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.103': [0.756, 5.0], 't4.102.114.103': [0.746, 10.0]}), 'newmec-2'], [({'t1.103.114.104': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.104': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.104': [0.513, 6.667], 't3.103.114.104': [0.497, 5.0]}), 'newmec-3'], [({'t5.104.114.105': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.105': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.105': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.105': [0.676, 5.0], 't4.104.114.105': [0.44, 10.0], 't3.104.114.105': [0.411, 5.0]}), 'newmec-4'], [({'t5.156.114.106': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.106': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.106': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.106': [0.651, 5.0], 't3.156.114.106': [0.686, 5.0], 't4.156.114.106': [0.564, 10.0]}), 'osboxes-0'], [({'t2.101.114.107': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.107': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.107': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.107': [0.506, 5.0], 't1.101.114.107': [0.731, 6.667], 't3.101.114.107': [0.755, 5.0]}), 'newmec-1'], [({'t3.104.114.108': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.108': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.108': [0.543, 5.0], 't5.104.114.108': [0.491, 5.0]}), 'newmec-4'], [({'t3.104.114.109': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.109': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.109': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.109': [0.56, 5.0], 't5.104.114.109': [0.758, 5.0], 't2.104.114.109': [0.446, 5.0]}), 'newmec-4'], [({'t4.101.114.110': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.110': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.110': [0.478, 10.0], 't3.101.114.110': [0.536, 5.0]}), 'newmec-1'], [({'t2.101.114.111': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.111': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.111': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.111': [0.717, 5.0], 't1.101.114.111': [0.8, 6.667], 't4.101.114.111': [0.681, 10.0]}), 'newmec-1'], [({'t5.104.114.112': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.112': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.112': [0.439, 5.0], 't2.104.114.112': [0.68, 5.0]}), 'newmec-4'], [({'t1.101.114.113': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.113': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.113': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.113': [0.668, 6.667], 't4.101.114.113': [0.507, 10.0], 't5.101.114.113': [0.647, 5.0]}), 'newmec-1'], [({'t2.156.114.114': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.114': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.114': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.114': [0.405, 5.0], 't1.156.114.114': [0.712, 6.667], 't3.156.114.114': [0.538, 5.0]}), 'osboxes-0'], [({'t1.101.114.115': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.115': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.115': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.115': [0.707, 6.667], 't2.101.114.115': [0.516, 5.0], 't3.101.114.115': [0.667, 5.0]}), 'newmec-1'], [({'t2.101.114.116': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.116': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.116': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.116': [0.482, 5.0], 't5.101.114.116': [0.539, 5.0], 't1.101.114.116': [0.703, 6.667]}), 'newmec-1'], [({'t5.102.114.117': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.117': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.117': [0.721, 5.0], 't3.102.114.117': [0.501, 5.0]}), 'newmec-2'], [({'t5.102.114.118': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.118': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.118': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.118': [0.783, 5.0], 't1.102.114.118': [0.716, 6.667], 't4.102.114.118': [0.731, 10.0]}), 'newmec-2'], [({'t3.104.114.119': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.119': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.119': [0.595, 5.0], 't2.104.114.119': [0.783, 5.0]}), 'newmec-4'], [({'t3.104.114.120': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.120': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.120': [0.68, 5.0], 't5.104.114.120': [0.554, 5.0]}), 'newmec-4'], [({'t2.104.114.121': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.121': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.121': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.121': [0.784, 5.0], 't3.104.114.121': [0.596, 5.0], 't5.104.114.121': [0.495, 5.0]}), 'newmec-4'], [({'t5.101.114.122': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.122': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.122': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.122': [0.738, 5.0], 't4.101.114.122': [0.657, 10.0], 't1.101.114.122': [0.444, 6.667]}), 'newmec-1'], [({'t5.156.114.123': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.123': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.123': [0.674, 5.0], 't2.156.114.123': [0.706, 5.0]}), 'osboxes-0'], [({'t4.102.114.124': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.124': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.124': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.124': [0.741, 10.0], 't3.102.114.124': [0.437, 5.0], 't2.102.114.124': [0.717, 5.0]}), 'newmec-2'], [({'t5.101.114.125': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.125': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.125': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.125': [0.671, 5.0], 't1.101.114.125': [0.735, 6.667], 't2.101.114.125': [0.593, 5.0]}), 'newmec-1'], [({'t5.103.114.126': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.126': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.126': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.126': [0.501, 5.0], 't3.103.114.126': [0.458, 5.0], 't2.103.114.126': [0.638, 5.0]}), 'newmec-3'], [({'t4.101.114.127': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.127': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.127': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.127': [0.446, 10.0], 't1.101.114.127': [0.5, 6.667], 't2.101.114.127': [0.688, 5.0]}), 'newmec-1'], [({'t4.101.114.128': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.128': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.128': [0.768, 10.0], 't3.101.114.128': [0.702, 5.0]}), 'newmec-1'], [({'t2.101.114.129': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.129': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.129': [0.651, 5.0], 't4.101.114.129': [0.695, 10.0]}), 'newmec-1'], [({'t3.101.114.130': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.130': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.130': [0.544, 5.0], 't4.101.114.130': [0.617, 10.0]}), 'newmec-1'], [({'t3.102.114.131': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.131': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.131': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.131': [0.657, 5.0], 't2.102.114.131': [0.582, 5.0], 't5.102.114.131': [0.555, 5.0]}), 'newmec-2'], [({'t4.101.114.132': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.132': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.132': [0.412, 10.0], 't3.101.114.132': [0.405, 5.0]}), 'newmec-1'], [({'t4.103.114.133': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.133': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.133': [0.678, 10.0], 't3.103.114.133': [0.61, 5.0]}), 'newmec-3'], [({'t3.104.114.134': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.134': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.134': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.134': [0.623, 5.0], 't5.104.114.134': [0.504, 5.0], 't4.104.114.134': [0.626, 10.0]}), 'newmec-4'], [({'t2.104.114.135': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.135': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.135': [0.615, 5.0], 't5.104.114.135': [0.433, 5.0]}), 'newmec-4'], [({'t3.102.114.136': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.136': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.136': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.136': [0.508, 5.0], 't5.102.114.136': [0.703, 5.0], 't4.102.114.136': [0.547, 10.0]}), 'newmec-2'], [({'t4.102.114.137': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.137': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.137': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.137': [0.554, 10.0], 't3.102.114.137': [0.795, 5.0], 't2.102.114.137': [0.735, 5.0]}), 'newmec-2'], [({'t2.102.114.138': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.138': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.138': [0.661, 5.0], 't4.102.114.138': [0.47, 10.0]}), 'newmec-2'], [({'t2.156.114.139': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.139': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.139': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.139': [0.559, 5.0], 't4.156.114.139': [0.719, 10.0], 't5.156.114.139': [0.784, 5.0]}), 'osboxes-0'], [({'t4.103.114.140': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.140': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.140': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.140': [0.78, 10.0], 't2.103.114.140': [0.438, 5.0], 't3.103.114.140': [0.449, 5.0]}), 'newmec-3'], [({'t5.156.114.141': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.141': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.141': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.141': [0.548, 5.0], 't1.156.114.141': [0.729, 6.667], 't4.156.114.141': [0.598, 10.0]}), 'osboxes-0'], [({'t4.102.114.142': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.142': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.142': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.142': [0.486, 10.0], 't1.102.114.142': [0.61, 6.667], 't2.102.114.142': [0.494, 5.0]}), 'newmec-2'], [({'t5.102.114.143': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.143': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.143': [0.496, 5.0], 't4.102.114.143': [0.519, 10.0]}), 'newmec-2'], [({'t4.103.114.144': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.144': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.144': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.144': [0.541, 10.0], 't2.103.114.144': [0.727, 5.0], 't5.103.114.144': [0.627, 5.0]}), 'newmec-3'], [({'t3.104.114.145': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.145': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.145': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.145': [0.53, 5.0], 't4.104.114.145': [0.69, 10.0], 't2.104.114.145': [0.486, 5.0]}), 'newmec-4'], [({'t5.103.114.146': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.146': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.146': [0.471, 5.0], 't3.103.114.146': [0.718, 5.0]}), 'newmec-3'], [({'t3.102.114.147': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.147': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.147': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.147': [0.628, 5.0], 't2.102.114.147': [0.401, 5.0], 't1.102.114.147': [0.551, 6.667]}), 'newmec-2'], [({'t2.101.114.148': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.148': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.148': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.148': [0.682, 5.0], 't4.101.114.148': [0.799, 10.0], 't1.101.114.148': [0.603, 6.667]}), 'newmec-1'], [({'t2.102.114.149': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.149': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.149': [0.555, 5.0], 't3.102.114.149': [0.468, 5.0]}), 'newmec-2'], [({'t5.102.114.150': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.150': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.150': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.150': [0.605, 5.0], 't4.102.114.150': [0.765, 10.0], 't2.102.114.150': [0.59, 5.0]}), 'newmec-2'], [({'t3.102.114.151': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.151': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.151': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.151': [0.619, 5.0], 't1.102.114.151': [0.555, 6.667], 't4.102.114.151': [0.689, 10.0]}), 'newmec-2'], [({'t1.104.114.152': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.152': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.152': [0.576, 6.667], 't2.104.114.152': [0.502, 5.0]}), 'newmec-4'], [({'t5.103.114.153': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.153': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.153': [0.751, 5.0], 't4.103.114.153': [0.474, 10.0]}), 'newmec-3'], [({'t2.104.114.154': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.154': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.154': [0.626, 5.0], 't3.104.114.154': [0.447, 5.0]}), 'newmec-4'], [({'t1.156.114.155': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.155': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.155': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.155': [0.695, 6.667], 't5.156.114.155': [0.466, 5.0], 't2.156.114.155': [0.588, 5.0]}), 'osboxes-0'], [({'t2.156.114.156': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.156': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.156': [0.437, 5.0], 't4.156.114.156': [0.762, 10.0]}), 'osboxes-0'], [({'t5.101.114.157': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.157': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.157': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.157': [0.67, 5.0], 't2.101.114.157': [0.601, 5.0], 't3.101.114.157': [0.693, 5.0]}), 'newmec-1'], [({'t3.101.114.158': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.158': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.158': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.158': [0.427, 5.0], 't4.101.114.158': [0.65, 10.0], 't1.101.114.158': [0.695, 6.667]}), 'newmec-1'], [({'t1.102.114.159': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.159': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.159': [0.797, 6.667], 't2.102.114.159': [0.774, 5.0]}), 'newmec-2'], [({'t5.103.114.160': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.160': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.160': [0.652, 5.0], 't1.103.114.160': [0.613, 6.667]}), 'newmec-3'], [({'t3.104.114.161': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.161': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.161': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.161': [0.473, 5.0], 't1.104.114.161': [0.768, 6.667], 't2.104.114.161': [0.475, 5.0]}), 'newmec-4'], [({'t4.101.114.162': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.162': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.162': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.162': [0.797, 10.0], 't1.101.114.162': [0.736, 6.667], 't2.101.114.162': [0.409, 5.0]}), 'newmec-1'], [({'t1.104.114.163': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.163': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.163': [0.631, 6.667], 't4.104.114.163': [0.564, 10.0]}), 'newmec-4'], [({'t1.104.114.164': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.164': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.164': [0.551, 6.667], 't2.104.114.164': [0.502, 5.0]}), 'newmec-4'], [({'t2.101.114.165': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.165': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.165': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.165': [0.792, 5.0], 't5.101.114.165': [0.589, 5.0], 't1.101.114.165': [0.509, 6.667]}), 'newmec-1'], [({'t4.156.114.166': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.166': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.166': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.166': [0.42, 10.0], 't5.156.114.166': [0.527, 5.0], 't1.156.114.166': [0.511, 6.667]}), 'osboxes-0'], [({'t2.102.114.167': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.167': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.167': [0.455, 5.0], 't3.102.114.167': [0.473, 5.0]}), 'newmec-2'], [({'t2.104.114.168': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.168': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.168': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.168': [0.474, 5.0], 't1.104.114.168': [0.71, 6.667], 't3.104.114.168': [0.572, 5.0]}), 'newmec-4'], [({'t5.102.114.169': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.169': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.169': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.169': [0.478, 5.0], 't3.102.114.169': [0.531, 5.0], 't4.102.114.169': [0.709, 10.0]}), 'newmec-2'], [({'t5.102.114.170': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.170': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.170': [0.599, 5.0], 't1.102.114.170': [0.75, 6.667]}), 'newmec-2'], [({'t1.102.114.171': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.171': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.171': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.171': [0.448, 6.667], 't3.102.114.171': [0.651, 5.0], 't4.102.114.171': [0.447, 10.0]}), 'newmec-2'], [({'t3.103.114.172': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.172': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.172': [0.425, 5.0], 't4.103.114.172': [0.675, 10.0]}), 'newmec-3'], [({'t4.101.114.173': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.173': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.173': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.173': [0.754, 10.0], 't1.101.114.173': [0.653, 6.667], 't3.101.114.173': [0.416, 5.0]}), 'newmec-1'], [({'t2.102.114.174': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.174': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.174': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.174': [0.75, 5.0], 't4.102.114.174': [0.47, 10.0], 't3.102.114.174': [0.404, 5.0]}), 'newmec-2'], [({'t4.101.114.175': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.175': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.175': [0.556, 10.0], 't2.101.114.175': [0.553, 5.0]}), 'newmec-1'], [({'t4.102.114.176': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.176': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.176': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.176': [0.531, 10.0], 't2.102.114.176': [0.762, 5.0], 't1.102.114.176': [0.768, 6.667]}), 'newmec-2'], [({'t3.156.114.177': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.177': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.177': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.177': [0.561, 5.0], 't5.156.114.177': [0.646, 5.0], 't4.156.114.177': [0.43, 10.0]}), 'osboxes-0'], [({'t4.103.114.178': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.178': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.178': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.178': [0.517, 10.0], 't1.103.114.178': [0.633, 6.667], 't2.103.114.178': [0.523, 5.0]}), 'newmec-3'], [({'t3.104.114.179': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.179': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.179': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.179': [0.691, 5.0], 't2.104.114.179': [0.518, 5.0], 't5.104.114.179': [0.474, 5.0]}), 'newmec-4'], [({'t1.102.114.180': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.180': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.180': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.180': [0.774, 6.667], 't3.102.114.180': [0.755, 5.0], 't5.102.114.180': [0.61, 5.0]}), 'newmec-2'], [({'t4.104.114.181': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.181': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.181': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.181': [0.609, 10.0], 't3.104.114.181': [0.578, 5.0], 't2.104.114.181': [0.602, 5.0]}), 'newmec-4'], [({'t1.103.114.182': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.182': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.182': [0.762, 6.667], 't5.103.114.182': [0.602, 5.0]}), 'newmec-3'], [({'t5.102.114.183': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.183': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.183': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.183': [0.446, 5.0], 't1.102.114.183': [0.576, 6.667], 't3.102.114.183': [0.525, 5.0]}), 'newmec-2'], [({'t5.101.114.184': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.184': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.184': [0.564, 5.0], 't4.101.114.184': [0.514, 10.0]}), 'newmec-1'], [({'t5.102.114.185': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.185': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.185': [0.586, 5.0], 't4.102.114.185': [0.505, 10.0]}), 'newmec-2'], [({'t2.104.114.186': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.186': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.186': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.186': [0.47, 5.0], 't5.104.114.186': [0.767, 5.0], 't4.104.114.186': [0.73, 10.0]}), 'newmec-4'], [({'t2.102.114.187': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.187': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.187': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.187': [0.614, 5.0], 't4.102.114.187': [0.649, 10.0], 't1.102.114.187': [0.533, 6.667]}), 'newmec-2'], [({'t4.156.114.188': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.188': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.188': [0.607, 10.0], 't5.156.114.188': [0.754, 5.0]}), 'osboxes-0'], [({'t4.101.114.189': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.189': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.189': [0.457, 10.0], 't5.101.114.189': [0.511, 5.0]}), 'newmec-1'], [({'t5.156.114.190': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.190': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.190': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.190': [0.695, 5.0], 't3.156.114.190': [0.746, 5.0], 't2.156.114.190': [0.75, 5.0]}), 'osboxes-0'], [({'t2.104.114.191': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.191': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.191': [0.789, 5.0], 't1.104.114.191': [0.692, 6.667]}), 'newmec-4'], [({'t4.102.114.192': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.192': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.192': [0.775, 10.0], 't1.102.114.192': [0.772, 6.667]}), 'newmec-2'], [({'t5.102.114.193': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.193': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.193': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.193': [0.778, 5.0], 't2.102.114.193': [0.628, 5.0], 't4.102.114.193': [0.731, 10.0]}), 'newmec-2'], [({'t2.101.114.194': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.194': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.194': [0.45, 5.0], 't1.101.114.194': [0.709, 6.667]}), 'newmec-1'], [({'t5.102.114.195': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.195': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.195': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.195': [0.742, 5.0], 't2.102.114.195': [0.504, 5.0], 't1.102.114.195': [0.453, 6.667]}), 'newmec-2'], [({'t1.156.114.196': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.156.114.196': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.196': [0.628, 6.667], 't2.156.114.196': [0.466, 5.0]}), 'osboxes-0'], [({'t2.102.114.197': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.197': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.197': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.197': [0.761, 5.0], 't1.102.114.197': [0.598, 6.667], 't4.102.114.197': [0.616, 10.0]}), 'newmec-2'], [({'t5.102.114.198': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.198': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.198': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.198': [0.733, 5.0], 't2.102.114.198': [0.467, 5.0], 't3.102.114.198': [0.651, 5.0]}), 'newmec-2'], [({'t3.101.114.199': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.199': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.199': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.199': [0.468, 5.0], 't1.101.114.199': [0.42, 6.667], 't5.101.114.199': [0.419, 5.0]}), 'newmec-1'], [({'t2.101.114.200': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.200': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.200': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.200': [0.681, 5.0], 't4.101.114.200': [0.717, 10.0], 't1.101.114.200': [0.586, 6.667]}), 'newmec-1'], [({'t5.156.114.201': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.201': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.201': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.201': [0.46, 5.0], 't1.156.114.201': [0.672, 6.667], 't4.156.114.201': [0.407, 10.0]}), 'osboxes-0'], [({'t5.104.114.202': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.202': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.202': [0.567, 5.0], 't2.104.114.202': [0.473, 5.0]}), 'newmec-4'], [({'t2.103.114.203': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.203': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.203': [0.541, 5.0], 't3.103.114.203': [0.703, 5.0]}), 'newmec-3'], [({'t2.156.114.204': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.204': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.204': [0.597, 5.0], 't5.156.114.204': [0.451, 5.0]}), 'osboxes-0'], [({'t1.156.114.205': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.205': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.205': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.156.114.205': [0.477, 6.667], 't5.156.114.205': [0.765, 5.0], 't3.156.114.205': [0.554, 5.0]}), 'osboxes-0'], [({'t5.101.114.206': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.206': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.206': [0.683, 5.0], 't2.101.114.206': [0.762, 5.0]}), 'newmec-1'], [({'t5.101.114.207': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.207': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.207': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.207': [0.542, 5.0], 't2.101.114.207': [0.574, 5.0], 't1.101.114.207': [0.754, 6.667]}), 'newmec-1'], [({'t2.101.114.208': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.208': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.208': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.208': [0.661, 5.0], 't5.101.114.208': [0.585, 5.0], 't1.101.114.208': [0.681, 6.667]}), 'newmec-1'], [({'t2.104.114.209': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.209': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.209': [0.615, 5.0], 't1.104.114.209': [0.664, 6.667]}), 'newmec-4'], [({'t5.102.114.210': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.210': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.210': [0.693, 5.0], 't4.102.114.210': [0.643, 10.0]}), 'newmec-2'], [({'t3.101.114.211': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.211': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.211': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.211': [0.713, 5.0], 't5.101.114.211': [0.513, 5.0], 't4.101.114.211': [0.554, 10.0]}), 'newmec-1'], [({'t4.103.114.212': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.212': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.212': [0.721, 10.0], 't3.103.114.212': [0.631, 5.0]}), 'newmec-3'], [({'t4.104.114.213': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.213': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.213': [0.572, 10.0], 't1.104.114.213': [0.66, 6.667]}), 'newmec-4'], [({'t5.102.114.214': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.214': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.214': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.214': [0.406, 5.0], 't3.102.114.214': [0.771, 5.0], 't1.102.114.214': [0.464, 6.667]}), 'newmec-2'], [({'t2.104.114.215': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.215': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.215': [0.594, 5.0], 't1.104.114.215': [0.636, 6.667]}), 'newmec-4'], [({'t2.103.114.216': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.216': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.216': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.216': [0.743, 5.0], 't5.103.114.216': [0.675, 5.0], 't1.103.114.216': [0.78, 6.667]}), 'newmec-3'], [({'t5.104.114.217': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.217': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.217': [0.421, 5.0], 't4.104.114.217': [0.421, 10.0]}), 'newmec-4'], [({'t5.156.114.218': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.218': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.218': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.218': [0.511, 5.0], 't4.156.114.218': [0.705, 10.0], 't2.156.114.218': [0.436, 5.0]}), 'osboxes-0'], [({'t3.103.114.219': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.219': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.219': [0.435, 5.0], 't1.103.114.219': [0.532, 6.667]}), 'newmec-3'], [({'t1.103.114.220': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.220': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.220': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.220': [0.559, 6.667], 't3.103.114.220': [0.78, 5.0], 't2.103.114.220': [0.744, 5.0]}), 'newmec-3'], [({'t2.102.114.221': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.221': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.221': [0.441, 5.0], 't5.102.114.221': [0.485, 5.0]}), 'newmec-2'], [({'t1.103.114.222': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.222': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.222': [0.787, 6.667], 't3.103.114.222': [0.4, 5.0]}), 'newmec-3'], [({'t1.103.114.223': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.223': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.223': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.223': [0.552, 6.667], 't5.103.114.223': [0.415, 5.0], 't4.103.114.223': [0.643, 10.0]}), 'newmec-3'], [({'t3.156.114.224': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.224': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.224': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.224': [0.686, 5.0], 't2.156.114.224': [0.576, 5.0], 't4.156.114.224': [0.681, 10.0]}), 'osboxes-0'], [({'t3.156.114.225': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.225': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.225': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.156.114.225': [0.706, 5.0], 't4.156.114.225': [0.641, 10.0], 't1.156.114.225': [0.663, 6.667]}), 'osboxes-0'], [({'t2.101.114.226': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.226': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.226': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.226': [0.666, 5.0], 't1.101.114.226': [0.795, 6.667], 't5.101.114.226': [0.45, 5.0]}), 'newmec-1'], [({'t2.102.114.227': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.227': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.227': [0.768, 5.0], 't1.102.114.227': [0.458, 6.667]}), 'newmec-2'], [({'t3.101.114.228': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.228': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.228': [0.676, 5.0], 't5.101.114.228': [0.476, 5.0]}), 'newmec-1'], [({'t1.103.114.229': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.229': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.229': [0.659, 6.667], 't5.103.114.229': [0.792, 5.0]}), 'newmec-3'], [({'t5.104.114.230': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.230': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.230': [0.496, 5.0], 't2.104.114.230': [0.718, 5.0]}), 'newmec-4'], [({'t3.103.114.231': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.231': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.231': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.231': [0.625, 5.0], 't5.103.114.231': [0.755, 5.0], 't4.103.114.231': [0.517, 10.0]}), 'newmec-3'], [({'t2.156.114.232': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.232': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.232': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.232': [0.484, 5.0], 't1.156.114.232': [0.638, 6.667], 't4.156.114.232': [0.747, 10.0]}), 'osboxes-0'], [({'t5.101.114.233': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.233': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.233': [0.626, 5.0], 't4.101.114.233': [0.66, 10.0]}), 'newmec-1'], [({'t5.103.114.234': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.234': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.234': [0.775, 5.0], 't1.103.114.234': [0.488, 6.667]}), 'newmec-3'], [({'t5.101.114.235': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.235': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.235': [0.476, 5.0], 't2.101.114.235': [0.779, 5.0]}), 'newmec-1'], [({'t3.104.114.236': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.236': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.236': [0.552, 5.0], 't4.104.114.236': [0.652, 10.0]}), 'newmec-4'], [({'t2.104.114.237': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.237': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.237': [0.635, 5.0], 't5.104.114.237': [0.731, 5.0]}), 'newmec-4'], [({'t5.156.114.238': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.238': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.238': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.156.114.238': [0.446, 5.0], 't2.156.114.238': [0.421, 5.0], 't1.156.114.238': [0.471, 6.667]}), 'osboxes-0'], [({'t5.101.114.239': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.239': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.239': [0.418, 5.0], 't3.101.114.239': [0.513, 5.0]}), 'newmec-1'], [({'t5.104.114.240': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.240': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.240': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.240': [0.655, 5.0], 't1.104.114.240': [0.583, 6.667], 't2.104.114.240': [0.584, 5.0]}), 'newmec-4'], [({'t3.103.114.241': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.241': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.241': [0.598, 5.0], 't2.103.114.241': [0.456, 5.0]}), 'newmec-3'], [({'t4.101.114.242': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.242': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.242': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.242': [0.621, 10.0], 't5.101.114.242': [0.685, 5.0], 't3.101.114.242': [0.548, 5.0]}), 'newmec-1'], [({'t5.103.114.243': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.243': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.243': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.243': [0.563, 5.0], 't4.103.114.243': [0.746, 10.0], 't3.103.114.243': [0.763, 5.0]}), 'newmec-3'], [({'t4.156.114.244': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.244': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.244': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.244': [0.689, 10.0], 't1.156.114.244': [0.585, 6.667], 't3.156.114.244': [0.554, 5.0]}), 'osboxes-0'], [({'t4.156.114.245': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.245': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.245': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.245': [0.698, 10.0], 't1.156.114.245': [0.515, 6.667], 't3.156.114.245': [0.695, 5.0]}), 'osboxes-0'], [({'t2.102.114.246': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.246': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.246': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.246': [0.711, 5.0], 't1.102.114.246': [0.703, 6.667], 't4.102.114.246': [0.432, 10.0]}), 'newmec-2'], [({'t2.101.114.247': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.247': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.247': [0.766, 5.0], 't5.101.114.247': [0.686, 5.0]}), 'newmec-1'], [({'t4.102.114.248': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.248': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.248': [0.659, 10.0], 't2.102.114.248': [0.506, 5.0]}), 'newmec-2'], [({'t3.102.114.249': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.249': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.249': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.249': [0.575, 5.0], 't2.102.114.249': [0.515, 5.0], 't4.102.114.249': [0.758, 10.0]}), 'newmec-2'], [({'t3.104.114.250': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.250': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.250': [0.664, 5.0], 't2.104.114.250': [0.592, 5.0]}), 'newmec-4'], [({'t2.101.114.251': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.251': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.251': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.251': [0.692, 5.0], 't5.101.114.251': [0.553, 5.0], 't1.101.114.251': [0.75, 6.667]}), 'newmec-1'], [({'t5.102.114.252': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.252': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.252': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.252': [0.447, 5.0], 't3.102.114.252': [0.473, 5.0], 't1.102.114.252': [0.496, 6.667]}), 'newmec-2'], [({'t2.156.114.253': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.253': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.253': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.253': [0.444, 5.0], 't4.156.114.253': [0.488, 10.0], 't5.156.114.253': [0.527, 5.0]}), 'osboxes-0'], [({'t4.104.114.254': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.254': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.254': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.254': [0.411, 10.0], 't5.104.114.254': [0.414, 5.0], 't2.104.114.254': [0.5, 5.0]}), 'newmec-4'], [({'t5.102.114.255': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.255': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.255': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.255': [0.627, 5.0], 't2.102.114.255': [0.516, 5.0], 't3.102.114.255': [0.533, 5.0]}), 'newmec-2'], [({'t4.101.114.256': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.256': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.256': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.256': [0.681, 10.0], 't5.101.114.256': [0.44, 5.0], 't2.101.114.256': [0.642, 5.0]}), 'newmec-1'], [({'t3.102.114.257': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.257': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.257': [0.601, 5.0], 't5.102.114.257': [0.549, 5.0]}), 'newmec-2'], [({'t4.101.114.258': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.258': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.258': [0.468, 10.0], 't5.101.114.258': [0.634, 5.0]}), 'newmec-1'], [({'t3.103.114.259': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.259': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.259': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.259': [0.732, 5.0], 't2.103.114.259': [0.529, 5.0], 't4.103.114.259': [0.761, 10.0]}), 'newmec-3'], [({'t2.103.114.260': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.260': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.260': [0.418, 5.0], 't5.103.114.260': [0.597, 5.0]}), 'newmec-3'], [({'t4.104.114.261': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.261': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.261': [0.789, 10.0], 't3.104.114.261': [0.731, 5.0]}), 'newmec-4'], [({'t2.101.114.262': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.262': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.262': [0.713, 5.0], 't3.101.114.262': [0.599, 5.0]}), 'newmec-1'], [({'t3.104.114.263': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.263': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.263': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.263': [0.518, 5.0], 't5.104.114.263': [0.709, 5.0], 't2.104.114.263': [0.784, 5.0]}), 'newmec-4'], [({'t4.103.114.264': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.264': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.264': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.264': [0.575, 10.0], 't1.103.114.264': [0.706, 6.667], 't3.103.114.264': [0.475, 5.0]}), 'newmec-3'], [({'t3.102.114.265': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.265': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.265': [0.566, 5.0], 't2.102.114.265': [0.446, 5.0]}), 'newmec-2'], [({'t2.102.114.266': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.266': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.266': [0.461, 5.0], 't1.102.114.266': [0.644, 6.667]}), 'newmec-2'], [({'t5.156.114.267': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.267': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.267': [0.491, 5.0], 't4.156.114.267': [0.461, 10.0]}), 'osboxes-0'], [({'t4.156.114.268': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.268': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.268': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.268': [0.511, 10.0], 't2.156.114.268': [0.403, 5.0], 't5.156.114.268': [0.707, 5.0]}), 'osboxes-0'], [({'t5.103.114.269': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.269': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.269': [0.679, 5.0], 't2.103.114.269': [0.554, 5.0]}), 'newmec-3'], [({'t5.101.114.270': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.270': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.270': [0.47, 5.0], 't1.101.114.270': [0.636, 6.667]}), 'newmec-1'], [({'t4.156.114.271': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.271': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.271': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.271': [0.693, 10.0], 't2.156.114.271': [0.557, 5.0], 't5.156.114.271': [0.459, 5.0]}), 'osboxes-0'], [({'t1.102.114.272': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.272': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.272': [0.463, 6.667], 't5.102.114.272': [0.522, 5.0]}), 'newmec-2'], [({'t2.101.114.273': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.273': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.273': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.273': [0.435, 5.0], 't5.101.114.273': [0.518, 5.0], 't1.101.114.273': [0.742, 6.667]}), 'newmec-1'], [({'t1.104.114.274': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.274': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.274': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.274': [0.622, 6.667], 't3.104.114.274': [0.763, 5.0], 't5.104.114.274': [0.622, 5.0]}), 'newmec-4'], [({'t5.103.114.275': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.275': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.275': [0.758, 5.0], 't3.103.114.275': [0.756, 5.0]}), 'newmec-3'], [({'t2.104.114.276': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.276': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.276': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.276': [0.711, 5.0], 't5.104.114.276': [0.492, 5.0], 't4.104.114.276': [0.55, 10.0]}), 'newmec-4'], [({'t2.102.114.277': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.277': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.277': [0.665, 5.0], 't5.102.114.277': [0.561, 5.0]}), 'newmec-2'], [({'t3.101.114.278': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.278': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.278': [0.787, 5.0], 't5.101.114.278': [0.718, 5.0]}), 'newmec-1'], [({'t1.103.114.279': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.279': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.279': [0.46, 6.667], 't4.103.114.279': [0.655, 10.0]}), 'newmec-3'], [({'t5.103.114.280': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.280': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.280': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.280': [0.588, 5.0], 't2.103.114.280': [0.443, 5.0], 't4.103.114.280': [0.58, 10.0]}), 'newmec-3'], [({'t5.104.114.281': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.281': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.281': [0.658, 5.0], 't2.104.114.281': [0.775, 5.0]}), 'newmec-4'], [({'t4.102.114.282': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.282': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.282': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.282': [0.411, 10.0], 't5.102.114.282': [0.76, 5.0], 't1.102.114.282': [0.629, 6.667]}), 'newmec-2'], [({'t1.103.114.283': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.283': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.283': [0.648, 6.667], 't5.103.114.283': [0.407, 5.0]}), 'newmec-3'], [({'t1.102.114.284': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.284': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.284': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.284': [0.661, 6.667], 't2.102.114.284': [0.529, 5.0], 't3.102.114.284': [0.604, 5.0]}), 'newmec-2'], [({'t3.104.114.285': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.285': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.285': [0.668, 5.0], 't2.104.114.285': [0.454, 5.0]}), 'newmec-4'], [({'t1.104.114.286': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.286': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.286': [0.506, 6.667], 't2.104.114.286': [0.582, 5.0]}), 'newmec-4'], [({'t2.104.114.287': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.287': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.287': [0.733, 5.0], 't4.104.114.287': [0.408, 10.0]}), 'newmec-4'], [({'t1.103.114.288': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.288': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.288': [0.688, 6.667], 't5.103.114.288': [0.519, 5.0]}), 'newmec-3'], [({'t1.104.114.289': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.289': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.289': [0.684, 6.667], 't4.104.114.289': [0.403, 10.0]}), 'newmec-4'], [({'t5.102.114.290': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.290': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.290': [0.509, 5.0], 't3.102.114.290': [0.55, 5.0]}), 'newmec-2'], [({'t2.104.114.291': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.291': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.291': [0.435, 5.0], 't4.104.114.291': [0.715, 10.0]}), 'newmec-4'], [({'t3.102.114.292': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.292': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.292': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.292': [0.577, 5.0], 't1.102.114.292': [0.49, 6.667], 't4.102.114.292': [0.474, 10.0]}), 'newmec-2'], [({'t2.104.114.293': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.293': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.293': [0.488, 5.0], 't3.104.114.293': [0.685, 5.0]}), 'newmec-4'], [({'t5.103.114.294': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.294': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.294': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.294': [0.749, 5.0], 't4.103.114.294': [0.424, 10.0], 't3.103.114.294': [0.547, 5.0]}), 'newmec-3'], [({'t5.156.114.295': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.295': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.295': [0.645, 5.0], 't3.156.114.295': [0.551, 5.0]}), 'osboxes-0'], [({'t2.102.114.296': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.296': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.296': [0.642, 5.0], 't3.102.114.296': [0.495, 5.0]}), 'newmec-2'], [({'t5.102.114.297': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.297': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.297': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.297': [0.663, 5.0], 't3.102.114.297': [0.453, 5.0], 't2.102.114.297': [0.685, 5.0]}), 'newmec-2'], [({'t4.102.114.298': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.298': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.298': [0.771, 10.0], 't5.102.114.298': [0.584, 5.0]}), 'newmec-2'], [({'t5.156.114.299': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.299': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.299': [0.779, 5.0], 't4.156.114.299': [0.695, 10.0]}), 'osboxes-0'], [({'t2.156.114.300': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.300': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.300': [0.763, 5.0], 't4.156.114.300': [0.442, 10.0]}), 'osboxes-0'], [({'t2.103.114.301': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.301': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.301': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.301': [0.472, 5.0], 't1.103.114.301': [0.536, 6.667], 't3.103.114.301': [0.604, 5.0]}), 'newmec-3'], [({'t1.156.114.302': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.302': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.302': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.156.114.302': [0.515, 6.667], 't5.156.114.302': [0.687, 5.0], 't4.156.114.302': [0.422, 10.0]}), 'osboxes-0'], [({'t2.101.114.303': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.303': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.303': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.303': [0.666, 5.0], 't5.101.114.303': [0.787, 5.0], 't4.101.114.303': [0.764, 10.0]}), 'newmec-1'], [({'t2.104.114.304': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.304': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.304': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.304': [0.611, 5.0], 't3.104.114.304': [0.473, 5.0], 't5.104.114.304': [0.496, 5.0]}), 'newmec-4'], [({'t3.101.114.305': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.305': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.305': [0.594, 5.0], 't1.101.114.305': [0.665, 6.667]}), 'newmec-1'], [({'t2.104.114.306': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.306': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.306': [0.529, 5.0], 't1.104.114.306': [0.684, 6.667]}), 'newmec-4'], [({'t2.101.114.307': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.307': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.307': [0.497, 5.0], 't5.101.114.307': [0.744, 5.0]}), 'newmec-1'], [({'t1.104.114.308': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.308': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.308': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.308': [0.663, 6.667], 't3.104.114.308': [0.673, 5.0], 't2.104.114.308': [0.442, 5.0]}), 'newmec-4'], [({'t4.104.114.309': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.309': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.309': [0.506, 10.0], 't2.104.114.309': [0.441, 5.0]}), 'newmec-4'], [({'t4.104.114.310': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.310': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.310': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.310': [0.664, 10.0], 't3.104.114.310': [0.451, 5.0], 't2.104.114.310': [0.778, 5.0]}), 'newmec-4'], [({'t3.102.114.311': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.311': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.311': [0.692, 5.0], 't1.102.114.311': [0.47, 6.667]}), 'newmec-2'], [({'t2.103.114.312': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.312': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.312': [0.424, 5.0], 't5.103.114.312': [0.786, 5.0]}), 'newmec-3'], [({'t3.104.114.313': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.313': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.313': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.313': [0.556, 5.0], 't1.104.114.313': [0.648, 6.667], 't5.104.114.313': [0.534, 5.0]}), 'newmec-4'], [({'t3.101.114.314': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.314': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.314': [0.458, 5.0], 't5.101.114.314': [0.718, 5.0]}), 'newmec-1'], [({'t5.102.114.315': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.315': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.315': [0.745, 5.0], 't3.102.114.315': [0.592, 5.0]}), 'newmec-2'], [({'t4.101.114.316': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.316': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.316': [0.761, 10.0], 't1.101.114.316': [0.654, 6.667]}), 'newmec-1'], [({'t5.156.114.317': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.317': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.317': [0.439, 5.0], 't2.156.114.317': [0.627, 5.0]}), 'osboxes-0'], [({'t4.101.114.318': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.318': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.318': [0.422, 10.0], 't3.101.114.318': [0.684, 5.0]}), 'newmec-1'], [({'t5.103.114.319': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.319': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.319': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.319': [0.431, 5.0], 't3.103.114.319': [0.693, 5.0], 't4.103.114.319': [0.725, 10.0]}), 'newmec-3'], [({'t1.101.114.320': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.320': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.320': [0.72, 6.667], 't3.101.114.320': [0.694, 5.0]}), 'newmec-1'], [({'t5.102.114.321': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.321': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.321': [0.742, 5.0], 't4.102.114.321': [0.616, 10.0]}), 'newmec-2'], [({'t3.103.114.322': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.322': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.322': [0.644, 5.0], 't2.103.114.322': [0.756, 5.0]}), 'newmec-3'], [({'t4.156.114.323': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.323': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.323': [0.795, 10.0], 't5.156.114.323': [0.772, 5.0]}), 'osboxes-0'], [({'t3.102.114.324': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.324': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.324': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.324': [0.463, 5.0], 't5.102.114.324': [0.512, 5.0], 't2.102.114.324': [0.722, 5.0]}), 'newmec-2'], [({'t5.104.114.325': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.325': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.325': [0.578, 5.0], 't3.104.114.325': [0.45, 5.0]}), 'newmec-4'], [({'t1.101.114.326': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.326': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.326': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.326': [0.711, 6.667], 't5.101.114.326': [0.674, 5.0], 't3.101.114.326': [0.761, 5.0]}), 'newmec-1'], [({'t3.102.114.327': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.327': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.327': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.327': [0.753, 5.0], 't2.102.114.327': [0.545, 5.0], 't1.102.114.327': [0.469, 6.667]}), 'newmec-2'], [({'t4.103.114.328': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.328': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.328': [0.58, 10.0], 't5.103.114.328': [0.505, 5.0]}), 'newmec-3'], [({'t3.102.114.329': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.329': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.329': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.329': [0.606, 5.0], 't2.102.114.329': [0.798, 5.0], 't4.102.114.329': [0.607, 10.0]}), 'newmec-2'], [({'t2.101.114.330': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.330': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.330': [0.447, 5.0], 't5.101.114.330': [0.597, 5.0]}), 'newmec-1'], [({'t1.102.114.331': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.331': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.331': [0.413, 6.667], 't2.102.114.331': [0.464, 5.0]}), 'newmec-2'], [({'t3.101.114.332': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.332': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.332': [0.445, 5.0], 't2.101.114.332': [0.771, 5.0]}), 'newmec-1'], [({'t4.102.114.333': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.333': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.333': [0.649, 10.0], 't5.102.114.333': [0.598, 5.0]}), 'newmec-2'], [({'t3.104.114.334': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.334': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.334': [0.719, 5.0], 't4.104.114.334': [0.605, 10.0]}), 'newmec-4'], [({'t4.156.114.335': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.335': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.335': [0.445, 10.0], 't2.156.114.335': [0.738, 5.0]}), 'osboxes-0'], [({'t4.103.114.336': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.336': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.336': [0.585, 10.0], 't5.103.114.336': [0.688, 5.0]}), 'newmec-3'], [({'t5.103.114.337': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.337': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.337': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.337': [0.493, 5.0], 't1.103.114.337': [0.687, 6.667], 't2.103.114.337': [0.793, 5.0]}), 'newmec-3'], [({'t3.102.114.338': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.338': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.338': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.338': [0.632, 5.0], 't5.102.114.338': [0.662, 5.0], 't4.102.114.338': [0.569, 10.0]}), 'newmec-2'], [({'t4.104.114.339': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.339': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.339': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.339': [0.653, 10.0], 't2.104.114.339': [0.451, 5.0], 't1.104.114.339': [0.695, 6.667]}), 'newmec-4'], [({'t4.104.114.340': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.340': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.340': [0.408, 10.0], 't2.104.114.340': [0.602, 5.0]}), 'newmec-4'], [({'t3.104.114.341': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.341': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.341': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.341': [0.437, 5.0], 't2.104.114.341': [0.562, 5.0], 't1.104.114.341': [0.695, 6.667]}), 'newmec-4'], [({'t3.104.114.342': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.342': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.342': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.342': [0.567, 5.0], 't4.104.114.342': [0.729, 10.0], 't1.104.114.342': [0.552, 6.667]}), 'newmec-4'], [({'t2.156.114.343': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.343': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.343': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.343': [0.587, 5.0], 't1.156.114.343': [0.701, 6.667], 't5.156.114.343': [0.658, 5.0]}), 'osboxes-0'], [({'t3.102.114.344': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.344': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.344': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.344': [0.573, 5.0], 't5.102.114.344': [0.73, 5.0], 't2.102.114.344': [0.75, 5.0]}), 'newmec-2'], [({'t2.101.114.345': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.345': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.345': [0.608, 5.0], 't3.101.114.345': [0.527, 5.0]}), 'newmec-1'], [({'t4.104.114.346': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.346': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.346': [0.584, 10.0], 't2.104.114.346': [0.78, 5.0]}), 'newmec-4'], [({'t5.104.114.347': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.347': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.347': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.347': [0.596, 5.0], 't1.104.114.347': [0.608, 6.667], 't4.104.114.347': [0.565, 10.0]}), 'newmec-4'], [({'t5.102.114.348': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.348': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.348': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.348': [0.552, 5.0], 't3.102.114.348': [0.756, 5.0], 't4.102.114.348': [0.621, 10.0]}), 'newmec-2'], [({'t2.101.114.349': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.349': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.349': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.349': [0.604, 5.0], 't5.101.114.349': [0.476, 5.0], 't1.101.114.349': [0.689, 6.667]}), 'newmec-1'], [({'t2.103.114.350': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.350': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.350': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.350': [0.558, 5.0], 't5.103.114.350': [0.745, 5.0], 't1.103.114.350': [0.566, 6.667]}), 'newmec-3'], [({'t2.104.114.351': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.351': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.351': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.351': [0.413, 5.0], 't3.104.114.351': [0.645, 5.0], 't1.104.114.351': [0.632, 6.667]}), 'newmec-4'], [({'t3.103.114.352': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.352': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.352': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.352': [0.746, 5.0], 't5.103.114.352': [0.531, 5.0], 't4.103.114.352': [0.424, 10.0]}), 'newmec-3'], [({'t3.104.114.353': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.353': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.353': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.353': [0.481, 5.0], 't1.104.114.353': [0.611, 6.667], 't2.104.114.353': [0.608, 5.0]}), 'newmec-4'], [({'t1.101.114.354': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.354': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.354': [0.515, 6.667], 't2.101.114.354': [0.521, 5.0]}), 'newmec-1'], [({'t3.156.114.355': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.355': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.156.114.355': [0.756, 5.0], 't2.156.114.355': [0.713, 5.0]}), 'osboxes-0'], [({'t1.156.114.356': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.356': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.356': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.356': [0.751, 6.667], 't3.156.114.356': [0.543, 5.0], 't5.156.114.356': [0.457, 5.0]}), 'osboxes-0'], [({'t2.103.114.357': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.357': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.357': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.357': [0.58, 5.0], 't4.103.114.357': [0.425, 10.0], 't1.103.114.357': [0.646, 6.667]}), 'newmec-3'], [({'t5.102.114.358': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.358': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.358': [0.505, 5.0], 't1.102.114.358': [0.71, 6.667]}), 'newmec-2'], [({'t1.104.114.359': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.359': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.359': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.359': [0.438, 6.667], 't5.104.114.359': [0.657, 5.0], 't4.104.114.359': [0.443, 10.0]}), 'newmec-4'], [({'t5.101.114.360': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.360': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.360': [0.493, 5.0], 't3.101.114.360': [0.455, 5.0]}), 'newmec-1'], [({'t1.104.114.361': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.361': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.361': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.361': [0.441, 6.667], 't5.104.114.361': [0.63, 5.0], 't4.104.114.361': [0.477, 10.0]}), 'newmec-4'], [({'t5.101.114.362': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.362': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.362': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.362': [0.695, 5.0], 't4.101.114.362': [0.714, 10.0], 't1.101.114.362': [0.557, 6.667]}), 'newmec-1'], [({'t4.101.114.363': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.363': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.363': [0.713, 10.0], 't5.101.114.363': [0.65, 5.0]}), 'newmec-1'], [({'t2.104.114.364': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.364': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.364': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.364': [0.648, 5.0], 't4.104.114.364': [0.476, 10.0], 't1.104.114.364': [0.517, 6.667]}), 'newmec-4'], [({'t2.101.114.365': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.365': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.365': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.365': [0.568, 5.0], 't3.101.114.365': [0.663, 5.0], 't5.101.114.365': [0.504, 5.0]}), 'newmec-1'], [({'t2.156.114.366': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.366': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.366': [0.689, 5.0], 't5.156.114.366': [0.541, 5.0]}), 'osboxes-0'], [({'t2.104.114.367': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.367': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.367': [0.793, 5.0], 't5.104.114.367': [0.768, 5.0]}), 'newmec-4'], [({'t1.103.114.368': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.368': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.368': [0.421, 6.667], 't5.103.114.368': [0.661, 5.0]}), 'newmec-3'], [({'t3.103.114.369': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.369': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.369': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.369': [0.492, 5.0], 't4.103.114.369': [0.601, 10.0], 't2.103.114.369': [0.498, 5.0]}), 'newmec-3'], [({'t3.104.114.370': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.370': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.370': [0.416, 5.0], 't2.104.114.370': [0.534, 5.0]}), 'newmec-4'], [({'t2.103.114.371': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.371': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.371': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.371': [0.517, 5.0], 't5.103.114.371': [0.483, 5.0], 't3.103.114.371': [0.567, 5.0]}), 'newmec-3'], [({'t2.102.114.372': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.372': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.372': [0.52, 5.0], 't1.102.114.372': [0.571, 6.667]}), 'newmec-2'], [({'t1.101.114.373': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.373': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.373': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.373': [0.636, 6.667], 't4.101.114.373': [0.527, 10.0], 't5.101.114.373': [0.761, 5.0]}), 'newmec-1'], [({'t2.102.114.374': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.374': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.374': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.374': [0.64, 5.0], 't3.102.114.374': [0.623, 5.0], 't5.102.114.374': [0.456, 5.0]}), 'newmec-2'], [({'t3.102.114.375': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.375': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.375': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.375': [0.595, 5.0], 't5.102.114.375': [0.634, 5.0], 't2.102.114.375': [0.68, 5.0]}), 'newmec-2'], [({'t2.101.114.376': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.376': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.376': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.376': [0.616, 5.0], 't5.101.114.376': [0.611, 5.0], 't4.101.114.376': [0.516, 10.0]}), 'newmec-1'], [({'t1.102.114.377': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.377': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.377': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.377': [0.415, 6.667], 't5.102.114.377': [0.441, 5.0], 't4.102.114.377': [0.702, 10.0]}), 'newmec-2'], [({'t2.102.114.378': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.378': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.378': [0.712, 5.0], 't4.102.114.378': [0.738, 10.0]}), 'newmec-2'], [({'t4.102.114.379': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.379': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.379': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.379': [0.742, 10.0], 't5.102.114.379': [0.623, 5.0], 't2.102.114.379': [0.545, 5.0]}), 'newmec-2'], [({'t2.156.114.380': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.380': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.380': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.380': [0.471, 5.0], 't4.156.114.380': [0.667, 10.0], 't1.156.114.380': [0.719, 6.667]}), 'osboxes-0'], [({'t3.101.114.381': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.381': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.381': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.381': [0.604, 5.0], 't5.101.114.381': [0.544, 5.0], 't4.101.114.381': [0.52, 10.0]}), 'newmec-1'], [({'t5.103.114.382': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.382': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.382': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.382': [0.693, 5.0], 't3.103.114.382': [0.625, 5.0], 't4.103.114.382': [0.461, 10.0]}), 'newmec-3'], [({'t4.102.114.383': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.383': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.383': [0.544, 10.0], 't5.102.114.383': [0.722, 5.0]}), 'newmec-2'], [({'t3.104.114.384': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.384': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.384': [0.658, 5.0], 't2.104.114.384': [0.451, 5.0]}), 'newmec-4'], [({'t2.103.114.385': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.385': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.385': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.385': [0.448, 5.0], 't3.103.114.385': [0.743, 5.0], 't5.103.114.385': [0.791, 5.0]}), 'newmec-3'], [({'t4.103.114.386': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.386': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.386': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.386': [0.736, 10.0], 't5.103.114.386': [0.486, 5.0], 't2.103.114.386': [0.543, 5.0]}), 'newmec-3'], [({'t3.156.114.387': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.387': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.387': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.387': [0.635, 5.0], 't4.156.114.387': [0.626, 10.0], 't5.156.114.387': [0.501, 5.0]}), 'osboxes-0'], [({'t5.103.114.388': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.388': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.388': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.388': [0.756, 5.0], 't3.103.114.388': [0.591, 5.0], 't2.103.114.388': [0.765, 5.0]}), 'newmec-3'], [({'t4.102.114.389': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.389': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.389': [0.46, 10.0], 't1.102.114.389': [0.442, 6.667]}), 'newmec-2'], [({'t3.103.114.390': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.390': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.390': [0.524, 5.0], 't1.103.114.390': [0.668, 6.667]}), 'newmec-3'], [({'t4.103.114.391': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.391': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.391': [0.563, 10.0], 't1.103.114.391': [0.743, 6.667]}), 'newmec-3'], [({'t5.104.114.392': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.392': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.392': [0.698, 5.0], 't2.104.114.392': [0.754, 5.0]}), 'newmec-4'], [({'t5.102.114.393': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.393': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.393': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.393': [0.602, 5.0], 't3.102.114.393': [0.513, 5.0], 't4.102.114.393': [0.6, 10.0]}), 'newmec-2'], [({'t5.104.114.394': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.394': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.394': [0.41, 5.0], 't1.104.114.394': [0.754, 6.667]}), 'newmec-4'], [({'t4.101.114.395': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.395': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.395': [0.488, 10.0], 't3.101.114.395': [0.442, 5.0]}), 'newmec-1'], [({'t4.156.114.396': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.396': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.396': [0.42, 10.0], 't2.156.114.396': [0.417, 5.0]}), 'osboxes-0'], [({'t1.102.114.397': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.397': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.397': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.397': [0.538, 6.667], 't4.102.114.397': [0.737, 10.0], 't3.102.114.397': [0.785, 5.0]}), 'newmec-2'], [({'t1.102.114.398': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.398': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.398': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.398': [0.584, 6.667], 't5.102.114.398': [0.509, 5.0], 't2.102.114.398': [0.606, 5.0]}), 'newmec-2'], [({'t3.103.114.399': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.399': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.399': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.399': [0.739, 5.0], 't2.103.114.399': [0.637, 5.0], 't5.103.114.399': [0.513, 5.0]}), 'newmec-3'], [({'t2.101.114.400': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.400': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.400': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.400': [0.478, 5.0], 't4.101.114.400': [0.405, 10.0], 't3.101.114.400': [0.706, 5.0]}), 'newmec-1'], [({'t1.101.114.401': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.401': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.401': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.401': [0.652, 6.667], 't3.101.114.401': [0.423, 5.0], 't5.101.114.401': [0.484, 5.0]}), 'newmec-1'], [({'t2.104.114.402': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.402': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.402': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.402': [0.512, 5.0], 't3.104.114.402': [0.454, 5.0], 't4.104.114.402': [0.485, 10.0]}), 'newmec-4'], [({'t4.102.114.403': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.403': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.403': [0.498, 10.0], 't3.102.114.403': [0.497, 5.0]}), 'newmec-2'], [({'t1.101.114.404': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.404': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.404': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.404': [0.626, 6.667], 't5.101.114.404': [0.537, 5.0], 't3.101.114.404': [0.529, 5.0]}), 'newmec-1'], [({'t3.101.114.405': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.405': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.405': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.405': [0.539, 5.0], 't2.101.114.405': [0.645, 5.0], 't1.101.114.405': [0.437, 6.667]}), 'newmec-1'], [({'t4.101.114.406': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.406': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.406': [0.611, 10.0], 't1.101.114.406': [0.464, 6.667]}), 'newmec-1'], [({'t5.103.114.407': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.407': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.407': [0.705, 5.0], 't3.103.114.407': [0.732, 5.0]}), 'newmec-3'], [({'t4.104.114.408': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.408': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.408': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.408': [0.671, 10.0], 't3.104.114.408': [0.647, 5.0], 't2.104.114.408': [0.417, 5.0]}), 'newmec-4'], [({'t1.101.114.409': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.409': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.409': [0.771, 6.667], 't5.101.114.409': [0.643, 5.0]}), 'newmec-1'], [({'t1.102.114.410': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.410': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.410': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.410': [0.626, 6.667], 't5.102.114.410': [0.424, 5.0], 't3.102.114.410': [0.728, 5.0]}), 'newmec-2'], [({'t1.102.114.411': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.411': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.411': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.411': [0.423, 6.667], 't3.102.114.411': [0.762, 5.0], 't4.102.114.411': [0.718, 10.0]}), 'newmec-2'], [({'t4.101.114.412': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.412': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.412': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.412': [0.4, 10.0], 't1.101.114.412': [0.429, 6.667], 't3.101.114.412': [0.578, 5.0]}), 'newmec-1'], [({'t3.104.114.413': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.413': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.413': [0.725, 5.0], 't1.104.114.413': [0.468, 6.667]}), 'newmec-4'], [({'t4.102.114.414': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.414': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.414': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.414': [0.609, 10.0], 't5.102.114.414': [0.699, 5.0], 't3.102.114.414': [0.761, 5.0]}), 'newmec-2'], [({'t4.103.114.415': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.415': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.415': [0.548, 10.0], 't5.103.114.415': [0.607, 5.0]}), 'newmec-3'], [({'t5.101.114.416': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.416': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.416': [0.442, 5.0], 't2.101.114.416': [0.565, 5.0]}), 'newmec-1'], [({'t3.101.114.417': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.417': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.417': [0.75, 5.0], 't5.101.114.417': [0.512, 5.0]}), 'newmec-1'], [({'t3.103.114.418': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.418': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.418': [0.667, 5.0], 't5.103.114.418': [0.501, 5.0]}), 'newmec-3'], [({'t3.104.114.419': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.419': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.419': [0.527, 5.0], 't4.104.114.419': [0.724, 10.0]}), 'newmec-4'], [({'t2.102.114.420': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.420': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.420': [0.683, 5.0], 't4.102.114.420': [0.667, 10.0]}), 'newmec-2'], [({'t5.101.114.421': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.421': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.421': [0.742, 5.0], 't3.101.114.421': [0.679, 5.0]}), 'newmec-1'], [({'t3.102.114.422': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.422': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.422': [0.44, 5.0], 't1.102.114.422': [0.625, 6.667]}), 'newmec-2'], [({'t3.103.114.423': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.423': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.423': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.423': [0.619, 5.0], 't2.103.114.423': [0.752, 5.0], 't1.103.114.423': [0.634, 6.667]}), 'newmec-3'], [({'t4.102.114.424': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.424': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.424': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.424': [0.616, 10.0], 't2.102.114.424': [0.77, 5.0], 't1.102.114.424': [0.784, 6.667]}), 'newmec-2'], [({'t2.156.114.425': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.425': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.425': [0.565, 5.0], 't5.156.114.425': [0.417, 5.0]}), 'osboxes-0'], [({'t1.102.114.426': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.426': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.426': [0.512, 6.667], 't5.102.114.426': [0.632, 5.0]}), 'newmec-2'], [({'t3.104.114.427': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.427': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.427': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.427': [0.678, 5.0], 't1.104.114.427': [0.535, 6.667], 't4.104.114.427': [0.581, 10.0]}), 'newmec-4'], [({'t4.103.114.428': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.428': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.428': [0.425, 10.0], 't1.103.114.428': [0.417, 6.667]}), 'newmec-3'], [({'t2.102.114.429': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.429': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.429': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.429': [0.501, 5.0], 't3.102.114.429': [0.597, 5.0], 't1.102.114.429': [0.637, 6.667]}), 'newmec-2'], [({'t5.102.114.430': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.430': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.430': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.430': [0.519, 5.0], 't2.102.114.430': [0.571, 5.0], 't1.102.114.430': [0.689, 6.667]}), 'newmec-2'], [({'t4.103.114.431': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.431': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.431': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.431': [0.779, 10.0], 't3.103.114.431': [0.52, 5.0], 't5.103.114.431': [0.41, 5.0]}), 'newmec-3'], [({'t2.104.114.432': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.432': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.432': [0.662, 5.0], 't3.104.114.432': [0.531, 5.0]}), 'newmec-4'], [({'t1.101.114.433': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.433': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.433': [0.447, 6.667], 't2.101.114.433': [0.457, 5.0]}), 'newmec-1'], [({'t1.104.114.434': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.434': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.434': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.434': [0.437, 6.667], 't5.104.114.434': [0.609, 5.0], 't2.104.114.434': [0.626, 5.0]}), 'newmec-4'], [({'t2.101.114.435': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.435': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.435': [0.441, 5.0], 't3.101.114.435': [0.536, 5.0]}), 'newmec-1'], [({'t3.102.114.436': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.436': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.436': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.436': [0.449, 5.0], 't1.102.114.436': [0.481, 6.667], 't4.102.114.436': [0.751, 10.0]}), 'newmec-2'], [({'t1.104.114.437': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.437': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.437': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.437': [0.753, 6.667], 't5.104.114.437': [0.787, 5.0], 't2.104.114.437': [0.58, 5.0]}), 'newmec-4'], [({'t2.102.114.438': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.438': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.438': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.438': [0.47, 5.0], 't4.102.114.438': [0.76, 10.0], 't3.102.114.438': [0.656, 5.0]}), 'newmec-2'], [({'t2.156.114.439': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.439': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.439': [0.762, 5.0], 't5.156.114.439': [0.538, 5.0]}), 'osboxes-0'], [({'t4.104.114.440': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.440': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.440': [0.661, 10.0], 't2.104.114.440': [0.567, 5.0]}), 'newmec-4'], [({'t4.101.114.441': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.441': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.441': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.441': [0.548, 10.0], 't2.101.114.441': [0.701, 5.0], 't5.101.114.441': [0.429, 5.0]}), 'newmec-1'], [({'t4.156.114.442': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.442': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.442': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.442': [0.415, 10.0], 't3.156.114.442': [0.468, 5.0], 't5.156.114.442': [0.731, 5.0]}), 'osboxes-0'], [({'t3.104.114.443': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.443': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.443': [0.455, 5.0], 't5.104.114.443': [0.576, 5.0]}), 'newmec-4'], [({'t1.103.114.444': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.444': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.444': [0.676, 6.667], 't3.103.114.444': [0.426, 5.0]}), 'newmec-3'], [({'t3.101.114.445': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.445': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.445': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.445': [0.408, 5.0], 't2.101.114.445': [0.626, 5.0], 't4.101.114.445': [0.745, 10.0]}), 'newmec-1'], [({'t4.101.114.446': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.446': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.446': [0.535, 10.0], 't5.101.114.446': [0.458, 5.0]}), 'newmec-1'], [({'t1.102.114.447': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.447': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.447': [0.421, 6.667], 't5.102.114.447': [0.517, 5.0]}), 'newmec-2'], [({'t4.104.114.448': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.448': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.448': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.448': [0.76, 10.0], 't3.104.114.448': [0.456, 5.0], 't5.104.114.448': [0.406, 5.0]}), 'newmec-4'], [({'t4.104.114.449': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.449': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.449': [0.711, 10.0], 't3.104.114.449': [0.71, 5.0]}), 'newmec-4'], [({'t4.104.114.450': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.450': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.450': [0.716, 10.0], 't2.104.114.450': [0.784, 5.0]}), 'newmec-4'], [({'t2.103.114.451': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.451': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.451': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.451': [0.643, 5.0], 't5.103.114.451': [0.591, 5.0], 't3.103.114.451': [0.745, 5.0]}), 'newmec-3'], [({'t1.103.114.452': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.452': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.452': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.452': [0.442, 6.667], 't3.103.114.452': [0.774, 5.0], 't5.103.114.452': [0.708, 5.0]}), 'newmec-3'], [({'t1.104.114.453': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.453': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.453': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.453': [0.465, 6.667], 't3.104.114.453': [0.68, 5.0], 't2.104.114.453': [0.799, 5.0]}), 'newmec-4'], [({'t3.156.114.454': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.454': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.454': [0.518, 5.0], 't4.156.114.454': [0.427, 10.0]}), 'osboxes-0'], [({'t5.101.114.455': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.455': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.455': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.455': [0.451, 5.0], 't3.101.114.455': [0.701, 5.0], 't1.101.114.455': [0.69, 6.667]}), 'newmec-1'], [({'t1.103.114.456': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.456': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.456': [0.715, 6.667], 't5.103.114.456': [0.549, 5.0]}), 'newmec-3'], [({'t5.156.114.457': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.457': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.156.114.457': [0.694, 5.0], 't1.156.114.457': [0.465, 6.667]}), 'osboxes-0'], [({'t4.156.114.458': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.458': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.458': [0.55, 10.0], 't3.156.114.458': [0.724, 5.0]}), 'osboxes-0'], [({'t3.103.114.459': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.459': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.459': [0.741, 5.0], 't5.103.114.459': [0.449, 5.0]}), 'newmec-3'], [({'t5.102.114.460': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.460': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.460': [0.434, 5.0], 't4.102.114.460': [0.469, 10.0]}), 'newmec-2'], [({'t1.104.114.461': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.461': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.461': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.461': [0.645, 6.667], 't3.104.114.461': [0.63, 5.0], 't2.104.114.461': [0.766, 5.0]}), 'newmec-4'], [({'t5.102.114.462': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.462': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.462': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.462': [0.565, 5.0], 't4.102.114.462': [0.478, 10.0], 't3.102.114.462': [0.711, 5.0]}), 'newmec-2'], [({'t2.103.114.463': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.463': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.463': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.463': [0.42, 5.0], 't3.103.114.463': [0.619, 5.0], 't5.103.114.463': [0.536, 5.0]}), 'newmec-3'], [({'t5.103.114.464': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.464': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.464': [0.625, 5.0], 't2.103.114.464': [0.663, 5.0]}), 'newmec-3'], [({'t3.104.114.465': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.465': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.465': [0.587, 5.0], 't5.104.114.465': [0.565, 5.0]}), 'newmec-4'], [({'t2.102.114.466': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.466': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.466': [0.451, 5.0], 't1.102.114.466': [0.428, 6.667]}), 'newmec-2'], [({'t4.102.114.467': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.467': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.467': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.467': [0.693, 10.0], 't3.102.114.467': [0.485, 5.0], 't5.102.114.467': [0.678, 5.0]}), 'newmec-2'], [({'t2.104.114.468': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.468': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.468': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.468': [0.462, 5.0], 't5.104.114.468': [0.449, 5.0], 't3.104.114.468': [0.631, 5.0]}), 'newmec-4'], [({'t2.101.114.469': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.469': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.469': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.469': [0.529, 5.0], 't5.101.114.469': [0.778, 5.0], 't3.101.114.469': [0.538, 5.0]}), 'newmec-1'], [({'t2.102.114.470': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.470': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.470': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.470': [0.607, 5.0], 't5.102.114.470': [0.786, 5.0], 't4.102.114.470': [0.557, 10.0]}), 'newmec-2'], [({'t2.156.114.471': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.471': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.471': [0.477, 5.0], 't1.156.114.471': [0.634, 6.667]}), 'osboxes-0'], [({'t3.103.114.472': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.472': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.472': [0.637, 5.0], 't4.103.114.472': [0.778, 10.0]}), 'newmec-3'], [({'t5.156.114.473': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.473': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.473': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.473': [0.5, 5.0], 't4.156.114.473': [0.526, 10.0], 't2.156.114.473': [0.679, 5.0]}), 'osboxes-0'], [({'t3.101.114.474': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.474': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.474': [0.709, 5.0], 't5.101.114.474': [0.518, 5.0]}), 'newmec-1'], [({'t2.101.114.475': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.475': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.475': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.475': [0.433, 5.0], 't5.101.114.475': [0.729, 5.0], 't3.101.114.475': [0.687, 5.0]}), 'newmec-1'], [({'t4.102.114.476': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.476': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.476': [0.43, 10.0], 't2.102.114.476': [0.657, 5.0]}), 'newmec-2'], [({'t2.103.114.477': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.477': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.477': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.477': [0.654, 5.0], 't5.103.114.477': [0.435, 5.0], 't1.103.114.477': [0.484, 6.667]}), 'newmec-3'], [({'t3.103.114.478': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.478': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.478': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.478': [0.502, 5.0], 't4.103.114.478': [0.644, 10.0], 't2.103.114.478': [0.719, 5.0]}), 'newmec-3'], [({'t2.156.114.479': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.479': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.479': [0.694, 5.0], 't4.156.114.479': [0.77, 10.0]}), 'osboxes-0'], [({'t1.103.114.480': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.480': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.480': [0.415, 6.667], 't4.103.114.480': [0.723, 10.0]}), 'newmec-3'], [({'t4.156.114.481': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.481': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.481': [0.504, 10.0], 't2.156.114.481': [0.794, 5.0]}), 'osboxes-0'], [({'t3.101.114.482': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.482': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.482': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.482': [0.574, 5.0], 't2.101.114.482': [0.411, 5.0], 't5.101.114.482': [0.678, 5.0]}), 'newmec-1'], [({'t3.103.114.483': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.483': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.483': [0.7, 5.0], 't1.103.114.483': [0.451, 6.667]}), 'newmec-3'], [({'t4.104.114.484': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.484': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.484': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.484': [0.59, 10.0], 't5.104.114.484': [0.617, 5.0], 't3.104.114.484': [0.704, 5.0]}), 'newmec-4'], [({'t3.103.114.485': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.485': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.485': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.485': [0.655, 5.0], 't1.103.114.485': [0.624, 6.667], 't4.103.114.485': [0.794, 10.0]}), 'newmec-3'], [({'t2.103.114.486': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.486': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.486': [0.697, 5.0], 't4.103.114.486': [0.596, 10.0]}), 'newmec-3'], [({'t4.103.114.487': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.487': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.487': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.487': [0.674, 10.0], 't5.103.114.487': [0.589, 5.0], 't3.103.114.487': [0.525, 5.0]}), 'newmec-3'], [({'t1.104.114.488': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.488': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.488': [0.784, 6.667], 't3.104.114.488': [0.562, 5.0]}), 'newmec-4'], [({'t3.104.114.489': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.489': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.489': [0.711, 5.0], 't2.104.114.489': [0.479, 5.0]}), 'newmec-4'], [({'t2.102.114.490': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.490': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.490': [0.598, 5.0], 't5.102.114.490': [0.595, 5.0]}), 'newmec-2'], [({'t4.104.114.491': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.491': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.491': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.491': [0.416, 10.0], 't1.104.114.491': [0.776, 6.667], 't3.104.114.491': [0.735, 5.0]}), 'newmec-4'], [({'t4.103.114.492': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.492': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.492': [0.756, 10.0], 't5.103.114.492': [0.619, 5.0]}), 'newmec-3'], [({'t5.103.114.493': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.493': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.493': [0.78, 5.0], 't3.103.114.493': [0.527, 5.0]}), 'newmec-3'], [({'t1.101.114.494': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.494': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.494': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.494': [0.661, 6.667], 't2.101.114.494': [0.524, 5.0], 't3.101.114.494': [0.698, 5.0]}), 'newmec-1'], [({'t3.102.114.495': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.495': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.495': [0.604, 5.0], 't2.102.114.495': [0.593, 5.0]}), 'newmec-2'], [({'t5.156.114.496': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.496': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.496': [0.442, 5.0], 't2.156.114.496': [0.664, 5.0]}), 'osboxes-0'], [({'t1.104.114.497': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.497': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.497': [0.419, 6.667], 't2.104.114.497': [0.466, 5.0]}), 'newmec-4'], [({'t1.156.114.498': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.498': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.156.114.498': [0.511, 6.667], 't3.156.114.498': [0.626, 5.0]}), 'osboxes-0'], [({'t4.156.114.499': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.499': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.499': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.499': [0.763, 10.0], 't2.156.114.499': [0.747, 5.0], 't5.156.114.499': [0.666, 5.0]}), 'osboxes-0'], [({'t2.156.114.500': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.500': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.500': [0.615, 5.0], 't4.156.114.500': [0.411, 10.0]}), 'osboxes-0'], [({'t2.101.114.501': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.501': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.501': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.501': [0.594, 5.0], 't3.101.114.501': [0.794, 5.0], 't5.101.114.501': [0.589, 5.0]}), 'newmec-1'], [({'t4.101.114.502': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.502': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.502': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.502': [0.783, 10.0], 't1.101.114.502': [0.768, 6.667], 't2.101.114.502': [0.594, 5.0]}), 'newmec-1'], [({'t2.102.114.503': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.503': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.503': [0.645, 5.0], 't5.102.114.503': [0.415, 5.0]}), 'newmec-2'], [({'t3.156.114.504': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.504': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.156.114.504': [0.709, 5.0], 't2.156.114.504': [0.47, 5.0]}), 'osboxes-0'], [({'t1.101.114.505': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.505': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.505': [0.735, 6.667], 't2.101.114.505': [0.434, 5.0]}), 'newmec-1'], [({'t2.101.114.506': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.506': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.506': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.506': [0.627, 5.0], 't1.101.114.506': [0.428, 6.667], 't5.101.114.506': [0.519, 5.0]}), 'newmec-1'], [({'t1.102.114.507': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.507': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.507': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.507': [0.714, 6.667], 't5.102.114.507': [0.538, 5.0], 't4.102.114.507': [0.634, 10.0]}), 'newmec-2'], [({'t3.102.114.508': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.508': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.508': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.508': [0.559, 5.0], 't5.102.114.508': [0.681, 5.0], 't2.102.114.508': [0.446, 5.0]}), 'newmec-2'], [({'t4.103.114.509': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.509': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.509': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.509': [0.721, 10.0], 't3.103.114.509': [0.784, 5.0], 't5.103.114.509': [0.551, 5.0]}), 'newmec-3'], [({'t5.102.114.510': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.510': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.510': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.510': [0.633, 5.0], 't3.102.114.510': [0.659, 5.0], 't2.102.114.510': [0.42, 5.0]}), 'newmec-2'], [({'t2.104.114.511': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.511': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.511': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.511': [0.72, 5.0], 't4.104.114.511': [0.54, 10.0], 't5.104.114.511': [0.747, 5.0]}), 'newmec-4'], [({'t2.156.114.512': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.512': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.512': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.512': [0.545, 5.0], 't4.156.114.512': [0.762, 10.0], 't1.156.114.512': [0.608, 6.667]}), 'osboxes-0'], [({'t5.104.114.513': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.513': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.513': [0.422, 5.0], 't1.104.114.513': [0.506, 6.667]}), 'newmec-4'], [({'t4.104.114.514': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.514': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.514': [0.747, 10.0], 't3.104.114.514': [0.666, 5.0]}), 'newmec-4'], [({'t2.156.114.515': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.515': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.515': [0.618, 5.0], 't5.156.114.515': [0.728, 5.0]}), 'osboxes-0'], [({'t3.102.114.516': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.516': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.516': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.516': [0.501, 5.0], 't2.102.114.516': [0.613, 5.0], 't4.102.114.516': [0.544, 10.0]}), 'newmec-2'], [({'t4.102.114.517': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.517': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.517': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.517': [0.662, 10.0], 't2.102.114.517': [0.679, 5.0], 't5.102.114.517': [0.668, 5.0]}), 'newmec-2'], [({'t4.103.114.518': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.518': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.518': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.518': [0.748, 10.0], 't5.103.114.518': [0.691, 5.0], 't2.103.114.518': [0.623, 5.0]}), 'newmec-3'], [({'t4.101.114.519': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.519': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.519': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.519': [0.723, 10.0], 't3.101.114.519': [0.611, 5.0], 't2.101.114.519': [0.664, 5.0]}), 'newmec-1'], [({'t5.101.114.520': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.520': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.520': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.520': [0.724, 5.0], 't2.101.114.520': [0.539, 5.0], 't4.101.114.520': [0.457, 10.0]}), 'newmec-1'], [({'t2.101.114.521': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.521': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.521': [0.491, 5.0], 't3.101.114.521': [0.58, 5.0]}), 'newmec-1'], [({'t3.102.114.522': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.522': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.522': [0.782, 5.0], 't5.102.114.522': [0.736, 5.0]}), 'newmec-2'], [({'t2.101.114.523': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.523': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.523': [0.608, 5.0], 't4.101.114.523': [0.748, 10.0]}), 'newmec-1'], [({'t5.102.114.524': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.524': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.524': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.524': [0.677, 5.0], 't1.102.114.524': [0.779, 6.667], 't2.102.114.524': [0.638, 5.0]}), 'newmec-2'], [({'t5.102.114.525': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.525': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.525': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.525': [0.618, 5.0], 't3.102.114.525': [0.449, 5.0], 't2.102.114.525': [0.476, 5.0]}), 'newmec-2'], [({'t1.102.114.526': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.526': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.526': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.526': [0.756, 6.667], 't5.102.114.526': [0.416, 5.0], 't2.102.114.526': [0.649, 5.0]}), 'newmec-2'], [({'t3.101.114.527': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.527': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.527': [0.484, 5.0], 't4.101.114.527': [0.595, 10.0]}), 'newmec-1'], [({'t2.104.114.528': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.528': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.528': [0.754, 5.0], 't1.104.114.528': [0.531, 6.667]}), 'newmec-4'], [({'t2.156.114.529': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.529': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.529': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.529': [0.595, 5.0], 't5.156.114.529': [0.762, 5.0], 't1.156.114.529': [0.738, 6.667]}), 'osboxes-0'], [({'t4.104.114.530': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.530': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.530': [0.606, 10.0], 't2.104.114.530': [0.504, 5.0]}), 'newmec-4'], [({'t1.103.114.531': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.531': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.531': [0.7, 6.667], 't5.103.114.531': [0.738, 5.0]}), 'newmec-3'], [({'t3.156.114.532': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.532': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.532': [0.611, 5.0], 't4.156.114.532': [0.729, 10.0]}), 'osboxes-0'], [({'t4.104.114.533': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.533': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.533': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.533': [0.566, 10.0], 't2.104.114.533': [0.471, 5.0], 't3.104.114.533': [0.644, 5.0]}), 'newmec-4'], [({'t1.102.114.534': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.534': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.534': [0.657, 6.667], 't3.102.114.534': [0.702, 5.0]}), 'newmec-2'], [({'t2.103.114.535': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.535': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.535': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.535': [0.655, 5.0], 't4.103.114.535': [0.787, 10.0], 't5.103.114.535': [0.682, 5.0]}), 'newmec-3'], [({'t5.104.114.536': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.536': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.536': [0.562, 5.0], 't3.104.114.536': [0.727, 5.0]}), 'newmec-4'], [({'t2.101.114.537': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.537': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.537': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.537': [0.615, 5.0], 't5.101.114.537': [0.452, 5.0], 't3.101.114.537': [0.512, 5.0]}), 'newmec-1'], [({'t5.104.114.538': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.538': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.538': [0.642, 5.0], 't3.104.114.538': [0.701, 5.0]}), 'newmec-4'], [({'t1.102.114.539': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.539': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.539': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.539': [0.548, 6.667], 't2.102.114.539': [0.576, 5.0], 't3.102.114.539': [0.748, 5.0]}), 'newmec-2'], [({'t4.104.114.540': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.540': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.540': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.540': [0.775, 10.0], 't5.104.114.540': [0.641, 5.0], 't2.104.114.540': [0.793, 5.0]}), 'newmec-4'], [({'t5.102.114.541': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.541': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.541': [0.694, 5.0], 't2.102.114.541': [0.424, 5.0]}), 'newmec-2'], [({'t1.103.114.542': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.542': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.542': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.542': [0.591, 6.667], 't4.103.114.542': [0.621, 10.0], 't2.103.114.542': [0.748, 5.0]}), 'newmec-3'], [({'t1.103.114.543': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.543': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.543': [0.464, 6.667], 't3.103.114.543': [0.408, 5.0]}), 'newmec-3'], [({'t2.156.114.544': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.544': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.544': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.544': [0.705, 5.0], 't4.156.114.544': [0.476, 10.0], 't5.156.114.544': [0.63, 5.0]}), 'osboxes-0'], [({'t3.104.114.545': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.545': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.545': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.545': [0.53, 5.0], 't1.104.114.545': [0.536, 6.667], 't4.104.114.545': [0.773, 10.0]}), 'newmec-4'], [({'t5.101.114.546': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.546': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.546': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.546': [0.781, 5.0], 't1.101.114.546': [0.799, 6.667], 't4.101.114.546': [0.711, 10.0]}), 'newmec-1'], [({'t5.104.114.547': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.547': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.547': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.547': [0.633, 5.0], 't3.104.114.547': [0.497, 5.0], 't1.104.114.547': [0.758, 6.667]}), 'newmec-4'], [({'t2.102.114.548': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.548': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.548': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.548': [0.576, 5.0], 't1.102.114.548': [0.609, 6.667], 't4.102.114.548': [0.467, 10.0]}), 'newmec-2'], [({'t1.104.114.549': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.549': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.549': [0.654, 6.667], 't2.104.114.549': [0.528, 5.0]}), 'newmec-4'], [({'t5.104.114.550': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.550': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.550': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.550': [0.612, 5.0], 't3.104.114.550': [0.41, 5.0], 't1.104.114.550': [0.412, 6.667]}), 'newmec-4'], [({'t5.103.114.551': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.551': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.551': [0.654, 5.0], 't3.103.114.551': [0.475, 5.0]}), 'newmec-3'], [({'t1.102.114.552': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.552': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.552': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.552': [0.753, 6.667], 't5.102.114.552': [0.621, 5.0], 't3.102.114.552': [0.65, 5.0]}), 'newmec-2'], [({'t4.102.114.553': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.553': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.553': [0.651, 10.0], 't1.102.114.553': [0.712, 6.667]}), 'newmec-2'], [({'t2.104.114.554': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.554': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.554': [0.581, 5.0], 't3.104.114.554': [0.569, 5.0]}), 'newmec-4'], [({'t4.104.114.555': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.555': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.555': [0.714, 10.0], 't3.104.114.555': [0.437, 5.0]}), 'newmec-4'], [({'t4.101.114.556': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.556': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.556': [0.436, 10.0], 't3.101.114.556': [0.751, 5.0]}), 'newmec-1'], [({'t5.101.114.557': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.557': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.557': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.557': [0.475, 5.0], 't1.101.114.557': [0.643, 6.667], 't4.101.114.557': [0.643, 10.0]}), 'newmec-1'], [({'t2.102.114.558': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.558': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.558': [0.452, 5.0], 't5.102.114.558': [0.529, 5.0]}), 'newmec-2'], [({'t4.102.114.559': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.559': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.559': [0.663, 10.0], 't2.102.114.559': [0.66, 5.0]}), 'newmec-2'], [({'t4.156.114.560': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.560': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.560': [0.652, 10.0], 't3.156.114.560': [0.579, 5.0]}), 'osboxes-0'], [({'t3.102.114.561': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.561': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.561': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.561': [0.762, 5.0], 't5.102.114.561': [0.525, 5.0], 't4.102.114.561': [0.6, 10.0]}), 'newmec-2'], [({'t2.104.114.562': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.562': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.562': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.562': [0.54, 5.0], 't3.104.114.562': [0.724, 5.0], 't1.104.114.562': [0.403, 6.667]}), 'newmec-4'], [({'t3.104.114.563': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.563': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.563': [0.64, 5.0], 't2.104.114.563': [0.405, 5.0]}), 'newmec-4'], [({'t3.103.114.564': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.564': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.564': [0.737, 5.0], 't5.103.114.564': [0.752, 5.0]}), 'newmec-3'], [({'t4.104.114.565': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.565': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.565': [0.76, 10.0], 't3.104.114.565': [0.637, 5.0]}), 'newmec-4'], [({'t1.102.114.566': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.566': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.566': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.566': [0.566, 6.667], 't4.102.114.566': [0.516, 10.0], 't3.102.114.566': [0.409, 5.0]}), 'newmec-2'], [({'t2.101.114.567': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.567': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.567': [0.453, 5.0], 't5.101.114.567': [0.409, 5.0]}), 'newmec-1'], [({'t5.103.114.568': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.568': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.568': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.568': [0.683, 5.0], 't3.103.114.568': [0.433, 5.0], 't4.103.114.568': [0.78, 10.0]}), 'newmec-3'], [({'t4.104.114.569': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.569': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.569': [0.792, 10.0], 't2.104.114.569': [0.756, 5.0]}), 'newmec-4'], [({'t2.104.114.570': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.570': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.570': [0.729, 5.0], 't5.104.114.570': [0.757, 5.0]}), 'newmec-4'], [({'t5.104.114.571': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.571': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.571': [0.546, 5.0], 't1.104.114.571': [0.52, 6.667]}), 'newmec-4'], [({'t5.104.114.572': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.572': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.572': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.572': [0.705, 5.0], 't4.104.114.572': [0.472, 10.0], 't2.104.114.572': [0.61, 5.0]}), 'newmec-4'], [({'t1.101.114.573': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.573': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.573': [0.578, 6.667], 't3.101.114.573': [0.478, 5.0]}), 'newmec-1'], [({'t3.101.114.574': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.574': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.574': [0.518, 5.0], 't4.101.114.574': [0.5, 10.0]}), 'newmec-1'], [({'t3.102.114.575': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.575': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.575': [0.613, 5.0], 't2.102.114.575': [0.509, 5.0]}), 'newmec-2'], [({'t3.104.114.576': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.576': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.576': [0.544, 5.0], 't4.104.114.576': [0.631, 10.0]}), 'newmec-4'], [({'t2.104.114.577': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.577': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.577': [0.557, 5.0], 't1.104.114.577': [0.649, 6.667]}), 'newmec-4'], [({'t3.102.114.578': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.578': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.578': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.578': [0.543, 5.0], 't2.102.114.578': [0.615, 5.0], 't5.102.114.578': [0.401, 5.0]}), 'newmec-2'], [({'t3.104.114.579': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.579': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.579': [0.4, 5.0], 't5.104.114.579': [0.637, 5.0]}), 'newmec-4'], [({'t4.103.114.580': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.580': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.580': [0.524, 10.0], 't2.103.114.580': [0.64, 5.0]}), 'newmec-3'], [({'t3.104.114.581': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.581': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.581': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.581': [0.442, 5.0], 't5.104.114.581': [0.737, 5.0], 't4.104.114.581': [0.723, 10.0]}), 'newmec-4'], [({'t3.103.114.582': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.582': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.582': [0.799, 5.0], 't2.103.114.582': [0.599, 5.0]}), 'newmec-3'], [({'t5.103.114.583': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.583': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.583': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.583': [0.761, 5.0], 't2.103.114.583': [0.697, 5.0], 't3.103.114.583': [0.455, 5.0]}), 'newmec-3'], [({'t3.103.114.584': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.584': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.584': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.584': [0.419, 5.0], 't4.103.114.584': [0.764, 10.0], 't5.103.114.584': [0.687, 5.0]}), 'newmec-3'], [({'t4.156.114.585': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.585': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.585': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.585': [0.665, 10.0], 't3.156.114.585': [0.666, 5.0], 't5.156.114.585': [0.798, 5.0]}), 'osboxes-0'], [({'t4.104.114.586': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.586': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.586': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.586': [0.535, 10.0], 't2.104.114.586': [0.506, 5.0], 't3.104.114.586': [0.767, 5.0]}), 'newmec-4'], [({'t3.102.114.587': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.587': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.587': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.587': [0.42, 5.0], 't5.102.114.587': [0.736, 5.0], 't2.102.114.587': [0.728, 5.0]}), 'newmec-2'], [({'t5.102.114.588': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.588': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.588': [0.63, 5.0], 't3.102.114.588': [0.547, 5.0]}), 'newmec-2'], [({'t2.104.114.589': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.589': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.589': [0.684, 5.0], 't5.104.114.589': [0.635, 5.0]}), 'newmec-4'], [({'t2.103.114.590': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.590': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.590': [0.48, 5.0], 't4.103.114.590': [0.613, 10.0]}), 'newmec-3'], [({'t5.104.114.591': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.591': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.591': [0.645, 5.0], 't3.104.114.591': [0.665, 5.0]}), 'newmec-4'], [({'t1.101.114.592': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.592': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.592': [0.514, 6.667], 't3.101.114.592': [0.571, 5.0]}), 'newmec-1'], [({'t1.104.114.593': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.593': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.593': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.593': [0.605, 6.667], 't4.104.114.593': [0.455, 10.0], 't2.104.114.593': [0.754, 5.0]}), 'newmec-4'], [({'t4.102.114.594': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.594': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.594': [0.614, 10.0], 't2.102.114.594': [0.48, 5.0]}), 'newmec-2'], [({'t5.103.114.595': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.595': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.595': [0.611, 5.0], 't4.103.114.595': [0.743, 10.0]}), 'newmec-3'], [({'t3.102.114.596': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.596': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.596': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.596': [0.421, 5.0], 't5.102.114.596': [0.774, 5.0], 't1.102.114.596': [0.718, 6.667]}), 'newmec-2'], [({'t3.101.114.597': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.597': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.597': [0.614, 5.0], 't2.101.114.597': [0.65, 5.0]}), 'newmec-1'], [({'t5.103.114.598': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.598': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.598': [0.733, 5.0], 't4.103.114.598': [0.742, 10.0]}), 'newmec-3'], [({'t3.103.114.599': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.599': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.599': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.599': [0.636, 5.0], 't4.103.114.599': [0.532, 10.0], 't1.103.114.599': [0.513, 6.667]}), 'newmec-3']] host_names5 = {'192.168.122.156': 'osboxes-0', '192.168.122.104': 'newmec-4', '192.168.122.103': 'newmec-3', '192.168.122.102': 'newmec-2', '192.168.122.101': 'newmec-1'} record6 = [[({'t2.102.114.0': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.0': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.0': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.0': [0.489, 5.0], 't4.102.114.0': [0.537, 10.0], 't5.102.114.0': [0.567, 5.0]}), 'newmec-2'], [({'t1.102.114.1': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.1': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.1': [0.658, 6.667], 't2.102.114.1': [0.412, 5.0]}), 'newmec-2'], [({'t5.156.114.2': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.2': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.2': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.2': [0.624, 5.0], 't2.156.114.2': [0.408, 5.0], 't3.156.114.2': [0.571, 5.0]}), 'osboxes-0'], [({'t5.101.114.3': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.3': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.3': [0.448, 5.0], 't2.101.114.3': [0.574, 5.0]}), 'newmec-1'], [({'t2.156.114.4': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.4': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.4': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.4': [0.711, 5.0], 't5.156.114.4': [0.723, 5.0], 't4.156.114.4': [0.692, 10.0]}), 'osboxes-0'], [({'t2.102.114.5': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.5': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.5': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.5': [0.771, 5.0], 't3.102.114.5': [0.441, 5.0], 't4.102.114.5': [0.681, 10.0]}), 'newmec-2'], [({'t4.104.114.6': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.6': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.6': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.6': [0.587, 10.0], 't5.104.114.6': [0.48, 5.0], 't3.104.114.6': [0.52, 5.0]}), 'newmec-4'], [({'t3.156.114.7': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.7': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.7': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.7': [0.736, 5.0], 't2.156.114.7': [0.653, 5.0], 't5.156.114.7': [0.635, 5.0]}), 'osboxes-0'], [({'t5.102.114.8': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.8': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.8': [0.481, 5.0], 't2.102.114.8': [0.596, 5.0]}), 'newmec-2'], [({'t3.103.114.9': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.9': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.9': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.9': [0.647, 5.0], 't4.103.114.9': [0.505, 10.0], 't5.103.114.9': [0.457, 5.0]}), 'newmec-3'], [({'t3.104.114.10': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.10': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.10': [0.512, 5.0], 't4.104.114.10': [0.756, 10.0]}), 'newmec-4'], [({'t5.101.114.11': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.11': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.11': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.11': [0.615, 5.0], 't3.101.114.11': [0.672, 5.0], 't2.101.114.11': [0.755, 5.0]}), 'newmec-1'], [({'t2.101.114.12': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.12': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.12': [0.684, 5.0], 't5.101.114.12': [0.5, 5.0]}), 'newmec-1'], [({'t4.101.114.13': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.13': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.13': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.13': [0.461, 10.0], 't3.101.114.13': [0.688, 5.0], 't1.101.114.13': [0.714, 6.667]}), 'newmec-1'], [({'t5.103.114.14': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.14': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.14': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.14': [0.548, 5.0], 't1.103.114.14': [0.602, 6.667], 't2.103.114.14': [0.438, 5.0]}), 'newmec-3'], [({'t2.101.114.15': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.15': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.15': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.15': [0.753, 5.0], 't1.101.114.15': [0.616, 6.667], 't5.101.114.15': [0.757, 5.0]}), 'newmec-1'], [({'t3.101.114.16': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.16': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.16': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.16': [0.404, 5.0], 't5.101.114.16': [0.512, 5.0], 't2.101.114.16': [0.653, 5.0]}), 'newmec-1'], [({'t1.104.114.17': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.17': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.17': [0.582, 6.667], 't5.104.114.17': [0.483, 5.0]}), 'newmec-4'], [({'t5.101.114.18': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.18': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.18': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.18': [0.662, 5.0], 't4.101.114.18': [0.508, 10.0], 't2.101.114.18': [0.683, 5.0]}), 'newmec-1'], [({'t2.102.114.19': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.19': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.19': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.19': [0.616, 5.0], 't1.102.114.19': [0.738, 6.667], 't4.102.114.19': [0.723, 10.0]}), 'newmec-2'], [({'t4.101.114.20': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.20': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.20': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.20': [0.516, 10.0], 't3.101.114.20': [0.417, 5.0], 't5.101.114.20': [0.711, 5.0]}), 'newmec-1'], [({'t3.101.114.21': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.21': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.21': [0.54, 5.0], 't1.101.114.21': [0.556, 6.667]}), 'newmec-1'], [({'t5.105.114.22': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.105.114.22': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.22': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.105.114.22': [0.657, 5.0], 't4.105.114.22': [0.717, 10.0], 't3.105.114.22': [0.72, 5.0]}), 'newmec-5'], [({'t1.102.114.23': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.23': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.23': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.23': [0.623, 6.667], 't4.102.114.23': [0.644, 10.0], 't5.102.114.23': [0.552, 5.0]}), 'newmec-2'], [({'t1.103.114.24': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.24': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.24': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.24': [0.713, 6.667], 't3.103.114.24': [0.687, 5.0], 't5.103.114.24': [0.531, 5.0]}), 'newmec-3'], [({'t3.101.114.25': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.25': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.25': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.25': [0.534, 5.0], 't4.101.114.25': [0.728, 10.0], 't2.101.114.25': [0.769, 5.0]}), 'newmec-1'], [({'t5.104.114.26': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.26': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.26': [0.469, 5.0], 't1.104.114.26': [0.413, 6.667]}), 'newmec-4'], [({'t3.104.114.27': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.27': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.27': [0.747, 5.0], 't5.104.114.27': [0.615, 5.0]}), 'newmec-4'], [({'t3.102.114.28': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.28': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.28': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.28': [0.64, 5.0], 't2.102.114.28': [0.433, 5.0], 't4.102.114.28': [0.726, 10.0]}), 'newmec-2'], [({'t3.101.114.29': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.29': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.29': [0.47, 5.0], 't2.101.114.29': [0.767, 5.0]}), 'newmec-1'], [({'t1.102.114.30': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.30': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.30': [0.556, 6.667], 't2.102.114.30': [0.506, 5.0]}), 'newmec-2'], [({'t5.101.114.31': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.31': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.31': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.31': [0.578, 5.0], 't3.101.114.31': [0.642, 5.0], 't1.101.114.31': [0.643, 6.667]}), 'newmec-1'], [({'t5.102.114.32': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.32': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.32': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.32': [0.762, 5.0], 't4.102.114.32': [0.49, 10.0], 't3.102.114.32': [0.525, 5.0]}), 'newmec-2'], [({'t3.156.114.33': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.33': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.33': [0.628, 5.0], 't4.156.114.33': [0.572, 10.0]}), 'osboxes-0'], [({'t5.101.114.34': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.34': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.34': [0.601, 5.0], 't1.101.114.34': [0.705, 6.667]}), 'newmec-1'], [({'t1.104.114.35': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.35': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.35': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.35': [0.671, 6.667], 't5.104.114.35': [0.412, 5.0], 't4.104.114.35': [0.403, 10.0]}), 'newmec-4'], [({'t2.101.114.36': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.36': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.36': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.36': [0.484, 5.0], 't4.101.114.36': [0.463, 10.0], 't1.101.114.36': [0.444, 6.667]}), 'newmec-1'], [({'t3.103.114.37': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.37': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.37': [0.765, 5.0], 't1.103.114.37': [0.564, 6.667]}), 'newmec-3'], [({'t4.104.114.38': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.38': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.38': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.38': [0.586, 10.0], 't2.104.114.38': [0.562, 5.0], 't1.104.114.38': [0.444, 6.667]}), 'newmec-4'], [({'t5.102.114.39': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.39': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.39': [0.573, 5.0], 't3.102.114.39': [0.621, 5.0]}), 'newmec-2'], [({'t3.104.114.40': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.40': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.40': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.40': [0.692, 5.0], 't1.104.114.40': [0.72, 6.667], 't2.104.114.40': [0.647, 5.0]}), 'newmec-4'], [({'t1.101.114.41': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.41': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.41': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.41': [0.627, 6.667], 't5.101.114.41': [0.424, 5.0], 't3.101.114.41': [0.491, 5.0]}), 'newmec-1'], [({'t4.101.114.42': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.42': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.42': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.42': [0.435, 10.0], 't1.101.114.42': [0.734, 6.667], 't5.101.114.42': [0.502, 5.0]}), 'newmec-1'], [({'t2.102.114.43': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.43': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.43': [0.512, 5.0], 't5.102.114.43': [0.722, 5.0]}), 'newmec-2'], [({'t5.156.114.44': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.44': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.156.114.44': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.44': [0.756, 5.0], 't1.156.114.44': [0.444, 6.667], 't2.156.114.44': [0.727, 5.0]}), 'osboxes-0'], [({'t5.101.114.45': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.45': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.45': [0.419, 5.0], 't1.101.114.45': [0.72, 6.667]}), 'newmec-1'], [({'t1.102.114.46': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.46': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.46': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.46': [0.564, 6.667], 't5.102.114.46': [0.694, 5.0], 't2.102.114.46': [0.572, 5.0]}), 'newmec-2'], [({'t5.105.114.47': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.47': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.105.114.47': [0.626, 5.0], 't2.105.114.47': [0.694, 5.0]}), 'newmec-5'], [({'t3.102.114.48': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.48': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.48': [0.46, 5.0], 't5.102.114.48': [0.551, 5.0]}), 'newmec-2'], [({'t5.102.114.49': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.49': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.49': [0.693, 5.0], 't4.102.114.49': [0.612, 10.0]}), 'newmec-2'], [({'t3.102.114.50': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.50': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.50': [0.702, 5.0], 't2.102.114.50': [0.76, 5.0]}), 'newmec-2'], [({'t5.103.114.51': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.51': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.51': [0.717, 5.0], 't3.103.114.51': [0.41, 5.0]}), 'newmec-3'], [({'t2.102.114.52': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.52': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.52': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.52': [0.425, 5.0], 't3.102.114.52': [0.613, 5.0], 't4.102.114.52': [0.477, 10.0]}), 'newmec-2'], [({'t1.102.114.53': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.53': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.53': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.53': [0.647, 6.667], 't3.102.114.53': [0.693, 5.0], 't4.102.114.53': [0.623, 10.0]}), 'newmec-2'], [({'t2.104.114.54': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.54': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.54': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.54': [0.502, 5.0], 't1.104.114.54': [0.476, 6.667], 't5.104.114.54': [0.406, 5.0]}), 'newmec-4'], [({'t2.102.114.55': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.55': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.55': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.55': [0.452, 5.0], 't3.102.114.55': [0.794, 5.0], 't1.102.114.55': [0.551, 6.667]}), 'newmec-2'], [({'t3.101.114.56': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.56': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.56': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.56': [0.575, 5.0], 't2.101.114.56': [0.555, 5.0], 't4.101.114.56': [0.574, 10.0]}), 'newmec-1'], [({'t5.102.114.57': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.57': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.57': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.57': [0.587, 5.0], 't3.102.114.57': [0.533, 5.0], 't2.102.114.57': [0.502, 5.0]}), 'newmec-2'], [({'t3.102.114.58': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.58': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.58': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.58': [0.594, 5.0], 't1.102.114.58': [0.638, 6.667], 't4.102.114.58': [0.783, 10.0]}), 'newmec-2'], [({'t4.102.114.59': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.59': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.59': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.59': [0.541, 10.0], 't2.102.114.59': [0.773, 5.0], 't3.102.114.59': [0.539, 5.0]}), 'newmec-2'], [({'t4.102.114.60': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.60': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.60': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.60': [0.604, 10.0], 't2.102.114.60': [0.496, 5.0], 't3.102.114.60': [0.635, 5.0]}), 'newmec-2'], [({'t2.102.114.61': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.61': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.61': [0.596, 5.0], 't4.102.114.61': [0.646, 10.0]}), 'newmec-2'], [({'t1.102.114.62': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.62': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.62': [0.465, 6.667], 't4.102.114.62': [0.628, 10.0]}), 'newmec-2'], [({'t1.105.114.63': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.105.114.63': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.105.114.63': [0.426, 6.667], 't5.105.114.63': [0.524, 5.0]}), 'newmec-5'], [({'t5.102.114.64': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.64': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.64': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.64': [0.612, 5.0], 't2.102.114.64': [0.435, 5.0], 't1.102.114.64': [0.577, 6.667]}), 'newmec-2'], [({'t3.101.114.65': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.65': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.65': [0.519, 5.0], 't4.101.114.65': [0.594, 10.0]}), 'newmec-1'], [({'t5.101.114.66': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.66': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.66': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.66': [0.45, 5.0], 't1.101.114.66': [0.447, 6.667], 't4.101.114.66': [0.68, 10.0]}), 'newmec-1'], [({'t3.101.114.67': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.67': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.67': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.67': [0.542, 5.0], 't2.101.114.67': [0.791, 5.0], 't4.101.114.67': [0.634, 10.0]}), 'newmec-1'], [({'t5.102.114.68': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.68': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.68': [0.512, 5.0], 't4.102.114.68': [0.535, 10.0]}), 'newmec-2'], [({'t5.103.114.69': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.69': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.69': [0.481, 5.0], 't4.103.114.69': [0.488, 10.0]}), 'newmec-3'], [({'t2.101.114.70': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.70': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.70': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.70': [0.407, 5.0], 't3.101.114.70': [0.503, 5.0], 't4.101.114.70': [0.783, 10.0]}), 'newmec-1'], [({'t1.102.114.71': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.71': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.71': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.71': [0.579, 6.667], 't2.102.114.71': [0.536, 5.0], 't4.102.114.71': [0.712, 10.0]}), 'newmec-2'], [({'t2.102.114.72': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.72': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.72': [0.435, 5.0], 't5.102.114.72': [0.535, 5.0]}), 'newmec-2'], [({'t5.102.114.73': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.73': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.73': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.73': [0.488, 5.0], 't4.102.114.73': [0.566, 10.0], 't2.102.114.73': [0.653, 5.0]}), 'newmec-2'], [({'t3.101.114.74': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.74': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.74': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.74': [0.68, 5.0], 't4.101.114.74': [0.773, 10.0], 't2.101.114.74': [0.624, 5.0]}), 'newmec-1'], [({'t4.103.114.75': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.75': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.75': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.75': [0.65, 10.0], 't2.103.114.75': [0.471, 5.0], 't1.103.114.75': [0.639, 6.667]}), 'newmec-3'], [({'t3.103.114.76': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.76': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.76': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.76': [0.746, 5.0], 't2.103.114.76': [0.783, 5.0], 't5.103.114.76': [0.535, 5.0]}), 'newmec-3'], [({'t3.102.114.77': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.77': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.77': [0.515, 5.0], 't4.102.114.77': [0.477, 10.0]}), 'newmec-2'], [({'t2.102.114.78': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.78': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.78': [0.718, 5.0], 't4.102.114.78': [0.535, 10.0]}), 'newmec-2'], [({'t2.102.114.79': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.79': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.79': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.79': [0.733, 5.0], 't3.102.114.79': [0.652, 5.0], 't4.102.114.79': [0.505, 10.0]}), 'newmec-2'], [({'t3.102.114.80': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.80': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.80': [0.608, 5.0], 't1.102.114.80': [0.74, 6.667]}), 'newmec-2'], [({'t1.102.114.81': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.81': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.81': [0.768, 6.667], 't4.102.114.81': [0.517, 10.0]}), 'newmec-2'], [({'t2.101.114.82': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.82': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.82': [0.771, 5.0], 't4.101.114.82': [0.773, 10.0]}), 'newmec-1'], [({'t2.104.114.83': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.83': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.83': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.83': [0.562, 5.0], 't5.104.114.83': [0.746, 5.0], 't4.104.114.83': [0.724, 10.0]}), 'newmec-4'], [({'t4.102.114.84': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.84': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.84': [0.411, 10.0], 't2.102.114.84': [0.66, 5.0]}), 'newmec-2'], [({'t3.102.114.85': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.85': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.85': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.85': [0.423, 5.0], 't2.102.114.85': [0.786, 5.0], 't5.102.114.85': [0.726, 5.0]}), 'newmec-2'], [({'t3.101.114.86': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.86': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.86': [0.649, 5.0], 't2.101.114.86': [0.4, 5.0]}), 'newmec-1'], [({'t3.105.114.87': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.87': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.87': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.87': [0.559, 5.0], 't4.105.114.87': [0.739, 10.0], 't2.105.114.87': [0.466, 5.0]}), 'newmec-5'], [({'t1.101.114.88': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.88': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.88': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.88': [0.483, 6.667], 't3.101.114.88': [0.691, 5.0], 't4.101.114.88': [0.608, 10.0]}), 'newmec-1'], [({'t5.102.114.89': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.89': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.89': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.89': [0.76, 5.0], 't3.102.114.89': [0.661, 5.0], 't4.102.114.89': [0.509, 10.0]}), 'newmec-2'], [({'t4.104.114.90': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.90': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.90': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.90': [0.767, 10.0], 't3.104.114.90': [0.733, 5.0], 't5.104.114.90': [0.46, 5.0]}), 'newmec-4'], [({'t4.102.114.91': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.91': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.91': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.91': [0.496, 10.0], 't2.102.114.91': [0.447, 5.0], 't5.102.114.91': [0.759, 5.0]}), 'newmec-2'], [({'t1.101.114.92': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.92': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.92': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.92': [0.581, 6.667], 't5.101.114.92': [0.614, 5.0], 't2.101.114.92': [0.554, 5.0]}), 'newmec-1'], [({'t2.102.114.93': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.93': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.93': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.93': [0.703, 5.0], 't3.102.114.93': [0.645, 5.0], 't1.102.114.93': [0.708, 6.667]}), 'newmec-2'], [({'t2.102.114.94': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.94': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.94': [0.654, 5.0], 't5.102.114.94': [0.749, 5.0]}), 'newmec-2'], [({'t4.102.114.95': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.95': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.95': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.95': [0.423, 10.0], 't2.102.114.95': [0.785, 5.0], 't3.102.114.95': [0.564, 5.0]}), 'newmec-2'], [({'t4.104.114.96': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.96': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.96': [0.491, 10.0], 't5.104.114.96': [0.733, 5.0]}), 'newmec-4'], [({'t1.101.114.97': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.97': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.97': [0.695, 6.667], 't3.101.114.97': [0.435, 5.0]}), 'newmec-1'], [({'t2.104.114.98': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.98': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.98': [0.541, 5.0], 't3.104.114.98': [0.432, 5.0]}), 'newmec-4'], [({'t4.102.114.99': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.99': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.99': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.99': [0.463, 10.0], 't2.102.114.99': [0.755, 5.0], 't5.102.114.99': [0.414, 5.0]}), 'newmec-2'], [({'t1.103.114.100': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.100': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.100': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.100': [0.552, 6.667], 't2.103.114.100': [0.71, 5.0], 't4.103.114.100': [0.577, 10.0]}), 'newmec-3'], [({'t2.102.114.101': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.101': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.101': [0.579, 5.0], 't1.102.114.101': [0.561, 6.667]}), 'newmec-2'], [({'t2.102.114.102': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.102': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.102': [0.451, 5.0], 't4.102.114.102': [0.519, 10.0]}), 'newmec-2'], [({'t5.101.114.103': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.103': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.103': [0.701, 5.0], 't4.101.114.103': [0.494, 10.0]}), 'newmec-1'], [({'t1.102.114.104': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.104': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.104': [0.584, 6.667], 't3.102.114.104': [0.77, 5.0]}), 'newmec-2'], [({'t5.101.114.105': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.105': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.105': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.105': [0.671, 5.0], 't2.101.114.105': [0.423, 5.0], 't3.101.114.105': [0.738, 5.0]}), 'newmec-1'], [({'t2.102.114.106': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.106': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.106': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.106': [0.512, 5.0], 't4.102.114.106': [0.705, 10.0], 't5.102.114.106': [0.642, 5.0]}), 'newmec-2'], [({'t5.102.114.107': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.107': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.107': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.107': [0.692, 5.0], 't4.102.114.107': [0.724, 10.0], 't3.102.114.107': [0.608, 5.0]}), 'newmec-2'], [({'t1.102.114.108': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.108': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.108': [0.411, 6.667], 't5.102.114.108': [0.794, 5.0]}), 'newmec-2'], [({'t3.156.114.109': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.109': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.156.114.109': [0.552, 5.0], 't2.156.114.109': [0.544, 5.0]}), 'osboxes-0'], [({'t1.101.114.110': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.110': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.110': [0.589, 6.667], 't5.101.114.110': [0.583, 5.0]}), 'newmec-1'], [({'t4.103.114.111': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.111': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.111': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.111': [0.638, 10.0], 't1.103.114.111': [0.752, 6.667], 't2.103.114.111': [0.74, 5.0]}), 'newmec-3'], [({'t4.105.114.112': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.112': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.112': [0.542, 10.0], 't5.105.114.112': [0.761, 5.0]}), 'newmec-5'], [({'t4.102.114.113': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.113': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.113': [0.412, 10.0], 't5.102.114.113': [0.669, 5.0]}), 'newmec-2'], [({'t2.102.114.114': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.114': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.114': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.114': [0.798, 5.0], 't4.102.114.114': [0.532, 10.0], 't3.102.114.114': [0.432, 5.0]}), 'newmec-2'], [({'t3.105.114.115': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.115': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.105.114.115': [0.571, 5.0], 't5.105.114.115': [0.441, 5.0]}), 'newmec-5'], [({'t5.101.114.116': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.116': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.116': [0.755, 5.0], 't2.101.114.116': [0.771, 5.0]}), 'newmec-1'], [({'t5.102.114.117': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.117': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.117': [0.601, 5.0], 't2.102.114.117': [0.506, 5.0]}), 'newmec-2'], [({'t2.105.114.118': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.118': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.118': [0.718, 5.0], 't4.105.114.118': [0.5, 10.0]}), 'newmec-5'], [({'t3.105.114.119': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.119': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.119': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.105.114.119': [0.535, 5.0], 't2.105.114.119': [0.633, 5.0], 't4.105.114.119': [0.464, 10.0]}), 'newmec-5'], [({'t1.104.114.120': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.120': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.120': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.120': [0.426, 6.667], 't2.104.114.120': [0.642, 5.0], 't4.104.114.120': [0.786, 10.0]}), 'newmec-4'], [({'t2.105.114.121': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.105.114.121': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.121': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.121': [0.44, 5.0], 't3.105.114.121': [0.634, 5.0], 't4.105.114.121': [0.42, 10.0]}), 'newmec-5'], [({'t1.102.114.122': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.122': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.122': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.122': [0.742, 6.667], 't3.102.114.122': [0.536, 5.0], 't4.102.114.122': [0.764, 10.0]}), 'newmec-2'], [({'t4.101.114.123': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.123': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.123': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.123': [0.601, 10.0], 't3.101.114.123': [0.581, 5.0], 't5.101.114.123': [0.559, 5.0]}), 'newmec-1'], [({'t2.103.114.124': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.124': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.124': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.124': [0.456, 5.0], 't5.103.114.124': [0.793, 5.0], 't4.103.114.124': [0.562, 10.0]}), 'newmec-3'], [({'t4.102.114.125': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.125': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.125': [0.548, 10.0], 't2.102.114.125': [0.765, 5.0]}), 'newmec-2'], [({'t1.101.114.126': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.126': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.126': [0.77, 6.667], 't2.101.114.126': [0.561, 5.0]}), 'newmec-1'], [({'t4.101.114.127': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.127': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.127': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.127': [0.545, 10.0], 't1.101.114.127': [0.617, 6.667], 't2.101.114.127': [0.623, 5.0]}), 'newmec-1'], [({'t4.103.114.128': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.128': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.128': [0.794, 10.0], 't1.103.114.128': [0.576, 6.667]}), 'newmec-3'], [({'t3.156.114.129': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.129': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.129': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.129': [0.424, 5.0], 't1.156.114.129': [0.522, 6.667], 't5.156.114.129': [0.661, 5.0]}), 'osboxes-0'], [({'t4.102.114.130': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.130': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.130': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.130': [0.757, 10.0], 't2.102.114.130': [0.479, 5.0], 't1.102.114.130': [0.601, 6.667]}), 'newmec-2'], [({'t1.102.114.131': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.131': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.131': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.131': [0.499, 6.667], 't5.102.114.131': [0.625, 5.0], 't3.102.114.131': [0.574, 5.0]}), 'newmec-2'], [({'t2.101.114.132': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.132': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.132': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.132': [0.401, 5.0], 't5.101.114.132': [0.475, 5.0], 't3.101.114.132': [0.709, 5.0]}), 'newmec-1'], [({'t2.101.114.133': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.133': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.133': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.133': [0.553, 5.0], 't5.101.114.133': [0.589, 5.0], 't4.101.114.133': [0.458, 10.0]}), 'newmec-1'], [({'t5.102.114.134': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.134': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.134': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.134': [0.452, 5.0], 't4.102.114.134': [0.493, 10.0], 't1.102.114.134': [0.793, 6.667]}), 'newmec-2'], [({'t1.101.114.135': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.135': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.135': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.135': [0.587, 6.667], 't4.101.114.135': [0.407, 10.0], 't3.101.114.135': [0.787, 5.0]}), 'newmec-1'], [({'t4.104.114.136': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.136': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.136': [0.778, 10.0], 't2.104.114.136': [0.622, 5.0]}), 'newmec-4'], [({'t2.102.114.137': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.137': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.137': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.137': [0.412, 5.0], 't4.102.114.137': [0.52, 10.0], 't1.102.114.137': [0.558, 6.667]}), 'newmec-2'], [({'t4.102.114.138': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.138': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.138': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.138': [0.603, 10.0], 't5.102.114.138': [0.682, 5.0], 't3.102.114.138': [0.539, 5.0]}), 'newmec-2'], [({'t4.102.114.139': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.139': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.139': [0.63, 10.0], 't1.102.114.139': [0.637, 6.667]}), 'newmec-2'], [({'t4.104.114.140': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.140': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.140': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.140': [0.565, 10.0], 't2.104.114.140': [0.624, 5.0], 't3.104.114.140': [0.436, 5.0]}), 'newmec-4'], [({'t5.101.114.141': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.141': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.141': [0.642, 5.0], 't2.101.114.141': [0.755, 5.0]}), 'newmec-1'], [({'t1.102.114.142': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.142': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.142': [0.788, 6.667], 't2.102.114.142': [0.753, 5.0]}), 'newmec-2'], [({'t2.101.114.143': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.143': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.143': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.143': [0.41, 5.0], 't4.101.114.143': [0.458, 10.0], 't3.101.114.143': [0.603, 5.0]}), 'newmec-1'], [({'t2.104.114.144': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.144': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.144': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.144': [0.633, 5.0], 't1.104.114.144': [0.603, 6.667], 't3.104.114.144': [0.555, 5.0]}), 'newmec-4'], [({'t3.156.114.145': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.145': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.145': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.145': [0.573, 5.0], 't1.156.114.145': [0.679, 6.667], 't5.156.114.145': [0.619, 5.0]}), 'osboxes-0'], [({'t1.102.114.146': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.146': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.146': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.146': [0.462, 6.667], 't3.102.114.146': [0.749, 5.0], 't2.102.114.146': [0.499, 5.0]}), 'newmec-2'], [({'t5.156.114.147': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.147': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.147': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.147': [0.654, 5.0], 't3.156.114.147': [0.66, 5.0], 't4.156.114.147': [0.507, 10.0]}), 'osboxes-0'], [({'t2.105.114.148': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.148': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.148': [0.587, 5.0], 't1.105.114.148': [0.632, 6.667]}), 'newmec-5'], [({'t2.102.114.149': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.149': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.149': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.149': [0.484, 5.0], 't4.102.114.149': [0.769, 10.0], 't3.102.114.149': [0.424, 5.0]}), 'newmec-2'], [({'t5.101.114.150': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.150': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.150': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.150': [0.546, 5.0], 't2.101.114.150': [0.573, 5.0], 't4.101.114.150': [0.487, 10.0]}), 'newmec-1'], [({'t5.156.114.151': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.151': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.151': [0.736, 5.0], 't3.156.114.151': [0.412, 5.0]}), 'osboxes-0'], [({'t4.102.114.152': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.152': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.152': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.152': [0.794, 10.0], 't1.102.114.152': [0.409, 6.667], 't2.102.114.152': [0.592, 5.0]}), 'newmec-2'], [({'t1.103.114.153': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.153': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.153': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.153': [0.665, 6.667], 't2.103.114.153': [0.694, 5.0], 't3.103.114.153': [0.681, 5.0]}), 'newmec-3'], [({'t3.103.114.154': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.154': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.154': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.154': [0.666, 5.0], 't2.103.114.154': [0.54, 5.0], 't4.103.114.154': [0.656, 10.0]}), 'newmec-3'], [({'t1.104.114.155': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.155': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.155': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.155': [0.627, 6.667], 't2.104.114.155': [0.438, 5.0], 't3.104.114.155': [0.64, 5.0]}), 'newmec-4'], [({'t4.102.114.156': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.156': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.156': [0.746, 10.0], 't2.102.114.156': [0.401, 5.0]}), 'newmec-2'], [({'t4.101.114.157': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.157': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.157': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.157': [0.785, 10.0], 't3.101.114.157': [0.546, 5.0], 't2.101.114.157': [0.677, 5.0]}), 'newmec-1'], [({'t1.101.114.158': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.158': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.158': [0.565, 6.667], 't2.101.114.158': [0.592, 5.0]}), 'newmec-1'], [({'t5.102.114.159': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.159': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.159': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.159': [0.52, 5.0], 't4.102.114.159': [0.759, 10.0], 't3.102.114.159': [0.691, 5.0]}), 'newmec-2'], [({'t5.156.114.160': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.160': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.160': [0.633, 5.0], 't3.156.114.160': [0.491, 5.0]}), 'osboxes-0'], [({'t1.102.114.161': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.161': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.161': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.161': [0.625, 6.667], 't5.102.114.161': [0.655, 5.0], 't2.102.114.161': [0.672, 5.0]}), 'newmec-2'], [({'t5.102.114.162': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.162': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.162': [0.437, 5.0], 't2.102.114.162': [0.511, 5.0]}), 'newmec-2'], [({'t1.105.114.163': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.105.114.163': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.105.114.163': [0.592, 6.667], 't3.105.114.163': [0.454, 5.0]}), 'newmec-5'], [({'t2.101.114.164': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.164': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.164': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.164': [0.648, 5.0], 't1.101.114.164': [0.42, 6.667], 't3.101.114.164': [0.471, 5.0]}), 'newmec-1'], [({'t2.103.114.165': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.165': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.165': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.165': [0.645, 5.0], 't1.103.114.165': [0.742, 6.667], 't4.103.114.165': [0.721, 10.0]}), 'newmec-3'], [({'t4.101.114.166': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.166': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.166': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.166': [0.426, 10.0], 't1.101.114.166': [0.559, 6.667], 't2.101.114.166': [0.741, 5.0]}), 'newmec-1'], [({'t4.156.114.167': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.167': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.167': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.167': [0.446, 10.0], 't3.156.114.167': [0.77, 5.0], 't1.156.114.167': [0.743, 6.667]}), 'osboxes-0'], [({'t2.103.114.168': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.168': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.168': [0.547, 5.0], 't5.103.114.168': [0.596, 5.0]}), 'newmec-3'], [({'t5.104.114.169': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.169': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.169': [0.663, 5.0], 't1.104.114.169': [0.45, 6.667]}), 'newmec-4'], [({'t1.104.114.170': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.170': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.170': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.170': [0.559, 6.667], 't3.104.114.170': [0.445, 5.0], 't2.104.114.170': [0.535, 5.0]}), 'newmec-4'], [({'t4.101.114.171': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.171': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.171': [0.619, 10.0], 't3.101.114.171': [0.578, 5.0]}), 'newmec-1'], [({'t2.101.114.172': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.172': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.172': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.172': [0.753, 5.0], 't5.101.114.172': [0.484, 5.0], 't3.101.114.172': [0.65, 5.0]}), 'newmec-1'], [({'t2.103.114.173': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.173': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.173': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.173': [0.632, 5.0], 't1.103.114.173': [0.541, 6.667], 't4.103.114.173': [0.449, 10.0]}), 'newmec-3'], [({'t2.101.114.174': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.174': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.174': [0.475, 5.0], 't5.101.114.174': [0.408, 5.0]}), 'newmec-1'], [({'t4.105.114.175': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.175': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.175': [0.472, 10.0], 't5.105.114.175': [0.572, 5.0]}), 'newmec-5'], [({'t5.102.114.176': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.176': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.176': [0.595, 5.0], 't4.102.114.176': [0.688, 10.0]}), 'newmec-2'], [({'t2.104.114.177': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.177': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.177': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.177': [0.741, 5.0], 't1.104.114.177': [0.432, 6.667], 't4.104.114.177': [0.675, 10.0]}), 'newmec-4'], [({'t1.101.114.178': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.178': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.178': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.178': [0.415, 6.667], 't3.101.114.178': [0.409, 5.0], 't4.101.114.178': [0.412, 10.0]}), 'newmec-1'], [({'t2.105.114.179': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.179': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.179': [0.414, 5.0], 't1.105.114.179': [0.432, 6.667]}), 'newmec-5'], [({'t2.101.114.180': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.180': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.180': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.180': [0.544, 5.0], 't1.101.114.180': [0.578, 6.667], 't4.101.114.180': [0.579, 10.0]}), 'newmec-1'], [({'t5.101.114.181': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.181': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.181': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.181': [0.647, 5.0], 't2.101.114.181': [0.578, 5.0], 't1.101.114.181': [0.464, 6.667]}), 'newmec-1'], [({'t2.102.114.182': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.182': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.182': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.182': [0.545, 5.0], 't1.102.114.182': [0.61, 6.667], 't3.102.114.182': [0.782, 5.0]}), 'newmec-2'], [({'t4.104.114.183': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.183': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.183': [0.595, 10.0], 't5.104.114.183': [0.426, 5.0]}), 'newmec-4'], [({'t5.102.114.184': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.184': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.184': [0.737, 5.0], 't4.102.114.184': [0.748, 10.0]}), 'newmec-2'], [({'t3.104.114.185': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.185': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.185': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.185': [0.68, 5.0], 't1.104.114.185': [0.448, 6.667], 't2.104.114.185': [0.662, 5.0]}), 'newmec-4'], [({'t5.102.114.186': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.186': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.186': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.186': [0.531, 5.0], 't1.102.114.186': [0.522, 6.667], 't2.102.114.186': [0.568, 5.0]}), 'newmec-2'], [({'t2.102.114.187': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.187': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.187': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.187': [0.768, 5.0], 't5.102.114.187': [0.79, 5.0], 't3.102.114.187': [0.746, 5.0]}), 'newmec-2'], [({'t3.101.114.188': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.188': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.188': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.188': [0.545, 5.0], 't5.101.114.188': [0.659, 5.0], 't4.101.114.188': [0.513, 10.0]}), 'newmec-1'], [({'t1.102.114.189': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.189': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.189': [0.627, 6.667], 't4.102.114.189': [0.497, 10.0]}), 'newmec-2'], [({'t2.104.114.190': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.190': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.190': [0.413, 5.0], 't1.104.114.190': [0.753, 6.667]}), 'newmec-4'], [({'t5.104.114.191': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.191': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.191': [0.536, 5.0], 't1.104.114.191': [0.725, 6.667]}), 'newmec-4'], [({'t5.101.114.192': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.192': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.192': [0.634, 5.0], 't3.101.114.192': [0.699, 5.0]}), 'newmec-1'], [({'t1.103.114.193': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.193': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.193': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.193': [0.466, 6.667], 't5.103.114.193': [0.74, 5.0], 't3.103.114.193': [0.492, 5.0]}), 'newmec-3'], [({'t2.104.114.194': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.194': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.194': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.194': [0.547, 5.0], 't3.104.114.194': [0.556, 5.0], 't4.104.114.194': [0.755, 10.0]}), 'newmec-4'], [({'t2.103.114.195': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.195': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.195': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.195': [0.627, 5.0], 't5.103.114.195': [0.662, 5.0], 't4.103.114.195': [0.45, 10.0]}), 'newmec-3'], [({'t4.103.114.196': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.196': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.196': [0.468, 10.0], 't2.103.114.196': [0.554, 5.0]}), 'newmec-3'], [({'t4.101.114.197': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.197': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.197': [0.753, 10.0], 't2.101.114.197': [0.582, 5.0]}), 'newmec-1'], [({'t3.104.114.198': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.198': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.198': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.198': [0.607, 5.0], 't2.104.114.198': [0.684, 5.0], 't4.104.114.198': [0.408, 10.0]}), 'newmec-4'], [({'t3.102.114.199': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.199': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.199': [0.48, 5.0], 't2.102.114.199': [0.517, 5.0]}), 'newmec-2'], [({'t3.101.114.200': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.200': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.200': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.200': [0.552, 5.0], 't5.101.114.200': [0.511, 5.0], 't2.101.114.200': [0.8, 5.0]}), 'newmec-1'], [({'t4.102.114.201': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.201': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.201': [0.696, 10.0], 't3.102.114.201': [0.704, 5.0]}), 'newmec-2'], [({'t4.104.114.202': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.202': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.202': [0.696, 10.0], 't3.104.114.202': [0.418, 5.0]}), 'newmec-4'], [({'t3.156.114.203': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.203': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.203': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.203': [0.554, 5.0], 't4.156.114.203': [0.518, 10.0], 't5.156.114.203': [0.667, 5.0]}), 'osboxes-0'], [({'t1.101.114.204': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.204': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.204': [0.556, 6.667], 't5.101.114.204': [0.666, 5.0]}), 'newmec-1'], [({'t4.103.114.205': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.205': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.205': [0.476, 10.0], 't2.103.114.205': [0.55, 5.0]}), 'newmec-3'], [({'t4.101.114.206': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.206': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.206': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.206': [0.734, 10.0], 't3.101.114.206': [0.651, 5.0], 't5.101.114.206': [0.49, 5.0]}), 'newmec-1'], [({'t3.102.114.207': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.207': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.207': [0.502, 5.0], 't4.102.114.207': [0.753, 10.0]}), 'newmec-2'], [({'t3.104.114.208': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.208': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.208': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.208': [0.674, 5.0], 't5.104.114.208': [0.658, 5.0], 't1.104.114.208': [0.468, 6.667]}), 'newmec-4'], [({'t2.101.114.209': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.209': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.209': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.209': [0.516, 5.0], 't4.101.114.209': [0.599, 10.0], 't5.101.114.209': [0.679, 5.0]}), 'newmec-1'], [({'t5.102.114.210': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.210': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.210': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.210': [0.589, 5.0], 't2.102.114.210': [0.724, 5.0], 't4.102.114.210': [0.423, 10.0]}), 'newmec-2'], [({'t3.101.114.211': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.211': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.211': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.211': [0.505, 5.0], 't2.101.114.211': [0.677, 5.0], 't4.101.114.211': [0.779, 10.0]}), 'newmec-1'], [({'t2.104.114.212': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.212': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.212': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.212': [0.553, 5.0], 't4.104.114.212': [0.728, 10.0], 't5.104.114.212': [0.49, 5.0]}), 'newmec-4'], [({'t4.102.114.213': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.213': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.213': [0.447, 10.0], 't3.102.114.213': [0.494, 5.0]}), 'newmec-2'], [({'t1.101.114.214': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.214': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.214': [0.485, 6.667], 't4.101.114.214': [0.433, 10.0]}), 'newmec-1'], [({'t5.102.114.215': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.215': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.215': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.215': [0.613, 5.0], 't4.102.114.215': [0.632, 10.0], 't3.102.114.215': [0.761, 5.0]}), 'newmec-2'], [({'t2.104.114.216': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.216': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.216': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.216': [0.681, 5.0], 't4.104.114.216': [0.727, 10.0], 't5.104.114.216': [0.751, 5.0]}), 'newmec-4'], [({'t3.105.114.217': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.217': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.217': [0.63, 5.0], 't2.105.114.217': [0.609, 5.0]}), 'newmec-5'], [({'t4.103.114.218': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.218': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.218': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.218': [0.705, 10.0], 't3.103.114.218': [0.64, 5.0], 't2.103.114.218': [0.75, 5.0]}), 'newmec-3'], [({'t2.102.114.219': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.219': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.219': [0.507, 5.0], 't3.102.114.219': [0.784, 5.0]}), 'newmec-2'], [({'t4.101.114.220': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.220': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.220': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.220': [0.624, 10.0], 't1.101.114.220': [0.401, 6.667], 't5.101.114.220': [0.401, 5.0]}), 'newmec-1'], [({'t4.105.114.221': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.221': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.105.114.221': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.221': [0.474, 10.0], 't3.105.114.221': [0.445, 5.0], 't1.105.114.221': [0.702, 6.667]}), 'newmec-5'], [({'t2.103.114.222': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.222': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.222': [0.437, 5.0], 't5.103.114.222': [0.58, 5.0]}), 'newmec-3'], [({'t5.156.114.223': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.223': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.223': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.223': [0.792, 5.0], 't3.156.114.223': [0.7, 5.0], 't4.156.114.223': [0.687, 10.0]}), 'osboxes-0'], [({'t1.102.114.224': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.224': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.224': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.224': [0.709, 6.667], 't5.102.114.224': [0.613, 5.0], 't4.102.114.224': [0.553, 10.0]}), 'newmec-2'], [({'t5.102.114.225': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.225': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.225': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.225': [0.546, 5.0], 't3.102.114.225': [0.454, 5.0], 't2.102.114.225': [0.796, 5.0]}), 'newmec-2'], [({'t2.104.114.226': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.226': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.226': [0.674, 5.0], 't1.104.114.226': [0.719, 6.667]}), 'newmec-4'], [({'t2.105.114.227': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.227': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.227': [0.491, 5.0], 't1.105.114.227': [0.507, 6.667]}), 'newmec-5'], [({'t5.103.114.228': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.228': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.228': [0.643, 5.0], 't2.103.114.228': [0.628, 5.0]}), 'newmec-3'], [({'t5.102.114.229': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.229': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.229': [0.681, 5.0], 't2.102.114.229': [0.491, 5.0]}), 'newmec-2'], [({'t5.101.114.230': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.230': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.230': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.230': [0.724, 5.0], 't4.101.114.230': [0.777, 10.0], 't1.101.114.230': [0.594, 6.667]}), 'newmec-1'], [({'t1.102.114.231': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.231': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.231': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.231': [0.747, 6.667], 't3.102.114.231': [0.498, 5.0], 't4.102.114.231': [0.742, 10.0]}), 'newmec-2'], [({'t2.105.114.232': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.232': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.232': [0.453, 5.0], 't4.105.114.232': [0.729, 10.0]}), 'newmec-5'], [({'t2.101.114.233': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.233': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.233': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.233': [0.447, 5.0], 't4.101.114.233': [0.712, 10.0], 't5.101.114.233': [0.727, 5.0]}), 'newmec-1'], [({'t2.101.114.234': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.234': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.234': [0.591, 5.0], 't4.101.114.234': [0.428, 10.0]}), 'newmec-1'], [({'t5.102.114.235': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.235': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.235': [0.663, 5.0], 't4.102.114.235': [0.788, 10.0]}), 'newmec-2'], [({'t2.105.114.236': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.236': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.236': [0.74, 5.0], 't4.105.114.236': [0.61, 10.0]}), 'newmec-5'], [({'t2.102.114.237': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.237': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.237': [0.473, 5.0], 't4.102.114.237': [0.771, 10.0]}), 'newmec-2'], [({'t4.102.114.238': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.238': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.238': [0.6, 10.0], 't3.102.114.238': [0.416, 5.0]}), 'newmec-2'], [({'t2.102.114.239': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.239': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.239': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.239': [0.417, 5.0], 't3.102.114.239': [0.533, 5.0], 't4.102.114.239': [0.705, 10.0]}), 'newmec-2'], [({'t3.104.114.240': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.240': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.240': [0.644, 5.0], 't4.104.114.240': [0.795, 10.0]}), 'newmec-4'], [({'t3.102.114.241': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.241': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.241': [0.756, 5.0], 't2.102.114.241': [0.685, 5.0]}), 'newmec-2'], [({'t3.102.114.242': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.242': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.242': [0.463, 5.0], 't2.102.114.242': [0.789, 5.0]}), 'newmec-2'], [({'t2.105.114.243': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.243': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.243': [0.511, 5.0], 't1.105.114.243': [0.468, 6.667]}), 'newmec-5'], [({'t5.102.114.244': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.244': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.244': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.244': [0.404, 5.0], 't4.102.114.244': [0.748, 10.0], 't2.102.114.244': [0.627, 5.0]}), 'newmec-2'], [({'t1.104.114.245': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.245': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.245': [0.49, 6.667], 't2.104.114.245': [0.594, 5.0]}), 'newmec-4'], [({'t4.101.114.246': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.246': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.246': [0.766, 10.0], 't3.101.114.246': [0.409, 5.0]}), 'newmec-1'], [({'t2.101.114.247': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.247': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.247': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.247': [0.532, 5.0], 't4.101.114.247': [0.745, 10.0], 't5.101.114.247': [0.708, 5.0]}), 'newmec-1'], [({'t5.101.114.248': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.248': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.248': [0.659, 5.0], 't3.101.114.248': [0.674, 5.0]}), 'newmec-1'], [({'t2.102.114.249': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.249': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.249': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.249': [0.555, 5.0], 't1.102.114.249': [0.576, 6.667], 't5.102.114.249': [0.608, 5.0]}), 'newmec-2'], [({'t3.104.114.250': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.250': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.250': [0.704, 5.0], 't2.104.114.250': [0.601, 5.0]}), 'newmec-4'], [({'t5.101.114.251': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.251': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.251': [0.465, 5.0], 't3.101.114.251': [0.489, 5.0]}), 'newmec-1'], [({'t5.101.114.252': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.252': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.252': [0.468, 5.0], 't2.101.114.252': [0.567, 5.0]}), 'newmec-1'], [({'t4.103.114.253': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.253': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.253': [0.662, 10.0], 't3.103.114.253': [0.702, 5.0]}), 'newmec-3'], [({'t4.101.114.254': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.254': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.254': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.254': [0.451, 10.0], 't2.101.114.254': [0.647, 5.0], 't1.101.114.254': [0.429, 6.667]}), 'newmec-1'], [({'t4.105.114.255': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.255': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.105.114.255': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.255': [0.795, 10.0], 't3.105.114.255': [0.433, 5.0], 't1.105.114.255': [0.696, 6.667]}), 'newmec-5'], [({'t3.101.114.256': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.256': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.256': [0.675, 5.0], 't4.101.114.256': [0.624, 10.0]}), 'newmec-1'], [({'t4.102.114.257': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.257': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.257': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.257': [0.437, 10.0], 't5.102.114.257': [0.79, 5.0], 't3.102.114.257': [0.467, 5.0]}), 'newmec-2'], [({'t3.102.114.258': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.258': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.258': [0.708, 5.0], 't5.102.114.258': [0.799, 5.0]}), 'newmec-2'], [({'t3.103.114.259': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.259': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.259': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.259': [0.764, 5.0], 't5.103.114.259': [0.668, 5.0], 't4.103.114.259': [0.468, 10.0]}), 'newmec-3'], [({'t5.104.114.260': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.260': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.260': [0.792, 5.0], 't1.104.114.260': [0.498, 6.667]}), 'newmec-4'], [({'t4.102.114.261': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.261': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.261': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.261': [0.493, 10.0], 't2.102.114.261': [0.439, 5.0], 't3.102.114.261': [0.778, 5.0]}), 'newmec-2'], [({'t2.156.114.262': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.262': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.262': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.262': [0.71, 5.0], 't3.156.114.262': [0.779, 5.0], 't5.156.114.262': [0.551, 5.0]}), 'osboxes-0'], [({'t3.102.114.263': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.263': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.263': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.263': [0.412, 5.0], 't1.102.114.263': [0.437, 6.667], 't2.102.114.263': [0.458, 5.0]}), 'newmec-2'], [({'t3.102.114.264': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.264': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.264': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.264': [0.451, 5.0], 't4.102.114.264': [0.475, 10.0], 't2.102.114.264': [0.753, 5.0]}), 'newmec-2'], [({'t2.103.114.265': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.265': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.265': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.265': [0.685, 5.0], 't5.103.114.265': [0.483, 5.0], 't4.103.114.265': [0.613, 10.0]}), 'newmec-3'], [({'t5.103.114.266': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.266': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.266': [0.672, 5.0], 't3.103.114.266': [0.79, 5.0]}), 'newmec-3'], [({'t3.105.114.267': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.267': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.267': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.105.114.267': [0.528, 5.0], 't2.105.114.267': [0.727, 5.0], 't1.105.114.267': [0.722, 6.667]}), 'newmec-5'], [({'t1.104.114.268': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.268': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.268': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.268': [0.719, 6.667], 't5.104.114.268': [0.593, 5.0], 't3.104.114.268': [0.562, 5.0]}), 'newmec-4'], [({'t5.102.114.269': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.269': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.269': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.269': [0.665, 5.0], 't4.102.114.269': [0.438, 10.0], 't3.102.114.269': [0.616, 5.0]}), 'newmec-2'], [({'t2.102.114.270': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.270': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.270': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.270': [0.641, 5.0], 't1.102.114.270': [0.795, 6.667], 't4.102.114.270': [0.592, 10.0]}), 'newmec-2'], [({'t5.101.114.271': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.271': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.271': [0.76, 5.0], 't4.101.114.271': [0.658, 10.0]}), 'newmec-1'], [({'t4.101.114.272': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.272': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.272': [0.478, 10.0], 't3.101.114.272': [0.518, 5.0]}), 'newmec-1'], [({'t5.102.114.273': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.273': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.273': [0.497, 5.0], 't2.102.114.273': [0.736, 5.0]}), 'newmec-2'], [({'t2.104.114.274': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.274': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.274': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.274': [0.494, 5.0], 't1.104.114.274': [0.443, 6.667], 't5.104.114.274': [0.548, 5.0]}), 'newmec-4'], [({'t1.101.114.275': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.275': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.275': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.275': [0.488, 6.667], 't3.101.114.275': [0.515, 5.0], 't5.101.114.275': [0.461, 5.0]}), 'newmec-1'], [({'t2.101.114.276': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.276': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.276': [0.749, 5.0], 't1.101.114.276': [0.546, 6.667]}), 'newmec-1'], [({'t3.101.114.277': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.277': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.277': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.277': [0.671, 5.0], 't4.101.114.277': [0.535, 10.0], 't2.101.114.277': [0.483, 5.0]}), 'newmec-1'], [({'t5.101.114.278': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.278': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.278': [0.752, 5.0], 't3.101.114.278': [0.772, 5.0]}), 'newmec-1'], [({'t4.104.114.279': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.279': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.279': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.279': [0.549, 10.0], 't3.104.114.279': [0.476, 5.0], 't5.104.114.279': [0.661, 5.0]}), 'newmec-4'], [({'t2.105.114.280': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.280': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.105.114.280': [0.58, 5.0], 't5.105.114.280': [0.429, 5.0]}), 'newmec-5'], [({'t2.103.114.281': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.281': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.281': [0.626, 5.0], 't4.103.114.281': [0.693, 10.0]}), 'newmec-3'], [({'t5.104.114.282': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.282': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.282': [0.599, 5.0], 't3.104.114.282': [0.425, 5.0]}), 'newmec-4'], [({'t5.101.114.283': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.283': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.283': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.283': [0.532, 5.0], 't2.101.114.283': [0.528, 5.0], 't3.101.114.283': [0.782, 5.0]}), 'newmec-1'], [({'t2.102.114.284': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.284': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.284': [0.429, 5.0], 't4.102.114.284': [0.4, 10.0]}), 'newmec-2'], [({'t4.102.114.285': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.285': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.285': [0.553, 10.0], 't3.102.114.285': [0.722, 5.0]}), 'newmec-2'], [({'t3.101.114.286': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.286': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.286': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.286': [0.571, 5.0], 't2.101.114.286': [0.75, 5.0], 't4.101.114.286': [0.585, 10.0]}), 'newmec-1'], [({'t2.102.114.287': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.287': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.287': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.287': [0.639, 5.0], 't5.102.114.287': [0.55, 5.0], 't4.102.114.287': [0.492, 10.0]}), 'newmec-2'], [({'t4.101.114.288': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.288': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.288': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.288': [0.692, 10.0], 't1.101.114.288': [0.58, 6.667], 't5.101.114.288': [0.52, 5.0]}), 'newmec-1'], [({'t3.104.114.289': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.289': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.289': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.289': [0.745, 5.0], 't5.104.114.289': [0.442, 5.0], 't2.104.114.289': [0.502, 5.0]}), 'newmec-4'], [({'t4.102.114.290': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.290': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.290': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.290': [0.587, 10.0], 't5.102.114.290': [0.437, 5.0], 't2.102.114.290': [0.608, 5.0]}), 'newmec-2'], [({'t3.103.114.291': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.291': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.291': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.291': [0.623, 5.0], 't4.103.114.291': [0.69, 10.0], 't2.103.114.291': [0.407, 5.0]}), 'newmec-3'], [({'t3.101.114.292': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.292': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.292': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.292': [0.643, 5.0], 't4.101.114.292': [0.603, 10.0], 't1.101.114.292': [0.653, 6.667]}), 'newmec-1'], [({'t5.101.114.293': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.293': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.293': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.293': [0.455, 5.0], 't2.101.114.293': [0.741, 5.0], 't4.101.114.293': [0.628, 10.0]}), 'newmec-1'], [({'t3.101.114.294': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.294': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.294': [0.719, 5.0], 't1.101.114.294': [0.539, 6.667]}), 'newmec-1'], [({'t3.104.114.295': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.295': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.295': [0.629, 5.0], 't5.104.114.295': [0.407, 5.0]}), 'newmec-4'], [({'t1.101.114.296': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.296': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.296': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.296': [0.62, 6.667], 't3.101.114.296': [0.679, 5.0], 't2.101.114.296': [0.653, 5.0]}), 'newmec-1'], [({'t2.103.114.297': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.297': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.297': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.297': [0.59, 5.0], 't5.103.114.297': [0.494, 5.0], 't3.103.114.297': [0.648, 5.0]}), 'newmec-3'], [({'t2.104.114.298': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.298': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.298': [0.462, 5.0], 't5.104.114.298': [0.777, 5.0]}), 'newmec-4'], [({'t5.101.114.299': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.299': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.299': [0.468, 5.0], 't2.101.114.299': [0.529, 5.0]}), 'newmec-1'], [({'t3.102.114.300': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.300': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.300': [0.475, 5.0], 't1.102.114.300': [0.607, 6.667]}), 'newmec-2'], [({'t2.101.114.301': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.301': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.301': [0.646, 5.0], 't5.101.114.301': [0.532, 5.0]}), 'newmec-1'], [({'t5.105.114.302': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.302': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.302': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.105.114.302': [0.738, 5.0], 't2.105.114.302': [0.736, 5.0], 't4.105.114.302': [0.625, 10.0]}), 'newmec-5'], [({'t4.102.114.303': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.303': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.303': [0.544, 10.0], 't1.102.114.303': [0.591, 6.667]}), 'newmec-2'], [({'t2.101.114.304': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.304': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.304': [0.516, 5.0], 't5.101.114.304': [0.731, 5.0]}), 'newmec-1'], [({'t3.104.114.305': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.305': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.305': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.305': [0.45, 5.0], 't4.104.114.305': [0.443, 10.0], 't1.104.114.305': [0.775, 6.667]}), 'newmec-4'], [({'t5.104.114.306': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.306': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.306': [0.522, 5.0], 't4.104.114.306': [0.55, 10.0]}), 'newmec-4'], [({'t4.101.114.307': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.307': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.307': [0.563, 10.0], 't5.101.114.307': [0.587, 5.0]}), 'newmec-1'], [({'t4.105.114.308': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.308': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.308': [0.448, 10.0], 't1.105.114.308': [0.553, 6.667]}), 'newmec-5'], [({'t3.102.114.309': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.309': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.309': [0.579, 5.0], 't4.102.114.309': [0.772, 10.0]}), 'newmec-2'], [({'t5.105.114.310': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.105.114.310': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.105.114.310': [0.645, 5.0], 't3.105.114.310': [0.427, 5.0]}), 'newmec-5'], [({'t4.101.114.311': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.311': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.311': [0.689, 10.0], 't5.101.114.311': [0.569, 5.0]}), 'newmec-1'], [({'t2.102.114.312': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.312': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.312': [0.603, 5.0], 't1.102.114.312': [0.491, 6.667]}), 'newmec-2'], [({'t3.103.114.313': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.313': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.313': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.313': [0.49, 5.0], 't4.103.114.313': [0.461, 10.0], 't5.103.114.313': [0.691, 5.0]}), 'newmec-3'], [({'t1.101.114.314': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.314': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.314': [0.44, 6.667], 't4.101.114.314': [0.615, 10.0]}), 'newmec-1'], [({'t5.104.114.315': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.315': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.315': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.315': [0.546, 5.0], 't2.104.114.315': [0.574, 5.0], 't4.104.114.315': [0.495, 10.0]}), 'newmec-4'], [({'t3.101.114.316': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.316': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.316': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.316': [0.63, 5.0], 't2.101.114.316': [0.581, 5.0], 't4.101.114.316': [0.426, 10.0]}), 'newmec-1'], [({'t5.102.114.317': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.317': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.317': [0.661, 5.0], 't4.102.114.317': [0.584, 10.0]}), 'newmec-2'], [({'t5.105.114.318': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.318': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.105.114.318': [0.566, 5.0], 't1.105.114.318': [0.541, 6.667]}), 'newmec-5'], [({'t3.102.114.319': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.319': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.319': [0.546, 5.0], 't1.102.114.319': [0.635, 6.667]}), 'newmec-2'], [({'t3.105.114.320': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.320': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.320': [0.541, 5.0], 't2.105.114.320': [0.752, 5.0]}), 'newmec-5'], [({'t4.102.114.321': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.321': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.321': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.321': [0.43, 10.0], 't2.102.114.321': [0.739, 5.0], 't5.102.114.321': [0.585, 5.0]}), 'newmec-2'], [({'t3.104.114.322': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.322': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.322': [0.58, 5.0], 't2.104.114.322': [0.453, 5.0]}), 'newmec-4'], [({'t4.102.114.323': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.323': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.323': [0.428, 10.0], 't3.102.114.323': [0.689, 5.0]}), 'newmec-2'], [({'t2.101.114.324': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.324': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.324': [0.527, 5.0], 't5.101.114.324': [0.506, 5.0]}), 'newmec-1'], [({'t3.102.114.325': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.325': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.325': [0.482, 5.0], 't4.102.114.325': [0.57, 10.0]}), 'newmec-2'], [({'t5.102.114.326': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.326': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.326': [0.442, 5.0], 't2.102.114.326': [0.545, 5.0]}), 'newmec-2'], [({'t1.102.114.327': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.327': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.327': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.327': [0.689, 6.667], 't5.102.114.327': [0.476, 5.0], 't4.102.114.327': [0.651, 10.0]}), 'newmec-2'], [({'t4.102.114.328': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.328': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.328': [0.572, 10.0], 't5.102.114.328': [0.666, 5.0]}), 'newmec-2'], [({'t4.105.114.329': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.329': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.105.114.329': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.105.114.329': [0.771, 10.0], 't5.105.114.329': [0.699, 5.0], 't3.105.114.329': [0.476, 5.0]}), 'newmec-5'], [({'t3.105.114.330': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.330': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.105.114.330': [0.464, 5.0], 't4.105.114.330': [0.581, 10.0]}), 'newmec-5'], [({'t3.101.114.331': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.331': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.331': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.331': [0.509, 5.0], 't2.101.114.331': [0.52, 5.0], 't4.101.114.331': [0.74, 10.0]}), 'newmec-1'], [({'t2.101.114.332': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.332': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.332': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.332': [0.452, 5.0], 't5.101.114.332': [0.732, 5.0], 't4.101.114.332': [0.419, 10.0]}), 'newmec-1'], [({'t1.102.114.333': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.333': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.333': [0.763, 6.667], 't5.102.114.333': [0.614, 5.0]}), 'newmec-2'], [({'t3.105.114.334': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.334': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.105.114.334': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.105.114.334': [0.531, 5.0], 't5.105.114.334': [0.43, 5.0], 't4.105.114.334': [0.527, 10.0]}), 'newmec-5'], [({'t5.105.114.335': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.335': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.105.114.335': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.105.114.335': [0.769, 5.0], 't2.105.114.335': [0.609, 5.0], 't3.105.114.335': [0.76, 5.0]}), 'newmec-5'], [({'t2.101.114.336': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.336': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.336': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.336': [0.637, 5.0], 't4.101.114.336': [0.623, 10.0], 't3.101.114.336': [0.554, 5.0]}), 'newmec-1'], [({'t3.102.114.337': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.337': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.337': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.337': [0.436, 5.0], 't2.102.114.337': [0.586, 5.0], 't4.102.114.337': [0.585, 10.0]}), 'newmec-2'], [({'t1.103.114.338': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.338': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.338': [0.41, 6.667], 't4.103.114.338': [0.719, 10.0]}), 'newmec-3'], [({'t2.102.114.339': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.339': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.339': [0.658, 5.0], 't5.102.114.339': [0.635, 5.0]}), 'newmec-2'], [({'t1.104.114.340': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.340': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.340': [0.758, 6.667], 't2.104.114.340': [0.587, 5.0]}), 'newmec-4'], [({'t4.101.114.341': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.341': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.341': [0.645, 10.0], 't2.101.114.341': [0.455, 5.0]}), 'newmec-1'], [({'t2.102.114.342': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.342': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.342': [0.645, 5.0], 't5.102.114.342': [0.637, 5.0]}), 'newmec-2'], [({'t3.102.114.343': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.343': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.343': [0.453, 5.0], 't5.102.114.343': [0.521, 5.0]}), 'newmec-2'], [({'t3.101.114.344': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.344': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.344': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.344': [0.499, 5.0], 't1.101.114.344': [0.454, 6.667], 't5.101.114.344': [0.781, 5.0]}), 'newmec-1'], [({'t4.101.114.345': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.345': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.345': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.345': [0.709, 10.0], 't5.101.114.345': [0.574, 5.0], 't2.101.114.345': [0.592, 5.0]}), 'newmec-1'], [({'t1.105.114.346': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.346': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.346': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.105.114.346': [0.583, 6.667], 't4.105.114.346': [0.408, 10.0], 't5.105.114.346': [0.439, 5.0]}), 'newmec-5'], [({'t4.102.114.347': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.347': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.347': [0.417, 10.0], 't5.102.114.347': [0.533, 5.0]}), 'newmec-2'], [({'t5.104.114.348': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.348': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.348': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.348': [0.734, 5.0], 't1.104.114.348': [0.678, 6.667], 't2.104.114.348': [0.479, 5.0]}), 'newmec-4'], [({'t5.102.114.349': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.349': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.349': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.349': [0.573, 5.0], 't2.102.114.349': [0.598, 5.0], 't3.102.114.349': [0.471, 5.0]}), 'newmec-2'], [({'t5.101.114.350': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.350': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.350': [0.599, 5.0], 't4.101.114.350': [0.547, 10.0]}), 'newmec-1'], [({'t2.102.114.351': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.351': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.351': [0.411, 5.0], 't4.102.114.351': [0.567, 10.0]}), 'newmec-2'], [({'t2.101.114.352': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.352': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.352': [0.723, 5.0], 't3.101.114.352': [0.481, 5.0]}), 'newmec-1'], [({'t5.101.114.353': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.353': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.353': [0.631, 5.0], 't2.101.114.353': [0.421, 5.0]}), 'newmec-1'], [({'t5.102.114.354': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.354': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.354': [0.634, 5.0], 't1.102.114.354': [0.517, 6.667]}), 'newmec-2'], [({'t3.101.114.355': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.355': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.355': [0.54, 5.0], 't1.101.114.355': [0.688, 6.667]}), 'newmec-1'], [({'t1.101.114.356': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.356': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.356': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.356': [0.776, 6.667], 't2.101.114.356': [0.781, 5.0], 't5.101.114.356': [0.464, 5.0]}), 'newmec-1'], [({'t4.104.114.357': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.357': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.357': [0.592, 10.0], 't2.104.114.357': [0.538, 5.0]}), 'newmec-4'], [({'t3.101.114.358': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.358': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.358': [0.458, 5.0], 't1.101.114.358': [0.494, 6.667]}), 'newmec-1'], [({'t3.104.114.359': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.359': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.359': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.359': [0.613, 5.0], 't5.104.114.359': [0.404, 5.0], 't1.104.114.359': [0.519, 6.667]}), 'newmec-4'], [({'t2.101.114.360': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.360': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.360': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.360': [0.689, 5.0], 't5.101.114.360': [0.502, 5.0], 't1.101.114.360': [0.79, 6.667]}), 'newmec-1'], [({'t4.103.114.361': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.361': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.361': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.361': [0.422, 10.0], 't3.103.114.361': [0.658, 5.0], 't5.103.114.361': [0.476, 5.0]}), 'newmec-3'], [({'t5.102.114.362': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.362': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.362': [0.636, 5.0], 't2.102.114.362': [0.697, 5.0]}), 'newmec-2'], [({'t1.102.114.363': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.363': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.363': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.363': [0.414, 6.667], 't2.102.114.363': [0.785, 5.0], 't3.102.114.363': [0.75, 5.0]}), 'newmec-2'], [({'t1.101.114.364': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.364': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.364': [0.58, 6.667], 't3.101.114.364': [0.459, 5.0]}), 'newmec-1'], [({'t4.104.114.365': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.365': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.365': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.365': [0.541, 10.0], 't3.104.114.365': [0.438, 5.0], 't5.104.114.365': [0.761, 5.0]}), 'newmec-4'], [({'t5.102.114.366': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.366': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.366': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.366': [0.583, 5.0], 't1.102.114.366': [0.512, 6.667], 't4.102.114.366': [0.73, 10.0]}), 'newmec-2'], [({'t2.105.114.367': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.367': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.367': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.105.114.367': [0.426, 5.0], 't4.105.114.367': [0.787, 10.0], 't3.105.114.367': [0.74, 5.0]}), 'newmec-5'], [({'t4.102.114.368': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.368': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.368': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.368': [0.734, 10.0], 't3.102.114.368': [0.507, 5.0], 't1.102.114.368': [0.615, 6.667]}), 'newmec-2'], [({'t5.101.114.369': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.369': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.369': [0.524, 5.0], 't3.101.114.369': [0.432, 5.0]}), 'newmec-1'], [({'t5.101.114.370': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.370': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.370': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.370': [0.641, 5.0], 't1.101.114.370': [0.743, 6.667], 't4.101.114.370': [0.515, 10.0]}), 'newmec-1'], [({'t1.101.114.371': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.371': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.371': [0.518, 6.667], 't5.101.114.371': [0.494, 5.0]}), 'newmec-1'], [({'t2.101.114.372': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.372': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.372': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.372': [0.751, 5.0], 't4.101.114.372': [0.603, 10.0], 't5.101.114.372': [0.557, 5.0]}), 'newmec-1'], [({'t2.101.114.373': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.373': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.373': [0.698, 5.0], 't5.101.114.373': [0.787, 5.0]}), 'newmec-1'], [({'t2.102.114.374': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.374': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.374': [0.78, 5.0], 't3.102.114.374': [0.427, 5.0]}), 'newmec-2'], [({'t3.102.114.375': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.375': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.375': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.375': [0.61, 5.0], 't5.102.114.375': [0.707, 5.0], 't1.102.114.375': [0.458, 6.667]}), 'newmec-2'], [({'t4.105.114.376': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.376': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.376': [0.765, 10.0], 't1.105.114.376': [0.482, 6.667]}), 'newmec-5'], [({'t1.102.114.377': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.377': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.377': [0.592, 6.667], 't4.102.114.377': [0.46, 10.0]}), 'newmec-2'], [({'t2.102.114.378': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.378': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.378': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.378': [0.584, 5.0], 't3.102.114.378': [0.516, 5.0], 't5.102.114.378': [0.522, 5.0]}), 'newmec-2'], [({'t5.103.114.379': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.379': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.379': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.379': [0.525, 5.0], 't3.103.114.379': [0.424, 5.0], 't2.103.114.379': [0.424, 5.0]}), 'newmec-3'], [({'t4.101.114.380': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.380': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.380': [0.684, 10.0], 't5.101.114.380': [0.565, 5.0]}), 'newmec-1'], [({'t3.101.114.381': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.381': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.381': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.381': [0.667, 5.0], 't2.101.114.381': [0.717, 5.0], 't5.101.114.381': [0.464, 5.0]}), 'newmec-1'], [({'t2.102.114.382': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.382': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.382': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.382': [0.738, 5.0], 't5.102.114.382': [0.536, 5.0], 't4.102.114.382': [0.43, 10.0]}), 'newmec-2'], [({'t5.102.114.383': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.383': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.383': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.383': [0.781, 5.0], 't2.102.114.383': [0.703, 5.0], 't4.102.114.383': [0.529, 10.0]}), 'newmec-2'], [({'t5.102.114.384': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.384': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.384': [0.66, 5.0], 't4.102.114.384': [0.761, 10.0]}), 'newmec-2'], [({'t4.104.114.385': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.385': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.385': [0.52, 10.0], 't3.104.114.385': [0.755, 5.0]}), 'newmec-4'], [({'t1.104.114.386': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.386': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.386': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.386': [0.626, 6.667], 't2.104.114.386': [0.59, 5.0], 't3.104.114.386': [0.586, 5.0]}), 'newmec-4'], [({'t4.101.114.387': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.387': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.387': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.387': [0.478, 10.0], 't3.101.114.387': [0.579, 5.0], 't1.101.114.387': [0.627, 6.667]}), 'newmec-1'], [({'t3.105.114.388': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.388': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.105.114.388': [0.738, 5.0], 't4.105.114.388': [0.791, 10.0]}), 'newmec-5'], [({'t1.102.114.389': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.389': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.389': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.389': [0.7, 6.667], 't2.102.114.389': [0.713, 5.0], 't4.102.114.389': [0.777, 10.0]}), 'newmec-2'], [({'t5.102.114.390': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.390': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.390': [0.743, 5.0], 't1.102.114.390': [0.587, 6.667]}), 'newmec-2'], [({'t4.105.114.391': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.391': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.391': [0.492, 10.0], 't1.105.114.391': [0.437, 6.667]}), 'newmec-5'], [({'t5.102.114.392': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.392': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.392': [0.48, 5.0], 't1.102.114.392': [0.414, 6.667]}), 'newmec-2'], [({'t2.101.114.393': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.393': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.393': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.393': [0.434, 5.0], 't1.101.114.393': [0.729, 6.667], 't3.101.114.393': [0.538, 5.0]}), 'newmec-1'], [({'t2.103.114.394': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.394': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.394': [0.545, 5.0], 't5.103.114.394': [0.753, 5.0]}), 'newmec-3'], [({'t4.104.114.395': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.395': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.395': [0.615, 10.0], 't2.104.114.395': [0.745, 5.0]}), 'newmec-4'], [({'t4.156.114.396': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.396': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.396': [0.641, 10.0], 't5.156.114.396': [0.478, 5.0]}), 'osboxes-0'], [({'t5.104.114.397': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.397': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.397': [0.635, 5.0], 't1.104.114.397': [0.421, 6.667]}), 'newmec-4'], [({'t5.101.114.398': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.398': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.398': [0.53, 5.0], 't2.101.114.398': [0.427, 5.0]}), 'newmec-1'], [({'t3.105.114.399': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.399': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.399': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.399': [0.536, 5.0], 't4.105.114.399': [0.414, 10.0], 't2.105.114.399': [0.616, 5.0]}), 'newmec-5'], [({'t5.101.114.400': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.400': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.400': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.400': [0.75, 5.0], 't3.101.114.400': [0.683, 5.0], 't4.101.114.400': [0.689, 10.0]}), 'newmec-1'], [({'t2.103.114.401': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.401': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.401': [0.736, 5.0], 't4.103.114.401': [0.504, 10.0]}), 'newmec-3'], [({'t5.102.114.402': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.402': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.402': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.402': [0.706, 5.0], 't1.102.114.402': [0.429, 6.667], 't2.102.114.402': [0.493, 5.0]}), 'newmec-2'], [({'t2.105.114.403': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.403': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.105.114.403': [0.471, 5.0], 't5.105.114.403': [0.498, 5.0]}), 'newmec-5'], [({'t2.104.114.404': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.404': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.404': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.404': [0.675, 5.0], 't1.104.114.404': [0.482, 6.667], 't5.104.114.404': [0.406, 5.0]}), 'newmec-4'], [({'t1.101.114.405': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.405': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.405': [0.572, 6.667], 't5.101.114.405': [0.706, 5.0]}), 'newmec-1'], [({'t5.101.114.406': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.406': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.406': [0.577, 5.0], 't3.101.114.406': [0.431, 5.0]}), 'newmec-1'], [({'t5.101.114.407': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.407': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.407': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.407': [0.733, 5.0], 't1.101.114.407': [0.618, 6.667], 't4.101.114.407': [0.689, 10.0]}), 'newmec-1'], [({'t3.102.114.408': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.408': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.408': [0.67, 5.0], 't1.102.114.408': [0.745, 6.667]}), 'newmec-2'], [({'t4.102.114.409': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.409': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.409': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.409': [0.442, 10.0], 't2.102.114.409': [0.455, 5.0], 't5.102.114.409': [0.401, 5.0]}), 'newmec-2'], [({'t4.101.114.410': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.410': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.410': [0.607, 10.0], 't2.101.114.410': [0.647, 5.0]}), 'newmec-1'], [({'t5.101.114.411': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.411': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.411': [0.578, 5.0], 't4.101.114.411': [0.782, 10.0]}), 'newmec-1'], [({'t3.101.114.412': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.412': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.412': [0.615, 5.0], 't4.101.114.412': [0.788, 10.0]}), 'newmec-1'], [({'t4.102.114.413': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.413': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.413': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.413': [0.459, 10.0], 't1.102.114.413': [0.499, 6.667], 't5.102.114.413': [0.614, 5.0]}), 'newmec-2'], [({'t2.101.114.414': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.414': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.414': [0.406, 5.0], 't5.101.114.414': [0.693, 5.0]}), 'newmec-1'], [({'t1.102.114.415': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.415': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.415': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.415': [0.56, 6.667], 't2.102.114.415': [0.722, 5.0], 't3.102.114.415': [0.606, 5.0]}), 'newmec-2'], [({'t2.102.114.416': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.416': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.416': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.416': [0.565, 5.0], 't3.102.114.416': [0.406, 5.0], 't5.102.114.416': [0.477, 5.0]}), 'newmec-2'], [({'t4.101.114.417': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.417': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.417': [0.605, 10.0], 't3.101.114.417': [0.506, 5.0]}), 'newmec-1'], [({'t2.102.114.418': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.418': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.418': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.418': [0.5, 5.0], 't4.102.114.418': [0.416, 10.0], 't1.102.114.418': [0.766, 6.667]}), 'newmec-2'], [({'t2.104.114.419': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.419': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.419': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.419': [0.498, 5.0], 't3.104.114.419': [0.686, 5.0], 't5.104.114.419': [0.789, 5.0]}), 'newmec-4'], [({'t5.101.114.420': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.420': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.420': [0.531, 5.0], 't4.101.114.420': [0.462, 10.0]}), 'newmec-1'], [({'t2.103.114.421': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.421': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.421': [0.514, 5.0], 't4.103.114.421': [0.774, 10.0]}), 'newmec-3'], [({'t2.101.114.422': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.422': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.422': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.422': [0.71, 5.0], 't3.101.114.422': [0.702, 5.0], 't4.101.114.422': [0.556, 10.0]}), 'newmec-1'], [({'t2.101.114.423': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.423': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.423': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.423': [0.55, 5.0], 't4.101.114.423': [0.448, 10.0], 't5.101.114.423': [0.799, 5.0]}), 'newmec-1'], [({'t4.104.114.424': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.424': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.424': [0.539, 10.0], 't2.104.114.424': [0.443, 5.0]}), 'newmec-4'], [({'t5.101.114.425': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.425': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.425': [0.441, 5.0], 't4.101.114.425': [0.792, 10.0]}), 'newmec-1'], [({'t5.102.114.426': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.426': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.426': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.426': [0.747, 5.0], 't3.102.114.426': [0.524, 5.0], 't1.102.114.426': [0.724, 6.667]}), 'newmec-2'], [({'t3.102.114.427': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.427': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.427': [0.783, 5.0], 't4.102.114.427': [0.409, 10.0]}), 'newmec-2'], [({'t2.101.114.428': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.428': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.428': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.428': [0.454, 5.0], 't5.101.114.428': [0.726, 5.0], 't4.101.114.428': [0.723, 10.0]}), 'newmec-1'], [({'t1.101.114.429': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.429': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.429': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.429': [0.589, 6.667], 't4.101.114.429': [0.558, 10.0], 't2.101.114.429': [0.587, 5.0]}), 'newmec-1'], [({'t2.101.114.430': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.430': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.430': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.430': [0.529, 5.0], 't4.101.114.430': [0.602, 10.0], 't5.101.114.430': [0.415, 5.0]}), 'newmec-1'], [({'t2.105.114.431': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.431': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.105.114.431': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.105.114.431': [0.411, 5.0], 't5.105.114.431': [0.589, 5.0], 't3.105.114.431': [0.717, 5.0]}), 'newmec-5'], [({'t5.104.114.432': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.432': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.432': [0.462, 5.0], 't3.104.114.432': [0.557, 5.0]}), 'newmec-4'], [({'t3.102.114.433': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.433': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.433': [0.584, 5.0], 't5.102.114.433': [0.452, 5.0]}), 'newmec-2'], [({'t1.101.114.434': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.434': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.434': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.434': [0.513, 6.667], 't5.101.114.434': [0.752, 5.0], 't3.101.114.434': [0.473, 5.0]}), 'newmec-1'], [({'t1.104.114.435': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.435': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.435': [0.544, 6.667], 't2.104.114.435': [0.741, 5.0]}), 'newmec-4'], [({'t5.104.114.436': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.436': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.436': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.436': [0.408, 5.0], 't4.104.114.436': [0.622, 10.0], 't1.104.114.436': [0.742, 6.667]}), 'newmec-4'], [({'t4.102.114.437': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.437': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.437': [0.661, 10.0], 't2.102.114.437': [0.787, 5.0]}), 'newmec-2'], [({'t2.104.114.438': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.438': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.438': [0.687, 5.0], 't5.104.114.438': [0.433, 5.0]}), 'newmec-4'], [({'t2.104.114.439': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.439': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.439': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.439': [0.468, 5.0], 't3.104.114.439': [0.784, 5.0], 't1.104.114.439': [0.507, 6.667]}), 'newmec-4'], [({'t2.105.114.440': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.440': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.440': [0.449, 5.0], 't4.105.114.440': [0.422, 10.0]}), 'newmec-5'], [({'t4.102.114.441': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.441': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.441': [0.658, 10.0], 't1.102.114.441': [0.591, 6.667]}), 'newmec-2'], [({'t1.102.114.442': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.442': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.442': [0.506, 6.667], 't3.102.114.442': [0.719, 5.0]}), 'newmec-2'], [({'t3.101.114.443': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.443': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.443': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.443': [0.42, 5.0], 't2.101.114.443': [0.696, 5.0], 't1.101.114.443': [0.405, 6.667]}), 'newmec-1'], [({'t5.102.114.444': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.444': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.444': [0.472, 5.0], 't1.102.114.444': [0.557, 6.667]}), 'newmec-2'], [({'t5.101.114.445': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.445': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.445': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.445': [0.603, 5.0], 't2.101.114.445': [0.567, 5.0], 't1.101.114.445': [0.445, 6.667]}), 'newmec-1'], [({'t5.102.114.446': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.446': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.446': [0.442, 5.0], 't3.102.114.446': [0.505, 5.0]}), 'newmec-2'], [({'t1.101.114.447': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.447': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.447': [0.744, 6.667], 't2.101.114.447': [0.756, 5.0]}), 'newmec-1'], [({'t1.101.114.448': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.448': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.448': [0.507, 6.667], 't4.101.114.448': [0.608, 10.0]}), 'newmec-1'], [({'t4.101.114.449': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.449': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.449': [0.472, 10.0], 't3.101.114.449': [0.72, 5.0]}), 'newmec-1'], [({'t2.102.114.450': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.450': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.450': [0.713, 5.0], 't3.102.114.450': [0.419, 5.0]}), 'newmec-2'], [({'t2.103.114.451': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.451': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.451': [0.62, 5.0], 't4.103.114.451': [0.751, 10.0]}), 'newmec-3'], [({'t5.105.114.452': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.452': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.105.114.452': [0.793, 5.0], 't2.105.114.452': [0.572, 5.0]}), 'newmec-5'], [({'t2.102.114.453': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.453': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.453': [0.543, 5.0], 't3.102.114.453': [0.638, 5.0]}), 'newmec-2'], [({'t4.102.114.454': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.454': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.454': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.454': [0.654, 10.0], 't3.102.114.454': [0.671, 5.0], 't5.102.114.454': [0.721, 5.0]}), 'newmec-2'], [({'t3.102.114.455': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.455': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.455': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.455': [0.776, 5.0], 't2.102.114.455': [0.54, 5.0], 't4.102.114.455': [0.651, 10.0]}), 'newmec-2'], [({'t3.101.114.456': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.456': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.456': [0.579, 5.0], 't2.101.114.456': [0.633, 5.0]}), 'newmec-1'], [({'t2.102.114.457': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.457': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.457': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.457': [0.62, 5.0], 't1.102.114.457': [0.662, 6.667], 't5.102.114.457': [0.619, 5.0]}), 'newmec-2'], [({'t2.103.114.458': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.458': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.458': [0.703, 5.0], 't1.103.114.458': [0.648, 6.667]}), 'newmec-3'], [({'t3.101.114.459': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.459': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.459': [0.693, 5.0], 't4.101.114.459': [0.676, 10.0]}), 'newmec-1'], [({'t4.101.114.460': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.460': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.460': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.460': [0.585, 10.0], 't2.101.114.460': [0.622, 5.0], 't5.101.114.460': [0.694, 5.0]}), 'newmec-1'], [({'t3.103.114.461': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.461': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.461': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.461': [0.489, 5.0], 't2.103.114.461': [0.59, 5.0], 't5.103.114.461': [0.7, 5.0]}), 'newmec-3'], [({'t4.105.114.462': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.462': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.462': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.462': [0.53, 10.0], 't5.105.114.462': [0.704, 5.0], 't1.105.114.462': [0.719, 6.667]}), 'newmec-5'], [({'t2.102.114.463': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.463': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.463': [0.471, 5.0], 't3.102.114.463': [0.745, 5.0]}), 'newmec-2'], [({'t3.105.114.464': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.464': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.105.114.464': [0.72, 5.0], 't4.105.114.464': [0.514, 10.0]}), 'newmec-5'], [({'t2.102.114.465': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.465': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.465': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.465': [0.508, 5.0], 't3.102.114.465': [0.79, 5.0], 't1.102.114.465': [0.532, 6.667]}), 'newmec-2'], [({'t5.101.114.466': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.466': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.466': [0.446, 5.0], 't2.101.114.466': [0.497, 5.0]}), 'newmec-1'], [({'t3.105.114.467': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.467': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.105.114.467': [0.731, 5.0], 't4.105.114.467': [0.496, 10.0]}), 'newmec-5'], [({'t2.101.114.468': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.468': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.468': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.468': [0.493, 5.0], 't3.101.114.468': [0.644, 5.0], 't1.101.114.468': [0.667, 6.667]}), 'newmec-1'], [({'t4.101.114.469': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.469': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.469': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.469': [0.628, 10.0], 't2.101.114.469': [0.477, 5.0], 't5.101.114.469': [0.682, 5.0]}), 'newmec-1'], [({'t4.101.114.470': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.470': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.470': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.470': [0.685, 10.0], 't2.101.114.470': [0.659, 5.0], 't3.101.114.470': [0.775, 5.0]}), 'newmec-1'], [({'t2.102.114.471': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.471': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.471': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.471': [0.742, 5.0], 't4.102.114.471': [0.741, 10.0], 't3.102.114.471': [0.535, 5.0]}), 'newmec-2'], [({'t1.101.114.472': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.472': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.472': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.472': [0.72, 6.667], 't4.101.114.472': [0.648, 10.0], 't5.101.114.472': [0.708, 5.0]}), 'newmec-1'], [({'t4.105.114.473': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.473': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.473': [0.528, 10.0], 't1.105.114.473': [0.556, 6.667]}), 'newmec-5'], [({'t1.101.114.474': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.474': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.474': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.474': [0.618, 6.667], 't5.101.114.474': [0.657, 5.0], 't2.101.114.474': [0.639, 5.0]}), 'newmec-1'], [({'t2.104.114.475': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.475': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.475': [0.791, 5.0], 't3.104.114.475': [0.68, 5.0]}), 'newmec-4'], [({'t3.104.114.476': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.476': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.476': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.476': [0.451, 5.0], 't2.104.114.476': [0.503, 5.0], 't1.104.114.476': [0.714, 6.667]}), 'newmec-4'], [({'t5.102.114.477': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.477': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.477': [0.657, 5.0], 't3.102.114.477': [0.7, 5.0]}), 'newmec-2'], [({'t2.101.114.478': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.478': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.478': [0.692, 5.0], 't1.101.114.478': [0.403, 6.667]}), 'newmec-1'], [({'t1.105.114.479': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.479': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.105.114.479': [0.698, 6.667], 't2.105.114.479': [0.621, 5.0]}), 'newmec-5'], [({'t3.102.114.480': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.480': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.480': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.480': [0.673, 5.0], 't1.102.114.480': [0.702, 6.667], 't4.102.114.480': [0.502, 10.0]}), 'newmec-2'], [({'t5.101.114.481': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.481': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.481': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.481': [0.791, 5.0], 't1.101.114.481': [0.739, 6.667], 't2.101.114.481': [0.402, 5.0]}), 'newmec-1'], [({'t5.103.114.482': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.482': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.482': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.482': [0.604, 5.0], 't1.103.114.482': [0.743, 6.667], 't3.103.114.482': [0.751, 5.0]}), 'newmec-3'], [({'t4.101.114.483': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.483': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.483': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.483': [0.605, 10.0], 't2.101.114.483': [0.74, 5.0], 't5.101.114.483': [0.405, 5.0]}), 'newmec-1'], [({'t4.102.114.484': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.484': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.484': [0.718, 10.0], 't2.102.114.484': [0.464, 5.0]}), 'newmec-2'], [({'t4.101.114.485': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.485': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.485': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.485': [0.522, 10.0], 't3.101.114.485': [0.473, 5.0], 't1.101.114.485': [0.51, 6.667]}), 'newmec-1'], [({'t1.101.114.486': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.486': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.486': [0.503, 6.667], 't3.101.114.486': [0.676, 5.0]}), 'newmec-1'], [({'t5.101.114.487': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.487': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.487': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.487': [0.609, 5.0], 't4.101.114.487': [0.692, 10.0], 't1.101.114.487': [0.505, 6.667]}), 'newmec-1'], [({'t3.105.114.488': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.488': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.488': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.105.114.488': [0.633, 5.0], 't5.105.114.488': [0.514, 5.0], 't1.105.114.488': [0.702, 6.667]}), 'newmec-5'], [({'t4.104.114.489': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.489': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.489': [0.494, 10.0], 't5.104.114.489': [0.526, 5.0]}), 'newmec-4'], [({'t5.105.114.490': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.490': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.105.114.490': [0.485, 5.0], 't1.105.114.490': [0.44, 6.667]}), 'newmec-5'], [({'t2.104.114.491': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.491': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.491': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.491': [0.793, 5.0], 't3.104.114.491': [0.508, 5.0], 't1.104.114.491': [0.7, 6.667]}), 'newmec-4'], [({'t3.102.114.492': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.492': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.492': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.492': [0.797, 5.0], 't4.102.114.492': [0.759, 10.0], 't2.102.114.492': [0.552, 5.0]}), 'newmec-2'], [({'t1.104.114.493': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.493': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.493': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.493': [0.536, 6.667], 't2.104.114.493': [0.597, 5.0], 't4.104.114.493': [0.671, 10.0]}), 'newmec-4'], [({'t5.104.114.494': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.494': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.494': [0.557, 5.0], 't2.104.114.494': [0.565, 5.0]}), 'newmec-4'], [({'t5.102.114.495': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.495': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.495': [0.532, 5.0], 't4.102.114.495': [0.432, 10.0]}), 'newmec-2'], [({'t4.105.114.496': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.496': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.496': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.496': [0.546, 10.0], 't3.105.114.496': [0.669, 5.0], 't5.105.114.496': [0.686, 5.0]}), 'newmec-5'], [({'t2.101.114.497': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.497': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.497': [0.756, 5.0], 't4.101.114.497': [0.432, 10.0]}), 'newmec-1'], [({'t1.105.114.498': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.498': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.105.114.498': [0.559, 6.667], 't2.105.114.498': [0.6, 5.0]}), 'newmec-5'], [({'t5.101.114.499': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.499': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.499': [0.779, 5.0], 't3.101.114.499': [0.638, 5.0]}), 'newmec-1'], [({'t5.102.114.500': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.500': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.500': [0.686, 5.0], 't3.102.114.500': [0.576, 5.0]}), 'newmec-2'], [({'t5.104.114.501': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.501': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.501': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.501': [0.443, 5.0], 't1.104.114.501': [0.686, 6.667], 't4.104.114.501': [0.74, 10.0]}), 'newmec-4'], [({'t2.104.114.502': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.502': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.502': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.502': [0.432, 5.0], 't5.104.114.502': [0.459, 5.0], 't1.104.114.502': [0.543, 6.667]}), 'newmec-4'], [({'t2.104.114.503': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.503': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.503': [0.688, 5.0], 't4.104.114.503': [0.797, 10.0]}), 'newmec-4'], [({'t5.102.114.504': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.504': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.504': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.504': [0.588, 5.0], 't3.102.114.504': [0.426, 5.0], 't4.102.114.504': [0.411, 10.0]}), 'newmec-2'], [({'t2.105.114.505': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.505': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.505': [0.696, 5.0], 't4.105.114.505': [0.637, 10.0]}), 'newmec-5'], [({'t4.103.114.506': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.506': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.506': [0.646, 10.0], 't3.103.114.506': [0.482, 5.0]}), 'newmec-3'], [({'t4.101.114.507': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.507': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.507': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.507': [0.698, 10.0], 't3.101.114.507': [0.75, 5.0], 't1.101.114.507': [0.686, 6.667]}), 'newmec-1'], [({'t2.101.114.508': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.508': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.508': [0.774, 5.0], 't3.101.114.508': [0.599, 5.0]}), 'newmec-1'], [({'t3.101.114.509': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.509': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.509': [0.465, 5.0], 't1.101.114.509': [0.54, 6.667]}), 'newmec-1'], [({'t2.104.114.510': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.510': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.510': [0.493, 5.0], 't4.104.114.510': [0.659, 10.0]}), 'newmec-4'], [({'t5.101.114.511': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.511': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.511': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.511': [0.64, 5.0], 't1.101.114.511': [0.516, 6.667], 't4.101.114.511': [0.672, 10.0]}), 'newmec-1'], [({'t2.105.114.512': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.512': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.512': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.512': [0.4, 5.0], 't1.105.114.512': [0.495, 6.667], 't4.105.114.512': [0.6, 10.0]}), 'newmec-5'], [({'t1.102.114.513': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.513': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.513': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.513': [0.522, 6.667], 't3.102.114.513': [0.767, 5.0], 't4.102.114.513': [0.418, 10.0]}), 'newmec-2'], [({'t1.103.114.514': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.514': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.514': [0.76, 6.667], 't5.103.114.514': [0.665, 5.0]}), 'newmec-3'], [({'t1.101.114.515': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.515': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.515': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.515': [0.506, 6.667], 't4.101.114.515': [0.65, 10.0], 't3.101.114.515': [0.648, 5.0]}), 'newmec-1'], [({'t3.102.114.516': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.516': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.516': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.516': [0.772, 5.0], 't5.102.114.516': [0.558, 5.0], 't2.102.114.516': [0.409, 5.0]}), 'newmec-2'], [({'t1.105.114.517': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.517': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.105.114.517': [0.791, 6.667], 't2.105.114.517': [0.428, 5.0]}), 'newmec-5'], [({'t3.102.114.518': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.518': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.518': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.518': [0.543, 5.0], 't4.102.114.518': [0.587, 10.0], 't2.102.114.518': [0.691, 5.0]}), 'newmec-2'], [({'t4.104.114.519': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.519': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.519': [0.722, 10.0], 't5.104.114.519': [0.701, 5.0]}), 'newmec-4'], [({'t3.101.114.520': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.520': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.520': [0.459, 5.0], 't1.101.114.520': [0.522, 6.667]}), 'newmec-1'], [({'t4.102.114.521': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.521': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.521': [0.403, 10.0], 't1.102.114.521': [0.602, 6.667]}), 'newmec-2'], [({'t4.102.114.522': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.522': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.522': [0.558, 10.0], 't1.102.114.522': [0.647, 6.667]}), 'newmec-2'], [({'t3.102.114.523': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.523': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.523': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.523': [0.576, 5.0], 't2.102.114.523': [0.652, 5.0], 't5.102.114.523': [0.674, 5.0]}), 'newmec-2'], [({'t3.101.114.524': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.524': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.524': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.524': [0.624, 5.0], 't4.101.114.524': [0.439, 10.0], 't1.101.114.524': [0.581, 6.667]}), 'newmec-1'], [({'t4.104.114.525': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.525': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.525': [0.702, 10.0], 't2.104.114.525': [0.425, 5.0]}), 'newmec-4'], [({'t2.102.114.526': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.526': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.526': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.526': [0.784, 5.0], 't5.102.114.526': [0.497, 5.0], 't3.102.114.526': [0.705, 5.0]}), 'newmec-2'], [({'t5.102.114.527': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.527': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.527': [0.723, 5.0], 't4.102.114.527': [0.562, 10.0]}), 'newmec-2'], [({'t4.101.114.528': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.528': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.528': [0.471, 10.0], 't1.101.114.528': [0.602, 6.667]}), 'newmec-1'], [({'t5.104.114.529': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.529': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.529': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.529': [0.474, 5.0], 't1.104.114.529': [0.679, 6.667], 't2.104.114.529': [0.739, 5.0]}), 'newmec-4'], [({'t1.105.114.530': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.530': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.530': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.105.114.530': [0.542, 6.667], 't4.105.114.530': [0.772, 10.0], 't2.105.114.530': [0.723, 5.0]}), 'newmec-5'], [({'t5.101.114.531': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.531': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.531': [0.423, 5.0], 't3.101.114.531': [0.469, 5.0]}), 'newmec-1'], [({'t3.103.114.532': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.532': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.532': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.532': [0.651, 5.0], 't4.103.114.532': [0.406, 10.0], 't5.103.114.532': [0.74, 5.0]}), 'newmec-3'], [({'t3.102.114.533': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.533': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.533': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.533': [0.745, 5.0], 't1.102.114.533': [0.643, 6.667], 't2.102.114.533': [0.561, 5.0]}), 'newmec-2'], [({'t5.101.114.534': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.534': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.534': [0.507, 5.0], 't1.101.114.534': [0.747, 6.667]}), 'newmec-1'], [({'t3.105.114.535': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.535': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.535': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.105.114.535': [0.607, 5.0], 't5.105.114.535': [0.712, 5.0], 't1.105.114.535': [0.737, 6.667]}), 'newmec-5'], [({'t2.156.114.536': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.536': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.536': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.536': [0.433, 5.0], 't5.156.114.536': [0.683, 5.0], 't3.156.114.536': [0.569, 5.0]}), 'osboxes-0'], [({'t4.101.114.537': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.537': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.537': [0.58, 10.0], 't2.101.114.537': [0.684, 5.0]}), 'newmec-1'], [({'t5.101.114.538': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.538': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.538': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.538': [0.501, 5.0], 't2.101.114.538': [0.796, 5.0], 't3.101.114.538': [0.695, 5.0]}), 'newmec-1'], [({'t2.103.114.539': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.539': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.539': [0.659, 5.0], 't3.103.114.539': [0.731, 5.0]}), 'newmec-3'], [({'t5.103.114.540': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.540': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.540': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.540': [0.773, 5.0], 't4.103.114.540': [0.445, 10.0], 't1.103.114.540': [0.606, 6.667]}), 'newmec-3'], [({'t4.101.114.541': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.541': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.541': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.541': [0.717, 10.0], 't1.101.114.541': [0.478, 6.667], 't2.101.114.541': [0.703, 5.0]}), 'newmec-1'], [({'t3.102.114.542': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.542': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.542': [0.705, 5.0], 't2.102.114.542': [0.551, 5.0]}), 'newmec-2'], [({'t4.102.114.543': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.543': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.543': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.543': [0.587, 10.0], 't1.102.114.543': [0.727, 6.667], 't3.102.114.543': [0.527, 5.0]}), 'newmec-2'], [({'t2.104.114.544': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.544': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.544': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.544': [0.409, 5.0], 't3.104.114.544': [0.484, 5.0], 't4.104.114.544': [0.456, 10.0]}), 'newmec-4'], [({'t2.101.114.545': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.545': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.545': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.545': [0.465, 5.0], 't4.101.114.545': [0.685, 10.0], 't1.101.114.545': [0.716, 6.667]}), 'newmec-1'], [({'t4.101.114.546': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.546': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.546': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.546': [0.759, 10.0], 't2.101.114.546': [0.412, 5.0], 't1.101.114.546': [0.469, 6.667]}), 'newmec-1'], [({'t5.104.114.547': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.547': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.547': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.547': [0.537, 5.0], 't4.104.114.547': [0.524, 10.0], 't3.104.114.547': [0.599, 5.0]}), 'newmec-4'], [({'t3.102.114.548': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.548': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.548': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.548': [0.67, 5.0], 't4.102.114.548': [0.701, 10.0], 't5.102.114.548': [0.747, 5.0]}), 'newmec-2'], [({'t5.103.114.549': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.549': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.549': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.549': [0.789, 5.0], 't1.103.114.549': [0.649, 6.667], 't4.103.114.549': [0.465, 10.0]}), 'newmec-3'], [({'t4.101.114.550': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.550': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.550': [0.444, 10.0], 't5.101.114.550': [0.439, 5.0]}), 'newmec-1'], [({'t3.104.114.551': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.551': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.551': [0.612, 5.0], 't5.104.114.551': [0.438, 5.0]}), 'newmec-4'], [({'t4.101.114.552': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.552': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.552': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.552': [0.76, 10.0], 't5.101.114.552': [0.432, 5.0], 't1.101.114.552': [0.401, 6.667]}), 'newmec-1'], [({'t2.101.114.553': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.553': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.553': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.553': [0.545, 5.0], 't1.101.114.553': [0.516, 6.667], 't4.101.114.553': [0.631, 10.0]}), 'newmec-1'], [({'t3.102.114.554': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.554': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.554': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.554': [0.528, 5.0], 't4.102.114.554': [0.756, 10.0], 't2.102.114.554': [0.477, 5.0]}), 'newmec-2'], [({'t5.101.114.555': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.555': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.555': [0.614, 5.0], 't4.101.114.555': [0.612, 10.0]}), 'newmec-1'], [({'t5.101.114.556': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.556': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.556': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.556': [0.69, 5.0], 't3.101.114.556': [0.617, 5.0], 't1.101.114.556': [0.547, 6.667]}), 'newmec-1'], [({'t5.103.114.557': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.557': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.557': [0.454, 5.0], 't4.103.114.557': [0.472, 10.0]}), 'newmec-3'], [({'t2.102.114.558': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.558': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.558': [0.563, 5.0], 't3.102.114.558': [0.623, 5.0]}), 'newmec-2'], [({'t3.101.114.559': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.559': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.559': [0.408, 5.0], 't4.101.114.559': [0.506, 10.0]}), 'newmec-1'], [({'t4.101.114.560': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.560': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.560': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.560': [0.664, 10.0], 't5.101.114.560': [0.539, 5.0], 't2.101.114.560': [0.455, 5.0]}), 'newmec-1'], [({'t2.101.114.561': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.561': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.561': [0.626, 5.0], 't1.101.114.561': [0.778, 6.667]}), 'newmec-1'], [({'t4.103.114.562': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.562': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.562': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.562': [0.577, 10.0], 't1.103.114.562': [0.612, 6.667], 't5.103.114.562': [0.419, 5.0]}), 'newmec-3'], [({'t5.103.114.563': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.563': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.563': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.563': [0.439, 5.0], 't4.103.114.563': [0.772, 10.0], 't3.103.114.563': [0.429, 5.0]}), 'newmec-3'], [({'t4.101.114.564': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.564': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.564': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.564': [0.523, 10.0], 't5.101.114.564': [0.57, 5.0], 't1.101.114.564': [0.669, 6.667]}), 'newmec-1'], [({'t2.102.114.565': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.565': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.565': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.565': [0.663, 5.0], 't4.102.114.565': [0.683, 10.0], 't5.102.114.565': [0.635, 5.0]}), 'newmec-2'], [({'t3.102.114.566': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.566': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.566': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.566': [0.641, 5.0], 't4.102.114.566': [0.51, 10.0], 't2.102.114.566': [0.607, 5.0]}), 'newmec-2'], [({'t3.102.114.567': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.567': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.567': [0.555, 5.0], 't2.102.114.567': [0.707, 5.0]}), 'newmec-2'], [({'t1.102.114.568': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.568': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.568': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.568': [0.645, 6.667], 't4.102.114.568': [0.538, 10.0], 't5.102.114.568': [0.407, 5.0]}), 'newmec-2'], [({'t4.156.114.569': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.569': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.569': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.569': [0.579, 10.0], 't2.156.114.569': [0.473, 5.0], 't1.156.114.569': [0.462, 6.667]}), 'osboxes-0'], [({'t2.102.114.570': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.570': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.570': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.570': [0.657, 5.0], 't4.102.114.570': [0.733, 10.0], 't3.102.114.570': [0.529, 5.0]}), 'newmec-2'], [({'t2.102.114.571': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.571': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.571': [0.494, 5.0], 't4.102.114.571': [0.612, 10.0]}), 'newmec-2'], [({'t4.102.114.572': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.572': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.572': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.572': [0.586, 10.0], 't3.102.114.572': [0.749, 5.0], 't2.102.114.572': [0.763, 5.0]}), 'newmec-2'], [({'t5.101.114.573': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.573': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.573': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.573': [0.647, 5.0], 't2.101.114.573': [0.446, 5.0], 't3.101.114.573': [0.79, 5.0]}), 'newmec-1'], [({'t3.101.114.574': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.574': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.574': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.574': [0.716, 5.0], 't5.101.114.574': [0.701, 5.0], 't1.101.114.574': [0.48, 6.667]}), 'newmec-1'], [({'t2.102.114.575': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.575': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.575': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.575': [0.442, 5.0], 't5.102.114.575': [0.515, 5.0], 't1.102.114.575': [0.563, 6.667]}), 'newmec-2'], [({'t3.101.114.576': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.576': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.576': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.576': [0.753, 5.0], 't1.101.114.576': [0.699, 6.667], 't5.101.114.576': [0.765, 5.0]}), 'newmec-1'], [({'t3.101.114.577': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.577': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.577': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.577': [0.667, 5.0], 't4.101.114.577': [0.483, 10.0], 't1.101.114.577': [0.404, 6.667]}), 'newmec-1'], [({'t4.156.114.578': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.578': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.578': [0.721, 10.0], 't2.156.114.578': [0.573, 5.0]}), 'osboxes-0'], [({'t3.102.114.579': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.579': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.579': [0.716, 5.0], 't2.102.114.579': [0.421, 5.0]}), 'newmec-2'], [({'t2.104.114.580': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.580': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.580': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.580': [0.707, 5.0], 't1.104.114.580': [0.596, 6.667], 't4.104.114.580': [0.513, 10.0]}), 'newmec-4'], [({'t4.101.114.581': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.581': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.581': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.581': [0.483, 10.0], 't1.101.114.581': [0.497, 6.667], 't2.101.114.581': [0.434, 5.0]}), 'newmec-1'], [({'t3.102.114.582': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.582': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.582': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.582': [0.799, 5.0], 't4.102.114.582': [0.643, 10.0], 't5.102.114.582': [0.514, 5.0]}), 'newmec-2'], [({'t2.102.114.583': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.583': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.583': [0.638, 5.0], 't3.102.114.583': [0.54, 5.0]}), 'newmec-2'], [({'t1.101.114.584': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.584': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.584': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.584': [0.526, 6.667], 't5.101.114.584': [0.699, 5.0], 't2.101.114.584': [0.63, 5.0]}), 'newmec-1'], [({'t5.103.114.585': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.585': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.585': [0.705, 5.0], 't3.103.114.585': [0.461, 5.0]}), 'newmec-3'], [({'t5.101.114.586': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.586': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.586': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.586': [0.576, 5.0], 't1.101.114.586': [0.444, 6.667], 't2.101.114.586': [0.755, 5.0]}), 'newmec-1'], [({'t4.101.114.587': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.587': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.587': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.587': [0.503, 10.0], 't2.101.114.587': [0.736, 5.0], 't1.101.114.587': [0.423, 6.667]}), 'newmec-1'], [({'t2.104.114.588': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.588': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.588': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.588': [0.738, 5.0], 't4.104.114.588': [0.666, 10.0], 't1.104.114.588': [0.655, 6.667]}), 'newmec-4'], [({'t2.103.114.589': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.589': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.589': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.589': [0.711, 5.0], 't5.103.114.589': [0.657, 5.0], 't3.103.114.589': [0.539, 5.0]}), 'newmec-3'], [({'t3.104.114.590': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.590': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.590': [0.427, 5.0], 't5.104.114.590': [0.462, 5.0]}), 'newmec-4'], [({'t3.101.114.591': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.591': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.591': [0.688, 5.0], 't4.101.114.591': [0.549, 10.0]}), 'newmec-1'], [({'t3.102.114.592': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.592': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.592': [0.571, 5.0], 't4.102.114.592': [0.705, 10.0]}), 'newmec-2'], [({'t5.101.114.593': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.593': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.593': [0.717, 5.0], 't2.101.114.593': [0.436, 5.0]}), 'newmec-1'], [({'t2.102.114.594': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.594': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.594': [0.49, 5.0], 't5.102.114.594': [0.602, 5.0]}), 'newmec-2'], [({'t5.102.114.595': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.595': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.595': [0.546, 5.0], 't1.102.114.595': [0.521, 6.667]}), 'newmec-2'], [({'t1.102.114.596': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.596': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.596': [0.754, 6.667], 't2.102.114.596': [0.535, 5.0]}), 'newmec-2'], [({'t5.102.114.597': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.597': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.597': [0.766, 5.0], 't4.102.114.597': [0.539, 10.0]}), 'newmec-2'], [({'t4.102.114.598': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.598': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.598': [0.434, 10.0], 't5.102.114.598': [0.432, 5.0]}), 'newmec-2'], [({'t3.101.114.599': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.599': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.599': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.599': [0.728, 5.0], 't2.101.114.599': [0.46, 5.0], 't1.101.114.599': [0.406, 6.667]}), 'newmec-1']] host_names6 = {'192.168.122.156': 'osboxes-0', '192.168.122.102': 'newmec-2', '192.168.122.103': 'newmec-3', '192.168.122.104': 'newmec-4', '192.168.122.105': 'newmec-5', '192.168.122.101': 'newmec-1'} record7 = [[({'t5.101.114.0': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.0': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.0': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.0': [0.714, 5.0], 't4.101.114.0': [0.592, 10.0], 't2.101.114.0': [0.492, 5.0]}), 'newmec-1'], [({'t4.103.114.1': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.1': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.1': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.1': [0.438, 10.0], 't2.103.114.1': [0.578, 5.0], 't3.103.114.1': [0.56, 5.0]}), 'newmec-3'], [({'t3.105.114.2': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.2': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.2': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.105.114.2': [0.659, 5.0], 't2.105.114.2': [0.583, 5.0], 't5.105.114.2': [0.559, 5.0]}), 'newmec-5'], [({'t3.102.114.3': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.3': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.3': [0.429, 5.0], 't1.102.114.3': [0.734, 6.667]}), 'newmec-2'], [({'t4.103.114.4': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.4': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.4': [0.613, 10.0], 't1.103.114.4': [0.41, 6.667]}), 'newmec-3'], [({'t3.102.114.5': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.5': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.5': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.5': [0.729, 5.0], 't5.102.114.5': [0.653, 5.0], 't2.102.114.5': [0.581, 5.0]}), 'newmec-2'], [({'t2.101.114.6': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.6': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.6': [0.612, 5.0], 't5.101.114.6': [0.436, 5.0]}), 'newmec-1'], [({'t2.102.114.7': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.7': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.7': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.7': [0.624, 5.0], 't3.102.114.7': [0.792, 5.0], 't4.102.114.7': [0.442, 10.0]}), 'newmec-2'], [({'t5.102.114.8': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.8': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.8': [0.705, 5.0], 't4.102.114.8': [0.431, 10.0]}), 'newmec-2'], [({'t5.103.114.9': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.9': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.9': [0.529, 5.0], 't4.103.114.9': [0.596, 10.0]}), 'newmec-3'], [({'t5.103.114.10': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.10': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.10': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.10': [0.742, 5.0], 't2.103.114.10': [0.726, 5.0], 't4.103.114.10': [0.71, 10.0]}), 'newmec-3'], [({'t2.104.114.11': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.11': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.11': [0.683, 5.0], 't4.104.114.11': [0.427, 10.0]}), 'newmec-4'], [({'t2.103.114.12': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.12': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.12': [0.766, 5.0], 't4.103.114.12': [0.668, 10.0]}), 'newmec-3'], [({'t2.106.114.13': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.13': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.106.114.13': [0.788, 5.0], 't1.106.114.13': [0.727, 6.667]}), 'newmec-6'], [({'t5.101.114.14': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.14': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.14': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.14': [0.497, 5.0], 't4.101.114.14': [0.735, 10.0], 't2.101.114.14': [0.63, 5.0]}), 'newmec-1'], [({'t3.102.114.15': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.15': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.15': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.15': [0.595, 5.0], 't5.102.114.15': [0.631, 5.0], 't2.102.114.15': [0.442, 5.0]}), 'newmec-2'], [({'t5.101.114.16': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.16': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.16': [0.673, 5.0], 't1.101.114.16': [0.437, 6.667]}), 'newmec-1'], [({'t2.103.114.17': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.17': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.17': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.17': [0.693, 5.0], 't5.103.114.17': [0.797, 5.0], 't4.103.114.17': [0.574, 10.0]}), 'newmec-3'], [({'t3.104.114.18': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.18': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.18': [0.715, 5.0], 't2.104.114.18': [0.779, 5.0]}), 'newmec-4'], [({'t5.103.114.19': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.19': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.19': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.19': [0.641, 5.0], 't2.103.114.19': [0.76, 5.0], 't4.103.114.19': [0.698, 10.0]}), 'newmec-3'], [({'t2.102.114.20': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.20': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.20': [0.792, 5.0], 't4.102.114.20': [0.693, 10.0]}), 'newmec-2'], [({'t4.103.114.21': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.21': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.21': [0.515, 10.0], 't5.103.114.21': [0.562, 5.0]}), 'newmec-3'], [({'t1.104.114.22': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.22': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.22': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.22': [0.798, 6.667], 't4.104.114.22': [0.626, 10.0], 't2.104.114.22': [0.767, 5.0]}), 'newmec-4'], [({'t2.103.114.23': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.23': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.23': [0.785, 5.0], 't4.103.114.23': [0.419, 10.0]}), 'newmec-3'], [({'t5.106.114.24': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.24': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.106.114.24': [0.722, 5.0], 't2.106.114.24': [0.587, 5.0]}), 'newmec-6'], [({'t2.102.114.25': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.25': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.25': [0.491, 5.0], 't4.102.114.25': [0.423, 10.0]}), 'newmec-2'], [({'t1.106.114.26': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.106.114.26': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.106.114.26': [0.612, 6.667], 't2.106.114.26': [0.571, 5.0]}), 'newmec-6'], [({'t5.105.114.27': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.27': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.27': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.105.114.27': [0.574, 5.0], 't1.105.114.27': [0.634, 6.667], 't4.105.114.27': [0.772, 10.0]}), 'newmec-5'], [({'t2.156.114.28': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.28': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.28': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.28': [0.676, 5.0], 't5.156.114.28': [0.556, 5.0], 't4.156.114.28': [0.413, 10.0]}), 'osboxes-0'], [({'t4.156.114.29': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.29': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.29': [0.53, 10.0], 't5.156.114.29': [0.494, 5.0]}), 'osboxes-0'], [({'t2.103.114.30': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.30': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.30': [0.613, 5.0], 't4.103.114.30': [0.778, 10.0]}), 'newmec-3'], [({'t4.102.114.31': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.31': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.31': [0.539, 10.0], 't3.102.114.31': [0.496, 5.0]}), 'newmec-2'], [({'t5.103.114.32': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.32': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.32': [0.576, 5.0], 't4.103.114.32': [0.472, 10.0]}), 'newmec-3'], [({'t2.102.114.33': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.33': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.33': [0.725, 5.0], 't1.102.114.33': [0.652, 6.667]}), 'newmec-2'], [({'t4.105.114.34': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.34': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.34': [0.5, 10.0], 't2.105.114.34': [0.559, 5.0]}), 'newmec-5'], [({'t5.101.114.35': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.35': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.35': [0.595, 5.0], 't1.101.114.35': [0.796, 6.667]}), 'newmec-1'], [({'t4.104.114.36': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.36': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.36': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.36': [0.484, 10.0], 't5.104.114.36': [0.435, 5.0], 't2.104.114.36': [0.456, 5.0]}), 'newmec-4'], [({'t1.103.114.37': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.37': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.37': [0.609, 6.667], 't3.103.114.37': [0.717, 5.0]}), 'newmec-3'], [({'t3.103.114.38': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.38': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.38': [0.64, 5.0], 't2.103.114.38': [0.725, 5.0]}), 'newmec-3'], [({'t4.103.114.39': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.39': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.39': [0.414, 10.0], 't2.103.114.39': [0.594, 5.0]}), 'newmec-3'], [({'t4.103.114.40': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.40': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.40': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.40': [0.53, 10.0], 't2.103.114.40': [0.517, 5.0], 't3.103.114.40': [0.425, 5.0]}), 'newmec-3'], [({'t5.103.114.41': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.41': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.41': [0.796, 5.0], 't1.103.114.41': [0.491, 6.667]}), 'newmec-3'], [({'t1.106.114.42': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.106.114.42': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.106.114.42': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.106.114.42': [0.649, 6.667], 't3.106.114.42': [0.686, 5.0], 't5.106.114.42': [0.463, 5.0]}), 'newmec-6'], [({'t5.101.114.43': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.43': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.43': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.43': [0.439, 5.0], 't4.101.114.43': [0.628, 10.0], 't2.101.114.43': [0.448, 5.0]}), 'newmec-1'], [({'t4.105.114.44': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.44': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.105.114.44': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.105.114.44': [0.659, 10.0], 't2.105.114.44': [0.604, 5.0], 't3.105.114.44': [0.606, 5.0]}), 'newmec-5'], [({'t2.102.114.45': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.45': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.45': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.45': [0.76, 5.0], 't5.102.114.45': [0.475, 5.0], 't4.102.114.45': [0.506, 10.0]}), 'newmec-2'], [({'t2.106.114.46': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.106.114.46': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.106.114.46': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.106.114.46': [0.603, 5.0], 't5.106.114.46': [0.553, 5.0], 't1.106.114.46': [0.587, 6.667]}), 'newmec-6'], [({'t5.106.114.47': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.47': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.106.114.47': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.106.114.47': [0.521, 5.0], 't2.106.114.47': [0.748, 5.0], 't4.106.114.47': [0.688, 10.0]}), 'newmec-6'], [({'t1.101.114.48': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.48': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.48': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.48': [0.672, 6.667], 't3.101.114.48': [0.758, 5.0], 't5.101.114.48': [0.599, 5.0]}), 'newmec-1'], [({'t2.156.114.49': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.49': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.49': [0.662, 5.0], 't4.156.114.49': [0.615, 10.0]}), 'osboxes-0'], [({'t2.106.114.50': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.50': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.50': [0.436, 5.0], 't3.106.114.50': [0.466, 5.0]}), 'newmec-6'], [({'t5.102.114.51': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.51': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.51': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.51': [0.643, 5.0], 't2.102.114.51': [0.568, 5.0], 't1.102.114.51': [0.584, 6.667]}), 'newmec-2'], [({'t5.156.114.52': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.52': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.156.114.52': [0.625, 5.0], 't1.156.114.52': [0.412, 6.667]}), 'osboxes-0'], [({'t2.101.114.53': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.53': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.53': [0.435, 5.0], 't1.101.114.53': [0.721, 6.667]}), 'newmec-1'], [({'t5.104.114.54': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.54': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.54': [0.646, 5.0], 't1.104.114.54': [0.687, 6.667]}), 'newmec-4'], [({'t5.106.114.55': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.106.114.55': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.55': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.106.114.55': [0.408, 5.0], 't3.106.114.55': [0.788, 5.0], 't4.106.114.55': [0.518, 10.0]}), 'newmec-6'], [({'t3.104.114.56': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.56': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.56': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.56': [0.525, 5.0], 't5.104.114.56': [0.484, 5.0], 't2.104.114.56': [0.551, 5.0]}), 'newmec-4'], [({'t1.156.114.57': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.156.114.57': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.57': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.156.114.57': [0.432, 6.667], 't2.156.114.57': [0.415, 5.0], 't4.156.114.57': [0.524, 10.0]}), 'osboxes-0'], [({'t2.106.114.58': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.58': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.106.114.58': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.58': [0.724, 5.0], 't1.106.114.58': [0.671, 6.667], 't3.106.114.58': [0.523, 5.0]}), 'newmec-6'], [({'t4.156.114.59': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.59': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.59': [0.443, 10.0], 't2.156.114.59': [0.597, 5.0]}), 'osboxes-0'], [({'t4.105.114.60': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.60': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.105.114.60': [0.47, 10.0], 't3.105.114.60': [0.619, 5.0]}), 'newmec-5'], [({'t4.105.114.61': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.61': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.61': [0.428, 10.0], 't2.105.114.61': [0.422, 5.0]}), 'newmec-5'], [({'t2.104.114.62': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.62': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.62': [0.673, 5.0], 't1.104.114.62': [0.681, 6.667]}), 'newmec-4'], [({'t2.106.114.63': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.106.114.63': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.106.114.63': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.106.114.63': [0.692, 5.0], 't4.106.114.63': [0.508, 10.0], 't5.106.114.63': [0.617, 5.0]}), 'newmec-6'], [({'t5.104.114.64': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.64': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.64': [0.561, 5.0], 't4.104.114.64': [0.468, 10.0]}), 'newmec-4'], [({'t2.104.114.65': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.65': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.65': [0.77, 5.0], 't1.104.114.65': [0.549, 6.667]}), 'newmec-4'], [({'t4.105.114.66': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.66': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.66': [0.709, 10.0], 't5.105.114.66': [0.406, 5.0]}), 'newmec-5'], [({'t5.101.114.67': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.67': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.67': [0.702, 5.0], 't4.101.114.67': [0.47, 10.0]}), 'newmec-1'], [({'t3.106.114.68': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.68': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.68': [0.703, 5.0], 't1.106.114.68': [0.705, 6.667]}), 'newmec-6'], [({'t3.102.114.69': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.69': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.69': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.69': [0.602, 5.0], 't2.102.114.69': [0.513, 5.0], 't5.102.114.69': [0.778, 5.0]}), 'newmec-2'], [({'t4.102.114.70': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.70': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.70': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.70': [0.531, 10.0], 't3.102.114.70': [0.762, 5.0], 't2.102.114.70': [0.499, 5.0]}), 'newmec-2'], [({'t4.105.114.71': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.71': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.71': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.71': [0.572, 10.0], 't1.105.114.71': [0.791, 6.667], 't2.105.114.71': [0.51, 5.0]}), 'newmec-5'], [({'t5.102.114.72': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.72': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.72': [0.588, 5.0], 't3.102.114.72': [0.734, 5.0]}), 'newmec-2'], [({'t3.102.114.73': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.73': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.73': [0.584, 5.0], 't5.102.114.73': [0.569, 5.0]}), 'newmec-2'], [({'t4.103.114.74': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.74': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.74': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.74': [0.459, 10.0], 't2.103.114.74': [0.778, 5.0], 't5.103.114.74': [0.774, 5.0]}), 'newmec-3'], [({'t3.102.114.75': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.75': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.75': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.75': [0.711, 5.0], 't4.102.114.75': [0.553, 10.0], 't2.102.114.75': [0.779, 5.0]}), 'newmec-2'], [({'t4.101.114.76': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.76': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.76': [0.789, 10.0], 't2.101.114.76': [0.559, 5.0]}), 'newmec-1'], [({'t3.156.114.77': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.77': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.77': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.156.114.77': [0.69, 5.0], 't2.156.114.77': [0.535, 5.0], 't1.156.114.77': [0.77, 6.667]}), 'osboxes-0'], [({'t3.106.114.78': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.78': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.106.114.78': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.106.114.78': [0.658, 5.0], 't1.106.114.78': [0.67, 6.667], 't5.106.114.78': [0.576, 5.0]}), 'newmec-6'], [({'t5.103.114.79': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.79': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.79': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.79': [0.483, 5.0], 't4.103.114.79': [0.777, 10.0], 't3.103.114.79': [0.606, 5.0]}), 'newmec-3'], [({'t4.104.114.80': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.80': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.80': [0.479, 10.0], 't3.104.114.80': [0.701, 5.0]}), 'newmec-4'], [({'t4.101.114.81': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.81': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.81': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.81': [0.746, 10.0], 't3.101.114.81': [0.453, 5.0], 't5.101.114.81': [0.543, 5.0]}), 'newmec-1'], [({'t2.105.114.82': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.82': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.82': [0.405, 5.0], 't4.105.114.82': [0.587, 10.0]}), 'newmec-5'], [({'t1.102.114.83': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.83': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.83': [0.714, 6.667], 't2.102.114.83': [0.414, 5.0]}), 'newmec-2'], [({'t5.103.114.84': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.84': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.84': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.84': [0.635, 5.0], 't2.103.114.84': [0.715, 5.0], 't1.103.114.84': [0.784, 6.667]}), 'newmec-3'], [({'t3.103.114.85': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.85': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.85': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.85': [0.645, 5.0], 't1.103.114.85': [0.764, 6.667], 't5.103.114.85': [0.704, 5.0]}), 'newmec-3'], [({'t1.156.114.86': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.86': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.86': [0.538, 6.667], 't5.156.114.86': [0.523, 5.0]}), 'osboxes-0'], [({'t5.102.114.87': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.87': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.87': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.87': [0.614, 5.0], 't2.102.114.87': [0.721, 5.0], 't4.102.114.87': [0.536, 10.0]}), 'newmec-2'], [({'t5.102.114.88': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.88': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.88': [0.572, 5.0], 't4.102.114.88': [0.545, 10.0]}), 'newmec-2'], [({'t2.102.114.89': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.89': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.89': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.89': [0.555, 5.0], 't5.102.114.89': [0.466, 5.0], 't3.102.114.89': [0.711, 5.0]}), 'newmec-2'], [({'t4.101.114.90': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.90': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.90': [0.754, 10.0], 't2.101.114.90': [0.48, 5.0]}), 'newmec-1'], [({'t5.106.114.91': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.106.114.91': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.106.114.91': [0.727, 5.0], 't1.106.114.91': [0.681, 6.667]}), 'newmec-6'], [({'t3.104.114.92': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.92': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.92': [0.612, 5.0], 't2.104.114.92': [0.443, 5.0]}), 'newmec-4'], [({'t4.106.114.93': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.93': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.106.114.93': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.106.114.93': [0.474, 10.0], 't3.106.114.93': [0.625, 5.0], 't5.106.114.93': [0.722, 5.0]}), 'newmec-6'], [({'t1.101.114.94': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.94': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.94': [0.437, 6.667], 't5.101.114.94': [0.746, 5.0]}), 'newmec-1'], [({'t4.105.114.95': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.95': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.105.114.95': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.95': [0.659, 10.0], 't1.105.114.95': [0.656, 6.667], 't5.105.114.95': [0.734, 5.0]}), 'newmec-5'], [({'t2.106.114.96': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.106.114.96': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.106.114.96': [0.714, 5.0], 't4.106.114.96': [0.575, 10.0]}), 'newmec-6'], [({'t3.102.114.97': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.97': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.97': [0.756, 5.0], 't4.102.114.97': [0.554, 10.0]}), 'newmec-2'], [({'t5.156.114.98': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.98': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.98': [0.603, 5.0], 't2.156.114.98': [0.78, 5.0]}), 'osboxes-0'], [({'t1.103.114.99': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.99': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.99': [0.632, 6.667], 't5.103.114.99': [0.573, 5.0]}), 'newmec-3'], [({'t5.103.114.100': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.100': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.100': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.100': [0.624, 5.0], 't2.103.114.100': [0.713, 5.0], 't3.103.114.100': [0.43, 5.0]}), 'newmec-3'], [({'t2.103.114.101': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.101': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.101': [0.405, 5.0], 't4.103.114.101': [0.718, 10.0]}), 'newmec-3'], [({'t4.101.114.102': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.102': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.102': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.102': [0.727, 10.0], 't3.101.114.102': [0.681, 5.0], 't5.101.114.102': [0.554, 5.0]}), 'newmec-1'], [({'t2.104.114.103': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.103': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.103': [0.651, 5.0], 't5.104.114.103': [0.431, 5.0]}), 'newmec-4'], [({'t4.105.114.104': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.104': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.104': [0.474, 10.0], 't2.105.114.104': [0.505, 5.0]}), 'newmec-5'], [({'t5.103.114.105': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.105': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.105': [0.424, 5.0], 't3.103.114.105': [0.638, 5.0]}), 'newmec-3'], [({'t2.106.114.106': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.106.114.106': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.106.114.106': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.106.114.106': [0.687, 5.0], 't4.106.114.106': [0.659, 10.0], 't5.106.114.106': [0.698, 5.0]}), 'newmec-6'], [({'t4.105.114.107': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.107': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.107': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.107': [0.52, 10.0], 't1.105.114.107': [0.416, 6.667], 't2.105.114.107': [0.531, 5.0]}), 'newmec-5'], [({'t2.102.114.108': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.108': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.108': [0.41, 5.0], 't5.102.114.108': [0.663, 5.0]}), 'newmec-2'], [({'t2.106.114.109': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.109': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.106.114.109': [0.443, 5.0], 't1.106.114.109': [0.662, 6.667]}), 'newmec-6'], [({'t3.156.114.110': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.110': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.110': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.156.114.110': [0.414, 5.0], 't5.156.114.110': [0.607, 5.0], 't2.156.114.110': [0.598, 5.0]}), 'osboxes-0'], [({'t3.156.114.111': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.111': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.111': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.111': [0.417, 5.0], 't1.156.114.111': [0.487, 6.667], 't5.156.114.111': [0.733, 5.0]}), 'osboxes-0'], [({'t5.106.114.112': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.106.114.112': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.106.114.112': [0.405, 5.0], 't4.106.114.112': [0.43, 10.0]}), 'newmec-6'], [({'t4.105.114.113': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.113': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.113': [0.768, 10.0], 't5.105.114.113': [0.637, 5.0]}), 'newmec-5'], [({'t2.101.114.114': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.114': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.114': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.114': [0.527, 5.0], 't3.101.114.114': [0.582, 5.0], 't1.101.114.114': [0.424, 6.667]}), 'newmec-1'], [({'t5.105.114.115': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.105.114.115': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.115': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.105.114.115': [0.486, 5.0], 't4.105.114.115': [0.765, 10.0], 't2.105.114.115': [0.708, 5.0]}), 'newmec-5'], [({'t1.102.114.116': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.116': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.116': [0.559, 6.667], 't2.102.114.116': [0.631, 5.0]}), 'newmec-2'], [({'t3.103.114.117': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.117': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.117': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.117': [0.615, 5.0], 't2.103.114.117': [0.441, 5.0], 't1.103.114.117': [0.57, 6.667]}), 'newmec-3'], [({'t2.105.114.118': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.105.114.118': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.105.114.118': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.118': [0.449, 5.0], 't3.105.114.118': [0.548, 5.0], 't1.105.114.118': [0.603, 6.667]}), 'newmec-5'], [({'t5.103.114.119': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.119': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.119': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.119': [0.633, 5.0], 't3.103.114.119': [0.513, 5.0], 't4.103.114.119': [0.438, 10.0]}), 'newmec-3'], [({'t5.101.114.120': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.120': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.120': [0.595, 5.0], 't3.101.114.120': [0.618, 5.0]}), 'newmec-1'], [({'t5.103.114.121': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.121': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.121': [0.424, 5.0], 't4.103.114.121': [0.738, 10.0]}), 'newmec-3'], [({'t2.106.114.122': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.106.114.122': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.106.114.122': [0.451, 5.0], 't4.106.114.122': [0.787, 10.0]}), 'newmec-6'], [({'t3.103.114.123': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.123': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.123': [0.793, 5.0], 't2.103.114.123': [0.637, 5.0]}), 'newmec-3'], [({'t2.104.114.124': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.124': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.124': [0.422, 5.0], 't4.104.114.124': [0.763, 10.0]}), 'newmec-4'], [({'t2.105.114.125': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.105.114.125': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.105.114.125': [0.608, 5.0], 't3.105.114.125': [0.781, 5.0]}), 'newmec-5'], [({'t2.103.114.126': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.126': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.126': [0.682, 5.0], 't3.103.114.126': [0.654, 5.0]}), 'newmec-3'], [({'t5.103.114.127': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.127': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.127': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.127': [0.563, 5.0], 't2.103.114.127': [0.686, 5.0], 't1.103.114.127': [0.676, 6.667]}), 'newmec-3'], [({'t3.102.114.128': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.128': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.128': [0.412, 5.0], 't4.102.114.128': [0.432, 10.0]}), 'newmec-2'], [({'t4.103.114.129': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.129': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.129': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.129': [0.407, 10.0], 't5.103.114.129': [0.56, 5.0], 't2.103.114.129': [0.506, 5.0]}), 'newmec-3'], [({'t3.104.114.130': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.130': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.130': [0.426, 5.0], 't4.104.114.130': [0.417, 10.0]}), 'newmec-4'], [({'t5.101.114.131': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.131': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.131': [0.68, 5.0], 't2.101.114.131': [0.424, 5.0]}), 'newmec-1'], [({'t2.104.114.132': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.132': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.132': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.132': [0.528, 5.0], 't5.104.114.132': [0.69, 5.0], 't4.104.114.132': [0.416, 10.0]}), 'newmec-4'], [({'t4.106.114.133': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.106.114.133': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.106.114.133': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.106.114.133': [0.448, 10.0], 't1.106.114.133': [0.766, 6.667], 't5.106.114.133': [0.411, 5.0]}), 'newmec-6'], [({'t1.104.114.134': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.134': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.134': [0.735, 6.667], 't2.104.114.134': [0.766, 5.0]}), 'newmec-4'], [({'t4.104.114.135': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.135': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.135': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.135': [0.646, 10.0], 't3.104.114.135': [0.492, 5.0], 't2.104.114.135': [0.59, 5.0]}), 'newmec-4'], [({'t2.105.114.136': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.136': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.136': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.105.114.136': [0.463, 5.0], 't4.105.114.136': [0.4, 10.0], 't5.105.114.136': [0.769, 5.0]}), 'newmec-5'], [({'t4.156.114.137': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.137': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.137': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.137': [0.741, 10.0], 't5.156.114.137': [0.411, 5.0], 't3.156.114.137': [0.685, 5.0]}), 'osboxes-0'], [({'t5.103.114.138': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.138': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.138': [0.49, 5.0], 't1.103.114.138': [0.506, 6.667]}), 'newmec-3'], [({'t5.105.114.139': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.105.114.139': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.105.114.139': [0.486, 5.0], 't4.105.114.139': [0.501, 10.0]}), 'newmec-5'], [({'t4.103.114.140': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.140': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.140': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.140': [0.732, 10.0], 't1.103.114.140': [0.642, 6.667], 't5.103.114.140': [0.581, 5.0]}), 'newmec-3'], [({'t3.104.114.141': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.141': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.141': [0.721, 5.0], 't5.104.114.141': [0.522, 5.0]}), 'newmec-4'], [({'t4.156.114.142': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.142': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.142': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.142': [0.578, 10.0], 't3.156.114.142': [0.515, 5.0], 't1.156.114.142': [0.448, 6.667]}), 'osboxes-0'], [({'t3.106.114.143': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.143': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.106.114.143': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.143': [0.648, 5.0], 't4.106.114.143': [0.689, 10.0], 't1.106.114.143': [0.455, 6.667]}), 'newmec-6'], [({'t5.104.114.144': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.144': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.144': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.144': [0.65, 5.0], 't2.104.114.144': [0.719, 5.0], 't1.104.114.144': [0.535, 6.667]}), 'newmec-4'], [({'t2.105.114.145': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.105.114.145': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.105.114.145': [0.442, 5.0], 't3.105.114.145': [0.795, 5.0]}), 'newmec-5'], [({'t2.105.114.146': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.146': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.146': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.105.114.146': [0.594, 5.0], 't4.105.114.146': [0.77, 10.0], 't3.105.114.146': [0.6, 5.0]}), 'newmec-5'], [({'t3.104.114.147': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.147': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.147': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.147': [0.788, 5.0], 't1.104.114.147': [0.597, 6.667], 't2.104.114.147': [0.741, 5.0]}), 'newmec-4'], [({'t3.101.114.148': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.148': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.148': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.148': [0.711, 5.0], 't2.101.114.148': [0.587, 5.0], 't5.101.114.148': [0.74, 5.0]}), 'newmec-1'], [({'t5.103.114.149': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.149': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.149': [0.521, 5.0], 't3.103.114.149': [0.724, 5.0]}), 'newmec-3'], [({'t4.103.114.150': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.150': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.150': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.150': [0.699, 10.0], 't3.103.114.150': [0.405, 5.0], 't5.103.114.150': [0.443, 5.0]}), 'newmec-3'], [({'t5.101.114.151': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.151': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.151': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.151': [0.64, 5.0], 't3.101.114.151': [0.796, 5.0], 't1.101.114.151': [0.571, 6.667]}), 'newmec-1'], [({'t5.106.114.152': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.152': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.106.114.152': [0.614, 5.0], 't2.106.114.152': [0.406, 5.0]}), 'newmec-6'], [({'t5.106.114.153': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.106.114.153': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.153': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.106.114.153': [0.427, 5.0], 't4.106.114.153': [0.654, 10.0], 't3.106.114.153': [0.568, 5.0]}), 'newmec-6'], [({'t1.104.114.154': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.154': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.154': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.154': [0.642, 6.667], 't5.104.114.154': [0.711, 5.0], 't4.104.114.154': [0.687, 10.0]}), 'newmec-4'], [({'t5.101.114.155': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.155': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.155': [0.505, 5.0], 't2.101.114.155': [0.461, 5.0]}), 'newmec-1'], [({'t2.103.114.156': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.156': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.156': [0.593, 5.0], 't4.103.114.156': [0.612, 10.0]}), 'newmec-3'], [({'t3.104.114.157': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.157': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.157': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.157': [0.498, 5.0], 't5.104.114.157': [0.421, 5.0], 't4.104.114.157': [0.434, 10.0]}), 'newmec-4'], [({'t3.102.114.158': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.158': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.158': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.158': [0.553, 5.0], 't5.102.114.158': [0.609, 5.0], 't4.102.114.158': [0.541, 10.0]}), 'newmec-2'], [({'t5.102.114.159': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.159': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.159': [0.414, 5.0], 't1.102.114.159': [0.633, 6.667]}), 'newmec-2'], [({'t2.102.114.160': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.160': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.160': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.160': [0.609, 5.0], 't3.102.114.160': [0.516, 5.0], 't4.102.114.160': [0.645, 10.0]}), 'newmec-2'], [({'t5.104.114.161': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.161': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.161': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.161': [0.782, 5.0], 't1.104.114.161': [0.646, 6.667], 't2.104.114.161': [0.799, 5.0]}), 'newmec-4'], [({'t5.101.114.162': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.162': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.162': [0.554, 5.0], 't1.101.114.162': [0.52, 6.667]}), 'newmec-1'], [({'t4.104.114.163': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.163': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.163': [0.574, 10.0], 't2.104.114.163': [0.606, 5.0]}), 'newmec-4'], [({'t5.101.114.164': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.164': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.164': [0.578, 5.0], 't2.101.114.164': [0.554, 5.0]}), 'newmec-1'], [({'t3.103.114.165': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.165': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.165': [0.734, 5.0], 't2.103.114.165': [0.57, 5.0]}), 'newmec-3'], [({'t5.101.114.166': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.166': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.166': [0.531, 5.0], 't1.101.114.166': [0.422, 6.667]}), 'newmec-1'], [({'t2.104.114.167': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.167': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.167': [0.692, 5.0], 't1.104.114.167': [0.8, 6.667]}), 'newmec-4'], [({'t2.102.114.168': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.168': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.168': [0.704, 5.0], 't1.102.114.168': [0.577, 6.667]}), 'newmec-2'], [({'t4.156.114.169': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.169': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.169': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.169': [0.557, 10.0], 't5.156.114.169': [0.407, 5.0], 't3.156.114.169': [0.435, 5.0]}), 'osboxes-0'], [({'t3.106.114.170': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.170': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.170': [0.628, 5.0], 't1.106.114.170': [0.589, 6.667]}), 'newmec-6'], [({'t4.103.114.171': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.171': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.171': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.171': [0.609, 10.0], 't2.103.114.171': [0.607, 5.0], 't3.103.114.171': [0.743, 5.0]}), 'newmec-3'], [({'t1.104.114.172': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.172': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.172': [0.786, 6.667], 't5.104.114.172': [0.541, 5.0]}), 'newmec-4'], [({'t5.103.114.173': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.173': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.173': [0.514, 5.0], 't1.103.114.173': [0.401, 6.667]}), 'newmec-3'], [({'t2.104.114.174': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.174': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.174': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.174': [0.643, 5.0], 't4.104.114.174': [0.514, 10.0], 't5.104.114.174': [0.789, 5.0]}), 'newmec-4'], [({'t1.104.114.175': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.175': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.175': [0.423, 6.667], 't3.104.114.175': [0.447, 5.0]}), 'newmec-4'], [({'t1.104.114.176': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.176': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.176': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.176': [0.494, 6.667], 't4.104.114.176': [0.443, 10.0], 't5.104.114.176': [0.798, 5.0]}), 'newmec-4'], [({'t2.105.114.177': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.177': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.105.114.177': [0.763, 5.0], 't5.105.114.177': [0.605, 5.0]}), 'newmec-5'], [({'t3.101.114.178': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.178': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.178': [0.548, 5.0], 't2.101.114.178': [0.522, 5.0]}), 'newmec-1'], [({'t3.101.114.179': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.179': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.179': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.179': [0.708, 5.0], 't1.101.114.179': [0.696, 6.667], 't2.101.114.179': [0.477, 5.0]}), 'newmec-1'], [({'t3.106.114.180': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.180': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.106.114.180': [0.532, 5.0], 't2.106.114.180': [0.776, 5.0]}), 'newmec-6'], [({'t1.102.114.181': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.181': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.181': [0.484, 6.667], 't3.102.114.181': [0.76, 5.0]}), 'newmec-2'], [({'t4.156.114.182': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.182': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.182': [0.633, 10.0], 't3.156.114.182': [0.416, 5.0]}), 'osboxes-0'], [({'t5.103.114.183': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.183': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.183': [0.667, 5.0], 't1.103.114.183': [0.763, 6.667]}), 'newmec-3'], [({'t5.106.114.184': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.106.114.184': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.106.114.184': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.106.114.184': [0.585, 5.0], 't1.106.114.184': [0.781, 6.667], 't2.106.114.184': [0.658, 5.0]}), 'newmec-6'], [({'t1.106.114.185': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.106.114.185': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.106.114.185': [0.702, 6.667], 't2.106.114.185': [0.573, 5.0]}), 'newmec-6'], [({'t3.102.114.186': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.186': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.186': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.186': [0.517, 5.0], 't1.102.114.186': [0.709, 6.667], 't5.102.114.186': [0.435, 5.0]}), 'newmec-2'], [({'t3.156.114.187': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.187': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.187': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.187': [0.736, 5.0], 't2.156.114.187': [0.723, 5.0], 't5.156.114.187': [0.626, 5.0]}), 'osboxes-0'], [({'t3.104.114.188': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.188': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.188': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.188': [0.402, 5.0], 't5.104.114.188': [0.705, 5.0], 't4.104.114.188': [0.654, 10.0]}), 'newmec-4'], [({'t5.102.114.189': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.189': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.189': [0.46, 5.0], 't3.102.114.189': [0.477, 5.0]}), 'newmec-2'], [({'t5.104.114.190': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.190': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.190': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.190': [0.752, 5.0], 't3.104.114.190': [0.65, 5.0], 't1.104.114.190': [0.425, 6.667]}), 'newmec-4'], [({'t5.104.114.191': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.191': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.191': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.191': [0.789, 5.0], 't2.104.114.191': [0.71, 5.0], 't3.104.114.191': [0.63, 5.0]}), 'newmec-4'], [({'t4.106.114.192': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.192': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.106.114.192': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.106.114.192': [0.688, 10.0], 't3.106.114.192': [0.757, 5.0], 't5.106.114.192': [0.783, 5.0]}), 'newmec-6'], [({'t1.104.114.193': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.193': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.193': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.193': [0.78, 6.667], 't3.104.114.193': [0.732, 5.0], 't4.104.114.193': [0.634, 10.0]}), 'newmec-4'], [({'t4.103.114.194': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.194': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.194': [0.548, 10.0], 't3.103.114.194': [0.422, 5.0]}), 'newmec-3'], [({'t3.106.114.195': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.195': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.106.114.195': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.195': [0.418, 5.0], 't4.106.114.195': [0.449, 10.0], 't1.106.114.195': [0.47, 6.667]}), 'newmec-6'], [({'t3.101.114.196': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.196': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.196': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.196': [0.662, 5.0], 't1.101.114.196': [0.598, 6.667], 't4.101.114.196': [0.73, 10.0]}), 'newmec-1'], [({'t1.105.114.197': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.105.114.197': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.105.114.197': [0.431, 6.667], 't3.105.114.197': [0.712, 5.0]}), 'newmec-5'], [({'t5.102.114.198': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.198': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.198': [0.766, 5.0], 't1.102.114.198': [0.446, 6.667]}), 'newmec-2'], [({'t4.101.114.199': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.199': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.199': [0.417, 10.0], 't1.101.114.199': [0.677, 6.667]}), 'newmec-1'], [({'t3.103.114.200': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.200': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.200': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.200': [0.638, 5.0], 't5.103.114.200': [0.77, 5.0], 't2.103.114.200': [0.788, 5.0]}), 'newmec-3'], [({'t4.103.114.201': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.201': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.201': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.201': [0.681, 10.0], 't5.103.114.201': [0.593, 5.0], 't2.103.114.201': [0.609, 5.0]}), 'newmec-3'], [({'t5.156.114.202': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.202': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.202': [0.581, 5.0], 't3.156.114.202': [0.635, 5.0]}), 'osboxes-0'], [({'t4.103.114.203': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.203': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.203': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.203': [0.509, 10.0], 't3.103.114.203': [0.719, 5.0], 't5.103.114.203': [0.425, 5.0]}), 'newmec-3'], [({'t2.106.114.204': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.204': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.204': [0.559, 5.0], 't3.106.114.204': [0.509, 5.0]}), 'newmec-6'], [({'t2.104.114.205': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.205': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.205': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.205': [0.643, 5.0], 't1.104.114.205': [0.763, 6.667], 't5.104.114.205': [0.645, 5.0]}), 'newmec-4'], [({'t1.104.114.206': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.206': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.206': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.206': [0.775, 6.667], 't4.104.114.206': [0.776, 10.0], 't2.104.114.206': [0.504, 5.0]}), 'newmec-4'], [({'t4.104.114.207': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.207': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.207': [0.642, 10.0], 't5.104.114.207': [0.634, 5.0]}), 'newmec-4'], [({'t3.102.114.208': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.208': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.208': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.208': [0.637, 5.0], 't2.102.114.208': [0.611, 5.0], 't5.102.114.208': [0.518, 5.0]}), 'newmec-2'], [({'t3.105.114.209': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.209': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.105.114.209': [0.779, 5.0], 't5.105.114.209': [0.418, 5.0]}), 'newmec-5'], [({'t2.103.114.210': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.210': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.210': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.210': [0.721, 5.0], 't5.103.114.210': [0.769, 5.0], 't3.103.114.210': [0.416, 5.0]}), 'newmec-3'], [({'t4.103.114.211': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.211': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.211': [0.638, 10.0], 't1.103.114.211': [0.546, 6.667]}), 'newmec-3'], [({'t4.105.114.212': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.212': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.105.114.212': [0.542, 10.0], 't3.105.114.212': [0.712, 5.0]}), 'newmec-5'], [({'t4.102.114.213': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.213': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.213': [0.676, 10.0], 't1.102.114.213': [0.597, 6.667]}), 'newmec-2'], [({'t3.105.114.214': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.214': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.214': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.214': [0.769, 5.0], 't5.105.114.214': [0.669, 5.0], 't2.105.114.214': [0.643, 5.0]}), 'newmec-5'], [({'t1.105.114.215': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.215': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.215': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.105.114.215': [0.772, 6.667], 't4.105.114.215': [0.548, 10.0], 't2.105.114.215': [0.508, 5.0]}), 'newmec-5'], [({'t2.156.114.216': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.216': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.216': [0.537, 5.0], 't3.156.114.216': [0.795, 5.0]}), 'osboxes-0'], [({'t2.102.114.217': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.217': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.217': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.217': [0.438, 5.0], 't3.102.114.217': [0.519, 5.0], 't4.102.114.217': [0.636, 10.0]}), 'newmec-2'], [({'t2.104.114.218': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.218': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.218': [0.755, 5.0], 't1.104.114.218': [0.672, 6.667]}), 'newmec-4'], [({'t5.102.114.219': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.219': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.219': [0.682, 5.0], 't4.102.114.219': [0.598, 10.0]}), 'newmec-2'], [({'t2.105.114.220': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.220': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.220': [0.796, 5.0], 't4.105.114.220': [0.78, 10.0]}), 'newmec-5'], [({'t5.106.114.221': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.106.114.221': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.106.114.221': [0.536, 5.0], 't4.106.114.221': [0.681, 10.0]}), 'newmec-6'], [({'t3.103.114.222': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.222': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.222': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.222': [0.699, 5.0], 't5.103.114.222': [0.502, 5.0], 't4.103.114.222': [0.731, 10.0]}), 'newmec-3'], [({'t4.101.114.223': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.223': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.223': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.223': [0.585, 10.0], 't3.101.114.223': [0.582, 5.0], 't2.101.114.223': [0.572, 5.0]}), 'newmec-1'], [({'t4.103.114.224': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.224': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.224': [0.483, 10.0], 't3.103.114.224': [0.485, 5.0]}), 'newmec-3'], [({'t4.104.114.225': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.225': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.225': [0.78, 10.0], 't3.104.114.225': [0.597, 5.0]}), 'newmec-4'], [({'t4.106.114.226': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.226': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.226': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.106.114.226': [0.486, 10.0], 't2.106.114.226': [0.576, 5.0], 't1.106.114.226': [0.576, 6.667]}), 'newmec-6'], [({'t4.103.114.227': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.227': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.227': [0.721, 10.0], 't3.103.114.227': [0.731, 5.0]}), 'newmec-3'], [({'t1.105.114.228': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.228': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.105.114.228': [0.5, 6.667], 't2.105.114.228': [0.614, 5.0]}), 'newmec-5'], [({'t5.103.114.229': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.229': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.229': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.229': [0.566, 5.0], 't4.103.114.229': [0.767, 10.0], 't1.103.114.229': [0.672, 6.667]}), 'newmec-3'], [({'t2.103.114.230': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.230': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.230': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.230': [0.76, 5.0], 't3.103.114.230': [0.527, 5.0], 't4.103.114.230': [0.794, 10.0]}), 'newmec-3'], [({'t3.106.114.231': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.106.114.231': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.231': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.106.114.231': [0.547, 5.0], 't5.106.114.231': [0.573, 5.0], 't2.106.114.231': [0.546, 5.0]}), 'newmec-6'], [({'t3.103.114.232': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.232': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.232': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.232': [0.536, 5.0], 't2.103.114.232': [0.695, 5.0], 't5.103.114.232': [0.648, 5.0]}), 'newmec-3'], [({'t5.105.114.233': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.105.114.233': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.233': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.105.114.233': [0.431, 5.0], 't4.105.114.233': [0.712, 10.0], 't1.105.114.233': [0.508, 6.667]}), 'newmec-5'], [({'t5.104.114.234': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.234': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.234': [0.585, 5.0], 't4.104.114.234': [0.534, 10.0]}), 'newmec-4'], [({'t4.106.114.235': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.106.114.235': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.235': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.235': [0.702, 10.0], 't5.106.114.235': [0.419, 5.0], 't2.106.114.235': [0.786, 5.0]}), 'newmec-6'], [({'t3.103.114.236': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.236': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.236': [0.667, 5.0], 't5.103.114.236': [0.494, 5.0]}), 'newmec-3'], [({'t4.106.114.237': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.237': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.106.114.237': [0.78, 10.0], 't3.106.114.237': [0.745, 5.0]}), 'newmec-6'], [({'t3.103.114.238': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.238': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.238': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.238': [0.479, 5.0], 't5.103.114.238': [0.486, 5.0], 't4.103.114.238': [0.516, 10.0]}), 'newmec-3'], [({'t2.103.114.239': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.239': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.239': [0.485, 5.0], 't1.103.114.239': [0.553, 6.667]}), 'newmec-3'], [({'t3.103.114.240': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.240': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.240': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.240': [0.786, 5.0], 't2.103.114.240': [0.587, 5.0], 't5.103.114.240': [0.452, 5.0]}), 'newmec-3'], [({'t3.102.114.241': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.241': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.241': [0.65, 5.0], 't2.102.114.241': [0.46, 5.0]}), 'newmec-2'], [({'t2.101.114.242': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.242': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.242': [0.676, 5.0], 't1.101.114.242': [0.424, 6.667]}), 'newmec-1'], [({'t1.103.114.243': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.243': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.243': [0.466, 6.667], 't5.103.114.243': [0.428, 5.0]}), 'newmec-3'], [({'t2.102.114.244': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.244': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.244': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.244': [0.754, 5.0], 't4.102.114.244': [0.629, 10.0], 't1.102.114.244': [0.421, 6.667]}), 'newmec-2'], [({'t5.103.114.245': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.245': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.245': [0.607, 5.0], 't3.103.114.245': [0.524, 5.0]}), 'newmec-3'], [({'t2.156.114.246': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.246': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.246': [0.537, 5.0], 't4.156.114.246': [0.415, 10.0]}), 'osboxes-0'], [({'t4.106.114.247': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.247': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.247': [0.626, 10.0], 't2.106.114.247': [0.617, 5.0]}), 'newmec-6'], [({'t1.104.114.248': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.248': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.248': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.248': [0.477, 6.667], 't2.104.114.248': [0.42, 5.0], 't3.104.114.248': [0.496, 5.0]}), 'newmec-4'], [({'t4.103.114.249': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.249': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.249': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.249': [0.765, 10.0], 't1.103.114.249': [0.72, 6.667], 't2.103.114.249': [0.436, 5.0]}), 'newmec-3'], [({'t5.101.114.250': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.250': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.250': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.250': [0.789, 5.0], 't3.101.114.250': [0.418, 5.0], 't4.101.114.250': [0.697, 10.0]}), 'newmec-1'], [({'t2.104.114.251': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.251': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.251': [0.424, 5.0], 't3.104.114.251': [0.669, 5.0]}), 'newmec-4'], [({'t3.106.114.252': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.252': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.252': [0.464, 5.0], 't1.106.114.252': [0.733, 6.667]}), 'newmec-6'], [({'t5.102.114.253': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.253': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.253': [0.623, 5.0], 't4.102.114.253': [0.779, 10.0]}), 'newmec-2'], [({'t1.104.114.254': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.254': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.254': [0.739, 6.667], 't4.104.114.254': [0.761, 10.0]}), 'newmec-4'], [({'t5.106.114.255': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.255': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.255': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.106.114.255': [0.444, 5.0], 't2.106.114.255': [0.663, 5.0], 't1.106.114.255': [0.512, 6.667]}), 'newmec-6'], [({'t2.104.114.256': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.256': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.256': [0.716, 5.0], 't1.104.114.256': [0.755, 6.667]}), 'newmec-4'], [({'t5.103.114.257': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.257': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.257': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.257': [0.407, 5.0], 't2.103.114.257': [0.494, 5.0], 't4.103.114.257': [0.755, 10.0]}), 'newmec-3'], [({'t1.102.114.258': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.258': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.258': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.258': [0.422, 6.667], 't4.102.114.258': [0.788, 10.0], 't5.102.114.258': [0.714, 5.0]}), 'newmec-2'], [({'t1.156.114.259': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.259': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.259': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.259': [0.406, 6.667], 't4.156.114.259': [0.577, 10.0], 't5.156.114.259': [0.645, 5.0]}), 'osboxes-0'], [({'t3.103.114.260': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.260': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.260': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.260': [0.798, 5.0], 't1.103.114.260': [0.66, 6.667], 't5.103.114.260': [0.644, 5.0]}), 'newmec-3'], [({'t4.106.114.261': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.261': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.261': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.106.114.261': [0.571, 10.0], 't3.106.114.261': [0.498, 5.0], 't1.106.114.261': [0.734, 6.667]}), 'newmec-6'], [({'t4.104.114.262': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.262': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.262': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.262': [0.64, 10.0], 't5.104.114.262': [0.402, 5.0], 't1.104.114.262': [0.781, 6.667]}), 'newmec-4'], [({'t3.103.114.263': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.263': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.263': [0.792, 5.0], 't4.103.114.263': [0.703, 10.0]}), 'newmec-3'], [({'t3.103.114.264': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.264': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.264': [0.442, 5.0], 't2.103.114.264': [0.748, 5.0]}), 'newmec-3'], [({'t3.101.114.265': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.265': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.265': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.265': [0.566, 5.0], 't5.101.114.265': [0.573, 5.0], 't1.101.114.265': [0.699, 6.667]}), 'newmec-1'], [({'t1.156.114.266': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.266': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.266': [0.724, 6.667], 't5.156.114.266': [0.533, 5.0]}), 'osboxes-0'], [({'t1.105.114.267': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.105.114.267': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.267': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.105.114.267': [0.55, 6.667], 't3.105.114.267': [0.753, 5.0], 't4.105.114.267': [0.426, 10.0]}), 'newmec-5'], [({'t3.104.114.268': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.268': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.268': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.268': [0.676, 5.0], 't4.104.114.268': [0.635, 10.0], 't5.104.114.268': [0.67, 5.0]}), 'newmec-4'], [({'t4.104.114.269': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.269': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.269': [0.715, 10.0], 't3.104.114.269': [0.564, 5.0]}), 'newmec-4'], [({'t5.102.114.270': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.270': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.270': [0.701, 5.0], 't4.102.114.270': [0.752, 10.0]}), 'newmec-2'], [({'t2.102.114.271': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.271': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.271': [0.719, 5.0], 't4.102.114.271': [0.595, 10.0]}), 'newmec-2'], [({'t2.156.114.272': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.272': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.272': [0.613, 5.0], 't5.156.114.272': [0.641, 5.0]}), 'osboxes-0'], [({'t4.103.114.273': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.273': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.273': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.273': [0.602, 10.0], 't1.103.114.273': [0.791, 6.667], 't2.103.114.273': [0.425, 5.0]}), 'newmec-3'], [({'t5.103.114.274': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.274': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.274': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.274': [0.579, 5.0], 't3.103.114.274': [0.646, 5.0], 't4.103.114.274': [0.733, 10.0]}), 'newmec-3'], [({'t1.104.114.275': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.275': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.275': [0.585, 6.667], 't5.104.114.275': [0.58, 5.0]}), 'newmec-4'], [({'t5.102.114.276': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.276': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.276': [0.547, 5.0], 't4.102.114.276': [0.412, 10.0]}), 'newmec-2'], [({'t5.106.114.277': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.106.114.277': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.277': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.106.114.277': [0.401, 5.0], 't3.106.114.277': [0.63, 5.0], 't1.106.114.277': [0.778, 6.667]}), 'newmec-6'], [({'t5.105.114.278': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.278': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.105.114.278': [0.708, 5.0], 't2.105.114.278': [0.684, 5.0]}), 'newmec-5'], [({'t1.102.114.279': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.279': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.279': [0.428, 6.667], 't3.102.114.279': [0.566, 5.0]}), 'newmec-2'], [({'t5.103.114.280': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.280': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.280': [0.643, 5.0], 't1.103.114.280': [0.672, 6.667]}), 'newmec-3'], [({'t3.103.114.281': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.281': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.281': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.281': [0.502, 5.0], 't2.103.114.281': [0.666, 5.0], 't5.103.114.281': [0.653, 5.0]}), 'newmec-3'], [({'t1.104.114.282': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.282': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.282': [0.556, 6.667], 't2.104.114.282': [0.567, 5.0]}), 'newmec-4'], [({'t4.105.114.283': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.283': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.105.114.283': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.283': [0.587, 10.0], 't1.105.114.283': [0.452, 6.667], 't5.105.114.283': [0.465, 5.0]}), 'newmec-5'], [({'t2.101.114.284': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.284': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.284': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.284': [0.638, 5.0], 't1.101.114.284': [0.769, 6.667], 't5.101.114.284': [0.59, 5.0]}), 'newmec-1'], [({'t2.105.114.285': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.285': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.285': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.285': [0.777, 5.0], 't5.105.114.285': [0.634, 5.0], 't1.105.114.285': [0.759, 6.667]}), 'newmec-5'], [({'t4.103.114.286': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.286': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.286': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.286': [0.526, 10.0], 't5.103.114.286': [0.663, 5.0], 't3.103.114.286': [0.618, 5.0]}), 'newmec-3'], [({'t1.104.114.287': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.287': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.287': [0.602, 6.667], 't5.104.114.287': [0.405, 5.0]}), 'newmec-4'], [({'t2.102.114.288': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.288': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.288': [0.636, 5.0], 't4.102.114.288': [0.47, 10.0]}), 'newmec-2'], [({'t5.106.114.289': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.106.114.289': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.106.114.289': [0.408, 5.0], 't1.106.114.289': [0.747, 6.667]}), 'newmec-6'], [({'t4.156.114.290': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.290': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.290': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.290': [0.769, 10.0], 't5.156.114.290': [0.763, 5.0], 't1.156.114.290': [0.649, 6.667]}), 'osboxes-0'], [({'t2.104.114.291': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.291': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.291': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.291': [0.497, 5.0], 't4.104.114.291': [0.693, 10.0], 't5.104.114.291': [0.533, 5.0]}), 'newmec-4'], [({'t2.104.114.292': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.292': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.292': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.292': [0.526, 5.0], 't4.104.114.292': [0.683, 10.0], 't3.104.114.292': [0.469, 5.0]}), 'newmec-4'], [({'t2.102.114.293': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.293': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.293': [0.449, 5.0], 't3.102.114.293': [0.65, 5.0]}), 'newmec-2'], [({'t5.101.114.294': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.294': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.294': [0.777, 5.0], 't4.101.114.294': [0.63, 10.0]}), 'newmec-1'], [({'t1.103.114.295': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.295': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.295': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.295': [0.522, 6.667], 't2.103.114.295': [0.653, 5.0], 't3.103.114.295': [0.698, 5.0]}), 'newmec-3'], [({'t4.103.114.296': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.296': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.296': [0.595, 10.0], 't3.103.114.296': [0.518, 5.0]}), 'newmec-3'], [({'t5.103.114.297': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.297': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.297': [0.672, 5.0], 't2.103.114.297': [0.642, 5.0]}), 'newmec-3'], [({'t5.104.114.298': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.298': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.298': [0.699, 5.0], 't4.104.114.298': [0.434, 10.0]}), 'newmec-4'], [({'t4.104.114.299': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.299': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.299': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.299': [0.455, 10.0], 't1.104.114.299': [0.484, 6.667], 't3.104.114.299': [0.731, 5.0]}), 'newmec-4'], [({'t4.103.114.300': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.300': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.300': [0.438, 10.0], 't3.103.114.300': [0.643, 5.0]}), 'newmec-3'], [({'t1.156.114.301': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.301': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.301': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.156.114.301': [0.714, 6.667], 't3.156.114.301': [0.607, 5.0], 't4.156.114.301': [0.734, 10.0]}), 'osboxes-0'], [({'t4.104.114.302': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.302': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.302': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.302': [0.613, 10.0], 't5.104.114.302': [0.79, 5.0], 't2.104.114.302': [0.705, 5.0]}), 'newmec-4'], [({'t3.105.114.303': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.105.114.303': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.105.114.303': [0.714, 5.0], 't1.105.114.303': [0.677, 6.667]}), 'newmec-5'], [({'t3.102.114.304': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.304': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.304': [0.65, 5.0], 't2.102.114.304': [0.727, 5.0]}), 'newmec-2'], [({'t4.103.114.305': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.305': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.305': [0.425, 10.0], 't1.103.114.305': [0.546, 6.667]}), 'newmec-3'], [({'t2.105.114.306': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.306': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.306': [0.656, 5.0], 't4.105.114.306': [0.45, 10.0]}), 'newmec-5'], [({'t2.104.114.307': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.307': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.307': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.307': [0.434, 5.0], 't5.104.114.307': [0.765, 5.0], 't4.104.114.307': [0.708, 10.0]}), 'newmec-4'], [({'t5.103.114.308': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.308': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.308': [0.722, 5.0], 't3.103.114.308': [0.418, 5.0]}), 'newmec-3'], [({'t4.104.114.309': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.309': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.309': [0.55, 10.0], 't1.104.114.309': [0.501, 6.667]}), 'newmec-4'], [({'t3.156.114.310': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.310': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.310': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.156.114.310': [0.668, 5.0], 't4.156.114.310': [0.602, 10.0], 't1.156.114.310': [0.737, 6.667]}), 'osboxes-0'], [({'t5.102.114.311': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.311': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.311': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.311': [0.773, 5.0], 't2.102.114.311': [0.639, 5.0], 't3.102.114.311': [0.558, 5.0]}), 'newmec-2'], [({'t3.101.114.312': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.312': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.312': [0.441, 5.0], 't2.101.114.312': [0.476, 5.0]}), 'newmec-1'], [({'t4.103.114.313': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.313': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.313': [0.716, 10.0], 't2.103.114.313': [0.425, 5.0]}), 'newmec-3'], [({'t4.106.114.314': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.106.114.314': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.314': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.314': [0.685, 10.0], 't5.106.114.314': [0.573, 5.0], 't2.106.114.314': [0.527, 5.0]}), 'newmec-6'], [({'t2.104.114.315': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.315': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.315': [0.567, 5.0], 't5.104.114.315': [0.751, 5.0]}), 'newmec-4'], [({'t2.103.114.316': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.316': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.316': [0.768, 5.0], 't1.103.114.316': [0.491, 6.667]}), 'newmec-3'], [({'t4.104.114.317': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.317': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.317': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.317': [0.513, 10.0], 't1.104.114.317': [0.56, 6.667], 't3.104.114.317': [0.467, 5.0]}), 'newmec-4'], [({'t5.101.114.318': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.318': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.318': [0.485, 5.0], 't4.101.114.318': [0.63, 10.0]}), 'newmec-1'], [({'t1.101.114.319': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.319': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.319': [0.566, 6.667], 't2.101.114.319': [0.54, 5.0]}), 'newmec-1'], [({'t5.104.114.320': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.320': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.320': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.320': [0.426, 5.0], 't4.104.114.320': [0.449, 10.0], 't3.104.114.320': [0.513, 5.0]}), 'newmec-4'], [({'t5.104.114.321': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.321': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.321': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.321': [0.557, 5.0], 't2.104.114.321': [0.527, 5.0], 't4.104.114.321': [0.493, 10.0]}), 'newmec-4'], [({'t2.102.114.322': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.322': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.322': [0.655, 5.0], 't5.102.114.322': [0.439, 5.0]}), 'newmec-2'], [({'t5.103.114.323': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.323': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.323': [0.739, 5.0], 't1.103.114.323': [0.746, 6.667]}), 'newmec-3'], [({'t4.156.114.324': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.324': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.324': [0.72, 10.0], 't3.156.114.324': [0.616, 5.0]}), 'osboxes-0'], [({'t5.104.114.325': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.325': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.325': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.325': [0.583, 5.0], 't2.104.114.325': [0.682, 5.0], 't1.104.114.325': [0.78, 6.667]}), 'newmec-4'], [({'t3.101.114.326': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.326': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.326': [0.752, 5.0], 't2.101.114.326': [0.636, 5.0]}), 'newmec-1'], [({'t4.101.114.327': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.327': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.327': [0.632, 10.0], 't5.101.114.327': [0.401, 5.0]}), 'newmec-1'], [({'t2.104.114.328': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.328': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.328': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.328': [0.715, 5.0], 't5.104.114.328': [0.784, 5.0], 't4.104.114.328': [0.441, 10.0]}), 'newmec-4'], [({'t4.156.114.329': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.329': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.329': [0.556, 10.0], 't2.156.114.329': [0.467, 5.0]}), 'osboxes-0'], [({'t1.156.114.330': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.330': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.330': [0.517, 6.667], 't5.156.114.330': [0.53, 5.0]}), 'osboxes-0'], [({'t4.104.114.331': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.331': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.331': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.331': [0.52, 10.0], 't5.104.114.331': [0.63, 5.0], 't3.104.114.331': [0.727, 5.0]}), 'newmec-4'], [({'t5.102.114.332': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.332': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.332': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.332': [0.436, 5.0], 't2.102.114.332': [0.452, 5.0], 't3.102.114.332': [0.42, 5.0]}), 'newmec-2'], [({'t1.105.114.333': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.105.114.333': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.105.114.333': [0.476, 6.667], 't3.105.114.333': [0.69, 5.0]}), 'newmec-5'], [({'t4.104.114.334': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.334': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.334': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.334': [0.604, 10.0], 't2.104.114.334': [0.594, 5.0], 't1.104.114.334': [0.751, 6.667]}), 'newmec-4'], [({'t4.103.114.335': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.335': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.335': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.335': [0.701, 10.0], 't3.103.114.335': [0.48, 5.0], 't1.103.114.335': [0.431, 6.667]}), 'newmec-3'], [({'t1.156.114.336': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.336': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.336': [0.495, 6.667], 't5.156.114.336': [0.521, 5.0]}), 'osboxes-0'], [({'t5.105.114.337': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.105.114.337': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.105.114.337': [0.611, 5.0], 't4.105.114.337': [0.604, 10.0]}), 'newmec-5'], [({'t4.102.114.338': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.338': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.338': [0.704, 10.0], 't1.102.114.338': [0.726, 6.667]}), 'newmec-2'], [({'t1.105.114.339': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.339': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.105.114.339': [0.582, 6.667], 't4.105.114.339': [0.426, 10.0]}), 'newmec-5'], [({'t2.103.114.340': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.340': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.340': [0.74, 5.0], 't1.103.114.340': [0.537, 6.667]}), 'newmec-3'], [({'t4.102.114.341': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.341': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.341': [0.429, 10.0], 't3.102.114.341': [0.782, 5.0]}), 'newmec-2'], [({'t2.106.114.342': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.106.114.342': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.106.114.342': [0.486, 5.0], 't4.106.114.342': [0.75, 10.0]}), 'newmec-6'], [({'t5.105.114.343': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.105.114.343': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.343': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.105.114.343': [0.584, 5.0], 't3.105.114.343': [0.792, 5.0], 't4.105.114.343': [0.631, 10.0]}), 'newmec-5'], [({'t5.103.114.344': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.344': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.344': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.344': [0.781, 5.0], 't4.103.114.344': [0.497, 10.0], 't2.103.114.344': [0.654, 5.0]}), 'newmec-3'], [({'t4.101.114.345': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.345': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.345': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.345': [0.679, 10.0], 't2.101.114.345': [0.613, 5.0], 't3.101.114.345': [0.507, 5.0]}), 'newmec-1'], [({'t5.102.114.346': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.346': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.346': [0.413, 5.0], 't3.102.114.346': [0.405, 5.0]}), 'newmec-2'], [({'t3.101.114.347': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.347': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.347': [0.491, 5.0], 't2.101.114.347': [0.526, 5.0]}), 'newmec-1'], [({'t3.106.114.348': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.348': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.106.114.348': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.106.114.348': [0.783, 5.0], 't2.106.114.348': [0.644, 5.0], 't5.106.114.348': [0.652, 5.0]}), 'newmec-6'], [({'t2.102.114.349': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.349': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.349': [0.471, 5.0], 't4.102.114.349': [0.624, 10.0]}), 'newmec-2'], [({'t4.103.114.350': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.350': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.350': [0.432, 10.0], 't1.103.114.350': [0.533, 6.667]}), 'newmec-3'], [({'t5.105.114.351': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.351': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.351': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.105.114.351': [0.65, 5.0], 't1.105.114.351': [0.445, 6.667], 't4.105.114.351': [0.573, 10.0]}), 'newmec-5'], [({'t4.103.114.352': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.352': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.352': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.352': [0.437, 10.0], 't2.103.114.352': [0.558, 5.0], 't3.103.114.352': [0.652, 5.0]}), 'newmec-3'], [({'t2.103.114.353': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.353': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.353': [0.755, 5.0], 't3.103.114.353': [0.644, 5.0]}), 'newmec-3'], [({'t3.105.114.354': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.354': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.354': [0.486, 5.0], 't2.105.114.354': [0.424, 5.0]}), 'newmec-5'], [({'t3.106.114.355': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.106.114.355': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.106.114.355': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.106.114.355': [0.63, 5.0], 't5.106.114.355': [0.685, 5.0], 't4.106.114.355': [0.511, 10.0]}), 'newmec-6'], [({'t5.102.114.356': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.356': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.356': [0.512, 5.0], 't4.102.114.356': [0.589, 10.0]}), 'newmec-2'], [({'t3.106.114.357': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.357': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.106.114.357': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.106.114.357': [0.416, 5.0], 't1.106.114.357': [0.531, 6.667], 't5.106.114.357': [0.544, 5.0]}), 'newmec-6'], [({'t3.106.114.358': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.358': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.106.114.358': [0.658, 5.0], 't2.106.114.358': [0.506, 5.0]}), 'newmec-6'], [({'t2.101.114.359': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.359': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.359': [0.629, 5.0], 't1.101.114.359': [0.782, 6.667]}), 'newmec-1'], [({'t1.103.114.360': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.360': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.360': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.360': [0.759, 6.667], 't5.103.114.360': [0.589, 5.0], 't4.103.114.360': [0.624, 10.0]}), 'newmec-3'], [({'t5.156.114.361': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.361': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.361': [0.761, 5.0], 't3.156.114.361': [0.789, 5.0]}), 'osboxes-0'], [({'t1.105.114.362': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.362': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.105.114.362': [0.604, 6.667], 't4.105.114.362': [0.659, 10.0]}), 'newmec-5'], [({'t5.104.114.363': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.363': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.363': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.363': [0.535, 5.0], 't4.104.114.363': [0.489, 10.0], 't1.104.114.363': [0.716, 6.667]}), 'newmec-4'], [({'t4.156.114.364': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.364': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.364': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.364': [0.744, 10.0], 't5.156.114.364': [0.506, 5.0], 't3.156.114.364': [0.454, 5.0]}), 'osboxes-0'], [({'t4.104.114.365': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.365': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.365': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.365': [0.676, 10.0], 't2.104.114.365': [0.474, 5.0], 't1.104.114.365': [0.705, 6.667]}), 'newmec-4'], [({'t2.106.114.366': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.366': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.366': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.106.114.366': [0.692, 5.0], 't3.106.114.366': [0.541, 5.0], 't4.106.114.366': [0.403, 10.0]}), 'newmec-6'], [({'t4.102.114.367': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.367': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.367': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.367': [0.572, 10.0], 't2.102.114.367': [0.483, 5.0], 't5.102.114.367': [0.555, 5.0]}), 'newmec-2'], [({'t2.106.114.368': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.368': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.368': [0.539, 5.0], 't3.106.114.368': [0.529, 5.0]}), 'newmec-6'], [({'t5.106.114.369': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.369': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.106.114.369': [0.47, 5.0], 't2.106.114.369': [0.756, 5.0]}), 'newmec-6'], [({'t3.105.114.370': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.370': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.370': [0.568, 5.0], 't2.105.114.370': [0.643, 5.0]}), 'newmec-5'], [({'t2.101.114.371': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.371': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.371': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.371': [0.515, 5.0], 't4.101.114.371': [0.639, 10.0], 't1.101.114.371': [0.4, 6.667]}), 'newmec-1'], [({'t5.103.114.372': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.372': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.372': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.372': [0.445, 5.0], 't4.103.114.372': [0.584, 10.0], 't1.103.114.372': [0.697, 6.667]}), 'newmec-3'], [({'t5.102.114.373': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.373': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.373': [0.575, 5.0], 't2.102.114.373': [0.576, 5.0]}), 'newmec-2'], [({'t1.104.114.374': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.374': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.374': [0.41, 6.667], 't5.104.114.374': [0.789, 5.0]}), 'newmec-4'], [({'t5.102.114.375': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.375': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.375': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.375': [0.454, 5.0], 't2.102.114.375': [0.473, 5.0], 't4.102.114.375': [0.636, 10.0]}), 'newmec-2'], [({'t4.156.114.376': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.376': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.376': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.376': [0.766, 10.0], 't3.156.114.376': [0.418, 5.0], 't5.156.114.376': [0.787, 5.0]}), 'osboxes-0'], [({'t5.105.114.377': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.377': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.105.114.377': [0.743, 5.0], 't1.105.114.377': [0.601, 6.667]}), 'newmec-5'], [({'t4.156.114.378': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.378': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.378': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.378': [0.571, 10.0], 't3.156.114.378': [0.763, 5.0], 't2.156.114.378': [0.524, 5.0]}), 'osboxes-0'], [({'t5.105.114.379': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.379': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.379': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.105.114.379': [0.768, 5.0], 't1.105.114.379': [0.572, 6.667], 't2.105.114.379': [0.622, 5.0]}), 'newmec-5'], [({'t3.106.114.380': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.380': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.380': [0.696, 5.0], 't1.106.114.380': [0.751, 6.667]}), 'newmec-6'], [({'t1.101.114.381': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.381': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.381': [0.476, 6.667], 't4.101.114.381': [0.581, 10.0]}), 'newmec-1'], [({'t2.104.114.382': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.382': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.382': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.382': [0.763, 5.0], 't5.104.114.382': [0.609, 5.0], 't3.104.114.382': [0.596, 5.0]}), 'newmec-4'], [({'t4.156.114.383': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.383': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.383': [0.438, 10.0], 't1.156.114.383': [0.659, 6.667]}), 'osboxes-0'], [({'t2.103.114.384': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.384': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.384': [0.717, 5.0], 't1.103.114.384': [0.559, 6.667]}), 'newmec-3'], [({'t2.106.114.385': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.385': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.385': [0.699, 5.0], 't3.106.114.385': [0.669, 5.0]}), 'newmec-6'], [({'t3.156.114.386': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.386': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.386': [0.492, 5.0], 't5.156.114.386': [0.751, 5.0]}), 'osboxes-0'], [({'t5.105.114.387': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.387': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.105.114.387': [0.408, 5.0], 't1.105.114.387': [0.741, 6.667]}), 'newmec-5'], [({'t2.103.114.388': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.388': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.388': [0.601, 5.0], 't1.103.114.388': [0.402, 6.667]}), 'newmec-3'], [({'t3.103.114.389': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.389': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.389': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.389': [0.413, 5.0], 't2.103.114.389': [0.475, 5.0], 't1.103.114.389': [0.414, 6.667]}), 'newmec-3'], [({'t2.105.114.390': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.390': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.390': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.105.114.390': [0.64, 5.0], 't4.105.114.390': [0.534, 10.0], 't5.105.114.390': [0.484, 5.0]}), 'newmec-5'], [({'t4.106.114.391': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.391': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.106.114.391': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.106.114.391': [0.677, 10.0], 't2.106.114.391': [0.685, 5.0], 't5.106.114.391': [0.503, 5.0]}), 'newmec-6'], [({'t3.104.114.392': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.392': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.392': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.392': [0.557, 5.0], 't4.104.114.392': [0.508, 10.0], 't1.104.114.392': [0.476, 6.667]}), 'newmec-4'], [({'t4.102.114.393': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.393': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.393': [0.684, 10.0], 't2.102.114.393': [0.454, 5.0]}), 'newmec-2'], [({'t4.105.114.394': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.394': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.394': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.394': [0.739, 10.0], 't5.105.114.394': [0.507, 5.0], 't1.105.114.394': [0.565, 6.667]}), 'newmec-5'], [({'t5.156.114.395': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.395': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.395': [0.471, 5.0], 't4.156.114.395': [0.565, 10.0]}), 'osboxes-0'], [({'t2.156.114.396': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.396': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.396': [0.736, 5.0], 't5.156.114.396': [0.712, 5.0]}), 'osboxes-0'], [({'t4.103.114.397': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.397': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.397': [0.495, 10.0], 't2.103.114.397': [0.553, 5.0]}), 'newmec-3'], [({'t5.104.114.398': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.398': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.398': [0.578, 5.0], 't4.104.114.398': [0.654, 10.0]}), 'newmec-4'], [({'t5.106.114.399': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.106.114.399': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.106.114.399': [0.75, 5.0], 't3.106.114.399': [0.519, 5.0]}), 'newmec-6'], [({'t2.105.114.400': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.105.114.400': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.105.114.400': [0.541, 5.0], 't3.105.114.400': [0.424, 5.0]}), 'newmec-5'], [({'t4.105.114.401': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.401': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.401': [0.595, 10.0], 't2.105.114.401': [0.734, 5.0]}), 'newmec-5'], [({'t2.102.114.402': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.402': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.402': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.402': [0.659, 5.0], 't4.102.114.402': [0.795, 10.0], 't5.102.114.402': [0.65, 5.0]}), 'newmec-2'], [({'t5.156.114.403': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.403': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.403': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.403': [0.454, 5.0], 't2.156.114.403': [0.783, 5.0], 't4.156.114.403': [0.64, 10.0]}), 'osboxes-0'], [({'t2.102.114.404': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.404': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.404': [0.65, 5.0], 't4.102.114.404': [0.663, 10.0]}), 'newmec-2'], [({'t1.104.114.405': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.405': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.405': [0.711, 6.667], 't5.104.114.405': [0.537, 5.0]}), 'newmec-4'], [({'t4.103.114.406': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.406': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.406': [0.506, 10.0], 't5.103.114.406': [0.433, 5.0]}), 'newmec-3'], [({'t3.101.114.407': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.407': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.407': [0.558, 5.0], 't5.101.114.407': [0.546, 5.0]}), 'newmec-1'], [({'t1.104.114.408': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.408': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.408': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.408': [0.678, 6.667], 't2.104.114.408': [0.414, 5.0], 't5.104.114.408': [0.645, 5.0]}), 'newmec-4'], [({'t4.106.114.409': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.409': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.409': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.106.114.409': [0.778, 10.0], 't2.106.114.409': [0.681, 5.0], 't1.106.114.409': [0.666, 6.667]}), 'newmec-6'], [({'t3.105.114.410': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.105.114.410': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.105.114.410': [0.582, 5.0], 't1.105.114.410': [0.674, 6.667]}), 'newmec-5'], [({'t5.104.114.411': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.411': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.411': [0.678, 5.0], 't1.104.114.411': [0.551, 6.667]}), 'newmec-4'], [({'t3.106.114.412': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.412': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.106.114.412': [0.451, 5.0], 't2.106.114.412': [0.779, 5.0]}), 'newmec-6'], [({'t4.106.114.413': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.413': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.413': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.413': [0.676, 10.0], 't3.106.114.413': [0.417, 5.0], 't2.106.114.413': [0.708, 5.0]}), 'newmec-6'], [({'t5.103.114.414': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.414': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.414': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.414': [0.789, 5.0], 't2.103.114.414': [0.512, 5.0], 't4.103.114.414': [0.783, 10.0]}), 'newmec-3'], [({'t4.103.114.415': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.415': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.415': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.415': [0.744, 10.0], 't3.103.114.415': [0.741, 5.0], 't2.103.114.415': [0.765, 5.0]}), 'newmec-3'], [({'t2.106.114.416': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.416': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.416': [0.527, 5.0], 't3.106.114.416': [0.628, 5.0]}), 'newmec-6'], [({'t2.105.114.417': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.417': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.417': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.105.114.417': [0.475, 5.0], 't4.105.114.417': [0.758, 10.0], 't3.105.114.417': [0.55, 5.0]}), 'newmec-5'], [({'t3.105.114.418': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.418': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.105.114.418': [0.495, 5.0], 't5.105.114.418': [0.614, 5.0]}), 'newmec-5'], [({'t3.102.114.419': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.419': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.419': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.419': [0.604, 5.0], 't2.102.114.419': [0.567, 5.0], 't5.102.114.419': [0.612, 5.0]}), 'newmec-2'], [({'t4.106.114.420': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.420': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.106.114.420': [0.625, 10.0], 't3.106.114.420': [0.468, 5.0]}), 'newmec-6'], [({'t1.156.114.421': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.421': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.421': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.156.114.421': [0.607, 6.667], 't4.156.114.421': [0.501, 10.0], 't3.156.114.421': [0.467, 5.0]}), 'osboxes-0'], [({'t5.156.114.422': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.422': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.422': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.422': [0.437, 5.0], 't4.156.114.422': [0.493, 10.0], 't2.156.114.422': [0.789, 5.0]}), 'osboxes-0'], [({'t3.101.114.423': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.423': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.423': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.423': [0.455, 5.0], 't4.101.114.423': [0.508, 10.0], 't1.101.114.423': [0.644, 6.667]}), 'newmec-1'], [({'t3.104.114.424': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.424': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.424': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.424': [0.659, 5.0], 't5.104.114.424': [0.755, 5.0], 't4.104.114.424': [0.686, 10.0]}), 'newmec-4'], [({'t3.105.114.425': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.105.114.425': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.105.114.425': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.105.114.425': [0.54, 5.0], 't1.105.114.425': [0.621, 6.667], 't5.105.114.425': [0.591, 5.0]}), 'newmec-5'], [({'t5.103.114.426': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.426': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.426': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.426': [0.531, 5.0], 't2.103.114.426': [0.54, 5.0], 't1.103.114.426': [0.711, 6.667]}), 'newmec-3'], [({'t3.106.114.427': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.106.114.427': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.106.114.427': [0.746, 5.0], 't5.106.114.427': [0.422, 5.0]}), 'newmec-6'], [({'t1.105.114.428': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.428': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.105.114.428': [0.762, 6.667], 't2.105.114.428': [0.487, 5.0]}), 'newmec-5'], [({'t5.156.114.429': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.429': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.429': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.429': [0.697, 5.0], 't4.156.114.429': [0.558, 10.0], 't3.156.114.429': [0.57, 5.0]}), 'osboxes-0'], [({'t3.104.114.430': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.430': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.430': [0.528, 5.0], 't5.104.114.430': [0.591, 5.0]}), 'newmec-4'], [({'t4.103.114.431': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.431': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.431': [0.444, 10.0], 't1.103.114.431': [0.614, 6.667]}), 'newmec-3'], [({'t5.105.114.432': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.432': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.432': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.105.114.432': [0.571, 5.0], 't2.105.114.432': [0.741, 5.0], 't1.105.114.432': [0.775, 6.667]}), 'newmec-5'], [({'t3.103.114.433': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.433': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.433': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.433': [0.609, 5.0], 't1.103.114.433': [0.621, 6.667], 't2.103.114.433': [0.568, 5.0]}), 'newmec-3'], [({'t2.104.114.434': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.434': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.434': [0.421, 5.0], 't3.104.114.434': [0.637, 5.0]}), 'newmec-4'], [({'t4.105.114.435': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.435': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.105.114.435': [0.617, 10.0], 't3.105.114.435': [0.78, 5.0]}), 'newmec-5'], [({'t1.103.114.436': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.436': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.436': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.436': [0.569, 6.667], 't2.103.114.436': [0.726, 5.0], 't5.103.114.436': [0.436, 5.0]}), 'newmec-3'], [({'t3.103.114.437': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.437': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.437': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.437': [0.538, 5.0], 't1.103.114.437': [0.628, 6.667], 't2.103.114.437': [0.442, 5.0]}), 'newmec-3'], [({'t2.104.114.438': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.438': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.438': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.438': [0.505, 5.0], 't5.104.114.438': [0.508, 5.0], 't4.104.114.438': [0.461, 10.0]}), 'newmec-4'], [({'t2.103.114.439': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.439': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.439': [0.796, 5.0], 't4.103.114.439': [0.43, 10.0]}), 'newmec-3'], [({'t4.105.114.440': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.440': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.440': [0.729, 10.0], 't5.105.114.440': [0.751, 5.0]}), 'newmec-5'], [({'t1.103.114.441': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.441': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.441': [0.727, 6.667], 't4.103.114.441': [0.707, 10.0]}), 'newmec-3'], [({'t3.103.114.442': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.442': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.442': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.442': [0.495, 5.0], 't1.103.114.442': [0.636, 6.667], 't2.103.114.442': [0.439, 5.0]}), 'newmec-3'], [({'t5.103.114.443': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.443': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.443': [0.578, 5.0], 't4.103.114.443': [0.523, 10.0]}), 'newmec-3'], [({'t3.106.114.444': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.444': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.106.114.444': [0.551, 5.0], 't4.106.114.444': [0.65, 10.0]}), 'newmec-6'], [({'t5.102.114.445': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.445': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.445': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.445': [0.67, 5.0], 't3.102.114.445': [0.713, 5.0], 't2.102.114.445': [0.449, 5.0]}), 'newmec-2'], [({'t4.103.114.446': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.446': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.446': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.446': [0.775, 10.0], 't5.103.114.446': [0.775, 5.0], 't2.103.114.446': [0.523, 5.0]}), 'newmec-3'], [({'t5.103.114.447': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.447': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.447': [0.441, 5.0], 't4.103.114.447': [0.775, 10.0]}), 'newmec-3'], [({'t2.156.114.448': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.448': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.448': [0.642, 5.0], 't5.156.114.448': [0.517, 5.0]}), 'osboxes-0'], [({'t5.101.114.449': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.449': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.449': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.449': [0.564, 5.0], 't2.101.114.449': [0.681, 5.0], 't1.101.114.449': [0.599, 6.667]}), 'newmec-1'], [({'t2.103.114.450': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.450': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.450': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.450': [0.482, 5.0], 't3.103.114.450': [0.764, 5.0], 't1.103.114.450': [0.679, 6.667]}), 'newmec-3'], [({'t3.102.114.451': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.451': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.451': [0.446, 5.0], 't1.102.114.451': [0.658, 6.667]}), 'newmec-2'], [({'t2.102.114.452': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.452': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.452': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.452': [0.627, 5.0], 't1.102.114.452': [0.664, 6.667], 't5.102.114.452': [0.639, 5.0]}), 'newmec-2'], [({'t2.105.114.453': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.453': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.453': [0.612, 5.0], 't4.105.114.453': [0.681, 10.0]}), 'newmec-5'], [({'t5.102.114.454': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.454': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.454': [0.471, 5.0], 't4.102.114.454': [0.599, 10.0]}), 'newmec-2'], [({'t4.101.114.455': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.455': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.455': [0.558, 10.0], 't3.101.114.455': [0.652, 5.0]}), 'newmec-1'], [({'t4.106.114.456': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.456': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.456': [0.487, 10.0], 't2.106.114.456': [0.412, 5.0]}), 'newmec-6'], [({'t4.103.114.457': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.457': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.457': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.457': [0.78, 10.0], 't5.103.114.457': [0.658, 5.0], 't2.103.114.457': [0.661, 5.0]}), 'newmec-3'], [({'t4.105.114.458': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.458': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.105.114.458': [0.523, 10.0], 't3.105.114.458': [0.633, 5.0]}), 'newmec-5'], [({'t3.101.114.459': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.459': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.459': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.459': [0.409, 5.0], 't4.101.114.459': [0.639, 10.0], 't1.101.114.459': [0.64, 6.667]}), 'newmec-1'], [({'t4.105.114.460': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.460': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.460': [0.422, 10.0], 't2.105.114.460': [0.7, 5.0]}), 'newmec-5'], [({'t5.101.114.461': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.461': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.461': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.461': [0.64, 5.0], 't4.101.114.461': [0.71, 10.0], 't3.101.114.461': [0.692, 5.0]}), 'newmec-1'], [({'t5.106.114.462': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.106.114.462': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.462': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.106.114.462': [0.496, 5.0], 't4.106.114.462': [0.53, 10.0], 't3.106.114.462': [0.722, 5.0]}), 'newmec-6'], [({'t4.156.114.463': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.463': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.463': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.463': [0.736, 10.0], 't5.156.114.463': [0.401, 5.0], 't2.156.114.463': [0.42, 5.0]}), 'osboxes-0'], [({'t5.105.114.464': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.105.114.464': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.105.114.464': [0.463, 5.0], 't4.105.114.464': [0.682, 10.0]}), 'newmec-5'], [({'t2.104.114.465': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.465': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.465': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.465': [0.528, 5.0], 't4.104.114.465': [0.541, 10.0], 't5.104.114.465': [0.504, 5.0]}), 'newmec-4'], [({'t2.156.114.466': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.466': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.466': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.466': [0.453, 5.0], 't5.156.114.466': [0.454, 5.0], 't3.156.114.466': [0.439, 5.0]}), 'osboxes-0'], [({'t2.103.114.467': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.467': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.467': [0.705, 5.0], 't3.103.114.467': [0.772, 5.0]}), 'newmec-3'], [({'t4.106.114.468': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.468': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.468': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.468': [0.578, 10.0], 't3.106.114.468': [0.424, 5.0], 't2.106.114.468': [0.681, 5.0]}), 'newmec-6'], [({'t2.101.114.469': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.469': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.469': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.469': [0.585, 5.0], 't5.101.114.469': [0.653, 5.0], 't3.101.114.469': [0.721, 5.0]}), 'newmec-1'], [({'t2.103.114.470': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.470': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.470': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.470': [0.462, 5.0], 't4.103.114.470': [0.66, 10.0], 't5.103.114.470': [0.658, 5.0]}), 'newmec-3'], [({'t4.106.114.471': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.471': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.106.114.471': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.106.114.471': [0.715, 10.0], 't2.106.114.471': [0.548, 5.0], 't5.106.114.471': [0.665, 5.0]}), 'newmec-6'], [({'t1.103.114.472': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.472': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.472': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.472': [0.689, 6.667], 't4.103.114.472': [0.599, 10.0], 't2.103.114.472': [0.616, 5.0]}), 'newmec-3'], [({'t3.104.114.473': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.473': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.473': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.473': [0.712, 5.0], 't2.104.114.473': [0.523, 5.0], 't4.104.114.473': [0.728, 10.0]}), 'newmec-4'], [({'t4.104.114.474': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.474': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.474': [0.713, 10.0], 't5.104.114.474': [0.637, 5.0]}), 'newmec-4'], [({'t2.102.114.475': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.475': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.475': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.475': [0.623, 5.0], 't4.102.114.475': [0.643, 10.0], 't5.102.114.475': [0.604, 5.0]}), 'newmec-2'], [({'t3.103.114.476': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.476': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.476': [0.48, 5.0], 't1.103.114.476': [0.731, 6.667]}), 'newmec-3'], [({'t4.103.114.477': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.477': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.477': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.477': [0.715, 10.0], 't1.103.114.477': [0.504, 6.667], 't2.103.114.477': [0.533, 5.0]}), 'newmec-3'], [({'t4.104.114.478': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.478': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.478': [0.788, 10.0], 't3.104.114.478': [0.424, 5.0]}), 'newmec-4'], [({'t2.101.114.479': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.479': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.479': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.479': [0.691, 5.0], 't4.101.114.479': [0.789, 10.0], 't5.101.114.479': [0.767, 5.0]}), 'newmec-1'], [({'t1.102.114.480': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.480': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.480': [0.74, 6.667], 't3.102.114.480': [0.634, 5.0]}), 'newmec-2'], [({'t5.106.114.481': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.106.114.481': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.106.114.481': [0.479, 5.0], 't3.106.114.481': [0.561, 5.0]}), 'newmec-6'], [({'t5.103.114.482': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.482': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.482': [0.634, 5.0], 't4.103.114.482': [0.572, 10.0]}), 'newmec-3'], [({'t1.156.114.483': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.156.114.483': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.483': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.156.114.483': [0.514, 6.667], 't2.156.114.483': [0.752, 5.0], 't3.156.114.483': [0.583, 5.0]}), 'osboxes-0'], [({'t2.103.114.484': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.484': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.484': [0.697, 5.0], 't4.103.114.484': [0.607, 10.0]}), 'newmec-3'], [({'t2.103.114.485': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.485': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.485': [0.485, 5.0], 't1.103.114.485': [0.751, 6.667]}), 'newmec-3'], [({'t3.106.114.486': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.486': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.486': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.106.114.486': [0.47, 5.0], 't4.106.114.486': [0.654, 10.0], 't2.106.114.486': [0.418, 5.0]}), 'newmec-6'], [({'t2.105.114.487': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.487': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.487': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.487': [0.623, 5.0], 't1.105.114.487': [0.46, 6.667], 't4.105.114.487': [0.678, 10.0]}), 'newmec-5'], [({'t2.103.114.488': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.488': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.488': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.488': [0.67, 5.0], 't5.103.114.488': [0.454, 5.0], 't4.103.114.488': [0.623, 10.0]}), 'newmec-3'], [({'t2.156.114.489': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.489': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.489': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.489': [0.468, 5.0], 't4.156.114.489': [0.623, 10.0], 't5.156.114.489': [0.484, 5.0]}), 'osboxes-0'], [({'t3.103.114.490': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.490': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.490': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.490': [0.606, 5.0], 't5.103.114.490': [0.418, 5.0], 't4.103.114.490': [0.642, 10.0]}), 'newmec-3'], [({'t5.102.114.491': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.491': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.491': [0.513, 5.0], 't1.102.114.491': [0.657, 6.667]}), 'newmec-2'], [({'t2.104.114.492': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.492': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.492': [0.691, 5.0], 't5.104.114.492': [0.405, 5.0]}), 'newmec-4'], [({'t2.104.114.493': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.493': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.493': [0.563, 5.0], 't3.104.114.493': [0.562, 5.0]}), 'newmec-4'], [({'t4.106.114.494': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.494': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.494': [0.711, 10.0], 't2.106.114.494': [0.581, 5.0]}), 'newmec-6'], [({'t2.103.114.495': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.495': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.495': [0.708, 5.0], 't5.103.114.495': [0.7, 5.0]}), 'newmec-3'], [({'t4.101.114.496': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.496': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.496': [0.75, 10.0], 't2.101.114.496': [0.701, 5.0]}), 'newmec-1'], [({'t3.105.114.497': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.497': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.497': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.105.114.497': [0.609, 5.0], 't2.105.114.497': [0.493, 5.0], 't5.105.114.497': [0.451, 5.0]}), 'newmec-5'], [({'t4.103.114.498': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.498': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.498': [0.782, 10.0], 't3.103.114.498': [0.762, 5.0]}), 'newmec-3'], [({'t3.105.114.499': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.499': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.105.114.499': [0.65, 5.0], 't4.105.114.499': [0.705, 10.0]}), 'newmec-5'], [({'t3.103.114.500': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.500': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.500': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.500': [0.599, 5.0], 't1.103.114.500': [0.727, 6.667], 't5.103.114.500': [0.579, 5.0]}), 'newmec-3'], [({'t5.103.114.501': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.501': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.501': [0.607, 5.0], 't1.103.114.501': [0.758, 6.667]}), 'newmec-3'], [({'t3.105.114.502': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.502': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.502': [0.68, 5.0], 't2.105.114.502': [0.789, 5.0]}), 'newmec-5'], [({'t3.103.114.503': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.503': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.503': [0.548, 5.0], 't1.103.114.503': [0.665, 6.667]}), 'newmec-3'], [({'t4.103.114.504': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.504': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.504': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.504': [0.611, 10.0], 't3.103.114.504': [0.721, 5.0], 't2.103.114.504': [0.794, 5.0]}), 'newmec-3'], [({'t1.156.114.505': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.505': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.505': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.505': [0.673, 6.667], 't4.156.114.505': [0.559, 10.0], 't5.156.114.505': [0.732, 5.0]}), 'osboxes-0'], [({'t1.105.114.506': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.105.114.506': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.105.114.506': [0.716, 6.667], 't5.105.114.506': [0.69, 5.0]}), 'newmec-5'], [({'t2.101.114.507': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.507': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.507': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.507': [0.674, 5.0], 't4.101.114.507': [0.73, 10.0], 't5.101.114.507': [0.521, 5.0]}), 'newmec-1'], [({'t1.102.114.508': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.508': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.508': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.508': [0.768, 6.667], 't2.102.114.508': [0.424, 5.0], 't3.102.114.508': [0.609, 5.0]}), 'newmec-2'], [({'t4.105.114.509': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.509': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.509': [0.491, 10.0], 't2.105.114.509': [0.56, 5.0]}), 'newmec-5'], [({'t2.102.114.510': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.510': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.510': [0.489, 5.0], 't3.102.114.510': [0.691, 5.0]}), 'newmec-2'], [({'t2.106.114.511': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.106.114.511': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.106.114.511': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.106.114.511': [0.544, 5.0], 't5.106.114.511': [0.715, 5.0], 't4.106.114.511': [0.635, 10.0]}), 'newmec-6'], [({'t4.105.114.512': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.512': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.512': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.512': [0.622, 10.0], 't2.105.114.512': [0.615, 5.0], 't1.105.114.512': [0.443, 6.667]}), 'newmec-5'], [({'t5.102.114.513': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.513': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.513': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.513': [0.495, 5.0], 't3.102.114.513': [0.765, 5.0], 't2.102.114.513': [0.478, 5.0]}), 'newmec-2'], [({'t4.105.114.514': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.514': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.514': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.514': [0.642, 10.0], 't2.105.114.514': [0.705, 5.0], 't1.105.114.514': [0.464, 6.667]}), 'newmec-5'], [({'t1.156.114.515': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.515': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.515': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.515': [0.578, 6.667], 't5.156.114.515': [0.647, 5.0], 't2.156.114.515': [0.652, 5.0]}), 'osboxes-0'], [({'t1.104.114.516': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.516': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.516': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.516': [0.653, 6.667], 't2.104.114.516': [0.553, 5.0], 't5.104.114.516': [0.746, 5.0]}), 'newmec-4'], [({'t5.103.114.517': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.517': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.517': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.517': [0.472, 5.0], 't1.103.114.517': [0.72, 6.667], 't3.103.114.517': [0.559, 5.0]}), 'newmec-3'], [({'t4.106.114.518': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.518': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.518': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.106.114.518': [0.6, 10.0], 't2.106.114.518': [0.786, 5.0], 't1.106.114.518': [0.781, 6.667]}), 'newmec-6'], [({'t2.103.114.519': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.519': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.519': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.519': [0.798, 5.0], 't4.103.114.519': [0.659, 10.0], 't1.103.114.519': [0.676, 6.667]}), 'newmec-3'], [({'t4.103.114.520': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.520': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.520': [0.585, 10.0], 't5.103.114.520': [0.574, 5.0]}), 'newmec-3'], [({'t3.103.114.521': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.521': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.521': [0.685, 5.0], 't4.103.114.521': [0.679, 10.0]}), 'newmec-3'], [({'t4.104.114.522': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.522': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.522': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.522': [0.542, 10.0], 't5.104.114.522': [0.422, 5.0], 't2.104.114.522': [0.406, 5.0]}), 'newmec-4'], [({'t3.106.114.523': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.523': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.523': [0.405, 5.0], 't1.106.114.523': [0.461, 6.667]}), 'newmec-6'], [({'t5.102.114.524': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.524': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.524': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.524': [0.714, 5.0], 't3.102.114.524': [0.465, 5.0], 't4.102.114.524': [0.441, 10.0]}), 'newmec-2'], [({'t3.105.114.525': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.525': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.525': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.525': [0.6, 5.0], 't4.105.114.525': [0.738, 10.0], 't2.105.114.525': [0.547, 5.0]}), 'newmec-5'], [({'t3.106.114.526': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.526': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.106.114.526': [0.712, 5.0], 't2.106.114.526': [0.426, 5.0]}), 'newmec-6'], [({'t4.103.114.527': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.527': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.527': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.527': [0.464, 10.0], 't2.103.114.527': [0.701, 5.0], 't3.103.114.527': [0.693, 5.0]}), 'newmec-3'], [({'t4.101.114.528': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.528': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.528': [0.569, 10.0], 't2.101.114.528': [0.565, 5.0]}), 'newmec-1'], [({'t3.101.114.529': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.529': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.529': [0.758, 5.0], 't4.101.114.529': [0.464, 10.0]}), 'newmec-1'], [({'t4.103.114.530': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.530': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.530': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.530': [0.719, 10.0], 't5.103.114.530': [0.751, 5.0], 't3.103.114.530': [0.506, 5.0]}), 'newmec-3'], [({'t4.105.114.531': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.531': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.531': [0.726, 10.0], 't2.105.114.531': [0.598, 5.0]}), 'newmec-5'], [({'t2.103.114.532': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.532': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.532': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.532': [0.752, 5.0], 't3.103.114.532': [0.435, 5.0], 't4.103.114.532': [0.438, 10.0]}), 'newmec-3'], [({'t3.101.114.533': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.533': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.533': [0.604, 5.0], 't4.101.114.533': [0.617, 10.0]}), 'newmec-1'], [({'t3.104.114.534': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.534': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.534': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.534': [0.743, 5.0], 't4.104.114.534': [0.685, 10.0], 't5.104.114.534': [0.481, 5.0]}), 'newmec-4'], [({'t4.101.114.535': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.535': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.535': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.535': [0.502, 10.0], 't3.101.114.535': [0.766, 5.0], 't1.101.114.535': [0.724, 6.667]}), 'newmec-1'], [({'t1.103.114.536': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.536': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.536': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.536': [0.438, 6.667], 't2.103.114.536': [0.653, 5.0], 't4.103.114.536': [0.704, 10.0]}), 'newmec-3'], [({'t2.101.114.537': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.537': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.537': [0.746, 5.0], 't5.101.114.537': [0.636, 5.0]}), 'newmec-1'], [({'t5.156.114.538': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.538': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.538': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.538': [0.416, 5.0], 't4.156.114.538': [0.712, 10.0], 't3.156.114.538': [0.475, 5.0]}), 'osboxes-0'], [({'t5.104.114.539': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.539': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.539': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.539': [0.476, 5.0], 't4.104.114.539': [0.781, 10.0], 't1.104.114.539': [0.605, 6.667]}), 'newmec-4'], [({'t3.105.114.540': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.105.114.540': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.540': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.540': [0.736, 5.0], 't1.105.114.540': [0.741, 6.667], 't2.105.114.540': [0.776, 5.0]}), 'newmec-5'], [({'t5.103.114.541': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.541': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.541': [0.429, 5.0], 't4.103.114.541': [0.585, 10.0]}), 'newmec-3'], [({'t4.106.114.542': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.542': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.542': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.542': [0.701, 10.0], 't3.106.114.542': [0.553, 5.0], 't2.106.114.542': [0.473, 5.0]}), 'newmec-6'], [({'t3.156.114.543': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.543': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.543': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.543': [0.748, 5.0], 't1.156.114.543': [0.559, 6.667], 't4.156.114.543': [0.531, 10.0]}), 'osboxes-0'], [({'t5.103.114.544': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.544': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.544': [0.64, 5.0], 't4.103.114.544': [0.601, 10.0]}), 'newmec-3'], [({'t4.103.114.545': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.545': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.545': [0.712, 10.0], 't2.103.114.545': [0.523, 5.0]}), 'newmec-3'], [({'t2.106.114.546': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.106.114.546': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.106.114.546': [0.423, 5.0], 't4.106.114.546': [0.418, 10.0]}), 'newmec-6'], [({'t2.102.114.547': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.547': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.547': [0.676, 5.0], 't1.102.114.547': [0.731, 6.667]}), 'newmec-2'], [({'t2.156.114.548': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.548': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.548': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.548': [0.62, 5.0], 't1.156.114.548': [0.484, 6.667], 't5.156.114.548': [0.696, 5.0]}), 'osboxes-0'], [({'t2.106.114.549': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.549': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.106.114.549': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.549': [0.736, 5.0], 't1.106.114.549': [0.648, 6.667], 't3.106.114.549': [0.628, 5.0]}), 'newmec-6'], [({'t2.102.114.550': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.550': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.550': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.550': [0.605, 5.0], 't1.102.114.550': [0.53, 6.667], 't5.102.114.550': [0.506, 5.0]}), 'newmec-2'], [({'t2.105.114.551': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.551': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.551': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.551': [0.726, 5.0], 't5.105.114.551': [0.663, 5.0], 't1.105.114.551': [0.734, 6.667]}), 'newmec-5'], [({'t5.102.114.552': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.552': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.552': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.552': [0.427, 5.0], 't4.102.114.552': [0.644, 10.0], 't2.102.114.552': [0.597, 5.0]}), 'newmec-2'], [({'t1.156.114.553': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.553': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.553': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.553': [0.564, 6.667], 't5.156.114.553': [0.643, 5.0], 't2.156.114.553': [0.435, 5.0]}), 'osboxes-0'], [({'t2.156.114.554': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.554': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.554': [0.7, 5.0], 't3.156.114.554': [0.498, 5.0]}), 'osboxes-0'], [({'t4.103.114.555': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.555': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.555': [0.416, 10.0], 't3.103.114.555': [0.433, 5.0]}), 'newmec-3'], [({'t2.104.114.556': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.556': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.556': [0.58, 5.0], 't5.104.114.556': [0.5, 5.0]}), 'newmec-4'], [({'t2.105.114.557': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.557': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.557': [0.605, 5.0], 't1.105.114.557': [0.458, 6.667]}), 'newmec-5'], [({'t1.104.114.558': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.558': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.558': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.558': [0.768, 6.667], 't5.104.114.558': [0.57, 5.0], 't3.104.114.558': [0.69, 5.0]}), 'newmec-4'], [({'t3.106.114.559': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.559': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.106.114.559': [0.565, 5.0], 't4.106.114.559': [0.446, 10.0]}), 'newmec-6'], [({'t4.104.114.560': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.560': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.560': [0.52, 10.0], 't1.104.114.560': [0.566, 6.667]}), 'newmec-4'], [({'t5.103.114.561': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.561': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.561': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.561': [0.78, 5.0], 't2.103.114.561': [0.634, 5.0], 't3.103.114.561': [0.523, 5.0]}), 'newmec-3'], [({'t4.105.114.562': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.562': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.562': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.562': [0.427, 10.0], 't2.105.114.562': [0.433, 5.0], 't1.105.114.562': [0.534, 6.667]}), 'newmec-5'], [({'t4.156.114.563': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.563': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.563': [0.739, 10.0], 't3.156.114.563': [0.44, 5.0]}), 'osboxes-0'], [({'t2.156.114.564': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.564': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.564': [0.632, 5.0], 't4.156.114.564': [0.551, 10.0]}), 'osboxes-0'], [({'t3.104.114.565': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.565': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.565': [0.764, 5.0], 't4.104.114.565': [0.652, 10.0]}), 'newmec-4'], [({'t4.103.114.566': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.566': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.566': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.566': [0.711, 10.0], 't2.103.114.566': [0.415, 5.0], 't1.103.114.566': [0.7, 6.667]}), 'newmec-3'], [({'t2.101.114.567': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.567': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.567': [0.488, 5.0], 't4.101.114.567': [0.533, 10.0]}), 'newmec-1'], [({'t3.103.114.568': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.568': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.568': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.568': [0.482, 5.0], 't5.103.114.568': [0.427, 5.0], 't2.103.114.568': [0.519, 5.0]}), 'newmec-3'], [({'t3.104.114.569': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.569': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.569': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.569': [0.588, 5.0], 't2.104.114.569': [0.44, 5.0], 't4.104.114.569': [0.56, 10.0]}), 'newmec-4'], [({'t4.106.114.570': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.570': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.570': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.106.114.570': [0.643, 10.0], 't2.106.114.570': [0.695, 5.0], 't1.106.114.570': [0.76, 6.667]}), 'newmec-6'], [({'t3.101.114.571': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.571': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.571': [0.548, 5.0], 't2.101.114.571': [0.77, 5.0]}), 'newmec-1'], [({'t4.105.114.572': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.572': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.105.114.572': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.105.114.572': [0.678, 10.0], 't1.105.114.572': [0.641, 6.667], 't3.105.114.572': [0.453, 5.0]}), 'newmec-5'], [({'t2.106.114.573': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.106.114.573': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.106.114.573': [0.644, 5.0], 't5.106.114.573': [0.628, 5.0]}), 'newmec-6'], [({'t4.105.114.574': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.574': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.574': [0.438, 10.0], 't5.105.114.574': [0.554, 5.0]}), 'newmec-5'], [({'t2.106.114.575': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.575': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.575': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.106.114.575': [0.778, 5.0], 't3.106.114.575': [0.744, 5.0], 't4.106.114.575': [0.51, 10.0]}), 'newmec-6'], [({'t2.156.114.576': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.576': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.576': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.576': [0.669, 5.0], 't5.156.114.576': [0.442, 5.0], 't1.156.114.576': [0.55, 6.667]}), 'osboxes-0'], [({'t5.104.114.577': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.577': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.577': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.577': [0.793, 5.0], 't2.104.114.577': [0.428, 5.0], 't3.104.114.577': [0.712, 5.0]}), 'newmec-4'], [({'t2.103.114.578': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.578': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.578': [0.475, 5.0], 't4.103.114.578': [0.485, 10.0]}), 'newmec-3'], [({'t5.102.114.579': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.579': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.579': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.579': [0.488, 5.0], 't3.102.114.579': [0.628, 5.0], 't2.102.114.579': [0.751, 5.0]}), 'newmec-2'], [({'t5.103.114.580': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.580': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.580': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.580': [0.745, 5.0], 't4.103.114.580': [0.554, 10.0], 't2.103.114.580': [0.638, 5.0]}), 'newmec-3'], [({'t3.156.114.581': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.581': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.156.114.581': [0.573, 5.0], 't2.156.114.581': [0.783, 5.0]}), 'osboxes-0'], [({'t5.105.114.582': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.105.114.582': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.105.114.582': [0.491, 5.0], 't3.105.114.582': [0.777, 5.0]}), 'newmec-5'], [({'t5.104.114.583': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.583': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.583': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.583': [0.712, 5.0], 't4.104.114.583': [0.664, 10.0], 't2.104.114.583': [0.47, 5.0]}), 'newmec-4'], [({'t2.104.114.584': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.584': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.584': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.584': [0.754, 5.0], 't4.104.114.584': [0.414, 10.0], 't5.104.114.584': [0.442, 5.0]}), 'newmec-4'], [({'t3.106.114.585': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.106.114.585': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.585': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.106.114.585': [0.708, 5.0], 't5.106.114.585': [0.671, 5.0], 't2.106.114.585': [0.476, 5.0]}), 'newmec-6'], [({'t5.102.114.586': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.586': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.586': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.586': [0.768, 5.0], 't2.102.114.586': [0.582, 5.0], 't3.102.114.586': [0.496, 5.0]}), 'newmec-2'], [({'t2.103.114.587': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.587': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.587': [0.476, 5.0], 't4.103.114.587': [0.534, 10.0]}), 'newmec-3'], [({'t4.101.114.588': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.588': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.588': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.588': [0.575, 10.0], 't5.101.114.588': [0.687, 5.0], 't1.101.114.588': [0.437, 6.667]}), 'newmec-1'], [({'t2.106.114.589': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.589': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.589': [0.795, 5.0], 't3.106.114.589': [0.552, 5.0]}), 'newmec-6'], [({'t3.102.114.590': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.590': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.590': [0.466, 5.0], 't4.102.114.590': [0.794, 10.0]}), 'newmec-2'], [({'t4.105.114.591': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.591': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.591': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.591': [0.624, 10.0], 't5.105.114.591': [0.729, 5.0], 't2.105.114.591': [0.628, 5.0]}), 'newmec-5'], [({'t4.104.114.592': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.592': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.592': [0.78, 10.0], 't2.104.114.592': [0.778, 5.0]}), 'newmec-4'], [({'t2.106.114.593': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.106.114.593': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.106.114.593': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.593': [0.602, 5.0], 't5.106.114.593': [0.548, 5.0], 't3.106.114.593': [0.499, 5.0]}), 'newmec-6'], [({'t1.102.114.594': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.594': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.594': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.594': [0.617, 6.667], 't5.102.114.594': [0.742, 5.0], 't2.102.114.594': [0.717, 5.0]}), 'newmec-2'], [({'t2.104.114.595': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.595': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.595': [0.422, 5.0], 't1.104.114.595': [0.645, 6.667]}), 'newmec-4'], [({'t1.103.114.596': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.596': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.596': [0.577, 6.667], 't4.103.114.596': [0.401, 10.0]}), 'newmec-3'], [({'t2.103.114.597': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.597': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.597': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.597': [0.798, 5.0], 't5.103.114.597': [0.497, 5.0], 't3.103.114.597': [0.553, 5.0]}), 'newmec-3'], [({'t3.103.114.598': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.598': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.598': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.598': [0.496, 5.0], 't1.103.114.598': [0.483, 6.667], 't2.103.114.598': [0.766, 5.0]}), 'newmec-3'], [({'t3.106.114.599': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.599': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.106.114.599': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.599': [0.571, 5.0], 't4.106.114.599': [0.647, 10.0], 't1.106.114.599': [0.467, 6.667]}), 'newmec-6']] host_names7 = {'192.168.122.102': 'newmec-2', '192.168.122.103': 'newmec-3', '192.168.122.104': 'newmec-4', '192.168.122.105': 'newmec-5', '192.168.122.106': 'newmec-6', '192.168.122.156': 'osboxes-0', '192.168.122.101': 'newmec-1'}
record4 = [[({'t4.103.114.0': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.0': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.0': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.0': [0.559, 10.0], 't3.103.114.0': [0.733, 5.0], 't5.103.114.0': [0.413, 5.0]}), 'newmec-3'], [({'t5.103.114.1': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.1': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.1': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.1': [0.438, 5.0], 't2.103.114.1': [0.452, 5.0], 't3.103.114.1': [0.698, 5.0]}), 'newmec-3'], [({'t5.103.114.2': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.2': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.2': [0.413, 5.0], 't2.103.114.2': [0.416, 5.0]}), 'newmec-3'], [({'t4.101.114.3': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.3': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.3': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.3': [0.446, 10.0], 't2.101.114.3': [0.628, 5.0], 't5.101.114.3': [0.564, 5.0]}), 'newmec-1'], [({'t2.102.114.4': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.4': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.4': [0.491, 5.0], 't5.102.114.4': [0.716, 5.0]}), 'newmec-2'], [({'t1.101.114.5': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.5': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.5': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.5': [0.72, 6.667], 't2.101.114.5': [0.648, 5.0], 't3.101.114.5': [0.591, 5.0]}), 'newmec-1'], [({'t3.102.114.6': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.6': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.6': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.6': [0.708, 5.0], 't5.102.114.6': [0.491, 5.0], 't2.102.114.6': [0.557, 5.0]}), 'newmec-2'], [({'t5.101.114.7': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.7': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.7': [0.799, 5.0], 't1.101.114.7': [0.621, 6.667]}), 'newmec-1'], [({'t3.101.114.8': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.8': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.8': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.8': [0.587, 5.0], 't2.101.114.8': [0.538, 5.0], 't4.101.114.8': [0.404, 10.0]}), 'newmec-1'], [({'t2.103.114.9': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.9': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.9': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.9': [0.413, 5.0], 't1.103.114.9': [0.585, 6.667], 't5.103.114.9': [0.797, 5.0]}), 'newmec-3'], [({'t1.102.114.10': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.10': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.10': [0.774, 6.667], 't3.102.114.10': [0.732, 5.0]}), 'newmec-2'], [({'t2.103.114.11': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.11': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.11': [0.644, 5.0], 't4.103.114.11': [0.742, 10.0]}), 'newmec-3'], [({'t2.101.114.12': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.12': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.12': [0.697, 5.0], 't5.101.114.12': [0.467, 5.0]}), 'newmec-1'], [({'t4.101.114.13': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.13': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.13': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.13': [0.743, 10.0], 't1.101.114.13': [0.471, 6.667], 't2.101.114.13': [0.609, 5.0]}), 'newmec-1'], [({'t5.101.114.14': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.14': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.14': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.14': [0.501, 5.0], 't4.101.114.14': [0.727, 10.0], 't2.101.114.14': [0.433, 5.0]}), 'newmec-1'], [({'t2.101.114.15': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.15': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.15': [0.665, 5.0], 't5.101.114.15': [0.552, 5.0]}), 'newmec-1'], [({'t2.101.114.16': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.16': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.16': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.16': [0.693, 5.0], 't3.101.114.16': [0.769, 5.0], 't5.101.114.16': [0.449, 5.0]}), 'newmec-1'], [({'t4.102.114.17': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.17': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.17': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.17': [0.741, 10.0], 't5.102.114.17': [0.701, 5.0], 't3.102.114.17': [0.662, 5.0]}), 'newmec-2'], [({'t2.103.114.18': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.18': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.18': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.18': [0.508, 5.0], 't5.103.114.18': [0.787, 5.0], 't3.103.114.18': [0.757, 5.0]}), 'newmec-3'], [({'t4.103.114.19': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.19': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.19': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.19': [0.769, 10.0], 't5.103.114.19': [0.535, 5.0], 't1.103.114.19': [0.556, 6.667]}), 'newmec-3'], [({'t5.101.114.20': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.20': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.20': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.20': [0.504, 5.0], 't3.101.114.20': [0.455, 5.0], 't1.101.114.20': [0.743, 6.667]}), 'newmec-1'], [({'t3.103.114.21': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.21': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.21': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.21': [0.654, 5.0], 't1.103.114.21': [0.523, 6.667], 't2.103.114.21': [0.768, 5.0]}), 'newmec-3'], [({'t1.101.114.22': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.22': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.22': [0.545, 6.667], 't5.101.114.22': [0.419, 5.0]}), 'newmec-1'], [({'t5.103.114.23': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.23': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.23': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.23': [0.699, 5.0], 't3.103.114.23': [0.614, 5.0], 't2.103.114.23': [0.778, 5.0]}), 'newmec-3'], [({'t2.103.114.24': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.24': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.24': [0.787, 5.0], 't1.103.114.24': [0.724, 6.667]}), 'newmec-3'], [({'t1.102.114.25': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.25': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.25': [0.784, 6.667], 't4.102.114.25': [0.467, 10.0]}), 'newmec-2'], [({'t1.101.114.26': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.26': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.26': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.26': [0.536, 6.667], 't2.101.114.26': [0.465, 5.0], 't5.101.114.26': [0.742, 5.0]}), 'newmec-1'], [({'t2.101.114.27': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.27': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.27': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.27': [0.55, 5.0], 't4.101.114.27': [0.486, 10.0], 't1.101.114.27': [0.798, 6.667]}), 'newmec-1'], [({'t2.103.114.28': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.28': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.28': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.28': [0.452, 5.0], 't4.103.114.28': [0.56, 10.0], 't1.103.114.28': [0.724, 6.667]}), 'newmec-3'], [({'t4.103.114.29': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.29': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.29': [0.669, 10.0], 't3.103.114.29': [0.708, 5.0]}), 'newmec-3'], [({'t3.103.114.30': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.30': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.30': [0.784, 5.0], 't5.103.114.30': [0.502, 5.0]}), 'newmec-3'], [({'t1.156.114.31': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.31': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.31': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.31': [0.537, 6.667], 't3.156.114.31': [0.545, 5.0], 't2.156.114.31': [0.61, 5.0]}), 'osboxes-0'], [({'t5.103.114.32': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.32': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.32': [0.644, 5.0], 't3.103.114.32': [0.73, 5.0]}), 'newmec-3'], [({'t1.156.114.33': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.33': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.33': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.33': [0.49, 6.667], 't3.156.114.33': [0.648, 5.0], 't2.156.114.33': [0.502, 5.0]}), 'osboxes-0'], [({'t1.103.114.34': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.34': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.34': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.34': [0.474, 6.667], 't4.103.114.34': [0.654, 10.0], 't2.103.114.34': [0.498, 5.0]}), 'newmec-3'], [({'t3.101.114.35': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.35': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.35': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.35': [0.416, 5.0], 't1.101.114.35': [0.674, 6.667], 't5.101.114.35': [0.583, 5.0]}), 'newmec-1'], [({'t3.103.114.36': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.36': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.36': [0.512, 5.0], 't2.103.114.36': [0.535, 5.0]}), 'newmec-3'], [({'t1.101.114.37': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.37': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.37': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.37': [0.789, 6.667], 't4.101.114.37': [0.477, 10.0], 't3.101.114.37': [0.742, 5.0]}), 'newmec-1'], [({'t2.156.114.38': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.38': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.38': [0.78, 5.0], 't5.156.114.38': [0.713, 5.0]}), 'osboxes-0'], [({'t3.103.114.39': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.39': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.39': [0.448, 5.0], 't5.103.114.39': [0.763, 5.0]}), 'newmec-3'], [({'t3.102.114.40': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.40': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.40': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.40': [0.584, 5.0], 't4.102.114.40': [0.415, 10.0], 't1.102.114.40': [0.458, 6.667]}), 'newmec-2'], [({'t2.101.114.41': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.41': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.41': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.41': [0.784, 5.0], 't1.101.114.41': [0.445, 6.667], 't3.101.114.41': [0.703, 5.0]}), 'newmec-1'], [({'t5.103.114.42': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.42': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.42': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.42': [0.555, 5.0], 't2.103.114.42': [0.488, 5.0], 't4.103.114.42': [0.539, 10.0]}), 'newmec-3'], [({'t4.102.114.43': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.43': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.43': [0.646, 10.0], 't2.102.114.43': [0.709, 5.0]}), 'newmec-2'], [({'t5.103.114.44': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.44': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.44': [0.435, 5.0], 't4.103.114.44': [0.542, 10.0]}), 'newmec-3'], [({'t4.102.114.45': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.45': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.45': [0.44, 10.0], 't1.102.114.45': [0.692, 6.667]}), 'newmec-2'], [({'t3.102.114.46': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.46': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.46': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.46': [0.692, 5.0], 't4.102.114.46': [0.596, 10.0], 't5.102.114.46': [0.624, 5.0]}), 'newmec-2'], [({'t2.101.114.47': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.47': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.47': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.47': [0.698, 5.0], 't1.101.114.47': [0.6, 6.667], 't5.101.114.47': [0.429, 5.0]}), 'newmec-1'], [({'t5.101.114.48': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.48': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.48': [0.505, 5.0], 't2.101.114.48': [0.482, 5.0]}), 'newmec-1'], [({'t2.103.114.49': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.49': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.49': [0.707, 5.0], 't1.103.114.49': [0.66, 6.667]}), 'newmec-3'], [({'t4.101.114.50': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.50': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.50': [0.683, 10.0], 't2.101.114.50': [0.479, 5.0]}), 'newmec-1'], [({'t3.103.114.51': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.51': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.51': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.51': [0.549, 5.0], 't4.103.114.51': [0.71, 10.0], 't1.103.114.51': [0.432, 6.667]}), 'newmec-3'], [({'t2.101.114.52': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.52': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.52': [0.786, 5.0], 't3.101.114.52': [0.773, 5.0]}), 'newmec-1'], [({'t1.103.114.53': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.53': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.53': [0.682, 6.667], 't4.103.114.53': [0.562, 10.0]}), 'newmec-3'], [({'t5.103.114.54': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.54': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.54': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.54': [0.675, 5.0], 't4.103.114.54': [0.528, 10.0], 't2.103.114.54': [0.426, 5.0]}), 'newmec-3'], [({'t5.103.114.55': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.55': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.55': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.55': [0.486, 5.0], 't2.103.114.55': [0.426, 5.0], 't3.103.114.55': [0.791, 5.0]}), 'newmec-3'], [({'t4.156.114.56': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.56': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.56': [0.601, 10.0], 't3.156.114.56': [0.429, 5.0]}), 'osboxes-0'], [({'t4.103.114.57': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.57': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.57': [0.473, 10.0], 't2.103.114.57': [0.489, 5.0]}), 'newmec-3'], [({'t5.101.114.58': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.58': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.58': [0.564, 5.0], 't2.101.114.58': [0.438, 5.0]}), 'newmec-1'], [({'t3.103.114.59': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.59': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.59': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.59': [0.449, 5.0], 't5.103.114.59': [0.609, 5.0], 't2.103.114.59': [0.473, 5.0]}), 'newmec-3'], [({'t5.102.114.60': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.60': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.60': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.60': [0.622, 5.0], 't3.102.114.60': [0.594, 5.0], 't2.102.114.60': [0.669, 5.0]}), 'newmec-2'], [({'t3.102.114.61': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.61': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.61': [0.685, 5.0], 't1.102.114.61': [0.465, 6.667]}), 'newmec-2'], [({'t1.101.114.62': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.62': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.62': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.62': [0.755, 6.667], 't4.101.114.62': [0.401, 10.0], 't2.101.114.62': [0.726, 5.0]}), 'newmec-1'], [({'t3.103.114.63': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.63': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.63': [0.594, 5.0], 't5.103.114.63': [0.582, 5.0]}), 'newmec-3'], [({'t2.101.114.64': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.64': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.64': [0.787, 5.0], 't5.101.114.64': [0.694, 5.0]}), 'newmec-1'], [({'t1.103.114.65': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.65': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.65': [0.567, 6.667], 't3.103.114.65': [0.582, 5.0]}), 'newmec-3'], [({'t2.156.114.66': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.66': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.66': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.66': [0.567, 5.0], 't3.156.114.66': [0.689, 5.0], 't4.156.114.66': [0.478, 10.0]}), 'osboxes-0'], [({'t2.103.114.67': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.67': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.67': [0.433, 5.0], 't1.103.114.67': [0.576, 6.667]}), 'newmec-3'], [({'t1.103.114.68': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.68': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.68': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.68': [0.443, 6.667], 't2.103.114.68': [0.586, 5.0], 't4.103.114.68': [0.739, 10.0]}), 'newmec-3'], [({'t4.101.114.69': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.69': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.69': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.69': [0.548, 10.0], 't3.101.114.69': [0.792, 5.0], 't5.101.114.69': [0.664, 5.0]}), 'newmec-1'], [({'t4.103.114.70': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.70': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.70': [0.537, 10.0], 't1.103.114.70': [0.764, 6.667]}), 'newmec-3'], [({'t2.103.114.71': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.71': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.71': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.71': [0.415, 5.0], 't3.103.114.71': [0.581, 5.0], 't4.103.114.71': [0.478, 10.0]}), 'newmec-3'], [({'t4.102.114.72': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.72': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.72': [0.452, 10.0], 't2.102.114.72': [0.594, 5.0]}), 'newmec-2'], [({'t3.101.114.73': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.73': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.73': [0.44, 5.0], 't5.101.114.73': [0.61, 5.0]}), 'newmec-1'], [({'t1.101.114.74': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.74': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.74': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.74': [0.7, 6.667], 't2.101.114.74': [0.641, 5.0], 't4.101.114.74': [0.75, 10.0]}), 'newmec-1'], [({'t3.103.114.75': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.75': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.75': [0.451, 5.0], 't5.103.114.75': [0.57, 5.0]}), 'newmec-3'], [({'t2.103.114.76': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.76': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.76': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.76': [0.56, 5.0], 't1.103.114.76': [0.692, 6.667], 't3.103.114.76': [0.76, 5.0]}), 'newmec-3'], [({'t5.103.114.77': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.77': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.77': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.77': [0.72, 5.0], 't4.103.114.77': [0.506, 10.0], 't1.103.114.77': [0.59, 6.667]}), 'newmec-3'], [({'t3.103.114.78': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.78': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.78': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.78': [0.625, 5.0], 't2.103.114.78': [0.511, 5.0], 't5.103.114.78': [0.672, 5.0]}), 'newmec-3'], [({'t3.101.114.79': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.79': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.79': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.79': [0.785, 5.0], 't1.101.114.79': [0.404, 6.667], 't5.101.114.79': [0.612, 5.0]}), 'newmec-1'], [({'t4.103.114.80': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.80': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.80': [0.752, 10.0], 't5.103.114.80': [0.689, 5.0]}), 'newmec-3'], [({'t3.103.114.81': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.81': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.81': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.81': [0.548, 5.0], 't1.103.114.81': [0.668, 6.667], 't2.103.114.81': [0.756, 5.0]}), 'newmec-3'], [({'t4.101.114.82': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.82': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.82': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.82': [0.413, 10.0], 't2.101.114.82': [0.452, 5.0], 't3.101.114.82': [0.461, 5.0]}), 'newmec-1'], [({'t1.156.114.83': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.83': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.83': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.83': [0.543, 6.667], 't4.156.114.83': [0.736, 10.0], 't2.156.114.83': [0.611, 5.0]}), 'osboxes-0'], [({'t5.101.114.84': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.84': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.84': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.84': [0.635, 5.0], 't1.101.114.84': [0.518, 6.667], 't4.101.114.84': [0.44, 10.0]}), 'newmec-1'], [({'t2.101.114.85': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.85': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.85': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.85': [0.444, 5.0], 't4.101.114.85': [0.684, 10.0], 't5.101.114.85': [0.498, 5.0]}), 'newmec-1'], [({'t5.102.114.86': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.86': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.86': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.86': [0.794, 5.0], 't4.102.114.86': [0.546, 10.0], 't2.102.114.86': [0.445, 5.0]}), 'newmec-2'], [({'t4.103.114.87': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.87': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.87': [0.481, 10.0], 't3.103.114.87': [0.46, 5.0]}), 'newmec-3'], [({'t2.101.114.88': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.88': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.88': [0.68, 5.0], 't4.101.114.88': [0.616, 10.0]}), 'newmec-1'], [({'t4.101.114.89': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.89': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.89': [0.781, 10.0], 't5.101.114.89': [0.782, 5.0]}), 'newmec-1'], [({'t3.103.114.90': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.90': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.90': [0.618, 5.0], 't2.103.114.90': [0.664, 5.0]}), 'newmec-3'], [({'t5.103.114.91': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.91': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.91': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.91': [0.758, 5.0], 't3.103.114.91': [0.747, 5.0], 't4.103.114.91': [0.409, 10.0]}), 'newmec-3'], [({'t5.101.114.92': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.92': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.92': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.92': [0.694, 5.0], 't3.101.114.92': [0.604, 5.0], 't1.101.114.92': [0.597, 6.667]}), 'newmec-1'], [({'t2.101.114.93': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.93': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.93': [0.439, 5.0], 't4.101.114.93': [0.424, 10.0]}), 'newmec-1'], [({'t3.101.114.94': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.94': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.94': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.94': [0.435, 5.0], 't2.101.114.94': [0.736, 5.0], 't4.101.114.94': [0.445, 10.0]}), 'newmec-1'], [({'t5.103.114.95': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.95': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.95': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.95': [0.512, 5.0], 't3.103.114.95': [0.78, 5.0], 't2.103.114.95': [0.715, 5.0]}), 'newmec-3'], [({'t2.156.114.96': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.96': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.96': [0.794, 5.0], 't1.156.114.96': [0.645, 6.667]}), 'osboxes-0'], [({'t4.102.114.97': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.97': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.97': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.97': [0.612, 10.0], 't2.102.114.97': [0.668, 5.0], 't5.102.114.97': [0.61, 5.0]}), 'newmec-2'], [({'t2.103.114.98': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.98': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.98': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.98': [0.784, 5.0], 't5.103.114.98': [0.655, 5.0], 't1.103.114.98': [0.465, 6.667]}), 'newmec-3'], [({'t1.101.114.99': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.99': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.99': [0.72, 6.667], 't4.101.114.99': [0.683, 10.0]}), 'newmec-1'], [({'t1.102.114.100': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.100': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.100': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.100': [0.632, 6.667], 't2.102.114.100': [0.732, 5.0], 't5.102.114.100': [0.797, 5.0]}), 'newmec-2'], [({'t5.103.114.101': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.101': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.101': [0.509, 5.0], 't4.103.114.101': [0.463, 10.0]}), 'newmec-3'], [({'t3.101.114.102': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.102': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.102': [0.632, 5.0], 't4.101.114.102': [0.627, 10.0]}), 'newmec-1'], [({'t1.156.114.103': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.103': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.103': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.103': [0.503, 6.667], 't3.156.114.103': [0.78, 5.0], 't5.156.114.103': [0.732, 5.0]}), 'osboxes-0'], [({'t2.103.114.104': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.104': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.104': [0.442, 5.0], 't1.103.114.104': [0.479, 6.667]}), 'newmec-3'], [({'t5.103.114.105': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.105': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.105': [0.746, 5.0], 't2.103.114.105': [0.762, 5.0]}), 'newmec-3'], [({'t3.101.114.106': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.106': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.106': [0.69, 5.0], 't4.101.114.106': [0.501, 10.0]}), 'newmec-1'], [({'t2.103.114.107': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.107': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.107': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.107': [0.601, 5.0], 't3.103.114.107': [0.629, 5.0], 't1.103.114.107': [0.531, 6.667]}), 'newmec-3'], [({'t5.103.114.108': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.108': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.108': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.108': [0.53, 5.0], 't1.103.114.108': [0.673, 6.667], 't4.103.114.108': [0.552, 10.0]}), 'newmec-3'], [({'t3.101.114.109': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.109': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.109': [0.61, 5.0], 't2.101.114.109': [0.77, 5.0]}), 'newmec-1'], [({'t4.101.114.110': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.110': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.110': [0.602, 10.0], 't5.101.114.110': [0.798, 5.0]}), 'newmec-1'], [({'t5.103.114.111': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.111': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.111': [0.596, 5.0], 't1.103.114.111': [0.42, 6.667]}), 'newmec-3'], [({'t5.103.114.112': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.112': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.112': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.112': [0.708, 5.0], 't3.103.114.112': [0.516, 5.0], 't2.103.114.112': [0.541, 5.0]}), 'newmec-3'], [({'t4.101.114.113': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.113': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.113': [0.654, 10.0], 't3.101.114.113': [0.609, 5.0]}), 'newmec-1'], [({'t5.103.114.114': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.114': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.114': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.114': [0.699, 5.0], 't4.103.114.114': [0.476, 10.0], 't1.103.114.114': [0.502, 6.667]}), 'newmec-3'], [({'t5.103.114.115': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.115': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.115': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.115': [0.571, 5.0], 't1.103.114.115': [0.727, 6.667], 't3.103.114.115': [0.524, 5.0]}), 'newmec-3'], [({'t2.102.114.116': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.116': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.116': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.116': [0.566, 5.0], 't5.102.114.116': [0.63, 5.0], 't4.102.114.116': [0.539, 10.0]}), 'newmec-2'], [({'t3.103.114.117': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.117': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.117': [0.718, 5.0], 't5.103.114.117': [0.571, 5.0]}), 'newmec-3'], [({'t2.102.114.118': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.118': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.118': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.118': [0.703, 5.0], 't3.102.114.118': [0.495, 5.0], 't1.102.114.118': [0.79, 6.667]}), 'newmec-2'], [({'t5.101.114.119': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.119': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.119': [0.615, 5.0], 't2.101.114.119': [0.78, 5.0]}), 'newmec-1'], [({'t5.102.114.120': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.120': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.120': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.120': [0.561, 5.0], 't4.102.114.120': [0.52, 10.0], 't1.102.114.120': [0.53, 6.667]}), 'newmec-2'], [({'t4.103.114.121': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.121': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.121': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.121': [0.595, 10.0], 't2.103.114.121': [0.568, 5.0], 't3.103.114.121': [0.412, 5.0]}), 'newmec-3'], [({'t3.102.114.122': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.122': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.122': [0.652, 5.0], 't1.102.114.122': [0.712, 6.667]}), 'newmec-2'], [({'t4.156.114.123': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.123': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.123': [0.474, 10.0], 't1.156.114.123': [0.734, 6.667]}), 'osboxes-0'], [({'t4.101.114.124': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.124': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.124': [0.666, 10.0], 't5.101.114.124': [0.472, 5.0]}), 'newmec-1'], [({'t1.101.114.125': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.125': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.125': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.125': [0.787, 6.667], 't4.101.114.125': [0.433, 10.0], 't3.101.114.125': [0.566, 5.0]}), 'newmec-1'], [({'t5.102.114.126': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.126': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.126': [0.526, 5.0], 't4.102.114.126': [0.8, 10.0]}), 'newmec-2'], [({'t3.156.114.127': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.127': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.127': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.156.114.127': [0.651, 5.0], 't5.156.114.127': [0.771, 5.0], 't2.156.114.127': [0.719, 5.0]}), 'osboxes-0'], [({'t4.102.114.128': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.128': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.128': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.128': [0.471, 10.0], 't1.102.114.128': [0.763, 6.667], 't5.102.114.128': [0.592, 5.0]}), 'newmec-2'], [({'t3.103.114.129': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.129': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.129': [0.657, 5.0], 't1.103.114.129': [0.643, 6.667]}), 'newmec-3'], [({'t2.101.114.130': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.130': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.130': [0.605, 5.0], 't1.101.114.130': [0.424, 6.667]}), 'newmec-1'], [({'t4.103.114.131': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.131': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.131': [0.511, 10.0], 't3.103.114.131': [0.675, 5.0]}), 'newmec-3'], [({'t2.101.114.132': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.132': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.132': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.132': [0.615, 5.0], 't4.101.114.132': [0.739, 10.0], 't5.101.114.132': [0.507, 5.0]}), 'newmec-1'], [({'t1.102.114.133': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.133': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.133': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.133': [0.53, 6.667], 't3.102.114.133': [0.788, 5.0], 't2.102.114.133': [0.611, 5.0]}), 'newmec-2'], [({'t3.103.114.134': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.134': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.134': [0.425, 5.0], 't5.103.114.134': [0.709, 5.0]}), 'newmec-3'], [({'t3.101.114.135': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.135': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.135': [0.685, 5.0], 't5.101.114.135': [0.403, 5.0]}), 'newmec-1'], [({'t4.101.114.136': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.136': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.136': [0.775, 10.0], 't5.101.114.136': [0.538, 5.0]}), 'newmec-1'], [({'t1.103.114.137': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.137': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.137': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.137': [0.707, 6.667], 't5.103.114.137': [0.729, 5.0], 't4.103.114.137': [0.475, 10.0]}), 'newmec-3'], [({'t4.103.114.138': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.138': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.138': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.138': [0.552, 10.0], 't5.103.114.138': [0.723, 5.0], 't2.103.114.138': [0.655, 5.0]}), 'newmec-3'], [({'t1.102.114.139': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.139': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.139': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.139': [0.733, 6.667], 't3.102.114.139': [0.566, 5.0], 't2.102.114.139': [0.597, 5.0]}), 'newmec-2'], [({'t4.103.114.140': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.140': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.140': [0.405, 10.0], 't3.103.114.140': [0.709, 5.0]}), 'newmec-3'], [({'t3.101.114.141': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.141': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.141': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.141': [0.616, 5.0], 't2.101.114.141': [0.781, 5.0], 't4.101.114.141': [0.417, 10.0]}), 'newmec-1'], [({'t5.156.114.142': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.142': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.142': [0.747, 5.0], 't3.156.114.142': [0.423, 5.0]}), 'osboxes-0'], [({'t4.102.114.143': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.143': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.143': [0.494, 10.0], 't3.102.114.143': [0.479, 5.0]}), 'newmec-2'], [({'t5.103.114.144': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.144': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.144': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.144': [0.666, 5.0], 't4.103.114.144': [0.542, 10.0], 't3.103.114.144': [0.743, 5.0]}), 'newmec-3'], [({'t2.101.114.145': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.145': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.145': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.145': [0.699, 5.0], 't4.101.114.145': [0.642, 10.0], 't5.101.114.145': [0.475, 5.0]}), 'newmec-1'], [({'t4.101.114.146': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.146': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.146': [0.464, 10.0], 't2.101.114.146': [0.731, 5.0]}), 'newmec-1'], [({'t5.103.114.147': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.147': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.147': [0.562, 5.0], 't2.103.114.147': [0.64, 5.0]}), 'newmec-3'], [({'t3.103.114.148': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.148': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.148': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.148': [0.573, 5.0], 't4.103.114.148': [0.702, 10.0], 't5.103.114.148': [0.563, 5.0]}), 'newmec-3'], [({'t5.103.114.149': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.149': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.149': [0.716, 5.0], 't4.103.114.149': [0.775, 10.0]}), 'newmec-3'], [({'t2.101.114.150': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.150': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.150': [0.74, 5.0], 't3.101.114.150': [0.798, 5.0]}), 'newmec-1'], [({'t4.101.114.151': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.151': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.151': [0.49, 10.0], 't2.101.114.151': [0.679, 5.0]}), 'newmec-1'], [({'t5.101.114.152': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.152': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.152': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.152': [0.687, 5.0], 't3.101.114.152': [0.772, 5.0], 't4.101.114.152': [0.719, 10.0]}), 'newmec-1'], [({'t4.103.114.153': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.153': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.153': [0.443, 10.0], 't2.103.114.153': [0.788, 5.0]}), 'newmec-3'], [({'t4.103.114.154': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.154': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.154': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.154': [0.764, 10.0], 't2.103.114.154': [0.585, 5.0], 't1.103.114.154': [0.788, 6.667]}), 'newmec-3'], [({'t3.101.114.155': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.155': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.155': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.155': [0.46, 5.0], 't5.101.114.155': [0.524, 5.0], 't4.101.114.155': [0.756, 10.0]}), 'newmec-1'], [({'t5.101.114.156': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.156': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.156': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.156': [0.724, 5.0], 't4.101.114.156': [0.457, 10.0], 't2.101.114.156': [0.619, 5.0]}), 'newmec-1'], [({'t3.103.114.157': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.157': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.157': [0.485, 5.0], 't5.103.114.157': [0.712, 5.0]}), 'newmec-3'], [({'t2.103.114.158': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.158': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.158': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.158': [0.797, 5.0], 't3.103.114.158': [0.497, 5.0], 't4.103.114.158': [0.462, 10.0]}), 'newmec-3'], [({'t4.156.114.159': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.159': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.159': [0.676, 10.0], 't1.156.114.159': [0.793, 6.667]}), 'osboxes-0'], [({'t3.103.114.160': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.160': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.160': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.160': [0.606, 5.0], 't4.103.114.160': [0.589, 10.0], 't5.103.114.160': [0.674, 5.0]}), 'newmec-3'], [({'t2.103.114.161': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.161': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.161': [0.624, 5.0], 't4.103.114.161': [0.745, 10.0]}), 'newmec-3'], [({'t3.101.114.162': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.162': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.162': [0.419, 5.0], 't2.101.114.162': [0.527, 5.0]}), 'newmec-1'], [({'t4.101.114.163': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.163': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.163': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.163': [0.419, 10.0], 't2.101.114.163': [0.692, 5.0], 't1.101.114.163': [0.564, 6.667]}), 'newmec-1'], [({'t4.156.114.164': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.164': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.164': [0.456, 10.0], 't1.156.114.164': [0.434, 6.667]}), 'osboxes-0'], [({'t5.101.114.165': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.165': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.165': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.165': [0.553, 5.0], 't3.101.114.165': [0.674, 5.0], 't1.101.114.165': [0.604, 6.667]}), 'newmec-1'], [({'t2.103.114.166': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.166': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.166': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.166': [0.447, 5.0], 't4.103.114.166': [0.48, 10.0], 't5.103.114.166': [0.556, 5.0]}), 'newmec-3'], [({'t2.101.114.167': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.167': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.167': [0.459, 5.0], 't4.101.114.167': [0.664, 10.0]}), 'newmec-1'], [({'t5.101.114.168': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.168': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.168': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.168': [0.586, 5.0], 't4.101.114.168': [0.565, 10.0], 't3.101.114.168': [0.691, 5.0]}), 'newmec-1'], [({'t3.101.114.169': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.169': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.169': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.169': [0.602, 5.0], 't2.101.114.169': [0.707, 5.0], 't4.101.114.169': [0.467, 10.0]}), 'newmec-1'], [({'t2.103.114.170': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.170': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.170': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.170': [0.557, 5.0], 't4.103.114.170': [0.697, 10.0], 't5.103.114.170': [0.698, 5.0]}), 'newmec-3'], [({'t4.101.114.171': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.171': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.171': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.171': [0.733, 10.0], 't1.101.114.171': [0.758, 6.667], 't2.101.114.171': [0.565, 5.0]}), 'newmec-1'], [({'t2.156.114.172': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.172': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.172': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.172': [0.492, 5.0], 't4.156.114.172': [0.767, 10.0], 't5.156.114.172': [0.619, 5.0]}), 'osboxes-0'], [({'t2.103.114.173': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.173': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.173': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.173': [0.529, 5.0], 't4.103.114.173': [0.557, 10.0], 't5.103.114.173': [0.651, 5.0]}), 'newmec-3'], [({'t5.101.114.174': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.174': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.174': [0.625, 5.0], 't2.101.114.174': [0.452, 5.0]}), 'newmec-1'], [({'t2.103.114.175': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.175': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.175': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.175': [0.547, 5.0], 't3.103.114.175': [0.448, 5.0], 't4.103.114.175': [0.76, 10.0]}), 'newmec-3'], [({'t1.101.114.176': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.176': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.176': [0.783, 6.667], 't2.101.114.176': [0.734, 5.0]}), 'newmec-1'], [({'t4.103.114.177': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.177': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.177': [0.441, 10.0], 't1.103.114.177': [0.614, 6.667]}), 'newmec-3'], [({'t4.156.114.178': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.178': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.178': [0.79, 10.0], 't5.156.114.178': [0.562, 5.0]}), 'osboxes-0'], [({'t1.103.114.179': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.179': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.179': [0.751, 6.667], 't2.103.114.179': [0.429, 5.0]}), 'newmec-3'], [({'t4.156.114.180': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.180': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.180': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.180': [0.563, 10.0], 't2.156.114.180': [0.776, 5.0], 't3.156.114.180': [0.541, 5.0]}), 'osboxes-0'], [({'t2.101.114.181': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.181': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.181': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.181': [0.413, 5.0], 't3.101.114.181': [0.506, 5.0], 't1.101.114.181': [0.792, 6.667]}), 'newmec-1'], [({'t2.101.114.182': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.182': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.182': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.182': [0.504, 5.0], 't5.101.114.182': [0.532, 5.0], 't4.101.114.182': [0.481, 10.0]}), 'newmec-1'], [({'t5.101.114.183': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.183': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.183': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.183': [0.684, 5.0], 't4.101.114.183': [0.776, 10.0], 't1.101.114.183': [0.518, 6.667]}), 'newmec-1'], [({'t2.102.114.184': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.184': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.184': [0.571, 5.0], 't1.102.114.184': [0.659, 6.667]}), 'newmec-2'], [({'t5.103.114.185': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.185': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.185': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.185': [0.416, 5.0], 't4.103.114.185': [0.799, 10.0], 't3.103.114.185': [0.626, 5.0]}), 'newmec-3'], [({'t2.103.114.186': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.186': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.186': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.186': [0.564, 5.0], 't4.103.114.186': [0.565, 10.0], 't5.103.114.186': [0.643, 5.0]}), 'newmec-3'], [({'t2.102.114.187': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.187': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.187': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.187': [0.701, 5.0], 't5.102.114.187': [0.73, 5.0], 't4.102.114.187': [0.668, 10.0]}), 'newmec-2'], [({'t2.103.114.188': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.188': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.188': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.188': [0.795, 5.0], 't1.103.114.188': [0.666, 6.667], 't3.103.114.188': [0.516, 5.0]}), 'newmec-3'], [({'t2.103.114.189': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.189': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.189': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.189': [0.41, 5.0], 't1.103.114.189': [0.779, 6.667], 't5.103.114.189': [0.767, 5.0]}), 'newmec-3'], [({'t1.101.114.190': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.190': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.190': [0.412, 6.667], 't5.101.114.190': [0.574, 5.0]}), 'newmec-1'], [({'t1.103.114.191': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.191': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.191': [0.453, 6.667], 't4.103.114.191': [0.639, 10.0]}), 'newmec-3'], [({'t5.101.114.192': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.192': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.192': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.192': [0.428, 5.0], 't1.101.114.192': [0.518, 6.667], 't2.101.114.192': [0.766, 5.0]}), 'newmec-1'], [({'t3.101.114.193': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.193': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.193': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.193': [0.609, 5.0], 't5.101.114.193': [0.48, 5.0], 't1.101.114.193': [0.6, 6.667]}), 'newmec-1'], [({'t5.103.114.194': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.194': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.194': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.194': [0.675, 5.0], 't2.103.114.194': [0.779, 5.0], 't1.103.114.194': [0.564, 6.667]}), 'newmec-3'], [({'t5.101.114.195': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.195': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.195': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.195': [0.6, 5.0], 't1.101.114.195': [0.65, 6.667], 't4.101.114.195': [0.551, 10.0]}), 'newmec-1'], [({'t2.101.114.196': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.196': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.196': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.196': [0.516, 5.0], 't1.101.114.196': [0.512, 6.667], 't4.101.114.196': [0.506, 10.0]}), 'newmec-1'], [({'t3.103.114.197': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.197': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.197': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.197': [0.609, 5.0], 't2.103.114.197': [0.412, 5.0], 't5.103.114.197': [0.574, 5.0]}), 'newmec-3'], [({'t5.103.114.198': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.198': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.198': [0.603, 5.0], 't2.103.114.198': [0.756, 5.0]}), 'newmec-3'], [({'t5.101.114.199': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.199': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.199': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.199': [0.648, 5.0], 't4.101.114.199': [0.47, 10.0], 't2.101.114.199': [0.507, 5.0]}), 'newmec-1'], [({'t2.102.114.200': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.200': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.200': [0.574, 5.0], 't1.102.114.200': [0.455, 6.667]}), 'newmec-2'], [({'t1.103.114.201': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.201': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.201': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.201': [0.62, 6.667], 't4.103.114.201': [0.437, 10.0], 't5.103.114.201': [0.742, 5.0]}), 'newmec-3'], [({'t4.101.114.202': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.202': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.202': [0.608, 10.0], 't3.101.114.202': [0.529, 5.0]}), 'newmec-1'], [({'t3.156.114.203': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.203': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.203': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.203': [0.611, 5.0], 't1.156.114.203': [0.542, 6.667], 't4.156.114.203': [0.713, 10.0]}), 'osboxes-0'], [({'t1.103.114.204': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.204': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.204': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.204': [0.41, 6.667], 't5.103.114.204': [0.731, 5.0], 't2.103.114.204': [0.656, 5.0]}), 'newmec-3'], [({'t2.101.114.205': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.205': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.205': [0.522, 5.0], 't1.101.114.205': [0.676, 6.667]}), 'newmec-1'], [({'t3.101.114.206': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.206': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.206': [0.709, 5.0], 't4.101.114.206': [0.675, 10.0]}), 'newmec-1'], [({'t2.103.114.207': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.207': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.207': [0.476, 5.0], 't5.103.114.207': [0.796, 5.0]}), 'newmec-3'], [({'t2.156.114.208': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.208': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.208': [0.658, 5.0], 't3.156.114.208': [0.462, 5.0]}), 'osboxes-0'], [({'t1.101.114.209': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.209': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.209': [0.766, 6.667], 't4.101.114.209': [0.686, 10.0]}), 'newmec-1'], [({'t2.103.114.210': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.210': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.210': [0.501, 5.0], 't5.103.114.210': [0.656, 5.0]}), 'newmec-3'], [({'t3.103.114.211': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.211': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.211': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.211': [0.749, 5.0], 't4.103.114.211': [0.742, 10.0], 't1.103.114.211': [0.713, 6.667]}), 'newmec-3'], [({'t5.102.114.212': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.212': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.212': [0.695, 5.0], 't2.102.114.212': [0.594, 5.0]}), 'newmec-2'], [({'t3.101.114.213': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.213': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.213': [0.711, 5.0], 't1.101.114.213': [0.59, 6.667]}), 'newmec-1'], [({'t1.103.114.214': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.214': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.214': [0.663, 6.667], 't2.103.114.214': [0.68, 5.0]}), 'newmec-3'], [({'t3.156.114.215': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.215': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.215': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.215': [0.618, 5.0], 't5.156.114.215': [0.581, 5.0], 't4.156.114.215': [0.742, 10.0]}), 'osboxes-0'], [({'t2.102.114.216': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.216': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.216': [0.646, 5.0], 't5.102.114.216': [0.489, 5.0]}), 'newmec-2'], [({'t2.102.114.217': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.217': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.217': [0.42, 5.0], 't3.102.114.217': [0.561, 5.0]}), 'newmec-2'], [({'t2.156.114.218': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.218': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.218': [0.666, 5.0], 't1.156.114.218': [0.467, 6.667]}), 'osboxes-0'], [({'t5.103.114.219': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.219': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.219': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.219': [0.53, 5.0], 't1.103.114.219': [0.747, 6.667], 't4.103.114.219': [0.648, 10.0]}), 'newmec-3'], [({'t5.103.114.220': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.220': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.220': [0.69, 5.0], 't3.103.114.220': [0.643, 5.0]}), 'newmec-3'], [({'t5.101.114.221': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.221': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.221': [0.436, 5.0], 't3.101.114.221': [0.667, 5.0]}), 'newmec-1'], [({'t4.101.114.222': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.222': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.222': [0.471, 10.0], 't2.101.114.222': [0.467, 5.0]}), 'newmec-1'], [({'t2.103.114.223': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.223': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.223': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.223': [0.774, 5.0], 't3.103.114.223': [0.432, 5.0], 't1.103.114.223': [0.701, 6.667]}), 'newmec-3'], [({'t4.103.114.224': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.224': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.224': [0.49, 10.0], 't2.103.114.224': [0.459, 5.0]}), 'newmec-3'], [({'t5.103.114.225': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.225': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.225': [0.475, 5.0], 't3.103.114.225': [0.685, 5.0]}), 'newmec-3'], [({'t2.103.114.226': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.226': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.226': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.226': [0.53, 5.0], 't3.103.114.226': [0.545, 5.0], 't5.103.114.226': [0.623, 5.0]}), 'newmec-3'], [({'t5.101.114.227': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.227': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.227': [0.78, 5.0], 't2.101.114.227': [0.596, 5.0]}), 'newmec-1'], [({'t4.101.114.228': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.228': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.228': [0.685, 10.0], 't2.101.114.228': [0.723, 5.0]}), 'newmec-1'], [({'t3.103.114.229': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.229': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.229': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.229': [0.458, 5.0], 't4.103.114.229': [0.615, 10.0], 't5.103.114.229': [0.421, 5.0]}), 'newmec-3'], [({'t3.101.114.230': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.230': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.230': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.230': [0.719, 5.0], 't2.101.114.230': [0.664, 5.0], 't4.101.114.230': [0.585, 10.0]}), 'newmec-1'], [({'t1.103.114.231': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.231': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.231': [0.752, 6.667], 't4.103.114.231': [0.752, 10.0]}), 'newmec-3'], [({'t5.156.114.232': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.232': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.156.114.232': [0.44, 5.0], 't1.156.114.232': [0.596, 6.667]}), 'osboxes-0'], [({'t4.103.114.233': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.233': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.233': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.233': [0.505, 10.0], 't3.103.114.233': [0.495, 5.0], 't2.103.114.233': [0.453, 5.0]}), 'newmec-3'], [({'t5.101.114.234': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.234': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.234': [0.774, 5.0], 't1.101.114.234': [0.766, 6.667]}), 'newmec-1'], [({'t5.103.114.235': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.235': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.235': [0.476, 5.0], 't2.103.114.235': [0.664, 5.0]}), 'newmec-3'], [({'t2.101.114.236': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.236': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.236': [0.456, 5.0], 't5.101.114.236': [0.559, 5.0]}), 'newmec-1'], [({'t4.103.114.237': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.237': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.237': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.237': [0.65, 10.0], 't2.103.114.237': [0.637, 5.0], 't3.103.114.237': [0.507, 5.0]}), 'newmec-3'], [({'t5.103.114.238': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.238': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.238': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.238': [0.673, 5.0], 't2.103.114.238': [0.742, 5.0], 't1.103.114.238': [0.642, 6.667]}), 'newmec-3'], [({'t3.103.114.239': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.239': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.239': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.239': [0.756, 5.0], 't2.103.114.239': [0.509, 5.0], 't1.103.114.239': [0.6, 6.667]}), 'newmec-3'], [({'t5.102.114.240': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.240': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.240': [0.561, 5.0], 't1.102.114.240': [0.601, 6.667]}), 'newmec-2'], [({'t2.103.114.241': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.241': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.241': [0.564, 5.0], 't5.103.114.241': [0.542, 5.0]}), 'newmec-3'], [({'t4.101.114.242': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.242': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.242': [0.733, 10.0], 't1.101.114.242': [0.587, 6.667]}), 'newmec-1'], [({'t5.156.114.243': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.243': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.243': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.243': [0.459, 5.0], 't4.156.114.243': [0.621, 10.0], 't2.156.114.243': [0.635, 5.0]}), 'osboxes-0'], [({'t1.101.114.244': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.244': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.244': [0.679, 6.667], 't2.101.114.244': [0.78, 5.0]}), 'newmec-1'], [({'t4.156.114.245': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.245': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.245': [0.786, 10.0], 't2.156.114.245': [0.755, 5.0]}), 'osboxes-0'], [({'t3.103.114.246': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.246': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.246': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.246': [0.735, 5.0], 't2.103.114.246': [0.662, 5.0], 't4.103.114.246': [0.569, 10.0]}), 'newmec-3'], [({'t5.102.114.247': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.247': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.247': [0.7, 5.0], 't4.102.114.247': [0.544, 10.0]}), 'newmec-2'], [({'t4.102.114.248': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.248': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.248': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.248': [0.473, 10.0], 't5.102.114.248': [0.609, 5.0], 't3.102.114.248': [0.539, 5.0]}), 'newmec-2'], [({'t2.103.114.249': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.249': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.249': [0.578, 5.0], 't3.103.114.249': [0.742, 5.0]}), 'newmec-3'], [({'t2.103.114.250': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.250': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.250': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.250': [0.473, 5.0], 't3.103.114.250': [0.436, 5.0], 't4.103.114.250': [0.524, 10.0]}), 'newmec-3'], [({'t1.103.114.251': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.251': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.251': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.251': [0.494, 6.667], 't2.103.114.251': [0.581, 5.0], 't5.103.114.251': [0.784, 5.0]}), 'newmec-3'], [({'t2.101.114.252': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.252': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.252': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.252': [0.746, 5.0], 't3.101.114.252': [0.457, 5.0], 't1.101.114.252': [0.62, 6.667]}), 'newmec-1'], [({'t2.103.114.253': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.253': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.253': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.253': [0.621, 5.0], 't5.103.114.253': [0.623, 5.0], 't3.103.114.253': [0.483, 5.0]}), 'newmec-3'], [({'t1.103.114.254': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.254': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.254': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.254': [0.623, 6.667], 't5.103.114.254': [0.664, 5.0], 't2.103.114.254': [0.463, 5.0]}), 'newmec-3'], [({'t2.103.114.255': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.255': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.255': [0.656, 5.0], 't5.103.114.255': [0.706, 5.0]}), 'newmec-3'], [({'t2.103.114.256': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.256': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.256': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.256': [0.684, 5.0], 't1.103.114.256': [0.421, 6.667], 't5.103.114.256': [0.767, 5.0]}), 'newmec-3'], [({'t4.103.114.257': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.257': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.257': [0.412, 10.0], 't2.103.114.257': [0.766, 5.0]}), 'newmec-3'], [({'t3.101.114.258': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.258': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.258': [0.764, 5.0], 't1.101.114.258': [0.68, 6.667]}), 'newmec-1'], [({'t4.156.114.259': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.259': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.259': [0.53, 10.0], 't1.156.114.259': [0.683, 6.667]}), 'osboxes-0'], [({'t2.156.114.260': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.260': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.260': [0.752, 5.0], 't3.156.114.260': [0.475, 5.0]}), 'osboxes-0'], [({'t4.156.114.261': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.261': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.261': [0.489, 10.0], 't2.156.114.261': [0.771, 5.0]}), 'osboxes-0'], [({'t3.103.114.262': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.262': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.262': [0.542, 5.0], 't2.103.114.262': [0.412, 5.0]}), 'newmec-3'], [({'t4.103.114.263': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.263': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.263': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.263': [0.512, 10.0], 't1.103.114.263': [0.683, 6.667], 't2.103.114.263': [0.631, 5.0]}), 'newmec-3'], [({'t3.101.114.264': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.264': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.264': [0.407, 5.0], 't5.101.114.264': [0.599, 5.0]}), 'newmec-1'], [({'t3.101.114.265': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.265': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.265': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.265': [0.652, 5.0], 't5.101.114.265': [0.408, 5.0], 't4.101.114.265': [0.434, 10.0]}), 'newmec-1'], [({'t4.156.114.266': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.266': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.266': [0.472, 10.0], 't1.156.114.266': [0.527, 6.667]}), 'osboxes-0'], [({'t5.156.114.267': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.267': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.267': [0.729, 5.0], 't4.156.114.267': [0.579, 10.0]}), 'osboxes-0'], [({'t5.101.114.268': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.268': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.268': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.268': [0.746, 5.0], 't4.101.114.268': [0.539, 10.0], 't3.101.114.268': [0.622, 5.0]}), 'newmec-1'], [({'t4.103.114.269': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.269': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.269': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.269': [0.781, 10.0], 't2.103.114.269': [0.763, 5.0], 't1.103.114.269': [0.577, 6.667]}), 'newmec-3'], [({'t2.103.114.270': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.270': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.270': [0.473, 5.0], 't3.103.114.270': [0.466, 5.0]}), 'newmec-3'], [({'t5.103.114.271': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.271': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.271': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.271': [0.635, 5.0], 't3.103.114.271': [0.485, 5.0], 't2.103.114.271': [0.694, 5.0]}), 'newmec-3'], [({'t3.101.114.272': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.272': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.272': [0.514, 5.0], 't4.101.114.272': [0.657, 10.0]}), 'newmec-1'], [({'t5.101.114.273': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.273': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.273': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.273': [0.602, 5.0], 't2.101.114.273': [0.485, 5.0], 't4.101.114.273': [0.668, 10.0]}), 'newmec-1'], [({'t3.103.114.274': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.274': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.274': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.274': [0.716, 5.0], 't4.103.114.274': [0.614, 10.0], 't2.103.114.274': [0.51, 5.0]}), 'newmec-3'], [({'t4.101.114.275': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.275': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.275': [0.676, 10.0], 't3.101.114.275': [0.46, 5.0]}), 'newmec-1'], [({'t4.101.114.276': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.276': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.276': [0.618, 10.0], 't5.101.114.276': [0.656, 5.0]}), 'newmec-1'], [({'t3.101.114.277': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.277': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.277': [0.432, 5.0], 't4.101.114.277': [0.695, 10.0]}), 'newmec-1'], [({'t3.156.114.278': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.278': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.278': [0.54, 5.0], 't4.156.114.278': [0.701, 10.0]}), 'osboxes-0'], [({'t2.101.114.279': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.279': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.279': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.279': [0.633, 5.0], 't4.101.114.279': [0.571, 10.0], 't3.101.114.279': [0.489, 5.0]}), 'newmec-1'], [({'t2.101.114.280': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.280': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.280': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.280': [0.524, 5.0], 't5.101.114.280': [0.495, 5.0], 't1.101.114.280': [0.742, 6.667]}), 'newmec-1'], [({'t4.101.114.281': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.281': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.281': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.281': [0.769, 10.0], 't2.101.114.281': [0.588, 5.0], 't5.101.114.281': [0.627, 5.0]}), 'newmec-1'], [({'t4.101.114.282': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.282': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.282': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.282': [0.53, 10.0], 't3.101.114.282': [0.466, 5.0], 't1.101.114.282': [0.657, 6.667]}), 'newmec-1'], [({'t3.101.114.283': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.283': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.283': [0.526, 5.0], 't1.101.114.283': [0.454, 6.667]}), 'newmec-1'], [({'t2.102.114.284': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.284': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.284': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.284': [0.556, 5.0], 't4.102.114.284': [0.639, 10.0], 't3.102.114.284': [0.627, 5.0]}), 'newmec-2'], [({'t5.102.114.285': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.285': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.285': [0.452, 5.0], 't2.102.114.285': [0.776, 5.0]}), 'newmec-2'], [({'t3.102.114.286': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.286': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.286': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.286': [0.662, 5.0], 't1.102.114.286': [0.545, 6.667], 't2.102.114.286': [0.436, 5.0]}), 'newmec-2'], [({'t4.101.114.287': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.287': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.287': [0.764, 10.0], 't3.101.114.287': [0.47, 5.0]}), 'newmec-1'], [({'t1.102.114.288': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.288': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.288': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.288': [0.439, 6.667], 't3.102.114.288': [0.644, 5.0], 't5.102.114.288': [0.689, 5.0]}), 'newmec-2'], [({'t3.101.114.289': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.289': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.289': [0.474, 5.0], 't2.101.114.289': [0.715, 5.0]}), 'newmec-1'], [({'t3.103.114.290': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.290': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.290': [0.612, 5.0], 't4.103.114.290': [0.5, 10.0]}), 'newmec-3'], [({'t1.103.114.291': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.291': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.291': [0.779, 6.667], 't2.103.114.291': [0.468, 5.0]}), 'newmec-3'], [({'t4.101.114.292': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.292': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.292': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.292': [0.637, 10.0], 't2.101.114.292': [0.676, 5.0], 't5.101.114.292': [0.594, 5.0]}), 'newmec-1'], [({'t2.101.114.293': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.293': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.293': [0.657, 5.0], 't4.101.114.293': [0.479, 10.0]}), 'newmec-1'], [({'t2.103.114.294': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.294': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.294': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.294': [0.537, 5.0], 't5.103.114.294': [0.429, 5.0], 't4.103.114.294': [0.69, 10.0]}), 'newmec-3'], [({'t4.103.114.295': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.295': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.295': [0.607, 10.0], 't2.103.114.295': [0.664, 5.0]}), 'newmec-3'], [({'t4.101.114.296': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.296': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.296': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.296': [0.469, 10.0], 't5.101.114.296': [0.62, 5.0], 't1.101.114.296': [0.524, 6.667]}), 'newmec-1'], [({'t3.101.114.297': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.297': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.297': [0.435, 5.0], 't1.101.114.297': [0.529, 6.667]}), 'newmec-1'], [({'t4.102.114.298': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.298': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.298': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.298': [0.643, 10.0], 't2.102.114.298': [0.662, 5.0], 't1.102.114.298': [0.432, 6.667]}), 'newmec-2'], [({'t5.103.114.299': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.299': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.299': [0.591, 5.0], 't4.103.114.299': [0.59, 10.0]}), 'newmec-3'], [({'t3.101.114.300': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.300': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.300': [0.426, 5.0], 't1.101.114.300': [0.623, 6.667]}), 'newmec-1'], [({'t5.101.114.301': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.301': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.301': [0.542, 5.0], 't4.101.114.301': [0.442, 10.0]}), 'newmec-1'], [({'t3.101.114.302': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.302': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.302': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.302': [0.744, 5.0], 't4.101.114.302': [0.497, 10.0], 't5.101.114.302': [0.668, 5.0]}), 'newmec-1'], [({'t1.103.114.303': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.303': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.303': [0.438, 6.667], 't2.103.114.303': [0.468, 5.0]}), 'newmec-3'], [({'t2.101.114.304': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.304': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.304': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.304': [0.491, 5.0], 't3.101.114.304': [0.513, 5.0], 't4.101.114.304': [0.693, 10.0]}), 'newmec-1'], [({'t4.101.114.305': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.305': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.305': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.305': [0.454, 10.0], 't3.101.114.305': [0.745, 5.0], 't2.101.114.305': [0.415, 5.0]}), 'newmec-1'], [({'t3.102.114.306': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.306': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.306': [0.503, 5.0], 't4.102.114.306': [0.556, 10.0]}), 'newmec-2'], [({'t4.103.114.307': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.307': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.307': [0.572, 10.0], 't2.103.114.307': [0.47, 5.0]}), 'newmec-3'], [({'t2.103.114.308': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.308': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.308': [0.752, 5.0], 't1.103.114.308': [0.499, 6.667]}), 'newmec-3'], [({'t3.101.114.309': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.309': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.309': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.309': [0.514, 5.0], 't5.101.114.309': [0.515, 5.0], 't4.101.114.309': [0.42, 10.0]}), 'newmec-1'], [({'t5.103.114.310': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.310': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.310': [0.444, 5.0], 't3.103.114.310': [0.794, 5.0]}), 'newmec-3'], [({'t3.103.114.311': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.311': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.311': [0.509, 5.0], 't1.103.114.311': [0.422, 6.667]}), 'newmec-3'], [({'t1.102.114.312': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.312': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.312': [0.717, 6.667], 't3.102.114.312': [0.741, 5.0]}), 'newmec-2'], [({'t3.101.114.313': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.313': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.313': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.313': [0.517, 5.0], 't1.101.114.313': [0.552, 6.667], 't2.101.114.313': [0.654, 5.0]}), 'newmec-1'], [({'t3.156.114.314': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.314': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.156.114.314': [0.633, 5.0], 't2.156.114.314': [0.786, 5.0]}), 'osboxes-0'], [({'t1.102.114.315': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.315': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.315': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.315': [0.552, 6.667], 't5.102.114.315': [0.716, 5.0], 't2.102.114.315': [0.507, 5.0]}), 'newmec-2'], [({'t3.101.114.316': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.316': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.316': [0.486, 5.0], 't5.101.114.316': [0.669, 5.0]}), 'newmec-1'], [({'t3.103.114.317': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.317': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.317': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.317': [0.634, 5.0], 't4.103.114.317': [0.474, 10.0], 't2.103.114.317': [0.773, 5.0]}), 'newmec-3'], [({'t2.101.114.318': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.318': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.318': [0.419, 5.0], 't5.101.114.318': [0.701, 5.0]}), 'newmec-1'], [({'t3.103.114.319': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.319': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.319': [0.626, 5.0], 't2.103.114.319': [0.737, 5.0]}), 'newmec-3'], [({'t5.103.114.320': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.320': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.320': [0.787, 5.0], 't1.103.114.320': [0.449, 6.667]}), 'newmec-3'], [({'t4.101.114.321': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.321': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.321': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.321': [0.442, 10.0], 't2.101.114.321': [0.556, 5.0], 't3.101.114.321': [0.653, 5.0]}), 'newmec-1'], [({'t5.156.114.322': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.322': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.322': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.322': [0.576, 5.0], 't2.156.114.322': [0.479, 5.0], 't3.156.114.322': [0.411, 5.0]}), 'osboxes-0'], [({'t4.103.114.323': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.323': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.323': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.323': [0.58, 10.0], 't2.103.114.323': [0.611, 5.0], 't3.103.114.323': [0.673, 5.0]}), 'newmec-3'], [({'t5.103.114.324': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.324': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.324': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.324': [0.493, 5.0], 't4.103.114.324': [0.547, 10.0], 't2.103.114.324': [0.635, 5.0]}), 'newmec-3'], [({'t4.103.114.325': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.325': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.325': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.325': [0.615, 10.0], 't1.103.114.325': [0.568, 6.667], 't2.103.114.325': [0.56, 5.0]}), 'newmec-3'], [({'t4.103.114.326': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.326': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.326': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.326': [0.637, 10.0], 't2.103.114.326': [0.457, 5.0], 't1.103.114.326': [0.781, 6.667]}), 'newmec-3'], [({'t1.101.114.327': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.327': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.327': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.327': [0.617, 6.667], 't3.101.114.327': [0.503, 5.0], 't5.101.114.327': [0.496, 5.0]}), 'newmec-1'], [({'t3.156.114.328': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.328': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.328': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.328': [0.632, 5.0], 't4.156.114.328': [0.511, 10.0], 't5.156.114.328': [0.528, 5.0]}), 'osboxes-0'], [({'t2.103.114.329': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.329': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.329': [0.561, 5.0], 't1.103.114.329': [0.573, 6.667]}), 'newmec-3'], [({'t2.103.114.330': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.330': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.330': [0.601, 5.0], 't1.103.114.330': [0.461, 6.667]}), 'newmec-3'], [({'t4.101.114.331': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.331': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.331': [0.663, 10.0], 't3.101.114.331': [0.591, 5.0]}), 'newmec-1'], [({'t5.102.114.332': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.332': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.332': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.332': [0.789, 5.0], 't3.102.114.332': [0.696, 5.0], 't2.102.114.332': [0.488, 5.0]}), 'newmec-2'], [({'t1.101.114.333': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.333': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.333': [0.753, 6.667], 't4.101.114.333': [0.771, 10.0]}), 'newmec-1'], [({'t5.103.114.334': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.334': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.334': [0.717, 5.0], 't2.103.114.334': [0.494, 5.0]}), 'newmec-3'], [({'t4.101.114.335': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.335': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.335': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.335': [0.455, 10.0], 't2.101.114.335': [0.752, 5.0], 't5.101.114.335': [0.566, 5.0]}), 'newmec-1'], [({'t2.101.114.336': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.336': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.336': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.336': [0.684, 5.0], 't5.101.114.336': [0.43, 5.0], 't3.101.114.336': [0.54, 5.0]}), 'newmec-1'], [({'t5.101.114.337': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.337': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.337': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.337': [0.599, 5.0], 't1.101.114.337': [0.713, 6.667], 't3.101.114.337': [0.502, 5.0]}), 'newmec-1'], [({'t3.101.114.338': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.338': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.338': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.338': [0.556, 5.0], 't5.101.114.338': [0.478, 5.0], 't2.101.114.338': [0.639, 5.0]}), 'newmec-1'], [({'t5.156.114.339': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.339': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.339': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.156.114.339': [0.515, 5.0], 't3.156.114.339': [0.769, 5.0], 't1.156.114.339': [0.535, 6.667]}), 'osboxes-0'], [({'t2.101.114.340': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.340': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.340': [0.474, 5.0], 't5.101.114.340': [0.543, 5.0]}), 'newmec-1'], [({'t5.103.114.341': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.341': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.341': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.341': [0.539, 5.0], 't4.103.114.341': [0.761, 10.0], 't1.103.114.341': [0.63, 6.667]}), 'newmec-3'], [({'t3.156.114.342': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.342': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.342': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.342': [0.555, 5.0], 't2.156.114.342': [0.49, 5.0], 't4.156.114.342': [0.424, 10.0]}), 'osboxes-0'], [({'t3.103.114.343': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.343': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.343': [0.651, 5.0], 't4.103.114.343': [0.417, 10.0]}), 'newmec-3'], [({'t4.101.114.344': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.344': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.344': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.344': [0.713, 10.0], 't5.101.114.344': [0.636, 5.0], 't1.101.114.344': [0.672, 6.667]}), 'newmec-1'], [({'t5.103.114.345': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.345': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.345': [0.658, 5.0], 't1.103.114.345': [0.609, 6.667]}), 'newmec-3'], [({'t2.101.114.346': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.346': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.346': [0.548, 5.0], 't4.101.114.346': [0.715, 10.0]}), 'newmec-1'], [({'t4.101.114.347': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.347': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.347': [0.411, 10.0], 't1.101.114.347': [0.622, 6.667]}), 'newmec-1'], [({'t2.101.114.348': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.348': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.348': [0.74, 5.0], 't5.101.114.348': [0.456, 5.0]}), 'newmec-1'], [({'t5.103.114.349': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.349': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.349': [0.572, 5.0], 't2.103.114.349': [0.764, 5.0]}), 'newmec-3'], [({'t5.103.114.350': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.350': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.350': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.350': [0.788, 5.0], 't4.103.114.350': [0.543, 10.0], 't3.103.114.350': [0.643, 5.0]}), 'newmec-3'], [({'t3.101.114.351': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.351': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.351': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.351': [0.499, 5.0], 't2.101.114.351': [0.604, 5.0], 't4.101.114.351': [0.589, 10.0]}), 'newmec-1'], [({'t2.156.114.352': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.352': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.352': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.352': [0.545, 5.0], 't3.156.114.352': [0.402, 5.0], 't5.156.114.352': [0.711, 5.0]}), 'osboxes-0'], [({'t3.103.114.353': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.353': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.353': [0.757, 5.0], 't5.103.114.353': [0.58, 5.0]}), 'newmec-3'], [({'t3.101.114.354': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.354': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.354': [0.455, 5.0], 't2.101.114.354': [0.607, 5.0]}), 'newmec-1'], [({'t3.102.114.355': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.355': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.355': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.355': [0.537, 5.0], 't5.102.114.355': [0.794, 5.0], 't2.102.114.355': [0.459, 5.0]}), 'newmec-2'], [({'t5.101.114.356': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.356': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.356': [0.776, 5.0], 't3.101.114.356': [0.521, 5.0]}), 'newmec-1'], [({'t4.102.114.357': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.357': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.357': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.357': [0.605, 10.0], 't3.102.114.357': [0.701, 5.0], 't2.102.114.357': [0.415, 5.0]}), 'newmec-2'], [({'t4.102.114.358': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.358': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.358': [0.595, 10.0], 't2.102.114.358': [0.59, 5.0]}), 'newmec-2'], [({'t1.103.114.359': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.359': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.359': [0.694, 6.667], 't3.103.114.359': [0.41, 5.0]}), 'newmec-3'], [({'t2.103.114.360': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.360': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.360': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.360': [0.523, 5.0], 't3.103.114.360': [0.54, 5.0], 't5.103.114.360': [0.662, 5.0]}), 'newmec-3'], [({'t3.156.114.361': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.361': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.361': [0.56, 5.0], 't4.156.114.361': [0.43, 10.0]}), 'osboxes-0'], [({'t3.103.114.362': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.362': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.362': [0.489, 5.0], 't5.103.114.362': [0.471, 5.0]}), 'newmec-3'], [({'t2.103.114.363': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.363': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.363': [0.479, 5.0], 't5.103.114.363': [0.539, 5.0]}), 'newmec-3'], [({'t3.101.114.364': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.364': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.364': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.364': [0.69, 5.0], 't4.101.114.364': [0.473, 10.0], 't1.101.114.364': [0.428, 6.667]}), 'newmec-1'], [({'t2.101.114.365': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.365': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.365': [0.758, 5.0], 't4.101.114.365': [0.582, 10.0]}), 'newmec-1'], [({'t3.102.114.366': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.366': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.366': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.366': [0.468, 5.0], 't1.102.114.366': [0.41, 6.667], 't2.102.114.366': [0.54, 5.0]}), 'newmec-2'], [({'t5.102.114.367': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.367': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.367': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.367': [0.619, 5.0], 't1.102.114.367': [0.719, 6.667], 't4.102.114.367': [0.416, 10.0]}), 'newmec-2'], [({'t1.103.114.368': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.368': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.368': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.368': [0.653, 6.667], 't2.103.114.368': [0.789, 5.0], 't4.103.114.368': [0.763, 10.0]}), 'newmec-3'], [({'t5.103.114.369': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.369': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.369': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.369': [0.663, 5.0], 't4.103.114.369': [0.441, 10.0], 't1.103.114.369': [0.693, 6.667]}), 'newmec-3'], [({'t1.101.114.370': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.370': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.370': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.370': [0.559, 6.667], 't3.101.114.370': [0.598, 5.0], 't2.101.114.370': [0.569, 5.0]}), 'newmec-1'], [({'t1.101.114.371': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.371': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.371': [0.544, 6.667], 't4.101.114.371': [0.425, 10.0]}), 'newmec-1'], [({'t2.101.114.372': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.372': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.372': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.372': [0.641, 5.0], 't5.101.114.372': [0.614, 5.0], 't3.101.114.372': [0.612, 5.0]}), 'newmec-1'], [({'t5.103.114.373': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.373': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.373': [0.416, 5.0], 't2.103.114.373': [0.547, 5.0]}), 'newmec-3'], [({'t2.156.114.374': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.374': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.374': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.374': [0.687, 5.0], 't3.156.114.374': [0.794, 5.0], 't5.156.114.374': [0.437, 5.0]}), 'osboxes-0'], [({'t3.103.114.375': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.375': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.375': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.375': [0.62, 5.0], 't4.103.114.375': [0.774, 10.0], 't5.103.114.375': [0.488, 5.0]}), 'newmec-3'], [({'t5.101.114.376': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.376': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.376': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.376': [0.402, 5.0], 't1.101.114.376': [0.752, 6.667], 't2.101.114.376': [0.697, 5.0]}), 'newmec-1'], [({'t5.102.114.377': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.377': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.377': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.377': [0.663, 5.0], 't1.102.114.377': [0.711, 6.667], 't4.102.114.377': [0.523, 10.0]}), 'newmec-2'], [({'t5.103.114.378': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.378': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.378': [0.798, 5.0], 't2.103.114.378': [0.526, 5.0]}), 'newmec-3'], [({'t2.101.114.379': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.379': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.379': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.379': [0.536, 5.0], 't4.101.114.379': [0.45, 10.0], 't3.101.114.379': [0.403, 5.0]}), 'newmec-1'], [({'t1.156.114.380': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.156.114.380': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.380': [0.731, 6.667], 't2.156.114.380': [0.624, 5.0]}), 'osboxes-0'], [({'t5.101.114.381': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.381': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.381': [0.793, 5.0], 't2.101.114.381': [0.542, 5.0]}), 'newmec-1'], [({'t1.103.114.382': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.382': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.382': [0.754, 6.667], 't2.103.114.382': [0.677, 5.0]}), 'newmec-3'], [({'t4.101.114.383': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.383': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.383': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.383': [0.769, 10.0], 't2.101.114.383': [0.44, 5.0], 't5.101.114.383': [0.675, 5.0]}), 'newmec-1'], [({'t4.101.114.384': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.384': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.384': [0.404, 10.0], 't3.101.114.384': [0.722, 5.0]}), 'newmec-1'], [({'t3.103.114.385': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.385': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.385': [0.435, 5.0], 't2.103.114.385': [0.405, 5.0]}), 'newmec-3'], [({'t2.101.114.386': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.386': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.386': [0.433, 5.0], 't4.101.114.386': [0.614, 10.0]}), 'newmec-1'], [({'t3.101.114.387': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.387': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.387': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.387': [0.555, 5.0], 't1.101.114.387': [0.415, 6.667], 't2.101.114.387': [0.516, 5.0]}), 'newmec-1'], [({'t2.103.114.388': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.388': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.388': [0.643, 5.0], 't4.103.114.388': [0.6, 10.0]}), 'newmec-3'], [({'t5.101.114.389': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.389': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.389': [0.732, 5.0], 't3.101.114.389': [0.716, 5.0]}), 'newmec-1'], [({'t1.101.114.390': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.390': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.390': [0.796, 6.667], 't2.101.114.390': [0.718, 5.0]}), 'newmec-1'], [({'t2.103.114.391': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.391': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.391': [0.718, 5.0], 't4.103.114.391': [0.741, 10.0]}), 'newmec-3'], [({'t4.101.114.392': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.392': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.392': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.392': [0.686, 10.0], 't3.101.114.392': [0.582, 5.0], 't5.101.114.392': [0.649, 5.0]}), 'newmec-1'], [({'t4.101.114.393': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.393': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.393': [0.734, 10.0], 't3.101.114.393': [0.417, 5.0]}), 'newmec-1'], [({'t2.103.114.394': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.394': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.394': [0.721, 5.0], 't1.103.114.394': [0.629, 6.667]}), 'newmec-3'], [({'t2.101.114.395': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.395': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.395': [0.441, 5.0], 't1.101.114.395': [0.682, 6.667]}), 'newmec-1'], [({'t1.101.114.396': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.396': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.396': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.396': [0.415, 6.667], 't3.101.114.396': [0.513, 5.0], 't4.101.114.396': [0.468, 10.0]}), 'newmec-1'], [({'t5.103.114.397': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.397': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.397': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.397': [0.494, 5.0], 't4.103.114.397': [0.501, 10.0], 't3.103.114.397': [0.532, 5.0]}), 'newmec-3'], [({'t5.101.114.398': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.398': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.398': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.398': [0.664, 5.0], 't2.101.114.398': [0.742, 5.0], 't1.101.114.398': [0.417, 6.667]}), 'newmec-1'], [({'t1.103.114.399': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.399': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.399': [0.466, 6.667], 't3.103.114.399': [0.643, 5.0]}), 'newmec-3'], [({'t4.103.114.400': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.400': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.400': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.400': [0.598, 10.0], 't1.103.114.400': [0.574, 6.667], 't2.103.114.400': [0.715, 5.0]}), 'newmec-3'], [({'t4.101.114.401': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.401': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.401': [0.72, 10.0], 't1.101.114.401': [0.776, 6.667]}), 'newmec-1'], [({'t5.103.114.402': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.402': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.402': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.402': [0.625, 5.0], 't3.103.114.402': [0.531, 5.0], 't4.103.114.402': [0.578, 10.0]}), 'newmec-3'], [({'t3.101.114.403': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.403': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.403': [0.459, 5.0], 't4.101.114.403': [0.737, 10.0]}), 'newmec-1'], [({'t3.102.114.404': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.404': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.404': [0.795, 5.0], 't4.102.114.404': [0.524, 10.0]}), 'newmec-2'], [({'t2.156.114.405': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.405': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.405': [0.483, 5.0], 't4.156.114.405': [0.523, 10.0]}), 'osboxes-0'], [({'t1.103.114.406': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.406': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.406': [0.492, 6.667], 't2.103.114.406': [0.675, 5.0]}), 'newmec-3'], [({'t1.103.114.407': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.407': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.407': [0.759, 6.667], 't5.103.114.407': [0.528, 5.0]}), 'newmec-3'], [({'t2.156.114.408': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.408': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.408': [0.469, 5.0], 't3.156.114.408': [0.71, 5.0]}), 'osboxes-0'], [({'t3.101.114.409': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.409': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.409': [0.554, 5.0], 't2.101.114.409': [0.754, 5.0]}), 'newmec-1'], [({'t4.101.114.410': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.410': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.410': [0.651, 10.0], 't5.101.114.410': [0.423, 5.0]}), 'newmec-1'], [({'t1.102.114.411': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.411': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.411': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.411': [0.687, 6.667], 't5.102.114.411': [0.796, 5.0], 't2.102.114.411': [0.589, 5.0]}), 'newmec-2'], [({'t1.101.114.412': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.412': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.412': [0.668, 6.667], 't4.101.114.412': [0.62, 10.0]}), 'newmec-1'], [({'t4.101.114.413': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.413': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.413': [0.794, 10.0], 't2.101.114.413': [0.648, 5.0]}), 'newmec-1'], [({'t1.101.114.414': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.414': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.414': [0.65, 6.667], 't2.101.114.414': [0.643, 5.0]}), 'newmec-1'], [({'t5.102.114.415': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.415': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.415': [0.579, 5.0], 't3.102.114.415': [0.68, 5.0]}), 'newmec-2'], [({'t2.101.114.416': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.416': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.416': [0.795, 5.0], 't5.101.114.416': [0.403, 5.0]}), 'newmec-1'], [({'t5.103.114.417': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.417': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.417': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.417': [0.706, 5.0], 't2.103.114.417': [0.776, 5.0], 't1.103.114.417': [0.69, 6.667]}), 'newmec-3'], [({'t4.102.114.418': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.418': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.418': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.418': [0.588, 10.0], 't2.102.114.418': [0.556, 5.0], 't5.102.114.418': [0.744, 5.0]}), 'newmec-2'], [({'t2.103.114.419': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.419': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.419': [0.534, 5.0], 't3.103.114.419': [0.784, 5.0]}), 'newmec-3'], [({'t3.103.114.420': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.420': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.420': [0.749, 5.0], 't5.103.114.420': [0.467, 5.0]}), 'newmec-3'], [({'t4.103.114.421': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.421': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.421': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.421': [0.571, 10.0], 't2.103.114.421': [0.545, 5.0], 't5.103.114.421': [0.517, 5.0]}), 'newmec-3'], [({'t4.101.114.422': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.422': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.422': [0.511, 10.0], 't3.101.114.422': [0.59, 5.0]}), 'newmec-1'], [({'t5.103.114.423': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.423': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.423': [0.495, 5.0], 't2.103.114.423': [0.5, 5.0]}), 'newmec-3'], [({'t4.103.114.424': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.424': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.424': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.424': [0.773, 10.0], 't2.103.114.424': [0.715, 5.0], 't3.103.114.424': [0.757, 5.0]}), 'newmec-3'], [({'t3.102.114.425': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.425': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.425': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.425': [0.606, 5.0], 't2.102.114.425': [0.636, 5.0], 't1.102.114.425': [0.543, 6.667]}), 'newmec-2'], [({'t5.101.114.426': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.426': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.426': [0.503, 5.0], 't4.101.114.426': [0.478, 10.0]}), 'newmec-1'], [({'t5.101.114.427': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.427': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.427': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.427': [0.743, 5.0], 't2.101.114.427': [0.597, 5.0], 't1.101.114.427': [0.66, 6.667]}), 'newmec-1'], [({'t4.156.114.428': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.428': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.428': [0.775, 10.0], 't3.156.114.428': [0.428, 5.0]}), 'osboxes-0'], [({'t2.101.114.429': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.429': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.429': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.429': [0.668, 5.0], 't4.101.114.429': [0.449, 10.0], 't5.101.114.429': [0.789, 5.0]}), 'newmec-1'], [({'t2.101.114.430': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.430': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.430': [0.596, 5.0], 't3.101.114.430': [0.722, 5.0]}), 'newmec-1'], [({'t4.101.114.431': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.431': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.431': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.431': [0.592, 10.0], 't5.101.114.431': [0.795, 5.0], 't1.101.114.431': [0.719, 6.667]}), 'newmec-1'], [({'t2.103.114.432': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.432': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.432': [0.623, 5.0], 't5.103.114.432': [0.594, 5.0]}), 'newmec-3'], [({'t1.103.114.433': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.433': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.433': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.433': [0.697, 6.667], 't2.103.114.433': [0.512, 5.0], 't3.103.114.433': [0.502, 5.0]}), 'newmec-3'], [({'t5.103.114.434': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.434': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.434': [0.506, 5.0], 't2.103.114.434': [0.445, 5.0]}), 'newmec-3'], [({'t5.101.114.435': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.435': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.435': [0.53, 5.0], 't4.101.114.435': [0.475, 10.0]}), 'newmec-1'], [({'t3.103.114.436': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.436': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.436': [0.533, 5.0], 't5.103.114.436': [0.771, 5.0]}), 'newmec-3'], [({'t2.156.114.437': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.437': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.437': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.437': [0.617, 5.0], 't1.156.114.437': [0.455, 6.667], 't3.156.114.437': [0.73, 5.0]}), 'osboxes-0'], [({'t5.156.114.438': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.438': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.438': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.438': [0.692, 5.0], 't4.156.114.438': [0.494, 10.0], 't2.156.114.438': [0.563, 5.0]}), 'osboxes-0'], [({'t2.156.114.439': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.439': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.439': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.439': [0.47, 5.0], 't1.156.114.439': [0.671, 6.667], 't3.156.114.439': [0.663, 5.0]}), 'osboxes-0'], [({'t2.102.114.440': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.440': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.440': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.440': [0.671, 5.0], 't4.102.114.440': [0.76, 10.0], 't5.102.114.440': [0.737, 5.0]}), 'newmec-2'], [({'t4.102.114.441': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.441': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.441': [0.583, 10.0], 't2.102.114.441': [0.565, 5.0]}), 'newmec-2'], [({'t2.102.114.442': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.442': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.442': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.442': [0.435, 5.0], 't1.102.114.442': [0.71, 6.667], 't3.102.114.442': [0.708, 5.0]}), 'newmec-2'], [({'t2.103.114.443': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.443': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.443': [0.509, 5.0], 't4.103.114.443': [0.691, 10.0]}), 'newmec-3'], [({'t3.103.114.444': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.444': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.444': [0.497, 5.0], 't2.103.114.444': [0.782, 5.0]}), 'newmec-3'], [({'t3.101.114.445': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.445': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.445': [0.658, 5.0], 't5.101.114.445': [0.406, 5.0]}), 'newmec-1'], [({'t2.101.114.446': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.446': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.446': [0.581, 5.0], 't4.101.114.446': [0.772, 10.0]}), 'newmec-1'], [({'t1.156.114.447': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.447': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.447': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.447': [0.744, 6.667], 't4.156.114.447': [0.532, 10.0], 't2.156.114.447': [0.413, 5.0]}), 'osboxes-0'], [({'t5.101.114.448': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.448': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.448': [0.48, 5.0], 't3.101.114.448': [0.455, 5.0]}), 'newmec-1'], [({'t1.101.114.449': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.449': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.449': [0.619, 6.667], 't4.101.114.449': [0.656, 10.0]}), 'newmec-1'], [({'t4.101.114.450': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.450': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.450': [0.47, 10.0], 't3.101.114.450': [0.679, 5.0]}), 'newmec-1'], [({'t5.103.114.451': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.451': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.451': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.451': [0.776, 5.0], 't4.103.114.451': [0.43, 10.0], 't1.103.114.451': [0.79, 6.667]}), 'newmec-3'], [({'t5.103.114.452': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.452': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.452': [0.713, 5.0], 't2.103.114.452': [0.572, 5.0]}), 'newmec-3'], [({'t3.103.114.453': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.453': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.453': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.453': [0.499, 5.0], 't1.103.114.453': [0.615, 6.667], 't2.103.114.453': [0.757, 5.0]}), 'newmec-3'], [({'t2.102.114.454': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.454': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.454': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.454': [0.663, 5.0], 't3.102.114.454': [0.506, 5.0], 't1.102.114.454': [0.683, 6.667]}), 'newmec-2'], [({'t4.103.114.455': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.455': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.455': [0.582, 10.0], 't2.103.114.455': [0.577, 5.0]}), 'newmec-3'], [({'t4.103.114.456': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.456': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.456': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.456': [0.625, 10.0], 't2.103.114.456': [0.577, 5.0], 't5.103.114.456': [0.534, 5.0]}), 'newmec-3'], [({'t5.103.114.457': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.457': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.457': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.457': [0.626, 5.0], 't1.103.114.457': [0.7, 6.667], 't4.103.114.457': [0.424, 10.0]}), 'newmec-3'], [({'t5.103.114.458': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.458': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.458': [0.675, 5.0], 't4.103.114.458': [0.406, 10.0]}), 'newmec-3'], [({'t2.156.114.459': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.459': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.459': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.459': [0.424, 5.0], 't3.156.114.459': [0.723, 5.0], 't4.156.114.459': [0.482, 10.0]}), 'osboxes-0'], [({'t2.103.114.460': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.460': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.460': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.460': [0.74, 5.0], 't5.103.114.460': [0.496, 5.0], 't1.103.114.460': [0.763, 6.667]}), 'newmec-3'], [({'t3.156.114.461': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.461': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.461': [0.583, 5.0], 't4.156.114.461': [0.494, 10.0]}), 'osboxes-0'], [({'t5.102.114.462': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.462': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.462': [0.587, 5.0], 't2.102.114.462': [0.623, 5.0]}), 'newmec-2'], [({'t5.103.114.463': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.463': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.463': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.463': [0.556, 5.0], 't1.103.114.463': [0.584, 6.667], 't2.103.114.463': [0.549, 5.0]}), 'newmec-3'], [({'t4.102.114.464': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.464': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.464': [0.783, 10.0], 't3.102.114.464': [0.457, 5.0]}), 'newmec-2'], [({'t3.101.114.465': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.465': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.465': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.465': [0.757, 5.0], 't4.101.114.465': [0.641, 10.0], 't5.101.114.465': [0.558, 5.0]}), 'newmec-1'], [({'t4.156.114.466': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.466': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.466': [0.476, 10.0], 't5.156.114.466': [0.72, 5.0]}), 'osboxes-0'], [({'t4.101.114.467': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.467': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.467': [0.424, 10.0], 't3.101.114.467': [0.521, 5.0]}), 'newmec-1'], [({'t4.101.114.468': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.468': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.468': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.468': [0.783, 10.0], 't2.101.114.468': [0.722, 5.0], 't3.101.114.468': [0.493, 5.0]}), 'newmec-1'], [({'t1.103.114.469': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.469': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.469': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.469': [0.531, 6.667], 't4.103.114.469': [0.694, 10.0], 't5.103.114.469': [0.508, 5.0]}), 'newmec-3'], [({'t4.103.114.470': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.470': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.470': [0.513, 10.0], 't3.103.114.470': [0.681, 5.0]}), 'newmec-3'], [({'t5.103.114.471': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.471': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.471': [0.488, 5.0], 't1.103.114.471': [0.751, 6.667]}), 'newmec-3'], [({'t3.103.114.472': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.472': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.472': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.472': [0.517, 5.0], 't5.103.114.472': [0.545, 5.0], 't1.103.114.472': [0.482, 6.667]}), 'newmec-3'], [({'t5.101.114.473': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.473': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.473': [0.73, 5.0], 't2.101.114.473': [0.589, 5.0]}), 'newmec-1'], [({'t5.103.114.474': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.474': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.474': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.474': [0.74, 5.0], 't3.103.114.474': [0.651, 5.0], 't4.103.114.474': [0.646, 10.0]}), 'newmec-3'], [({'t3.103.114.475': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.475': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.475': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.475': [0.408, 5.0], 't5.103.114.475': [0.503, 5.0], 't2.103.114.475': [0.452, 5.0]}), 'newmec-3'], [({'t3.101.114.476': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.476': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.476': [0.472, 5.0], 't5.101.114.476': [0.517, 5.0]}), 'newmec-1'], [({'t5.103.114.477': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.477': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.477': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.477': [0.702, 5.0], 't4.103.114.477': [0.599, 10.0], 't3.103.114.477': [0.519, 5.0]}), 'newmec-3'], [({'t1.103.114.478': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.478': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.478': [0.62, 6.667], 't2.103.114.478': [0.503, 5.0]}), 'newmec-3'], [({'t1.156.114.479': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.479': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.479': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.156.114.479': [0.786, 6.667], 't3.156.114.479': [0.565, 5.0], 't4.156.114.479': [0.753, 10.0]}), 'osboxes-0'], [({'t5.103.114.480': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.480': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.480': [0.665, 5.0], 't3.103.114.480': [0.429, 5.0]}), 'newmec-3'], [({'t1.102.114.481': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.481': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.481': [0.503, 6.667], 't2.102.114.481': [0.653, 5.0]}), 'newmec-2'], [({'t1.103.114.482': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.482': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.482': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.482': [0.425, 6.667], 't4.103.114.482': [0.586, 10.0], 't2.103.114.482': [0.608, 5.0]}), 'newmec-3'], [({'t1.103.114.483': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.483': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.483': [0.485, 6.667], 't4.103.114.483': [0.604, 10.0]}), 'newmec-3'], [({'t3.101.114.484': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.484': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.484': [0.774, 5.0], 't2.101.114.484': [0.438, 5.0]}), 'newmec-1'], [({'t5.103.114.485': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.485': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.485': [0.427, 5.0], 't2.103.114.485': [0.702, 5.0]}), 'newmec-3'], [({'t2.103.114.486': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.486': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.486': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.486': [0.602, 5.0], 't4.103.114.486': [0.549, 10.0], 't5.103.114.486': [0.677, 5.0]}), 'newmec-3'], [({'t5.101.114.487': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.487': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.487': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.487': [0.684, 5.0], 't2.101.114.487': [0.713, 5.0], 't4.101.114.487': [0.691, 10.0]}), 'newmec-1'], [({'t2.103.114.488': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.488': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.488': [0.434, 5.0], 't1.103.114.488': [0.712, 6.667]}), 'newmec-3'], [({'t1.103.114.489': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.489': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.489': [0.676, 6.667], 't2.103.114.489': [0.697, 5.0]}), 'newmec-3'], [({'t2.156.114.490': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.490': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.490': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.490': [0.585, 5.0], 't4.156.114.490': [0.437, 10.0], 't5.156.114.490': [0.485, 5.0]}), 'osboxes-0'], [({'t5.101.114.491': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.491': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.491': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.491': [0.705, 5.0], 't4.101.114.491': [0.751, 10.0], 't2.101.114.491': [0.512, 5.0]}), 'newmec-1'], [({'t4.103.114.492': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.492': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.492': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.492': [0.509, 10.0], 't5.103.114.492': [0.552, 5.0], 't2.103.114.492': [0.745, 5.0]}), 'newmec-3'], [({'t4.101.114.493': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.493': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.493': [0.607, 10.0], 't1.101.114.493': [0.406, 6.667]}), 'newmec-1'], [({'t2.103.114.494': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.494': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.494': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.494': [0.515, 5.0], 't4.103.114.494': [0.69, 10.0], 't3.103.114.494': [0.552, 5.0]}), 'newmec-3'], [({'t2.103.114.495': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.495': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.495': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.495': [0.783, 5.0], 't3.103.114.495': [0.408, 5.0], 't4.103.114.495': [0.422, 10.0]}), 'newmec-3'], [({'t3.103.114.496': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.496': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.496': [0.469, 5.0], 't4.103.114.496': [0.764, 10.0]}), 'newmec-3'], [({'t4.102.114.497': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.497': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.497': [0.771, 10.0], 't5.102.114.497': [0.411, 5.0]}), 'newmec-2'], [({'t1.101.114.498': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.498': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.498': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.498': [0.504, 6.667], 't5.101.114.498': [0.644, 5.0], 't2.101.114.498': [0.496, 5.0]}), 'newmec-1'], [({'t3.101.114.499': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.499': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.499': [0.671, 5.0], 't2.101.114.499': [0.645, 5.0]}), 'newmec-1'], [({'t3.102.114.500': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.500': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.500': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.500': [0.66, 5.0], 't2.102.114.500': [0.582, 5.0], 't5.102.114.500': [0.549, 5.0]}), 'newmec-2'], [({'t4.102.114.501': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.501': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.501': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.501': [0.52, 10.0], 't5.102.114.501': [0.471, 5.0], 't2.102.114.501': [0.608, 5.0]}), 'newmec-2'], [({'t2.103.114.502': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.502': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.502': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.502': [0.789, 5.0], 't3.103.114.502': [0.678, 5.0], 't4.103.114.502': [0.631, 10.0]}), 'newmec-3'], [({'t5.156.114.503': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.503': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.503': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.156.114.503': [0.537, 5.0], 't4.156.114.503': [0.583, 10.0], 't1.156.114.503': [0.467, 6.667]}), 'osboxes-0'], [({'t2.102.114.504': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.504': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.504': [0.407, 5.0], 't5.102.114.504': [0.692, 5.0]}), 'newmec-2'], [({'t5.101.114.505': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.505': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.505': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.505': [0.436, 5.0], 't2.101.114.505': [0.549, 5.0], 't4.101.114.505': [0.698, 10.0]}), 'newmec-1'], [({'t2.101.114.506': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.506': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.506': [0.424, 5.0], 't5.101.114.506': [0.777, 5.0]}), 'newmec-1'], [({'t4.103.114.507': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.507': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.507': [0.63, 10.0], 't2.103.114.507': [0.758, 5.0]}), 'newmec-3'], [({'t4.101.114.508': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.508': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.508': [0.635, 10.0], 't3.101.114.508': [0.457, 5.0]}), 'newmec-1'], [({'t3.156.114.509': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.509': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.509': [0.602, 5.0], 't5.156.114.509': [0.688, 5.0]}), 'osboxes-0'], [({'t3.101.114.510': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.510': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.510': [0.468, 5.0], 't2.101.114.510': [0.718, 5.0]}), 'newmec-1'], [({'t2.102.114.511': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.511': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.511': [0.493, 5.0], 't1.102.114.511': [0.487, 6.667]}), 'newmec-2'], [({'t4.101.114.512': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.512': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.512': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.512': [0.521, 10.0], 't1.101.114.512': [0.427, 6.667], 't5.101.114.512': [0.598, 5.0]}), 'newmec-1'], [({'t2.103.114.513': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.513': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.513': [0.723, 5.0], 't4.103.114.513': [0.487, 10.0]}), 'newmec-3'], [({'t1.103.114.514': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.514': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.514': [0.448, 6.667], 't4.103.114.514': [0.517, 10.0]}), 'newmec-3'], [({'t4.103.114.515': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.515': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.515': [0.489, 10.0], 't2.103.114.515': [0.492, 5.0]}), 'newmec-3'], [({'t1.156.114.516': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.156.114.516': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.516': [0.718, 6.667], 't2.156.114.516': [0.414, 5.0]}), 'osboxes-0'], [({'t5.103.114.517': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.517': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.517': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.517': [0.568, 5.0], 't2.103.114.517': [0.733, 5.0], 't3.103.114.517': [0.55, 5.0]}), 'newmec-3'], [({'t2.103.114.518': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.518': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.518': [0.665, 5.0], 't1.103.114.518': [0.694, 6.667]}), 'newmec-3'], [({'t2.101.114.519': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.519': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.519': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.519': [0.551, 5.0], 't3.101.114.519': [0.442, 5.0], 't1.101.114.519': [0.417, 6.667]}), 'newmec-1'], [({'t5.101.114.520': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.520': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.520': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.520': [0.726, 5.0], 't1.101.114.520': [0.652, 6.667], 't3.101.114.520': [0.534, 5.0]}), 'newmec-1'], [({'t3.103.114.521': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.521': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.521': [0.656, 5.0], 't2.103.114.521': [0.4, 5.0]}), 'newmec-3'], [({'t3.101.114.522': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.522': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.522': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.522': [0.739, 5.0], 't5.101.114.522': [0.699, 5.0], 't2.101.114.522': [0.416, 5.0]}), 'newmec-1'], [({'t5.102.114.523': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.523': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.523': [0.738, 5.0], 't3.102.114.523': [0.403, 5.0]}), 'newmec-2'], [({'t1.103.114.524': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.524': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.524': [0.776, 6.667], 't5.103.114.524': [0.635, 5.0]}), 'newmec-3'], [({'t3.103.114.525': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.525': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.525': [0.566, 5.0], 't4.103.114.525': [0.409, 10.0]}), 'newmec-3'], [({'t3.103.114.526': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.526': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.526': [0.763, 5.0], 't2.103.114.526': [0.576, 5.0]}), 'newmec-3'], [({'t1.101.114.527': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.527': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.527': [0.546, 6.667], 't5.101.114.527': [0.477, 5.0]}), 'newmec-1'], [({'t4.103.114.528': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.528': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.528': [0.611, 10.0], 't2.103.114.528': [0.599, 5.0]}), 'newmec-3'], [({'t1.101.114.529': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.529': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.529': [0.437, 6.667], 't5.101.114.529': [0.403, 5.0]}), 'newmec-1'], [({'t3.103.114.530': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.530': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.530': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.530': [0.496, 5.0], 't5.103.114.530': [0.676, 5.0], 't4.103.114.530': [0.703, 10.0]}), 'newmec-3'], [({'t2.103.114.531': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.531': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.531': [0.436, 5.0], 't3.103.114.531': [0.511, 5.0]}), 'newmec-3'], [({'t4.156.114.532': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.532': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.532': [0.452, 10.0], 't1.156.114.532': [0.695, 6.667]}), 'osboxes-0'], [({'t2.103.114.533': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.533': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.533': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.533': [0.682, 5.0], 't3.103.114.533': [0.676, 5.0], 't4.103.114.533': [0.472, 10.0]}), 'newmec-3'], [({'t4.103.114.534': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.534': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.534': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.534': [0.411, 10.0], 't2.103.114.534': [0.451, 5.0], 't3.103.114.534': [0.562, 5.0]}), 'newmec-3'], [({'t3.103.114.535': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.535': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.535': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.535': [0.426, 5.0], 't2.103.114.535': [0.675, 5.0], 't4.103.114.535': [0.731, 10.0]}), 'newmec-3'], [({'t3.102.114.536': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.536': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.536': [0.537, 5.0], 't2.102.114.536': [0.715, 5.0]}), 'newmec-2'], [({'t3.101.114.537': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.537': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.537': [0.608, 5.0], 't5.101.114.537': [0.669, 5.0]}), 'newmec-1'], [({'t2.101.114.538': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.538': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.538': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.538': [0.62, 5.0], 't1.101.114.538': [0.645, 6.667], 't5.101.114.538': [0.517, 5.0]}), 'newmec-1'], [({'t4.101.114.539': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.539': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.539': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.539': [0.578, 10.0], 't5.101.114.539': [0.555, 5.0], 't2.101.114.539': [0.59, 5.0]}), 'newmec-1'], [({'t1.101.114.540': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.540': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.540': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.540': [0.568, 6.667], 't3.101.114.540': [0.713, 5.0], 't4.101.114.540': [0.416, 10.0]}), 'newmec-1'], [({'t5.101.114.541': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.541': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.541': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.541': [0.541, 5.0], 't4.101.114.541': [0.765, 10.0], 't3.101.114.541': [0.787, 5.0]}), 'newmec-1'], [({'t2.156.114.542': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.542': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.542': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.542': [0.723, 5.0], 't1.156.114.542': [0.501, 6.667], 't4.156.114.542': [0.774, 10.0]}), 'osboxes-0'], [({'t3.103.114.543': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.543': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.543': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.543': [0.587, 5.0], 't5.103.114.543': [0.765, 5.0], 't4.103.114.543': [0.689, 10.0]}), 'newmec-3'], [({'t4.101.114.544': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.544': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.544': [0.415, 10.0], 't5.101.114.544': [0.646, 5.0]}), 'newmec-1'], [({'t4.102.114.545': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.545': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.545': [0.416, 10.0], 't5.102.114.545': [0.793, 5.0]}), 'newmec-2'], [({'t2.103.114.546': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.546': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.546': [0.752, 5.0], 't4.103.114.546': [0.424, 10.0]}), 'newmec-3'], [({'t5.103.114.547': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.547': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.547': [0.763, 5.0], 't2.103.114.547': [0.723, 5.0]}), 'newmec-3'], [({'t4.102.114.548': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.548': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.548': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.548': [0.711, 10.0], 't3.102.114.548': [0.573, 5.0], 't1.102.114.548': [0.518, 6.667]}), 'newmec-2'], [({'t5.103.114.549': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.549': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.549': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.549': [0.698, 5.0], 't1.103.114.549': [0.505, 6.667], 't2.103.114.549': [0.606, 5.0]}), 'newmec-3'], [({'t3.156.114.550': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.550': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.156.114.550': [0.695, 5.0], 't1.156.114.550': [0.716, 6.667]}), 'osboxes-0'], [({'t1.102.114.551': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.551': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.551': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.551': [0.687, 6.667], 't5.102.114.551': [0.79, 5.0], 't4.102.114.551': [0.682, 10.0]}), 'newmec-2'], [({'t2.101.114.552': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.552': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.552': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.552': [0.406, 5.0], 't5.101.114.552': [0.763, 5.0], 't4.101.114.552': [0.728, 10.0]}), 'newmec-1'], [({'t2.101.114.553': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.553': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.553': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.553': [0.53, 5.0], 't3.101.114.553': [0.751, 5.0], 't1.101.114.553': [0.627, 6.667]}), 'newmec-1'], [({'t3.101.114.554': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.554': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.554': [0.521, 5.0], 't2.101.114.554': [0.603, 5.0]}), 'newmec-1'], [({'t3.156.114.555': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.555': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.555': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.555': [0.486, 5.0], 't2.156.114.555': [0.433, 5.0], 't5.156.114.555': [0.797, 5.0]}), 'osboxes-0'], [({'t1.101.114.556': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.556': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.556': [0.456, 6.667], 't5.101.114.556': [0.506, 5.0]}), 'newmec-1'], [({'t3.102.114.557': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.557': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.557': [0.56, 5.0], 't5.102.114.557': [0.671, 5.0]}), 'newmec-2'], [({'t2.103.114.558': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.558': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.558': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.558': [0.401, 5.0], 't4.103.114.558': [0.448, 10.0], 't3.103.114.558': [0.449, 5.0]}), 'newmec-3'], [({'t5.103.114.559': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.559': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.559': [0.67, 5.0], 't4.103.114.559': [0.558, 10.0]}), 'newmec-3'], [({'t5.103.114.560': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.560': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.560': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.560': [0.782, 5.0], 't4.103.114.560': [0.689, 10.0], 't2.103.114.560': [0.593, 5.0]}), 'newmec-3'], [({'t5.101.114.561': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.561': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.561': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.561': [0.56, 5.0], 't4.101.114.561': [0.41, 10.0], 't2.101.114.561': [0.483, 5.0]}), 'newmec-1'], [({'t2.103.114.562': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.562': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.562': [0.516, 5.0], 't5.103.114.562': [0.417, 5.0]}), 'newmec-3'], [({'t3.103.114.563': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.563': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.563': [0.754, 5.0], 't5.103.114.563': [0.594, 5.0]}), 'newmec-3'], [({'t4.103.114.564': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.564': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.564': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.564': [0.47, 10.0], 't5.103.114.564': [0.768, 5.0], 't2.103.114.564': [0.49, 5.0]}), 'newmec-3'], [({'t5.102.114.565': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.565': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.565': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.565': [0.597, 5.0], 't1.102.114.565': [0.472, 6.667], 't2.102.114.565': [0.413, 5.0]}), 'newmec-2'], [({'t1.101.114.566': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.566': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.566': [0.45, 6.667], 't5.101.114.566': [0.74, 5.0]}), 'newmec-1'], [({'t3.101.114.567': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.567': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.567': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.567': [0.59, 5.0], 't1.101.114.567': [0.559, 6.667], 't5.101.114.567': [0.719, 5.0]}), 'newmec-1'], [({'t2.102.114.568': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.568': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.568': [0.567, 5.0], 't5.102.114.568': [0.788, 5.0]}), 'newmec-2'], [({'t2.103.114.569': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.569': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.569': [0.764, 5.0], 't3.103.114.569': [0.718, 5.0]}), 'newmec-3'], [({'t5.101.114.570': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.570': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.570': [0.544, 5.0], 't4.101.114.570': [0.407, 10.0]}), 'newmec-1'], [({'t2.103.114.571': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.571': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.571': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.571': [0.453, 5.0], 't3.103.114.571': [0.604, 5.0], 't4.103.114.571': [0.64, 10.0]}), 'newmec-3'], [({'t1.101.114.572': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.572': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.572': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.572': [0.669, 6.667], 't3.101.114.572': [0.443, 5.0], 't4.101.114.572': [0.554, 10.0]}), 'newmec-1'], [({'t4.101.114.573': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.573': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.573': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.573': [0.525, 10.0], 't3.101.114.573': [0.462, 5.0], 't2.101.114.573': [0.468, 5.0]}), 'newmec-1'], [({'t3.101.114.574': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.574': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.574': [0.7, 5.0], 't4.101.114.574': [0.793, 10.0]}), 'newmec-1'], [({'t5.101.114.575': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.575': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.575': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.575': [0.672, 5.0], 't2.101.114.575': [0.568, 5.0], 't4.101.114.575': [0.732, 10.0]}), 'newmec-1'], [({'t1.101.114.576': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.576': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.576': [0.445, 6.667], 't4.101.114.576': [0.762, 10.0]}), 'newmec-1'], [({'t5.102.114.577': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.577': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.577': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.577': [0.502, 5.0], 't3.102.114.577': [0.754, 5.0], 't1.102.114.577': [0.599, 6.667]}), 'newmec-2'], [({'t2.102.114.578': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.578': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.578': [0.49, 5.0], 't4.102.114.578': [0.555, 10.0]}), 'newmec-2'], [({'t5.103.114.579': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.579': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.579': [0.528, 5.0], 't4.103.114.579': [0.677, 10.0]}), 'newmec-3'], [({'t5.101.114.580': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.580': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.580': [0.525, 5.0], 't3.101.114.580': [0.587, 5.0]}), 'newmec-1'], [({'t4.101.114.581': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.581': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.581': [0.404, 10.0], 't3.101.114.581': [0.783, 5.0]}), 'newmec-1'], [({'t1.101.114.582': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.582': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.582': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.582': [0.475, 6.667], 't3.101.114.582': [0.441, 5.0], 't4.101.114.582': [0.773, 10.0]}), 'newmec-1'], [({'t5.101.114.583': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.583': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.583': [0.63, 5.0], 't3.101.114.583': [0.701, 5.0]}), 'newmec-1'], [({'t4.156.114.584': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.584': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.584': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.584': [0.424, 10.0], 't2.156.114.584': [0.555, 5.0], 't5.156.114.584': [0.754, 5.0]}), 'osboxes-0'], [({'t5.101.114.585': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.585': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.585': [0.681, 5.0], 't4.101.114.585': [0.679, 10.0]}), 'newmec-1'], [({'t1.103.114.586': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.586': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.586': [0.738, 6.667], 't5.103.114.586': [0.406, 5.0]}), 'newmec-3'], [({'t2.101.114.587': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.587': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.587': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.587': [0.741, 5.0], 't4.101.114.587': [0.722, 10.0], 't3.101.114.587': [0.726, 5.0]}), 'newmec-1'], [({'t4.156.114.588': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.588': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.588': [0.6, 10.0], 't5.156.114.588': [0.444, 5.0]}), 'osboxes-0'], [({'t4.102.114.589': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.589': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.589': [0.733, 10.0], 't5.102.114.589': [0.597, 5.0]}), 'newmec-2'], [({'t4.101.114.590': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.590': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.590': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.590': [0.757, 10.0], 't3.101.114.590': [0.508, 5.0], 't5.101.114.590': [0.47, 5.0]}), 'newmec-1'], [({'t4.101.114.591': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.591': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.591': [0.717, 10.0], 't2.101.114.591': [0.446, 5.0]}), 'newmec-1'], [({'t5.101.114.592': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.592': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.592': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.592': [0.488, 5.0], 't2.101.114.592': [0.461, 5.0], 't3.101.114.592': [0.433, 5.0]}), 'newmec-1'], [({'t1.103.114.593': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.593': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.593': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.593': [0.742, 6.667], 't4.103.114.593': [0.681, 10.0], 't3.103.114.593': [0.499, 5.0]}), 'newmec-3'], [({'t3.101.114.594': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.594': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.594': [0.567, 5.0], 't5.101.114.594': [0.629, 5.0]}), 'newmec-1'], [({'t2.103.114.595': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.595': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.595': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.595': [0.594, 5.0], 't3.103.114.595': [0.748, 5.0], 't5.103.114.595': [0.452, 5.0]}), 'newmec-3'], [({'t2.103.114.596': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.596': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.596': [0.677, 5.0], 't5.103.114.596': [0.498, 5.0]}), 'newmec-3'], [({'t1.156.114.597': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.156.114.597': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.597': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.156.114.597': [0.765, 6.667], 't2.156.114.597': [0.604, 5.0], 't4.156.114.597': [0.618, 10.0]}), 'osboxes-0'], [({'t5.103.114.598': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.598': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.598': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.598': [0.683, 5.0], 't3.103.114.598': [0.74, 5.0], 't4.103.114.598': [0.578, 10.0]}), 'newmec-3'], [({'t1.102.114.599': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.599': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.599': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.599': [0.43, 6.667], 't5.102.114.599': [0.672, 5.0], 't3.102.114.599': [0.71, 5.0]}), 'newmec-2']] host_names4 = {'192.168.122.102': 'newmec-2', '192.168.122.103': 'newmec-3', '192.168.122.156': 'osboxes-0', '192.168.122.101': 'newmec-1'} record5 = [[({'t4.101.114.0': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.0': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.0': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.0': [0.784, 10.0], 't3.101.114.0': [0.666, 5.0], 't1.101.114.0': [0.754, 6.667]}), 'newmec-1'], [({'t1.101.114.1': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.1': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.1': [0.794, 6.667], 't5.101.114.1': [0.703, 5.0]}), 'newmec-1'], [({'t2.156.114.2': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.2': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.2': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.2': [0.612, 5.0], 't4.156.114.2': [0.676, 10.0], 't1.156.114.2': [0.773, 6.667]}), 'osboxes-0'], [({'t1.102.114.3': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.3': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.3': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.3': [0.76, 6.667], 't5.102.114.3': [0.593, 5.0], 't4.102.114.3': [0.668, 10.0]}), 'newmec-2'], [({'t2.102.114.4': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.4': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.4': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.4': [0.563, 5.0], 't4.102.114.4': [0.487, 10.0], 't3.102.114.4': [0.616, 5.0]}), 'newmec-2'], [({'t5.104.114.5': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.5': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.5': [0.756, 5.0], 't4.104.114.5': [0.772, 10.0]}), 'newmec-4'], [({'t1.101.114.6': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.6': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.6': [0.593, 6.667], 't2.101.114.6': [0.633, 5.0]}), 'newmec-1'], [({'t2.102.114.7': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.7': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.7': [0.778, 5.0], 't5.102.114.7': [0.5, 5.0]}), 'newmec-2'], [({'t5.103.114.8': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.8': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.8': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.8': [0.699, 5.0], 't3.103.114.8': [0.735, 5.0], 't2.103.114.8': [0.525, 5.0]}), 'newmec-3'], [({'t2.102.114.9': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.9': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.9': [0.606, 5.0], 't4.102.114.9': [0.755, 10.0]}), 'newmec-2'], [({'t1.104.114.10': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.10': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.10': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.10': [0.656, 6.667], 't5.104.114.10': [0.696, 5.0], 't4.104.114.10': [0.654, 10.0]}), 'newmec-4'], [({'t1.156.114.11': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.11': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.11': [0.695, 6.667], 't5.156.114.11': [0.607, 5.0]}), 'osboxes-0'], [({'t4.104.114.12': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.12': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.12': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.12': [0.655, 10.0], 't5.104.114.12': [0.658, 5.0], 't2.104.114.12': [0.693, 5.0]}), 'newmec-4'], [({'t5.156.114.13': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.13': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.13': [0.47, 5.0], 't3.156.114.13': [0.536, 5.0]}), 'osboxes-0'], [({'t3.101.114.14': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.14': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.14': [0.634, 5.0], 't2.101.114.14': [0.6, 5.0]}), 'newmec-1'], [({'t3.101.114.15': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.15': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.15': [0.506, 5.0], 't5.101.114.15': [0.7, 5.0]}), 'newmec-1'], [({'t3.101.114.16': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.16': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.16': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.16': [0.661, 5.0], 't4.101.114.16': [0.714, 10.0], 't2.101.114.16': [0.469, 5.0]}), 'newmec-1'], [({'t3.101.114.17': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.17': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.17': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.17': [0.423, 5.0], 't4.101.114.17': [0.662, 10.0], 't1.101.114.17': [0.464, 6.667]}), 'newmec-1'], [({'t4.102.114.18': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.18': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.18': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.18': [0.459, 10.0], 't5.102.114.18': [0.402, 5.0], 't1.102.114.18': [0.614, 6.667]}), 'newmec-2'], [({'t3.101.114.19': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.19': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.19': [0.603, 5.0], 't4.101.114.19': [0.612, 10.0]}), 'newmec-1'], [({'t5.156.114.20': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.20': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.20': [0.515, 5.0], 't4.156.114.20': [0.684, 10.0]}), 'osboxes-0'], [({'t5.102.114.21': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.21': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.21': [0.526, 5.0], 't4.102.114.21': [0.709, 10.0]}), 'newmec-2'], [({'t3.104.114.22': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.22': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.22': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.22': [0.485, 5.0], 't5.104.114.22': [0.545, 5.0], 't2.104.114.22': [0.519, 5.0]}), 'newmec-4'], [({'t5.104.114.23': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.23': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.23': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.23': [0.791, 5.0], 't2.104.114.23': [0.766, 5.0], 't3.104.114.23': [0.671, 5.0]}), 'newmec-4'], [({'t2.156.114.24': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.24': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.24': [0.514, 5.0], 't4.156.114.24': [0.411, 10.0]}), 'osboxes-0'], [({'t1.103.114.25': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.25': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.25': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.25': [0.545, 6.667], 't3.103.114.25': [0.624, 5.0], 't4.103.114.25': [0.648, 10.0]}), 'newmec-3'], [({'t2.103.114.26': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.26': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.26': [0.667, 5.0], 't5.103.114.26': [0.74, 5.0]}), 'newmec-3'], [({'t3.156.114.27': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.27': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.27': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.27': [0.626, 5.0], 't1.156.114.27': [0.53, 6.667], 't4.156.114.27': [0.67, 10.0]}), 'osboxes-0'], [({'t4.104.114.28': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.28': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.28': [0.781, 10.0], 't2.104.114.28': [0.439, 5.0]}), 'newmec-4'], [({'t5.101.114.29': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.29': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.29': [0.418, 5.0], 't2.101.114.29': [0.738, 5.0]}), 'newmec-1'], [({'t3.104.114.30': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.30': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.30': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.30': [0.558, 5.0], 't5.104.114.30': [0.477, 5.0], 't4.104.114.30': [0.494, 10.0]}), 'newmec-4'], [({'t4.104.114.31': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.31': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.31': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.31': [0.48, 10.0], 't2.104.114.31': [0.748, 5.0], 't1.104.114.31': [0.403, 6.667]}), 'newmec-4'], [({'t3.101.114.32': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.32': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.32': [0.617, 5.0], 't5.101.114.32': [0.419, 5.0]}), 'newmec-1'], [({'t2.101.114.33': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.33': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.33': [0.491, 5.0], 't5.101.114.33': [0.606, 5.0]}), 'newmec-1'], [({'t3.101.114.34': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.34': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.34': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.34': [0.518, 5.0], 't4.101.114.34': [0.595, 10.0], 't2.101.114.34': [0.4, 5.0]}), 'newmec-1'], [({'t2.104.114.35': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.35': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.35': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.35': [0.775, 5.0], 't3.104.114.35': [0.432, 5.0], 't4.104.114.35': [0.665, 10.0]}), 'newmec-4'], [({'t1.104.114.36': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.36': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.36': [0.471, 6.667], 't4.104.114.36': [0.532, 10.0]}), 'newmec-4'], [({'t2.103.114.37': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.37': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.37': [0.64, 5.0], 't5.103.114.37': [0.49, 5.0]}), 'newmec-3'], [({'t5.101.114.38': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.38': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.38': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.38': [0.464, 5.0], 't1.101.114.38': [0.57, 6.667], 't2.101.114.38': [0.764, 5.0]}), 'newmec-1'], [({'t4.102.114.39': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.39': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.39': [0.417, 10.0], 't1.102.114.39': [0.476, 6.667]}), 'newmec-2'], [({'t4.103.114.40': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.40': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.40': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.40': [0.633, 10.0], 't5.103.114.40': [0.515, 5.0], 't3.103.114.40': [0.546, 5.0]}), 'newmec-3'], [({'t1.103.114.41': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.41': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.41': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.41': [0.748, 6.667], 't3.103.114.41': [0.495, 5.0], 't4.103.114.41': [0.77, 10.0]}), 'newmec-3'], [({'t2.103.114.42': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.42': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.42': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.42': [0.427, 5.0], 't1.103.114.42': [0.638, 6.667], 't3.103.114.42': [0.629, 5.0]}), 'newmec-3'], [({'t4.101.114.43': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.43': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.43': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.43': [0.482, 10.0], 't5.101.114.43': [0.602, 5.0], 't2.101.114.43': [0.739, 5.0]}), 'newmec-1'], [({'t5.102.114.44': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.44': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.44': [0.681, 5.0], 't2.102.114.44': [0.665, 5.0]}), 'newmec-2'], [({'t4.101.114.45': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.45': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.45': [0.739, 10.0], 't5.101.114.45': [0.687, 5.0]}), 'newmec-1'], [({'t5.104.114.46': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.46': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.46': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.46': [0.654, 5.0], 't2.104.114.46': [0.69, 5.0], 't1.104.114.46': [0.647, 6.667]}), 'newmec-4'], [({'t4.104.114.47': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.47': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.47': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.47': [0.434, 10.0], 't2.104.114.47': [0.507, 5.0], 't1.104.114.47': [0.431, 6.667]}), 'newmec-4'], [({'t1.101.114.48': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.48': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.48': [0.55, 6.667], 't3.101.114.48': [0.647, 5.0]}), 'newmec-1'], [({'t2.156.114.49': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.49': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.49': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.49': [0.736, 5.0], 't1.156.114.49': [0.622, 6.667], 't3.156.114.49': [0.673, 5.0]}), 'osboxes-0'], [({'t2.104.114.50': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.50': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.50': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.50': [0.639, 5.0], 't5.104.114.50': [0.738, 5.0], 't4.104.114.50': [0.707, 10.0]}), 'newmec-4'], [({'t2.103.114.51': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.51': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.51': [0.673, 5.0], 't3.103.114.51': [0.533, 5.0]}), 'newmec-3'], [({'t2.104.114.52': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.52': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.52': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.52': [0.534, 5.0], 't1.104.114.52': [0.455, 6.667], 't3.104.114.52': [0.607, 5.0]}), 'newmec-4'], [({'t5.101.114.53': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.53': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.53': [0.737, 5.0], 't1.101.114.53': [0.423, 6.667]}), 'newmec-1'], [({'t4.102.114.54': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.54': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.54': [0.618, 10.0], 't5.102.114.54': [0.555, 5.0]}), 'newmec-2'], [({'t2.101.114.55': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.55': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.55': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.55': [0.478, 5.0], 't3.101.114.55': [0.641, 5.0], 't1.101.114.55': [0.482, 6.667]}), 'newmec-1'], [({'t3.102.114.56': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.56': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.56': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.56': [0.531, 5.0], 't5.102.114.56': [0.678, 5.0], 't4.102.114.56': [0.688, 10.0]}), 'newmec-2'], [({'t1.103.114.57': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.57': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.57': [0.45, 6.667], 't5.103.114.57': [0.578, 5.0]}), 'newmec-3'], [({'t3.101.114.58': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.58': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.58': [0.685, 5.0], 't4.101.114.58': [0.434, 10.0]}), 'newmec-1'], [({'t3.103.114.59': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.59': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.59': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.59': [0.759, 5.0], 't5.103.114.59': [0.564, 5.0], 't2.103.114.59': [0.64, 5.0]}), 'newmec-3'], [({'t1.102.114.60': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.60': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.60': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.60': [0.647, 6.667], 't2.102.114.60': [0.612, 5.0], 't4.102.114.60': [0.78, 10.0]}), 'newmec-2'], [({'t5.156.114.61': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.61': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.61': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.61': [0.784, 5.0], 't4.156.114.61': [0.593, 10.0], 't3.156.114.61': [0.416, 5.0]}), 'osboxes-0'], [({'t5.156.114.62': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.62': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.62': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.62': [0.503, 5.0], 't2.156.114.62': [0.666, 5.0], 't4.156.114.62': [0.573, 10.0]}), 'osboxes-0'], [({'t1.101.114.63': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.63': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.63': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.63': [0.727, 6.667], 't3.101.114.63': [0.693, 5.0], 't2.101.114.63': [0.601, 5.0]}), 'newmec-1'], [({'t5.102.114.64': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.64': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.64': [0.532, 5.0], 't3.102.114.64': [0.786, 5.0]}), 'newmec-2'], [({'t4.102.114.65': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.65': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.65': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.65': [0.511, 10.0], 't1.102.114.65': [0.699, 6.667], 't2.102.114.65': [0.483, 5.0]}), 'newmec-2'], [({'t4.102.114.66': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.66': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.66': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.66': [0.618, 10.0], 't2.102.114.66': [0.786, 5.0], 't3.102.114.66': [0.597, 5.0]}), 'newmec-2'], [({'t5.156.114.67': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.67': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.67': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.67': [0.747, 5.0], 't2.156.114.67': [0.417, 5.0], 't3.156.114.67': [0.643, 5.0]}), 'osboxes-0'], [({'t5.156.114.68': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.68': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.68': [0.49, 5.0], 't4.156.114.68': [0.432, 10.0]}), 'osboxes-0'], [({'t3.104.114.69': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.69': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.69': [0.67, 5.0], 't2.104.114.69': [0.444, 5.0]}), 'newmec-4'], [({'t1.104.114.70': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.70': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.70': [0.676, 6.667], 't4.104.114.70': [0.495, 10.0]}), 'newmec-4'], [({'t5.156.114.71': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.71': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.71': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.71': [0.465, 5.0], 't2.156.114.71': [0.759, 5.0], 't4.156.114.71': [0.622, 10.0]}), 'osboxes-0'], [({'t1.104.114.72': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.72': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.72': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.72': [0.692, 6.667], 't2.104.114.72': [0.603, 5.0], 't3.104.114.72': [0.604, 5.0]}), 'newmec-4'], [({'t4.102.114.73': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.73': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.73': [0.779, 10.0], 't2.102.114.73': [0.514, 5.0]}), 'newmec-2'], [({'t5.103.114.74': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.74': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.74': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.74': [0.799, 5.0], 't3.103.114.74': [0.691, 5.0], 't2.103.114.74': [0.667, 5.0]}), 'newmec-3'], [({'t3.102.114.75': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.75': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.75': [0.55, 5.0], 't2.102.114.75': [0.529, 5.0]}), 'newmec-2'], [({'t4.156.114.76': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.76': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.76': [0.75, 10.0], 't5.156.114.76': [0.675, 5.0]}), 'osboxes-0'], [({'t5.104.114.77': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.77': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.77': [0.785, 5.0], 't2.104.114.77': [0.486, 5.0]}), 'newmec-4'], [({'t4.156.114.78': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.78': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.78': [0.554, 10.0], 't5.156.114.78': [0.487, 5.0]}), 'osboxes-0'], [({'t1.104.114.79': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.79': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.79': [0.782, 6.667], 't2.104.114.79': [0.628, 5.0]}), 'newmec-4'], [({'t2.102.114.80': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.80': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.80': [0.495, 5.0], 't3.102.114.80': [0.482, 5.0]}), 'newmec-2'], [({'t3.104.114.81': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.81': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.81': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.81': [0.744, 5.0], 't1.104.114.81': [0.594, 6.667], 't4.104.114.81': [0.648, 10.0]}), 'newmec-4'], [({'t3.102.114.82': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.82': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.82': [0.79, 5.0], 't5.102.114.82': [0.765, 5.0]}), 'newmec-2'], [({'t1.102.114.83': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.83': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.83': [0.401, 6.667], 't5.102.114.83': [0.663, 5.0]}), 'newmec-2'], [({'t5.104.114.84': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.84': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.84': [0.505, 5.0], 't3.104.114.84': [0.788, 5.0]}), 'newmec-4'], [({'t5.156.114.85': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.85': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.85': [0.785, 5.0], 't4.156.114.85': [0.645, 10.0]}), 'osboxes-0'], [({'t2.101.114.86': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.86': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.86': [0.431, 5.0], 't5.101.114.86': [0.471, 5.0]}), 'newmec-1'], [({'t3.156.114.87': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.87': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.156.114.87': [0.727, 5.0], 't1.156.114.87': [0.722, 6.667]}), 'osboxes-0'], [({'t4.103.114.88': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.88': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.88': [0.581, 10.0], 't2.103.114.88': [0.731, 5.0]}), 'newmec-3'], [({'t3.104.114.89': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.89': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.89': [0.505, 5.0], 't4.104.114.89': [0.713, 10.0]}), 'newmec-4'], [({'t1.103.114.90': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.90': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.90': [0.49, 6.667], 't4.103.114.90': [0.463, 10.0]}), 'newmec-3'], [({'t2.102.114.91': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.91': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.91': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.91': [0.511, 5.0], 't4.102.114.91': [0.698, 10.0], 't5.102.114.91': [0.502, 5.0]}), 'newmec-2'], [({'t3.101.114.92': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.92': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.92': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.92': [0.709, 5.0], 't2.101.114.92': [0.547, 5.0], 't5.101.114.92': [0.745, 5.0]}), 'newmec-1'], [({'t5.101.114.93': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.93': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.93': [0.749, 5.0], 't4.101.114.93': [0.446, 10.0]}), 'newmec-1'], [({'t3.156.114.94': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.94': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.94': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.94': [0.528, 5.0], 't2.156.114.94': [0.405, 5.0], 't4.156.114.94': [0.531, 10.0]}), 'osboxes-0'], [({'t4.102.114.95': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.95': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.95': [0.429, 10.0], 't5.102.114.95': [0.622, 5.0]}), 'newmec-2'], [({'t3.103.114.96': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.96': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.96': [0.541, 5.0], 't5.103.114.96': [0.76, 5.0]}), 'newmec-3'], [({'t3.156.114.97': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.97': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.97': [0.529, 5.0], 't5.156.114.97': [0.501, 5.0]}), 'osboxes-0'], [({'t1.104.114.98': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.98': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.98': [0.447, 6.667], 't3.104.114.98': [0.418, 5.0]}), 'newmec-4'], [({'t3.156.114.99': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.99': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.99': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.99': [0.624, 5.0], 't2.156.114.99': [0.507, 5.0], 't5.156.114.99': [0.712, 5.0]}), 'osboxes-0'], [({'t3.156.114.100': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.100': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.100': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.100': [0.551, 5.0], 't5.156.114.100': [0.628, 5.0], 't4.156.114.100': [0.687, 10.0]}), 'osboxes-0'], [({'t2.156.114.101': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.101': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.101': [0.559, 5.0], 't5.156.114.101': [0.749, 5.0]}), 'osboxes-0'], [({'t4.104.114.102': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.102': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.102': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.102': [0.481, 10.0], 't3.104.114.102': [0.787, 5.0], 't5.104.114.102': [0.405, 5.0]}), 'newmec-4'], [({'t2.102.114.103': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.103': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.103': [0.756, 5.0], 't4.102.114.103': [0.746, 10.0]}), 'newmec-2'], [({'t1.103.114.104': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.104': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.104': [0.513, 6.667], 't3.103.114.104': [0.497, 5.0]}), 'newmec-3'], [({'t5.104.114.105': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.105': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.105': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.105': [0.676, 5.0], 't4.104.114.105': [0.44, 10.0], 't3.104.114.105': [0.411, 5.0]}), 'newmec-4'], [({'t5.156.114.106': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.106': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.106': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.106': [0.651, 5.0], 't3.156.114.106': [0.686, 5.0], 't4.156.114.106': [0.564, 10.0]}), 'osboxes-0'], [({'t2.101.114.107': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.107': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.107': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.107': [0.506, 5.0], 't1.101.114.107': [0.731, 6.667], 't3.101.114.107': [0.755, 5.0]}), 'newmec-1'], [({'t3.104.114.108': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.108': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.108': [0.543, 5.0], 't5.104.114.108': [0.491, 5.0]}), 'newmec-4'], [({'t3.104.114.109': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.109': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.109': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.109': [0.56, 5.0], 't5.104.114.109': [0.758, 5.0], 't2.104.114.109': [0.446, 5.0]}), 'newmec-4'], [({'t4.101.114.110': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.110': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.110': [0.478, 10.0], 't3.101.114.110': [0.536, 5.0]}), 'newmec-1'], [({'t2.101.114.111': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.111': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.111': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.111': [0.717, 5.0], 't1.101.114.111': [0.8, 6.667], 't4.101.114.111': [0.681, 10.0]}), 'newmec-1'], [({'t5.104.114.112': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.112': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.112': [0.439, 5.0], 't2.104.114.112': [0.68, 5.0]}), 'newmec-4'], [({'t1.101.114.113': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.113': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.113': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.113': [0.668, 6.667], 't4.101.114.113': [0.507, 10.0], 't5.101.114.113': [0.647, 5.0]}), 'newmec-1'], [({'t2.156.114.114': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.114': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.114': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.114': [0.405, 5.0], 't1.156.114.114': [0.712, 6.667], 't3.156.114.114': [0.538, 5.0]}), 'osboxes-0'], [({'t1.101.114.115': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.115': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.115': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.115': [0.707, 6.667], 't2.101.114.115': [0.516, 5.0], 't3.101.114.115': [0.667, 5.0]}), 'newmec-1'], [({'t2.101.114.116': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.116': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.116': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.116': [0.482, 5.0], 't5.101.114.116': [0.539, 5.0], 't1.101.114.116': [0.703, 6.667]}), 'newmec-1'], [({'t5.102.114.117': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.117': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.117': [0.721, 5.0], 't3.102.114.117': [0.501, 5.0]}), 'newmec-2'], [({'t5.102.114.118': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.118': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.118': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.118': [0.783, 5.0], 't1.102.114.118': [0.716, 6.667], 't4.102.114.118': [0.731, 10.0]}), 'newmec-2'], [({'t3.104.114.119': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.119': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.119': [0.595, 5.0], 't2.104.114.119': [0.783, 5.0]}), 'newmec-4'], [({'t3.104.114.120': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.120': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.120': [0.68, 5.0], 't5.104.114.120': [0.554, 5.0]}), 'newmec-4'], [({'t2.104.114.121': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.121': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.121': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.121': [0.784, 5.0], 't3.104.114.121': [0.596, 5.0], 't5.104.114.121': [0.495, 5.0]}), 'newmec-4'], [({'t5.101.114.122': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.122': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.122': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.122': [0.738, 5.0], 't4.101.114.122': [0.657, 10.0], 't1.101.114.122': [0.444, 6.667]}), 'newmec-1'], [({'t5.156.114.123': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.123': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.123': [0.674, 5.0], 't2.156.114.123': [0.706, 5.0]}), 'osboxes-0'], [({'t4.102.114.124': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.124': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.124': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.124': [0.741, 10.0], 't3.102.114.124': [0.437, 5.0], 't2.102.114.124': [0.717, 5.0]}), 'newmec-2'], [({'t5.101.114.125': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.125': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.125': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.125': [0.671, 5.0], 't1.101.114.125': [0.735, 6.667], 't2.101.114.125': [0.593, 5.0]}), 'newmec-1'], [({'t5.103.114.126': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.126': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.126': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.126': [0.501, 5.0], 't3.103.114.126': [0.458, 5.0], 't2.103.114.126': [0.638, 5.0]}), 'newmec-3'], [({'t4.101.114.127': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.127': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.127': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.127': [0.446, 10.0], 't1.101.114.127': [0.5, 6.667], 't2.101.114.127': [0.688, 5.0]}), 'newmec-1'], [({'t4.101.114.128': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.128': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.128': [0.768, 10.0], 't3.101.114.128': [0.702, 5.0]}), 'newmec-1'], [({'t2.101.114.129': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.129': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.129': [0.651, 5.0], 't4.101.114.129': [0.695, 10.0]}), 'newmec-1'], [({'t3.101.114.130': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.130': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.130': [0.544, 5.0], 't4.101.114.130': [0.617, 10.0]}), 'newmec-1'], [({'t3.102.114.131': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.131': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.131': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.131': [0.657, 5.0], 't2.102.114.131': [0.582, 5.0], 't5.102.114.131': [0.555, 5.0]}), 'newmec-2'], [({'t4.101.114.132': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.132': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.132': [0.412, 10.0], 't3.101.114.132': [0.405, 5.0]}), 'newmec-1'], [({'t4.103.114.133': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.133': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.133': [0.678, 10.0], 't3.103.114.133': [0.61, 5.0]}), 'newmec-3'], [({'t3.104.114.134': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.134': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.134': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.134': [0.623, 5.0], 't5.104.114.134': [0.504, 5.0], 't4.104.114.134': [0.626, 10.0]}), 'newmec-4'], [({'t2.104.114.135': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.135': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.135': [0.615, 5.0], 't5.104.114.135': [0.433, 5.0]}), 'newmec-4'], [({'t3.102.114.136': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.136': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.136': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.136': [0.508, 5.0], 't5.102.114.136': [0.703, 5.0], 't4.102.114.136': [0.547, 10.0]}), 'newmec-2'], [({'t4.102.114.137': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.137': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.137': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.137': [0.554, 10.0], 't3.102.114.137': [0.795, 5.0], 't2.102.114.137': [0.735, 5.0]}), 'newmec-2'], [({'t2.102.114.138': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.138': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.138': [0.661, 5.0], 't4.102.114.138': [0.47, 10.0]}), 'newmec-2'], [({'t2.156.114.139': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.139': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.139': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.139': [0.559, 5.0], 't4.156.114.139': [0.719, 10.0], 't5.156.114.139': [0.784, 5.0]}), 'osboxes-0'], [({'t4.103.114.140': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.140': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.140': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.140': [0.78, 10.0], 't2.103.114.140': [0.438, 5.0], 't3.103.114.140': [0.449, 5.0]}), 'newmec-3'], [({'t5.156.114.141': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.141': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.141': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.141': [0.548, 5.0], 't1.156.114.141': [0.729, 6.667], 't4.156.114.141': [0.598, 10.0]}), 'osboxes-0'], [({'t4.102.114.142': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.142': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.142': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.142': [0.486, 10.0], 't1.102.114.142': [0.61, 6.667], 't2.102.114.142': [0.494, 5.0]}), 'newmec-2'], [({'t5.102.114.143': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.143': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.143': [0.496, 5.0], 't4.102.114.143': [0.519, 10.0]}), 'newmec-2'], [({'t4.103.114.144': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.144': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.144': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.144': [0.541, 10.0], 't2.103.114.144': [0.727, 5.0], 't5.103.114.144': [0.627, 5.0]}), 'newmec-3'], [({'t3.104.114.145': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.145': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.145': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.145': [0.53, 5.0], 't4.104.114.145': [0.69, 10.0], 't2.104.114.145': [0.486, 5.0]}), 'newmec-4'], [({'t5.103.114.146': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.146': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.146': [0.471, 5.0], 't3.103.114.146': [0.718, 5.0]}), 'newmec-3'], [({'t3.102.114.147': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.147': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.147': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.147': [0.628, 5.0], 't2.102.114.147': [0.401, 5.0], 't1.102.114.147': [0.551, 6.667]}), 'newmec-2'], [({'t2.101.114.148': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.148': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.148': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.148': [0.682, 5.0], 't4.101.114.148': [0.799, 10.0], 't1.101.114.148': [0.603, 6.667]}), 'newmec-1'], [({'t2.102.114.149': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.149': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.149': [0.555, 5.0], 't3.102.114.149': [0.468, 5.0]}), 'newmec-2'], [({'t5.102.114.150': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.150': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.150': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.150': [0.605, 5.0], 't4.102.114.150': [0.765, 10.0], 't2.102.114.150': [0.59, 5.0]}), 'newmec-2'], [({'t3.102.114.151': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.151': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.151': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.151': [0.619, 5.0], 't1.102.114.151': [0.555, 6.667], 't4.102.114.151': [0.689, 10.0]}), 'newmec-2'], [({'t1.104.114.152': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.152': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.152': [0.576, 6.667], 't2.104.114.152': [0.502, 5.0]}), 'newmec-4'], [({'t5.103.114.153': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.153': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.153': [0.751, 5.0], 't4.103.114.153': [0.474, 10.0]}), 'newmec-3'], [({'t2.104.114.154': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.154': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.154': [0.626, 5.0], 't3.104.114.154': [0.447, 5.0]}), 'newmec-4'], [({'t1.156.114.155': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.155': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.155': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.155': [0.695, 6.667], 't5.156.114.155': [0.466, 5.0], 't2.156.114.155': [0.588, 5.0]}), 'osboxes-0'], [({'t2.156.114.156': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.156': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.156': [0.437, 5.0], 't4.156.114.156': [0.762, 10.0]}), 'osboxes-0'], [({'t5.101.114.157': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.157': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.157': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.157': [0.67, 5.0], 't2.101.114.157': [0.601, 5.0], 't3.101.114.157': [0.693, 5.0]}), 'newmec-1'], [({'t3.101.114.158': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.158': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.158': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.158': [0.427, 5.0], 't4.101.114.158': [0.65, 10.0], 't1.101.114.158': [0.695, 6.667]}), 'newmec-1'], [({'t1.102.114.159': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.159': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.159': [0.797, 6.667], 't2.102.114.159': [0.774, 5.0]}), 'newmec-2'], [({'t5.103.114.160': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.160': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.160': [0.652, 5.0], 't1.103.114.160': [0.613, 6.667]}), 'newmec-3'], [({'t3.104.114.161': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.161': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.161': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.161': [0.473, 5.0], 't1.104.114.161': [0.768, 6.667], 't2.104.114.161': [0.475, 5.0]}), 'newmec-4'], [({'t4.101.114.162': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.162': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.162': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.162': [0.797, 10.0], 't1.101.114.162': [0.736, 6.667], 't2.101.114.162': [0.409, 5.0]}), 'newmec-1'], [({'t1.104.114.163': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.163': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.163': [0.631, 6.667], 't4.104.114.163': [0.564, 10.0]}), 'newmec-4'], [({'t1.104.114.164': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.164': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.164': [0.551, 6.667], 't2.104.114.164': [0.502, 5.0]}), 'newmec-4'], [({'t2.101.114.165': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.165': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.165': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.165': [0.792, 5.0], 't5.101.114.165': [0.589, 5.0], 't1.101.114.165': [0.509, 6.667]}), 'newmec-1'], [({'t4.156.114.166': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.166': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.166': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.166': [0.42, 10.0], 't5.156.114.166': [0.527, 5.0], 't1.156.114.166': [0.511, 6.667]}), 'osboxes-0'], [({'t2.102.114.167': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.167': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.167': [0.455, 5.0], 't3.102.114.167': [0.473, 5.0]}), 'newmec-2'], [({'t2.104.114.168': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.168': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.168': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.168': [0.474, 5.0], 't1.104.114.168': [0.71, 6.667], 't3.104.114.168': [0.572, 5.0]}), 'newmec-4'], [({'t5.102.114.169': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.169': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.169': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.169': [0.478, 5.0], 't3.102.114.169': [0.531, 5.0], 't4.102.114.169': [0.709, 10.0]}), 'newmec-2'], [({'t5.102.114.170': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.170': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.170': [0.599, 5.0], 't1.102.114.170': [0.75, 6.667]}), 'newmec-2'], [({'t1.102.114.171': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.171': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.171': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.171': [0.448, 6.667], 't3.102.114.171': [0.651, 5.0], 't4.102.114.171': [0.447, 10.0]}), 'newmec-2'], [({'t3.103.114.172': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.172': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.172': [0.425, 5.0], 't4.103.114.172': [0.675, 10.0]}), 'newmec-3'], [({'t4.101.114.173': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.173': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.173': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.173': [0.754, 10.0], 't1.101.114.173': [0.653, 6.667], 't3.101.114.173': [0.416, 5.0]}), 'newmec-1'], [({'t2.102.114.174': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.174': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.174': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.174': [0.75, 5.0], 't4.102.114.174': [0.47, 10.0], 't3.102.114.174': [0.404, 5.0]}), 'newmec-2'], [({'t4.101.114.175': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.175': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.175': [0.556, 10.0], 't2.101.114.175': [0.553, 5.0]}), 'newmec-1'], [({'t4.102.114.176': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.176': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.176': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.176': [0.531, 10.0], 't2.102.114.176': [0.762, 5.0], 't1.102.114.176': [0.768, 6.667]}), 'newmec-2'], [({'t3.156.114.177': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.177': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.177': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.177': [0.561, 5.0], 't5.156.114.177': [0.646, 5.0], 't4.156.114.177': [0.43, 10.0]}), 'osboxes-0'], [({'t4.103.114.178': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.178': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.178': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.178': [0.517, 10.0], 't1.103.114.178': [0.633, 6.667], 't2.103.114.178': [0.523, 5.0]}), 'newmec-3'], [({'t3.104.114.179': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.179': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.179': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.179': [0.691, 5.0], 't2.104.114.179': [0.518, 5.0], 't5.104.114.179': [0.474, 5.0]}), 'newmec-4'], [({'t1.102.114.180': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.180': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.180': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.180': [0.774, 6.667], 't3.102.114.180': [0.755, 5.0], 't5.102.114.180': [0.61, 5.0]}), 'newmec-2'], [({'t4.104.114.181': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.181': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.181': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.181': [0.609, 10.0], 't3.104.114.181': [0.578, 5.0], 't2.104.114.181': [0.602, 5.0]}), 'newmec-4'], [({'t1.103.114.182': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.182': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.182': [0.762, 6.667], 't5.103.114.182': [0.602, 5.0]}), 'newmec-3'], [({'t5.102.114.183': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.183': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.183': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.183': [0.446, 5.0], 't1.102.114.183': [0.576, 6.667], 't3.102.114.183': [0.525, 5.0]}), 'newmec-2'], [({'t5.101.114.184': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.184': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.184': [0.564, 5.0], 't4.101.114.184': [0.514, 10.0]}), 'newmec-1'], [({'t5.102.114.185': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.185': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.185': [0.586, 5.0], 't4.102.114.185': [0.505, 10.0]}), 'newmec-2'], [({'t2.104.114.186': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.186': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.186': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.186': [0.47, 5.0], 't5.104.114.186': [0.767, 5.0], 't4.104.114.186': [0.73, 10.0]}), 'newmec-4'], [({'t2.102.114.187': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.187': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.187': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.187': [0.614, 5.0], 't4.102.114.187': [0.649, 10.0], 't1.102.114.187': [0.533, 6.667]}), 'newmec-2'], [({'t4.156.114.188': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.188': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.188': [0.607, 10.0], 't5.156.114.188': [0.754, 5.0]}), 'osboxes-0'], [({'t4.101.114.189': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.189': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.189': [0.457, 10.0], 't5.101.114.189': [0.511, 5.0]}), 'newmec-1'], [({'t5.156.114.190': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.190': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.190': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.190': [0.695, 5.0], 't3.156.114.190': [0.746, 5.0], 't2.156.114.190': [0.75, 5.0]}), 'osboxes-0'], [({'t2.104.114.191': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.191': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.191': [0.789, 5.0], 't1.104.114.191': [0.692, 6.667]}), 'newmec-4'], [({'t4.102.114.192': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.192': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.192': [0.775, 10.0], 't1.102.114.192': [0.772, 6.667]}), 'newmec-2'], [({'t5.102.114.193': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.193': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.193': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.193': [0.778, 5.0], 't2.102.114.193': [0.628, 5.0], 't4.102.114.193': [0.731, 10.0]}), 'newmec-2'], [({'t2.101.114.194': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.194': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.194': [0.45, 5.0], 't1.101.114.194': [0.709, 6.667]}), 'newmec-1'], [({'t5.102.114.195': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.195': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.195': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.195': [0.742, 5.0], 't2.102.114.195': [0.504, 5.0], 't1.102.114.195': [0.453, 6.667]}), 'newmec-2'], [({'t1.156.114.196': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.156.114.196': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.196': [0.628, 6.667], 't2.156.114.196': [0.466, 5.0]}), 'osboxes-0'], [({'t2.102.114.197': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.197': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.197': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.197': [0.761, 5.0], 't1.102.114.197': [0.598, 6.667], 't4.102.114.197': [0.616, 10.0]}), 'newmec-2'], [({'t5.102.114.198': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.198': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.198': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.198': [0.733, 5.0], 't2.102.114.198': [0.467, 5.0], 't3.102.114.198': [0.651, 5.0]}), 'newmec-2'], [({'t3.101.114.199': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.199': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.199': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.199': [0.468, 5.0], 't1.101.114.199': [0.42, 6.667], 't5.101.114.199': [0.419, 5.0]}), 'newmec-1'], [({'t2.101.114.200': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.200': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.200': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.200': [0.681, 5.0], 't4.101.114.200': [0.717, 10.0], 't1.101.114.200': [0.586, 6.667]}), 'newmec-1'], [({'t5.156.114.201': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.201': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.201': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.201': [0.46, 5.0], 't1.156.114.201': [0.672, 6.667], 't4.156.114.201': [0.407, 10.0]}), 'osboxes-0'], [({'t5.104.114.202': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.202': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.202': [0.567, 5.0], 't2.104.114.202': [0.473, 5.0]}), 'newmec-4'], [({'t2.103.114.203': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.203': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.203': [0.541, 5.0], 't3.103.114.203': [0.703, 5.0]}), 'newmec-3'], [({'t2.156.114.204': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.204': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.204': [0.597, 5.0], 't5.156.114.204': [0.451, 5.0]}), 'osboxes-0'], [({'t1.156.114.205': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.205': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.205': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.156.114.205': [0.477, 6.667], 't5.156.114.205': [0.765, 5.0], 't3.156.114.205': [0.554, 5.0]}), 'osboxes-0'], [({'t5.101.114.206': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.206': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.206': [0.683, 5.0], 't2.101.114.206': [0.762, 5.0]}), 'newmec-1'], [({'t5.101.114.207': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.207': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.207': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.207': [0.542, 5.0], 't2.101.114.207': [0.574, 5.0], 't1.101.114.207': [0.754, 6.667]}), 'newmec-1'], [({'t2.101.114.208': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.208': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.208': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.208': [0.661, 5.0], 't5.101.114.208': [0.585, 5.0], 't1.101.114.208': [0.681, 6.667]}), 'newmec-1'], [({'t2.104.114.209': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.209': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.209': [0.615, 5.0], 't1.104.114.209': [0.664, 6.667]}), 'newmec-4'], [({'t5.102.114.210': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.210': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.210': [0.693, 5.0], 't4.102.114.210': [0.643, 10.0]}), 'newmec-2'], [({'t3.101.114.211': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.211': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.211': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.211': [0.713, 5.0], 't5.101.114.211': [0.513, 5.0], 't4.101.114.211': [0.554, 10.0]}), 'newmec-1'], [({'t4.103.114.212': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.212': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.212': [0.721, 10.0], 't3.103.114.212': [0.631, 5.0]}), 'newmec-3'], [({'t4.104.114.213': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.213': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.213': [0.572, 10.0], 't1.104.114.213': [0.66, 6.667]}), 'newmec-4'], [({'t5.102.114.214': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.214': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.214': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.214': [0.406, 5.0], 't3.102.114.214': [0.771, 5.0], 't1.102.114.214': [0.464, 6.667]}), 'newmec-2'], [({'t2.104.114.215': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.215': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.215': [0.594, 5.0], 't1.104.114.215': [0.636, 6.667]}), 'newmec-4'], [({'t2.103.114.216': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.216': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.216': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.216': [0.743, 5.0], 't5.103.114.216': [0.675, 5.0], 't1.103.114.216': [0.78, 6.667]}), 'newmec-3'], [({'t5.104.114.217': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.217': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.217': [0.421, 5.0], 't4.104.114.217': [0.421, 10.0]}), 'newmec-4'], [({'t5.156.114.218': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.218': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.218': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.218': [0.511, 5.0], 't4.156.114.218': [0.705, 10.0], 't2.156.114.218': [0.436, 5.0]}), 'osboxes-0'], [({'t3.103.114.219': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.219': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.219': [0.435, 5.0], 't1.103.114.219': [0.532, 6.667]}), 'newmec-3'], [({'t1.103.114.220': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.220': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.220': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.220': [0.559, 6.667], 't3.103.114.220': [0.78, 5.0], 't2.103.114.220': [0.744, 5.0]}), 'newmec-3'], [({'t2.102.114.221': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.221': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.221': [0.441, 5.0], 't5.102.114.221': [0.485, 5.0]}), 'newmec-2'], [({'t1.103.114.222': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.222': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.222': [0.787, 6.667], 't3.103.114.222': [0.4, 5.0]}), 'newmec-3'], [({'t1.103.114.223': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.223': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.223': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.223': [0.552, 6.667], 't5.103.114.223': [0.415, 5.0], 't4.103.114.223': [0.643, 10.0]}), 'newmec-3'], [({'t3.156.114.224': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.224': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.224': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.224': [0.686, 5.0], 't2.156.114.224': [0.576, 5.0], 't4.156.114.224': [0.681, 10.0]}), 'osboxes-0'], [({'t3.156.114.225': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.225': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.225': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.156.114.225': [0.706, 5.0], 't4.156.114.225': [0.641, 10.0], 't1.156.114.225': [0.663, 6.667]}), 'osboxes-0'], [({'t2.101.114.226': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.226': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.226': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.226': [0.666, 5.0], 't1.101.114.226': [0.795, 6.667], 't5.101.114.226': [0.45, 5.0]}), 'newmec-1'], [({'t2.102.114.227': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.227': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.227': [0.768, 5.0], 't1.102.114.227': [0.458, 6.667]}), 'newmec-2'], [({'t3.101.114.228': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.228': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.228': [0.676, 5.0], 't5.101.114.228': [0.476, 5.0]}), 'newmec-1'], [({'t1.103.114.229': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.229': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.229': [0.659, 6.667], 't5.103.114.229': [0.792, 5.0]}), 'newmec-3'], [({'t5.104.114.230': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.230': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.230': [0.496, 5.0], 't2.104.114.230': [0.718, 5.0]}), 'newmec-4'], [({'t3.103.114.231': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.231': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.231': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.231': [0.625, 5.0], 't5.103.114.231': [0.755, 5.0], 't4.103.114.231': [0.517, 10.0]}), 'newmec-3'], [({'t2.156.114.232': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.232': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.232': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.232': [0.484, 5.0], 't1.156.114.232': [0.638, 6.667], 't4.156.114.232': [0.747, 10.0]}), 'osboxes-0'], [({'t5.101.114.233': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.233': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.233': [0.626, 5.0], 't4.101.114.233': [0.66, 10.0]}), 'newmec-1'], [({'t5.103.114.234': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.234': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.234': [0.775, 5.0], 't1.103.114.234': [0.488, 6.667]}), 'newmec-3'], [({'t5.101.114.235': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.235': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.235': [0.476, 5.0], 't2.101.114.235': [0.779, 5.0]}), 'newmec-1'], [({'t3.104.114.236': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.236': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.236': [0.552, 5.0], 't4.104.114.236': [0.652, 10.0]}), 'newmec-4'], [({'t2.104.114.237': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.237': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.237': [0.635, 5.0], 't5.104.114.237': [0.731, 5.0]}), 'newmec-4'], [({'t5.156.114.238': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.238': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.238': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.156.114.238': [0.446, 5.0], 't2.156.114.238': [0.421, 5.0], 't1.156.114.238': [0.471, 6.667]}), 'osboxes-0'], [({'t5.101.114.239': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.239': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.239': [0.418, 5.0], 't3.101.114.239': [0.513, 5.0]}), 'newmec-1'], [({'t5.104.114.240': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.240': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.240': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.240': [0.655, 5.0], 't1.104.114.240': [0.583, 6.667], 't2.104.114.240': [0.584, 5.0]}), 'newmec-4'], [({'t3.103.114.241': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.241': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.241': [0.598, 5.0], 't2.103.114.241': [0.456, 5.0]}), 'newmec-3'], [({'t4.101.114.242': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.242': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.242': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.242': [0.621, 10.0], 't5.101.114.242': [0.685, 5.0], 't3.101.114.242': [0.548, 5.0]}), 'newmec-1'], [({'t5.103.114.243': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.243': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.243': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.243': [0.563, 5.0], 't4.103.114.243': [0.746, 10.0], 't3.103.114.243': [0.763, 5.0]}), 'newmec-3'], [({'t4.156.114.244': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.244': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.244': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.244': [0.689, 10.0], 't1.156.114.244': [0.585, 6.667], 't3.156.114.244': [0.554, 5.0]}), 'osboxes-0'], [({'t4.156.114.245': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.245': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.245': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.245': [0.698, 10.0], 't1.156.114.245': [0.515, 6.667], 't3.156.114.245': [0.695, 5.0]}), 'osboxes-0'], [({'t2.102.114.246': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.246': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.246': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.246': [0.711, 5.0], 't1.102.114.246': [0.703, 6.667], 't4.102.114.246': [0.432, 10.0]}), 'newmec-2'], [({'t2.101.114.247': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.247': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.247': [0.766, 5.0], 't5.101.114.247': [0.686, 5.0]}), 'newmec-1'], [({'t4.102.114.248': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.248': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.248': [0.659, 10.0], 't2.102.114.248': [0.506, 5.0]}), 'newmec-2'], [({'t3.102.114.249': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.249': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.249': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.249': [0.575, 5.0], 't2.102.114.249': [0.515, 5.0], 't4.102.114.249': [0.758, 10.0]}), 'newmec-2'], [({'t3.104.114.250': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.250': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.250': [0.664, 5.0], 't2.104.114.250': [0.592, 5.0]}), 'newmec-4'], [({'t2.101.114.251': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.251': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.251': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.251': [0.692, 5.0], 't5.101.114.251': [0.553, 5.0], 't1.101.114.251': [0.75, 6.667]}), 'newmec-1'], [({'t5.102.114.252': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.252': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.252': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.252': [0.447, 5.0], 't3.102.114.252': [0.473, 5.0], 't1.102.114.252': [0.496, 6.667]}), 'newmec-2'], [({'t2.156.114.253': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.253': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.253': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.253': [0.444, 5.0], 't4.156.114.253': [0.488, 10.0], 't5.156.114.253': [0.527, 5.0]}), 'osboxes-0'], [({'t4.104.114.254': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.254': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.254': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.254': [0.411, 10.0], 't5.104.114.254': [0.414, 5.0], 't2.104.114.254': [0.5, 5.0]}), 'newmec-4'], [({'t5.102.114.255': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.255': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.255': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.255': [0.627, 5.0], 't2.102.114.255': [0.516, 5.0], 't3.102.114.255': [0.533, 5.0]}), 'newmec-2'], [({'t4.101.114.256': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.256': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.256': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.256': [0.681, 10.0], 't5.101.114.256': [0.44, 5.0], 't2.101.114.256': [0.642, 5.0]}), 'newmec-1'], [({'t3.102.114.257': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.257': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.257': [0.601, 5.0], 't5.102.114.257': [0.549, 5.0]}), 'newmec-2'], [({'t4.101.114.258': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.258': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.258': [0.468, 10.0], 't5.101.114.258': [0.634, 5.0]}), 'newmec-1'], [({'t3.103.114.259': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.259': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.259': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.259': [0.732, 5.0], 't2.103.114.259': [0.529, 5.0], 't4.103.114.259': [0.761, 10.0]}), 'newmec-3'], [({'t2.103.114.260': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.260': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.260': [0.418, 5.0], 't5.103.114.260': [0.597, 5.0]}), 'newmec-3'], [({'t4.104.114.261': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.261': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.261': [0.789, 10.0], 't3.104.114.261': [0.731, 5.0]}), 'newmec-4'], [({'t2.101.114.262': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.262': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.262': [0.713, 5.0], 't3.101.114.262': [0.599, 5.0]}), 'newmec-1'], [({'t3.104.114.263': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.263': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.263': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.263': [0.518, 5.0], 't5.104.114.263': [0.709, 5.0], 't2.104.114.263': [0.784, 5.0]}), 'newmec-4'], [({'t4.103.114.264': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.264': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.264': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.264': [0.575, 10.0], 't1.103.114.264': [0.706, 6.667], 't3.103.114.264': [0.475, 5.0]}), 'newmec-3'], [({'t3.102.114.265': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.265': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.265': [0.566, 5.0], 't2.102.114.265': [0.446, 5.0]}), 'newmec-2'], [({'t2.102.114.266': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.266': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.266': [0.461, 5.0], 't1.102.114.266': [0.644, 6.667]}), 'newmec-2'], [({'t5.156.114.267': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.267': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.267': [0.491, 5.0], 't4.156.114.267': [0.461, 10.0]}), 'osboxes-0'], [({'t4.156.114.268': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.268': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.268': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.268': [0.511, 10.0], 't2.156.114.268': [0.403, 5.0], 't5.156.114.268': [0.707, 5.0]}), 'osboxes-0'], [({'t5.103.114.269': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.269': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.269': [0.679, 5.0], 't2.103.114.269': [0.554, 5.0]}), 'newmec-3'], [({'t5.101.114.270': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.270': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.270': [0.47, 5.0], 't1.101.114.270': [0.636, 6.667]}), 'newmec-1'], [({'t4.156.114.271': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.271': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.271': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.271': [0.693, 10.0], 't2.156.114.271': [0.557, 5.0], 't5.156.114.271': [0.459, 5.0]}), 'osboxes-0'], [({'t1.102.114.272': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.272': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.272': [0.463, 6.667], 't5.102.114.272': [0.522, 5.0]}), 'newmec-2'], [({'t2.101.114.273': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.273': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.273': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.273': [0.435, 5.0], 't5.101.114.273': [0.518, 5.0], 't1.101.114.273': [0.742, 6.667]}), 'newmec-1'], [({'t1.104.114.274': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.274': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.274': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.274': [0.622, 6.667], 't3.104.114.274': [0.763, 5.0], 't5.104.114.274': [0.622, 5.0]}), 'newmec-4'], [({'t5.103.114.275': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.275': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.275': [0.758, 5.0], 't3.103.114.275': [0.756, 5.0]}), 'newmec-3'], [({'t2.104.114.276': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.276': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.276': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.276': [0.711, 5.0], 't5.104.114.276': [0.492, 5.0], 't4.104.114.276': [0.55, 10.0]}), 'newmec-4'], [({'t2.102.114.277': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.277': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.277': [0.665, 5.0], 't5.102.114.277': [0.561, 5.0]}), 'newmec-2'], [({'t3.101.114.278': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.278': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.278': [0.787, 5.0], 't5.101.114.278': [0.718, 5.0]}), 'newmec-1'], [({'t1.103.114.279': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.279': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.279': [0.46, 6.667], 't4.103.114.279': [0.655, 10.0]}), 'newmec-3'], [({'t5.103.114.280': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.280': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.280': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.280': [0.588, 5.0], 't2.103.114.280': [0.443, 5.0], 't4.103.114.280': [0.58, 10.0]}), 'newmec-3'], [({'t5.104.114.281': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.281': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.281': [0.658, 5.0], 't2.104.114.281': [0.775, 5.0]}), 'newmec-4'], [({'t4.102.114.282': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.282': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.282': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.282': [0.411, 10.0], 't5.102.114.282': [0.76, 5.0], 't1.102.114.282': [0.629, 6.667]}), 'newmec-2'], [({'t1.103.114.283': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.283': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.283': [0.648, 6.667], 't5.103.114.283': [0.407, 5.0]}), 'newmec-3'], [({'t1.102.114.284': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.284': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.284': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.284': [0.661, 6.667], 't2.102.114.284': [0.529, 5.0], 't3.102.114.284': [0.604, 5.0]}), 'newmec-2'], [({'t3.104.114.285': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.285': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.285': [0.668, 5.0], 't2.104.114.285': [0.454, 5.0]}), 'newmec-4'], [({'t1.104.114.286': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.286': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.286': [0.506, 6.667], 't2.104.114.286': [0.582, 5.0]}), 'newmec-4'], [({'t2.104.114.287': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.287': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.287': [0.733, 5.0], 't4.104.114.287': [0.408, 10.0]}), 'newmec-4'], [({'t1.103.114.288': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.288': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.288': [0.688, 6.667], 't5.103.114.288': [0.519, 5.0]}), 'newmec-3'], [({'t1.104.114.289': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.289': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.289': [0.684, 6.667], 't4.104.114.289': [0.403, 10.0]}), 'newmec-4'], [({'t5.102.114.290': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.290': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.290': [0.509, 5.0], 't3.102.114.290': [0.55, 5.0]}), 'newmec-2'], [({'t2.104.114.291': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.291': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.291': [0.435, 5.0], 't4.104.114.291': [0.715, 10.0]}), 'newmec-4'], [({'t3.102.114.292': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.292': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.292': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.292': [0.577, 5.0], 't1.102.114.292': [0.49, 6.667], 't4.102.114.292': [0.474, 10.0]}), 'newmec-2'], [({'t2.104.114.293': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.293': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.293': [0.488, 5.0], 't3.104.114.293': [0.685, 5.0]}), 'newmec-4'], [({'t5.103.114.294': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.294': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.294': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.294': [0.749, 5.0], 't4.103.114.294': [0.424, 10.0], 't3.103.114.294': [0.547, 5.0]}), 'newmec-3'], [({'t5.156.114.295': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.295': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.295': [0.645, 5.0], 't3.156.114.295': [0.551, 5.0]}), 'osboxes-0'], [({'t2.102.114.296': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.296': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.296': [0.642, 5.0], 't3.102.114.296': [0.495, 5.0]}), 'newmec-2'], [({'t5.102.114.297': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.297': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.297': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.297': [0.663, 5.0], 't3.102.114.297': [0.453, 5.0], 't2.102.114.297': [0.685, 5.0]}), 'newmec-2'], [({'t4.102.114.298': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.298': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.298': [0.771, 10.0], 't5.102.114.298': [0.584, 5.0]}), 'newmec-2'], [({'t5.156.114.299': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.299': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.299': [0.779, 5.0], 't4.156.114.299': [0.695, 10.0]}), 'osboxes-0'], [({'t2.156.114.300': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.300': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.300': [0.763, 5.0], 't4.156.114.300': [0.442, 10.0]}), 'osboxes-0'], [({'t2.103.114.301': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.301': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.301': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.301': [0.472, 5.0], 't1.103.114.301': [0.536, 6.667], 't3.103.114.301': [0.604, 5.0]}), 'newmec-3'], [({'t1.156.114.302': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.302': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.302': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.156.114.302': [0.515, 6.667], 't5.156.114.302': [0.687, 5.0], 't4.156.114.302': [0.422, 10.0]}), 'osboxes-0'], [({'t2.101.114.303': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.303': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.303': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.303': [0.666, 5.0], 't5.101.114.303': [0.787, 5.0], 't4.101.114.303': [0.764, 10.0]}), 'newmec-1'], [({'t2.104.114.304': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.304': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.304': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.304': [0.611, 5.0], 't3.104.114.304': [0.473, 5.0], 't5.104.114.304': [0.496, 5.0]}), 'newmec-4'], [({'t3.101.114.305': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.305': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.305': [0.594, 5.0], 't1.101.114.305': [0.665, 6.667]}), 'newmec-1'], [({'t2.104.114.306': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.306': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.306': [0.529, 5.0], 't1.104.114.306': [0.684, 6.667]}), 'newmec-4'], [({'t2.101.114.307': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.307': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.307': [0.497, 5.0], 't5.101.114.307': [0.744, 5.0]}), 'newmec-1'], [({'t1.104.114.308': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.308': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.308': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.308': [0.663, 6.667], 't3.104.114.308': [0.673, 5.0], 't2.104.114.308': [0.442, 5.0]}), 'newmec-4'], [({'t4.104.114.309': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.309': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.309': [0.506, 10.0], 't2.104.114.309': [0.441, 5.0]}), 'newmec-4'], [({'t4.104.114.310': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.310': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.310': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.310': [0.664, 10.0], 't3.104.114.310': [0.451, 5.0], 't2.104.114.310': [0.778, 5.0]}), 'newmec-4'], [({'t3.102.114.311': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.311': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.311': [0.692, 5.0], 't1.102.114.311': [0.47, 6.667]}), 'newmec-2'], [({'t2.103.114.312': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.312': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.312': [0.424, 5.0], 't5.103.114.312': [0.786, 5.0]}), 'newmec-3'], [({'t3.104.114.313': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.313': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.313': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.313': [0.556, 5.0], 't1.104.114.313': [0.648, 6.667], 't5.104.114.313': [0.534, 5.0]}), 'newmec-4'], [({'t3.101.114.314': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.314': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.314': [0.458, 5.0], 't5.101.114.314': [0.718, 5.0]}), 'newmec-1'], [({'t5.102.114.315': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.315': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.315': [0.745, 5.0], 't3.102.114.315': [0.592, 5.0]}), 'newmec-2'], [({'t4.101.114.316': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.316': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.316': [0.761, 10.0], 't1.101.114.316': [0.654, 6.667]}), 'newmec-1'], [({'t5.156.114.317': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.317': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.317': [0.439, 5.0], 't2.156.114.317': [0.627, 5.0]}), 'osboxes-0'], [({'t4.101.114.318': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.318': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.318': [0.422, 10.0], 't3.101.114.318': [0.684, 5.0]}), 'newmec-1'], [({'t5.103.114.319': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.319': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.319': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.319': [0.431, 5.0], 't3.103.114.319': [0.693, 5.0], 't4.103.114.319': [0.725, 10.0]}), 'newmec-3'], [({'t1.101.114.320': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.320': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.320': [0.72, 6.667], 't3.101.114.320': [0.694, 5.0]}), 'newmec-1'], [({'t5.102.114.321': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.321': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.321': [0.742, 5.0], 't4.102.114.321': [0.616, 10.0]}), 'newmec-2'], [({'t3.103.114.322': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.322': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.322': [0.644, 5.0], 't2.103.114.322': [0.756, 5.0]}), 'newmec-3'], [({'t4.156.114.323': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.323': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.323': [0.795, 10.0], 't5.156.114.323': [0.772, 5.0]}), 'osboxes-0'], [({'t3.102.114.324': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.324': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.324': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.324': [0.463, 5.0], 't5.102.114.324': [0.512, 5.0], 't2.102.114.324': [0.722, 5.0]}), 'newmec-2'], [({'t5.104.114.325': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.325': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.325': [0.578, 5.0], 't3.104.114.325': [0.45, 5.0]}), 'newmec-4'], [({'t1.101.114.326': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.326': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.326': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.326': [0.711, 6.667], 't5.101.114.326': [0.674, 5.0], 't3.101.114.326': [0.761, 5.0]}), 'newmec-1'], [({'t3.102.114.327': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.327': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.327': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.327': [0.753, 5.0], 't2.102.114.327': [0.545, 5.0], 't1.102.114.327': [0.469, 6.667]}), 'newmec-2'], [({'t4.103.114.328': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.328': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.328': [0.58, 10.0], 't5.103.114.328': [0.505, 5.0]}), 'newmec-3'], [({'t3.102.114.329': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.329': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.329': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.329': [0.606, 5.0], 't2.102.114.329': [0.798, 5.0], 't4.102.114.329': [0.607, 10.0]}), 'newmec-2'], [({'t2.101.114.330': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.330': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.330': [0.447, 5.0], 't5.101.114.330': [0.597, 5.0]}), 'newmec-1'], [({'t1.102.114.331': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.331': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.331': [0.413, 6.667], 't2.102.114.331': [0.464, 5.0]}), 'newmec-2'], [({'t3.101.114.332': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.332': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.332': [0.445, 5.0], 't2.101.114.332': [0.771, 5.0]}), 'newmec-1'], [({'t4.102.114.333': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.333': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.333': [0.649, 10.0], 't5.102.114.333': [0.598, 5.0]}), 'newmec-2'], [({'t3.104.114.334': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.334': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.334': [0.719, 5.0], 't4.104.114.334': [0.605, 10.0]}), 'newmec-4'], [({'t4.156.114.335': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.335': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.335': [0.445, 10.0], 't2.156.114.335': [0.738, 5.0]}), 'osboxes-0'], [({'t4.103.114.336': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.336': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.336': [0.585, 10.0], 't5.103.114.336': [0.688, 5.0]}), 'newmec-3'], [({'t5.103.114.337': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.337': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.337': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.337': [0.493, 5.0], 't1.103.114.337': [0.687, 6.667], 't2.103.114.337': [0.793, 5.0]}), 'newmec-3'], [({'t3.102.114.338': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.338': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.338': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.338': [0.632, 5.0], 't5.102.114.338': [0.662, 5.0], 't4.102.114.338': [0.569, 10.0]}), 'newmec-2'], [({'t4.104.114.339': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.339': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.339': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.339': [0.653, 10.0], 't2.104.114.339': [0.451, 5.0], 't1.104.114.339': [0.695, 6.667]}), 'newmec-4'], [({'t4.104.114.340': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.340': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.340': [0.408, 10.0], 't2.104.114.340': [0.602, 5.0]}), 'newmec-4'], [({'t3.104.114.341': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.341': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.341': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.341': [0.437, 5.0], 't2.104.114.341': [0.562, 5.0], 't1.104.114.341': [0.695, 6.667]}), 'newmec-4'], [({'t3.104.114.342': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.342': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.342': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.342': [0.567, 5.0], 't4.104.114.342': [0.729, 10.0], 't1.104.114.342': [0.552, 6.667]}), 'newmec-4'], [({'t2.156.114.343': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.343': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.343': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.343': [0.587, 5.0], 't1.156.114.343': [0.701, 6.667], 't5.156.114.343': [0.658, 5.0]}), 'osboxes-0'], [({'t3.102.114.344': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.344': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.344': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.344': [0.573, 5.0], 't5.102.114.344': [0.73, 5.0], 't2.102.114.344': [0.75, 5.0]}), 'newmec-2'], [({'t2.101.114.345': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.345': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.345': [0.608, 5.0], 't3.101.114.345': [0.527, 5.0]}), 'newmec-1'], [({'t4.104.114.346': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.346': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.346': [0.584, 10.0], 't2.104.114.346': [0.78, 5.0]}), 'newmec-4'], [({'t5.104.114.347': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.347': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.347': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.347': [0.596, 5.0], 't1.104.114.347': [0.608, 6.667], 't4.104.114.347': [0.565, 10.0]}), 'newmec-4'], [({'t5.102.114.348': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.348': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.348': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.348': [0.552, 5.0], 't3.102.114.348': [0.756, 5.0], 't4.102.114.348': [0.621, 10.0]}), 'newmec-2'], [({'t2.101.114.349': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.349': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.349': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.349': [0.604, 5.0], 't5.101.114.349': [0.476, 5.0], 't1.101.114.349': [0.689, 6.667]}), 'newmec-1'], [({'t2.103.114.350': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.350': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.350': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.350': [0.558, 5.0], 't5.103.114.350': [0.745, 5.0], 't1.103.114.350': [0.566, 6.667]}), 'newmec-3'], [({'t2.104.114.351': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.351': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.351': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.351': [0.413, 5.0], 't3.104.114.351': [0.645, 5.0], 't1.104.114.351': [0.632, 6.667]}), 'newmec-4'], [({'t3.103.114.352': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.352': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.352': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.352': [0.746, 5.0], 't5.103.114.352': [0.531, 5.0], 't4.103.114.352': [0.424, 10.0]}), 'newmec-3'], [({'t3.104.114.353': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.353': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.353': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.353': [0.481, 5.0], 't1.104.114.353': [0.611, 6.667], 't2.104.114.353': [0.608, 5.0]}), 'newmec-4'], [({'t1.101.114.354': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.354': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.354': [0.515, 6.667], 't2.101.114.354': [0.521, 5.0]}), 'newmec-1'], [({'t3.156.114.355': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.355': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.156.114.355': [0.756, 5.0], 't2.156.114.355': [0.713, 5.0]}), 'osboxes-0'], [({'t1.156.114.356': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.356': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.356': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.356': [0.751, 6.667], 't3.156.114.356': [0.543, 5.0], 't5.156.114.356': [0.457, 5.0]}), 'osboxes-0'], [({'t2.103.114.357': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.357': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.357': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.357': [0.58, 5.0], 't4.103.114.357': [0.425, 10.0], 't1.103.114.357': [0.646, 6.667]}), 'newmec-3'], [({'t5.102.114.358': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.358': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.358': [0.505, 5.0], 't1.102.114.358': [0.71, 6.667]}), 'newmec-2'], [({'t1.104.114.359': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.359': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.359': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.359': [0.438, 6.667], 't5.104.114.359': [0.657, 5.0], 't4.104.114.359': [0.443, 10.0]}), 'newmec-4'], [({'t5.101.114.360': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.360': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.360': [0.493, 5.0], 't3.101.114.360': [0.455, 5.0]}), 'newmec-1'], [({'t1.104.114.361': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.361': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.361': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.361': [0.441, 6.667], 't5.104.114.361': [0.63, 5.0], 't4.104.114.361': [0.477, 10.0]}), 'newmec-4'], [({'t5.101.114.362': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.362': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.362': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.362': [0.695, 5.0], 't4.101.114.362': [0.714, 10.0], 't1.101.114.362': [0.557, 6.667]}), 'newmec-1'], [({'t4.101.114.363': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.363': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.363': [0.713, 10.0], 't5.101.114.363': [0.65, 5.0]}), 'newmec-1'], [({'t2.104.114.364': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.364': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.364': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.364': [0.648, 5.0], 't4.104.114.364': [0.476, 10.0], 't1.104.114.364': [0.517, 6.667]}), 'newmec-4'], [({'t2.101.114.365': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.365': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.365': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.365': [0.568, 5.0], 't3.101.114.365': [0.663, 5.0], 't5.101.114.365': [0.504, 5.0]}), 'newmec-1'], [({'t2.156.114.366': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.366': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.366': [0.689, 5.0], 't5.156.114.366': [0.541, 5.0]}), 'osboxes-0'], [({'t2.104.114.367': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.367': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.367': [0.793, 5.0], 't5.104.114.367': [0.768, 5.0]}), 'newmec-4'], [({'t1.103.114.368': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.368': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.368': [0.421, 6.667], 't5.103.114.368': [0.661, 5.0]}), 'newmec-3'], [({'t3.103.114.369': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.369': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.369': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.369': [0.492, 5.0], 't4.103.114.369': [0.601, 10.0], 't2.103.114.369': [0.498, 5.0]}), 'newmec-3'], [({'t3.104.114.370': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.370': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.370': [0.416, 5.0], 't2.104.114.370': [0.534, 5.0]}), 'newmec-4'], [({'t2.103.114.371': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.371': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.371': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.371': [0.517, 5.0], 't5.103.114.371': [0.483, 5.0], 't3.103.114.371': [0.567, 5.0]}), 'newmec-3'], [({'t2.102.114.372': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.372': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.372': [0.52, 5.0], 't1.102.114.372': [0.571, 6.667]}), 'newmec-2'], [({'t1.101.114.373': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.373': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.373': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.373': [0.636, 6.667], 't4.101.114.373': [0.527, 10.0], 't5.101.114.373': [0.761, 5.0]}), 'newmec-1'], [({'t2.102.114.374': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.374': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.374': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.374': [0.64, 5.0], 't3.102.114.374': [0.623, 5.0], 't5.102.114.374': [0.456, 5.0]}), 'newmec-2'], [({'t3.102.114.375': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.375': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.375': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.375': [0.595, 5.0], 't5.102.114.375': [0.634, 5.0], 't2.102.114.375': [0.68, 5.0]}), 'newmec-2'], [({'t2.101.114.376': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.376': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.376': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.376': [0.616, 5.0], 't5.101.114.376': [0.611, 5.0], 't4.101.114.376': [0.516, 10.0]}), 'newmec-1'], [({'t1.102.114.377': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.377': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.377': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.377': [0.415, 6.667], 't5.102.114.377': [0.441, 5.0], 't4.102.114.377': [0.702, 10.0]}), 'newmec-2'], [({'t2.102.114.378': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.378': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.378': [0.712, 5.0], 't4.102.114.378': [0.738, 10.0]}), 'newmec-2'], [({'t4.102.114.379': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.379': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.379': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.379': [0.742, 10.0], 't5.102.114.379': [0.623, 5.0], 't2.102.114.379': [0.545, 5.0]}), 'newmec-2'], [({'t2.156.114.380': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.380': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.380': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.380': [0.471, 5.0], 't4.156.114.380': [0.667, 10.0], 't1.156.114.380': [0.719, 6.667]}), 'osboxes-0'], [({'t3.101.114.381': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.381': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.381': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.381': [0.604, 5.0], 't5.101.114.381': [0.544, 5.0], 't4.101.114.381': [0.52, 10.0]}), 'newmec-1'], [({'t5.103.114.382': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.382': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.382': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.382': [0.693, 5.0], 't3.103.114.382': [0.625, 5.0], 't4.103.114.382': [0.461, 10.0]}), 'newmec-3'], [({'t4.102.114.383': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.383': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.383': [0.544, 10.0], 't5.102.114.383': [0.722, 5.0]}), 'newmec-2'], [({'t3.104.114.384': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.384': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.384': [0.658, 5.0], 't2.104.114.384': [0.451, 5.0]}), 'newmec-4'], [({'t2.103.114.385': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.385': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.385': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.385': [0.448, 5.0], 't3.103.114.385': [0.743, 5.0], 't5.103.114.385': [0.791, 5.0]}), 'newmec-3'], [({'t4.103.114.386': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.386': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.386': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.386': [0.736, 10.0], 't5.103.114.386': [0.486, 5.0], 't2.103.114.386': [0.543, 5.0]}), 'newmec-3'], [({'t3.156.114.387': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.387': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.387': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.387': [0.635, 5.0], 't4.156.114.387': [0.626, 10.0], 't5.156.114.387': [0.501, 5.0]}), 'osboxes-0'], [({'t5.103.114.388': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.388': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.388': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.388': [0.756, 5.0], 't3.103.114.388': [0.591, 5.0], 't2.103.114.388': [0.765, 5.0]}), 'newmec-3'], [({'t4.102.114.389': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.389': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.389': [0.46, 10.0], 't1.102.114.389': [0.442, 6.667]}), 'newmec-2'], [({'t3.103.114.390': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.390': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.390': [0.524, 5.0], 't1.103.114.390': [0.668, 6.667]}), 'newmec-3'], [({'t4.103.114.391': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.391': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.391': [0.563, 10.0], 't1.103.114.391': [0.743, 6.667]}), 'newmec-3'], [({'t5.104.114.392': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.392': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.392': [0.698, 5.0], 't2.104.114.392': [0.754, 5.0]}), 'newmec-4'], [({'t5.102.114.393': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.393': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.393': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.393': [0.602, 5.0], 't3.102.114.393': [0.513, 5.0], 't4.102.114.393': [0.6, 10.0]}), 'newmec-2'], [({'t5.104.114.394': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.394': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.394': [0.41, 5.0], 't1.104.114.394': [0.754, 6.667]}), 'newmec-4'], [({'t4.101.114.395': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.395': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.395': [0.488, 10.0], 't3.101.114.395': [0.442, 5.0]}), 'newmec-1'], [({'t4.156.114.396': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.396': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.396': [0.42, 10.0], 't2.156.114.396': [0.417, 5.0]}), 'osboxes-0'], [({'t1.102.114.397': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.397': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.397': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.397': [0.538, 6.667], 't4.102.114.397': [0.737, 10.0], 't3.102.114.397': [0.785, 5.0]}), 'newmec-2'], [({'t1.102.114.398': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.398': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.398': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.398': [0.584, 6.667], 't5.102.114.398': [0.509, 5.0], 't2.102.114.398': [0.606, 5.0]}), 'newmec-2'], [({'t3.103.114.399': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.399': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.399': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.399': [0.739, 5.0], 't2.103.114.399': [0.637, 5.0], 't5.103.114.399': [0.513, 5.0]}), 'newmec-3'], [({'t2.101.114.400': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.400': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.400': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.400': [0.478, 5.0], 't4.101.114.400': [0.405, 10.0], 't3.101.114.400': [0.706, 5.0]}), 'newmec-1'], [({'t1.101.114.401': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.401': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.401': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.401': [0.652, 6.667], 't3.101.114.401': [0.423, 5.0], 't5.101.114.401': [0.484, 5.0]}), 'newmec-1'], [({'t2.104.114.402': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.402': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.402': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.402': [0.512, 5.0], 't3.104.114.402': [0.454, 5.0], 't4.104.114.402': [0.485, 10.0]}), 'newmec-4'], [({'t4.102.114.403': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.403': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.403': [0.498, 10.0], 't3.102.114.403': [0.497, 5.0]}), 'newmec-2'], [({'t1.101.114.404': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.404': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.404': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.404': [0.626, 6.667], 't5.101.114.404': [0.537, 5.0], 't3.101.114.404': [0.529, 5.0]}), 'newmec-1'], [({'t3.101.114.405': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.405': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.405': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.405': [0.539, 5.0], 't2.101.114.405': [0.645, 5.0], 't1.101.114.405': [0.437, 6.667]}), 'newmec-1'], [({'t4.101.114.406': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.406': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.406': [0.611, 10.0], 't1.101.114.406': [0.464, 6.667]}), 'newmec-1'], [({'t5.103.114.407': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.407': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.407': [0.705, 5.0], 't3.103.114.407': [0.732, 5.0]}), 'newmec-3'], [({'t4.104.114.408': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.408': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.408': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.408': [0.671, 10.0], 't3.104.114.408': [0.647, 5.0], 't2.104.114.408': [0.417, 5.0]}), 'newmec-4'], [({'t1.101.114.409': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.409': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.409': [0.771, 6.667], 't5.101.114.409': [0.643, 5.0]}), 'newmec-1'], [({'t1.102.114.410': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.410': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.410': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.410': [0.626, 6.667], 't5.102.114.410': [0.424, 5.0], 't3.102.114.410': [0.728, 5.0]}), 'newmec-2'], [({'t1.102.114.411': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.411': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.411': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.411': [0.423, 6.667], 't3.102.114.411': [0.762, 5.0], 't4.102.114.411': [0.718, 10.0]}), 'newmec-2'], [({'t4.101.114.412': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.412': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.412': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.412': [0.4, 10.0], 't1.101.114.412': [0.429, 6.667], 't3.101.114.412': [0.578, 5.0]}), 'newmec-1'], [({'t3.104.114.413': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.413': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.413': [0.725, 5.0], 't1.104.114.413': [0.468, 6.667]}), 'newmec-4'], [({'t4.102.114.414': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.414': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.414': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.414': [0.609, 10.0], 't5.102.114.414': [0.699, 5.0], 't3.102.114.414': [0.761, 5.0]}), 'newmec-2'], [({'t4.103.114.415': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.415': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.415': [0.548, 10.0], 't5.103.114.415': [0.607, 5.0]}), 'newmec-3'], [({'t5.101.114.416': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.416': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.416': [0.442, 5.0], 't2.101.114.416': [0.565, 5.0]}), 'newmec-1'], [({'t3.101.114.417': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.417': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.417': [0.75, 5.0], 't5.101.114.417': [0.512, 5.0]}), 'newmec-1'], [({'t3.103.114.418': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.418': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.418': [0.667, 5.0], 't5.103.114.418': [0.501, 5.0]}), 'newmec-3'], [({'t3.104.114.419': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.419': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.419': [0.527, 5.0], 't4.104.114.419': [0.724, 10.0]}), 'newmec-4'], [({'t2.102.114.420': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.420': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.420': [0.683, 5.0], 't4.102.114.420': [0.667, 10.0]}), 'newmec-2'], [({'t5.101.114.421': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.421': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.421': [0.742, 5.0], 't3.101.114.421': [0.679, 5.0]}), 'newmec-1'], [({'t3.102.114.422': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.422': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.422': [0.44, 5.0], 't1.102.114.422': [0.625, 6.667]}), 'newmec-2'], [({'t3.103.114.423': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.423': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.423': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.423': [0.619, 5.0], 't2.103.114.423': [0.752, 5.0], 't1.103.114.423': [0.634, 6.667]}), 'newmec-3'], [({'t4.102.114.424': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.424': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.424': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.424': [0.616, 10.0], 't2.102.114.424': [0.77, 5.0], 't1.102.114.424': [0.784, 6.667]}), 'newmec-2'], [({'t2.156.114.425': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.425': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.425': [0.565, 5.0], 't5.156.114.425': [0.417, 5.0]}), 'osboxes-0'], [({'t1.102.114.426': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.426': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.426': [0.512, 6.667], 't5.102.114.426': [0.632, 5.0]}), 'newmec-2'], [({'t3.104.114.427': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.427': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.427': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.427': [0.678, 5.0], 't1.104.114.427': [0.535, 6.667], 't4.104.114.427': [0.581, 10.0]}), 'newmec-4'], [({'t4.103.114.428': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.428': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.428': [0.425, 10.0], 't1.103.114.428': [0.417, 6.667]}), 'newmec-3'], [({'t2.102.114.429': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.429': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.429': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.429': [0.501, 5.0], 't3.102.114.429': [0.597, 5.0], 't1.102.114.429': [0.637, 6.667]}), 'newmec-2'], [({'t5.102.114.430': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.430': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.430': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.430': [0.519, 5.0], 't2.102.114.430': [0.571, 5.0], 't1.102.114.430': [0.689, 6.667]}), 'newmec-2'], [({'t4.103.114.431': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.431': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.431': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.431': [0.779, 10.0], 't3.103.114.431': [0.52, 5.0], 't5.103.114.431': [0.41, 5.0]}), 'newmec-3'], [({'t2.104.114.432': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.432': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.432': [0.662, 5.0], 't3.104.114.432': [0.531, 5.0]}), 'newmec-4'], [({'t1.101.114.433': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.433': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.433': [0.447, 6.667], 't2.101.114.433': [0.457, 5.0]}), 'newmec-1'], [({'t1.104.114.434': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.434': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.434': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.434': [0.437, 6.667], 't5.104.114.434': [0.609, 5.0], 't2.104.114.434': [0.626, 5.0]}), 'newmec-4'], [({'t2.101.114.435': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.435': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.435': [0.441, 5.0], 't3.101.114.435': [0.536, 5.0]}), 'newmec-1'], [({'t3.102.114.436': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.436': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.436': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.436': [0.449, 5.0], 't1.102.114.436': [0.481, 6.667], 't4.102.114.436': [0.751, 10.0]}), 'newmec-2'], [({'t1.104.114.437': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.437': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.437': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.437': [0.753, 6.667], 't5.104.114.437': [0.787, 5.0], 't2.104.114.437': [0.58, 5.0]}), 'newmec-4'], [({'t2.102.114.438': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.438': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.438': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.438': [0.47, 5.0], 't4.102.114.438': [0.76, 10.0], 't3.102.114.438': [0.656, 5.0]}), 'newmec-2'], [({'t2.156.114.439': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.439': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.439': [0.762, 5.0], 't5.156.114.439': [0.538, 5.0]}), 'osboxes-0'], [({'t4.104.114.440': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.440': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.440': [0.661, 10.0], 't2.104.114.440': [0.567, 5.0]}), 'newmec-4'], [({'t4.101.114.441': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.441': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.441': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.441': [0.548, 10.0], 't2.101.114.441': [0.701, 5.0], 't5.101.114.441': [0.429, 5.0]}), 'newmec-1'], [({'t4.156.114.442': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.442': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.442': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.442': [0.415, 10.0], 't3.156.114.442': [0.468, 5.0], 't5.156.114.442': [0.731, 5.0]}), 'osboxes-0'], [({'t3.104.114.443': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.443': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.443': [0.455, 5.0], 't5.104.114.443': [0.576, 5.0]}), 'newmec-4'], [({'t1.103.114.444': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.444': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.444': [0.676, 6.667], 't3.103.114.444': [0.426, 5.0]}), 'newmec-3'], [({'t3.101.114.445': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.445': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.445': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.445': [0.408, 5.0], 't2.101.114.445': [0.626, 5.0], 't4.101.114.445': [0.745, 10.0]}), 'newmec-1'], [({'t4.101.114.446': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.446': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.446': [0.535, 10.0], 't5.101.114.446': [0.458, 5.0]}), 'newmec-1'], [({'t1.102.114.447': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.447': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.447': [0.421, 6.667], 't5.102.114.447': [0.517, 5.0]}), 'newmec-2'], [({'t4.104.114.448': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.448': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.448': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.448': [0.76, 10.0], 't3.104.114.448': [0.456, 5.0], 't5.104.114.448': [0.406, 5.0]}), 'newmec-4'], [({'t4.104.114.449': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.449': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.449': [0.711, 10.0], 't3.104.114.449': [0.71, 5.0]}), 'newmec-4'], [({'t4.104.114.450': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.450': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.450': [0.716, 10.0], 't2.104.114.450': [0.784, 5.0]}), 'newmec-4'], [({'t2.103.114.451': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.451': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.451': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.451': [0.643, 5.0], 't5.103.114.451': [0.591, 5.0], 't3.103.114.451': [0.745, 5.0]}), 'newmec-3'], [({'t1.103.114.452': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.452': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.452': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.452': [0.442, 6.667], 't3.103.114.452': [0.774, 5.0], 't5.103.114.452': [0.708, 5.0]}), 'newmec-3'], [({'t1.104.114.453': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.453': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.453': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.453': [0.465, 6.667], 't3.104.114.453': [0.68, 5.0], 't2.104.114.453': [0.799, 5.0]}), 'newmec-4'], [({'t3.156.114.454': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.454': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.454': [0.518, 5.0], 't4.156.114.454': [0.427, 10.0]}), 'osboxes-0'], [({'t5.101.114.455': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.455': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.455': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.455': [0.451, 5.0], 't3.101.114.455': [0.701, 5.0], 't1.101.114.455': [0.69, 6.667]}), 'newmec-1'], [({'t1.103.114.456': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.456': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.456': [0.715, 6.667], 't5.103.114.456': [0.549, 5.0]}), 'newmec-3'], [({'t5.156.114.457': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.457': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.156.114.457': [0.694, 5.0], 't1.156.114.457': [0.465, 6.667]}), 'osboxes-0'], [({'t4.156.114.458': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.458': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.458': [0.55, 10.0], 't3.156.114.458': [0.724, 5.0]}), 'osboxes-0'], [({'t3.103.114.459': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.459': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.459': [0.741, 5.0], 't5.103.114.459': [0.449, 5.0]}), 'newmec-3'], [({'t5.102.114.460': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.460': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.460': [0.434, 5.0], 't4.102.114.460': [0.469, 10.0]}), 'newmec-2'], [({'t1.104.114.461': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.461': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.461': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.461': [0.645, 6.667], 't3.104.114.461': [0.63, 5.0], 't2.104.114.461': [0.766, 5.0]}), 'newmec-4'], [({'t5.102.114.462': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.462': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.462': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.462': [0.565, 5.0], 't4.102.114.462': [0.478, 10.0], 't3.102.114.462': [0.711, 5.0]}), 'newmec-2'], [({'t2.103.114.463': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.463': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.463': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.463': [0.42, 5.0], 't3.103.114.463': [0.619, 5.0], 't5.103.114.463': [0.536, 5.0]}), 'newmec-3'], [({'t5.103.114.464': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.464': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.464': [0.625, 5.0], 't2.103.114.464': [0.663, 5.0]}), 'newmec-3'], [({'t3.104.114.465': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.465': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.465': [0.587, 5.0], 't5.104.114.465': [0.565, 5.0]}), 'newmec-4'], [({'t2.102.114.466': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.466': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.466': [0.451, 5.0], 't1.102.114.466': [0.428, 6.667]}), 'newmec-2'], [({'t4.102.114.467': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.467': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.467': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.467': [0.693, 10.0], 't3.102.114.467': [0.485, 5.0], 't5.102.114.467': [0.678, 5.0]}), 'newmec-2'], [({'t2.104.114.468': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.468': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.468': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.468': [0.462, 5.0], 't5.104.114.468': [0.449, 5.0], 't3.104.114.468': [0.631, 5.0]}), 'newmec-4'], [({'t2.101.114.469': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.469': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.469': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.469': [0.529, 5.0], 't5.101.114.469': [0.778, 5.0], 't3.101.114.469': [0.538, 5.0]}), 'newmec-1'], [({'t2.102.114.470': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.470': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.470': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.470': [0.607, 5.0], 't5.102.114.470': [0.786, 5.0], 't4.102.114.470': [0.557, 10.0]}), 'newmec-2'], [({'t2.156.114.471': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.471': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.471': [0.477, 5.0], 't1.156.114.471': [0.634, 6.667]}), 'osboxes-0'], [({'t3.103.114.472': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.472': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.472': [0.637, 5.0], 't4.103.114.472': [0.778, 10.0]}), 'newmec-3'], [({'t5.156.114.473': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.473': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.473': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.473': [0.5, 5.0], 't4.156.114.473': [0.526, 10.0], 't2.156.114.473': [0.679, 5.0]}), 'osboxes-0'], [({'t3.101.114.474': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.474': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.474': [0.709, 5.0], 't5.101.114.474': [0.518, 5.0]}), 'newmec-1'], [({'t2.101.114.475': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.475': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.475': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.475': [0.433, 5.0], 't5.101.114.475': [0.729, 5.0], 't3.101.114.475': [0.687, 5.0]}), 'newmec-1'], [({'t4.102.114.476': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.476': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.476': [0.43, 10.0], 't2.102.114.476': [0.657, 5.0]}), 'newmec-2'], [({'t2.103.114.477': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.477': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.477': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.477': [0.654, 5.0], 't5.103.114.477': [0.435, 5.0], 't1.103.114.477': [0.484, 6.667]}), 'newmec-3'], [({'t3.103.114.478': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.478': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.478': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.478': [0.502, 5.0], 't4.103.114.478': [0.644, 10.0], 't2.103.114.478': [0.719, 5.0]}), 'newmec-3'], [({'t2.156.114.479': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.479': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.479': [0.694, 5.0], 't4.156.114.479': [0.77, 10.0]}), 'osboxes-0'], [({'t1.103.114.480': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.480': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.480': [0.415, 6.667], 't4.103.114.480': [0.723, 10.0]}), 'newmec-3'], [({'t4.156.114.481': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.481': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.481': [0.504, 10.0], 't2.156.114.481': [0.794, 5.0]}), 'osboxes-0'], [({'t3.101.114.482': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.482': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.482': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.482': [0.574, 5.0], 't2.101.114.482': [0.411, 5.0], 't5.101.114.482': [0.678, 5.0]}), 'newmec-1'], [({'t3.103.114.483': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.483': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.483': [0.7, 5.0], 't1.103.114.483': [0.451, 6.667]}), 'newmec-3'], [({'t4.104.114.484': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.484': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.484': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.484': [0.59, 10.0], 't5.104.114.484': [0.617, 5.0], 't3.104.114.484': [0.704, 5.0]}), 'newmec-4'], [({'t3.103.114.485': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.485': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.485': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.485': [0.655, 5.0], 't1.103.114.485': [0.624, 6.667], 't4.103.114.485': [0.794, 10.0]}), 'newmec-3'], [({'t2.103.114.486': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.486': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.486': [0.697, 5.0], 't4.103.114.486': [0.596, 10.0]}), 'newmec-3'], [({'t4.103.114.487': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.487': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.487': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.487': [0.674, 10.0], 't5.103.114.487': [0.589, 5.0], 't3.103.114.487': [0.525, 5.0]}), 'newmec-3'], [({'t1.104.114.488': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.488': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.488': [0.784, 6.667], 't3.104.114.488': [0.562, 5.0]}), 'newmec-4'], [({'t3.104.114.489': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.489': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.489': [0.711, 5.0], 't2.104.114.489': [0.479, 5.0]}), 'newmec-4'], [({'t2.102.114.490': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.490': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.490': [0.598, 5.0], 't5.102.114.490': [0.595, 5.0]}), 'newmec-2'], [({'t4.104.114.491': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.491': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.491': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.491': [0.416, 10.0], 't1.104.114.491': [0.776, 6.667], 't3.104.114.491': [0.735, 5.0]}), 'newmec-4'], [({'t4.103.114.492': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.492': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.492': [0.756, 10.0], 't5.103.114.492': [0.619, 5.0]}), 'newmec-3'], [({'t5.103.114.493': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.493': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.493': [0.78, 5.0], 't3.103.114.493': [0.527, 5.0]}), 'newmec-3'], [({'t1.101.114.494': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.494': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.494': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.494': [0.661, 6.667], 't2.101.114.494': [0.524, 5.0], 't3.101.114.494': [0.698, 5.0]}), 'newmec-1'], [({'t3.102.114.495': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.495': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.495': [0.604, 5.0], 't2.102.114.495': [0.593, 5.0]}), 'newmec-2'], [({'t5.156.114.496': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.496': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.496': [0.442, 5.0], 't2.156.114.496': [0.664, 5.0]}), 'osboxes-0'], [({'t1.104.114.497': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.497': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.497': [0.419, 6.667], 't2.104.114.497': [0.466, 5.0]}), 'newmec-4'], [({'t1.156.114.498': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.498': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.156.114.498': [0.511, 6.667], 't3.156.114.498': [0.626, 5.0]}), 'osboxes-0'], [({'t4.156.114.499': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.499': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.499': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.499': [0.763, 10.0], 't2.156.114.499': [0.747, 5.0], 't5.156.114.499': [0.666, 5.0]}), 'osboxes-0'], [({'t2.156.114.500': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.500': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.500': [0.615, 5.0], 't4.156.114.500': [0.411, 10.0]}), 'osboxes-0'], [({'t2.101.114.501': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.501': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.501': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.501': [0.594, 5.0], 't3.101.114.501': [0.794, 5.0], 't5.101.114.501': [0.589, 5.0]}), 'newmec-1'], [({'t4.101.114.502': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.502': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.502': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.502': [0.783, 10.0], 't1.101.114.502': [0.768, 6.667], 't2.101.114.502': [0.594, 5.0]}), 'newmec-1'], [({'t2.102.114.503': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.503': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.503': [0.645, 5.0], 't5.102.114.503': [0.415, 5.0]}), 'newmec-2'], [({'t3.156.114.504': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.504': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.156.114.504': [0.709, 5.0], 't2.156.114.504': [0.47, 5.0]}), 'osboxes-0'], [({'t1.101.114.505': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.505': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.505': [0.735, 6.667], 't2.101.114.505': [0.434, 5.0]}), 'newmec-1'], [({'t2.101.114.506': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.506': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.506': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.506': [0.627, 5.0], 't1.101.114.506': [0.428, 6.667], 't5.101.114.506': [0.519, 5.0]}), 'newmec-1'], [({'t1.102.114.507': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.507': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.507': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.507': [0.714, 6.667], 't5.102.114.507': [0.538, 5.0], 't4.102.114.507': [0.634, 10.0]}), 'newmec-2'], [({'t3.102.114.508': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.508': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.508': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.508': [0.559, 5.0], 't5.102.114.508': [0.681, 5.0], 't2.102.114.508': [0.446, 5.0]}), 'newmec-2'], [({'t4.103.114.509': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.509': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.509': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.509': [0.721, 10.0], 't3.103.114.509': [0.784, 5.0], 't5.103.114.509': [0.551, 5.0]}), 'newmec-3'], [({'t5.102.114.510': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.510': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.510': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.510': [0.633, 5.0], 't3.102.114.510': [0.659, 5.0], 't2.102.114.510': [0.42, 5.0]}), 'newmec-2'], [({'t2.104.114.511': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.511': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.511': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.511': [0.72, 5.0], 't4.104.114.511': [0.54, 10.0], 't5.104.114.511': [0.747, 5.0]}), 'newmec-4'], [({'t2.156.114.512': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.512': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.512': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.512': [0.545, 5.0], 't4.156.114.512': [0.762, 10.0], 't1.156.114.512': [0.608, 6.667]}), 'osboxes-0'], [({'t5.104.114.513': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.513': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.513': [0.422, 5.0], 't1.104.114.513': [0.506, 6.667]}), 'newmec-4'], [({'t4.104.114.514': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.514': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.514': [0.747, 10.0], 't3.104.114.514': [0.666, 5.0]}), 'newmec-4'], [({'t2.156.114.515': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.515': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.515': [0.618, 5.0], 't5.156.114.515': [0.728, 5.0]}), 'osboxes-0'], [({'t3.102.114.516': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.516': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.516': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.516': [0.501, 5.0], 't2.102.114.516': [0.613, 5.0], 't4.102.114.516': [0.544, 10.0]}), 'newmec-2'], [({'t4.102.114.517': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.517': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.517': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.517': [0.662, 10.0], 't2.102.114.517': [0.679, 5.0], 't5.102.114.517': [0.668, 5.0]}), 'newmec-2'], [({'t4.103.114.518': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.518': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.518': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.518': [0.748, 10.0], 't5.103.114.518': [0.691, 5.0], 't2.103.114.518': [0.623, 5.0]}), 'newmec-3'], [({'t4.101.114.519': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.519': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.519': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.519': [0.723, 10.0], 't3.101.114.519': [0.611, 5.0], 't2.101.114.519': [0.664, 5.0]}), 'newmec-1'], [({'t5.101.114.520': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.520': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.520': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.520': [0.724, 5.0], 't2.101.114.520': [0.539, 5.0], 't4.101.114.520': [0.457, 10.0]}), 'newmec-1'], [({'t2.101.114.521': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.521': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.521': [0.491, 5.0], 't3.101.114.521': [0.58, 5.0]}), 'newmec-1'], [({'t3.102.114.522': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.522': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.522': [0.782, 5.0], 't5.102.114.522': [0.736, 5.0]}), 'newmec-2'], [({'t2.101.114.523': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.523': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.523': [0.608, 5.0], 't4.101.114.523': [0.748, 10.0]}), 'newmec-1'], [({'t5.102.114.524': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.524': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.524': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.524': [0.677, 5.0], 't1.102.114.524': [0.779, 6.667], 't2.102.114.524': [0.638, 5.0]}), 'newmec-2'], [({'t5.102.114.525': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.525': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.525': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.525': [0.618, 5.0], 't3.102.114.525': [0.449, 5.0], 't2.102.114.525': [0.476, 5.0]}), 'newmec-2'], [({'t1.102.114.526': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.526': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.526': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.526': [0.756, 6.667], 't5.102.114.526': [0.416, 5.0], 't2.102.114.526': [0.649, 5.0]}), 'newmec-2'], [({'t3.101.114.527': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.527': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.527': [0.484, 5.0], 't4.101.114.527': [0.595, 10.0]}), 'newmec-1'], [({'t2.104.114.528': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.528': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.528': [0.754, 5.0], 't1.104.114.528': [0.531, 6.667]}), 'newmec-4'], [({'t2.156.114.529': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.529': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.529': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.529': [0.595, 5.0], 't5.156.114.529': [0.762, 5.0], 't1.156.114.529': [0.738, 6.667]}), 'osboxes-0'], [({'t4.104.114.530': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.530': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.530': [0.606, 10.0], 't2.104.114.530': [0.504, 5.0]}), 'newmec-4'], [({'t1.103.114.531': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.531': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.531': [0.7, 6.667], 't5.103.114.531': [0.738, 5.0]}), 'newmec-3'], [({'t3.156.114.532': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.532': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.532': [0.611, 5.0], 't4.156.114.532': [0.729, 10.0]}), 'osboxes-0'], [({'t4.104.114.533': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.533': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.533': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.533': [0.566, 10.0], 't2.104.114.533': [0.471, 5.0], 't3.104.114.533': [0.644, 5.0]}), 'newmec-4'], [({'t1.102.114.534': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.534': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.534': [0.657, 6.667], 't3.102.114.534': [0.702, 5.0]}), 'newmec-2'], [({'t2.103.114.535': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.535': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.535': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.535': [0.655, 5.0], 't4.103.114.535': [0.787, 10.0], 't5.103.114.535': [0.682, 5.0]}), 'newmec-3'], [({'t5.104.114.536': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.536': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.536': [0.562, 5.0], 't3.104.114.536': [0.727, 5.0]}), 'newmec-4'], [({'t2.101.114.537': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.537': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.537': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.537': [0.615, 5.0], 't5.101.114.537': [0.452, 5.0], 't3.101.114.537': [0.512, 5.0]}), 'newmec-1'], [({'t5.104.114.538': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.538': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.538': [0.642, 5.0], 't3.104.114.538': [0.701, 5.0]}), 'newmec-4'], [({'t1.102.114.539': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.539': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.539': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.539': [0.548, 6.667], 't2.102.114.539': [0.576, 5.0], 't3.102.114.539': [0.748, 5.0]}), 'newmec-2'], [({'t4.104.114.540': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.540': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.540': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.540': [0.775, 10.0], 't5.104.114.540': [0.641, 5.0], 't2.104.114.540': [0.793, 5.0]}), 'newmec-4'], [({'t5.102.114.541': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.541': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.541': [0.694, 5.0], 't2.102.114.541': [0.424, 5.0]}), 'newmec-2'], [({'t1.103.114.542': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.542': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.542': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.542': [0.591, 6.667], 't4.103.114.542': [0.621, 10.0], 't2.103.114.542': [0.748, 5.0]}), 'newmec-3'], [({'t1.103.114.543': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.543': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.543': [0.464, 6.667], 't3.103.114.543': [0.408, 5.0]}), 'newmec-3'], [({'t2.156.114.544': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.544': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.544': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.544': [0.705, 5.0], 't4.156.114.544': [0.476, 10.0], 't5.156.114.544': [0.63, 5.0]}), 'osboxes-0'], [({'t3.104.114.545': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.545': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.545': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.545': [0.53, 5.0], 't1.104.114.545': [0.536, 6.667], 't4.104.114.545': [0.773, 10.0]}), 'newmec-4'], [({'t5.101.114.546': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.546': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.546': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.546': [0.781, 5.0], 't1.101.114.546': [0.799, 6.667], 't4.101.114.546': [0.711, 10.0]}), 'newmec-1'], [({'t5.104.114.547': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.547': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.547': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.547': [0.633, 5.0], 't3.104.114.547': [0.497, 5.0], 't1.104.114.547': [0.758, 6.667]}), 'newmec-4'], [({'t2.102.114.548': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.548': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.548': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.548': [0.576, 5.0], 't1.102.114.548': [0.609, 6.667], 't4.102.114.548': [0.467, 10.0]}), 'newmec-2'], [({'t1.104.114.549': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.549': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.549': [0.654, 6.667], 't2.104.114.549': [0.528, 5.0]}), 'newmec-4'], [({'t5.104.114.550': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.550': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.550': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.550': [0.612, 5.0], 't3.104.114.550': [0.41, 5.0], 't1.104.114.550': [0.412, 6.667]}), 'newmec-4'], [({'t5.103.114.551': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.551': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.551': [0.654, 5.0], 't3.103.114.551': [0.475, 5.0]}), 'newmec-3'], [({'t1.102.114.552': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.552': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.552': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.552': [0.753, 6.667], 't5.102.114.552': [0.621, 5.0], 't3.102.114.552': [0.65, 5.0]}), 'newmec-2'], [({'t4.102.114.553': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.553': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.553': [0.651, 10.0], 't1.102.114.553': [0.712, 6.667]}), 'newmec-2'], [({'t2.104.114.554': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.554': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.554': [0.581, 5.0], 't3.104.114.554': [0.569, 5.0]}), 'newmec-4'], [({'t4.104.114.555': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.555': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.555': [0.714, 10.0], 't3.104.114.555': [0.437, 5.0]}), 'newmec-4'], [({'t4.101.114.556': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.556': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.556': [0.436, 10.0], 't3.101.114.556': [0.751, 5.0]}), 'newmec-1'], [({'t5.101.114.557': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.557': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.557': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.557': [0.475, 5.0], 't1.101.114.557': [0.643, 6.667], 't4.101.114.557': [0.643, 10.0]}), 'newmec-1'], [({'t2.102.114.558': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.558': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.558': [0.452, 5.0], 't5.102.114.558': [0.529, 5.0]}), 'newmec-2'], [({'t4.102.114.559': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.559': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.559': [0.663, 10.0], 't2.102.114.559': [0.66, 5.0]}), 'newmec-2'], [({'t4.156.114.560': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.560': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.560': [0.652, 10.0], 't3.156.114.560': [0.579, 5.0]}), 'osboxes-0'], [({'t3.102.114.561': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.561': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.561': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.561': [0.762, 5.0], 't5.102.114.561': [0.525, 5.0], 't4.102.114.561': [0.6, 10.0]}), 'newmec-2'], [({'t2.104.114.562': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.562': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.562': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.562': [0.54, 5.0], 't3.104.114.562': [0.724, 5.0], 't1.104.114.562': [0.403, 6.667]}), 'newmec-4'], [({'t3.104.114.563': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.563': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.563': [0.64, 5.0], 't2.104.114.563': [0.405, 5.0]}), 'newmec-4'], [({'t3.103.114.564': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.564': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.564': [0.737, 5.0], 't5.103.114.564': [0.752, 5.0]}), 'newmec-3'], [({'t4.104.114.565': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.565': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.565': [0.76, 10.0], 't3.104.114.565': [0.637, 5.0]}), 'newmec-4'], [({'t1.102.114.566': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.566': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.566': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.566': [0.566, 6.667], 't4.102.114.566': [0.516, 10.0], 't3.102.114.566': [0.409, 5.0]}), 'newmec-2'], [({'t2.101.114.567': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.567': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.567': [0.453, 5.0], 't5.101.114.567': [0.409, 5.0]}), 'newmec-1'], [({'t5.103.114.568': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.568': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.568': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.568': [0.683, 5.0], 't3.103.114.568': [0.433, 5.0], 't4.103.114.568': [0.78, 10.0]}), 'newmec-3'], [({'t4.104.114.569': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.569': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.569': [0.792, 10.0], 't2.104.114.569': [0.756, 5.0]}), 'newmec-4'], [({'t2.104.114.570': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.570': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.570': [0.729, 5.0], 't5.104.114.570': [0.757, 5.0]}), 'newmec-4'], [({'t5.104.114.571': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.571': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.571': [0.546, 5.0], 't1.104.114.571': [0.52, 6.667]}), 'newmec-4'], [({'t5.104.114.572': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.572': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.572': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.572': [0.705, 5.0], 't4.104.114.572': [0.472, 10.0], 't2.104.114.572': [0.61, 5.0]}), 'newmec-4'], [({'t1.101.114.573': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.573': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.573': [0.578, 6.667], 't3.101.114.573': [0.478, 5.0]}), 'newmec-1'], [({'t3.101.114.574': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.574': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.574': [0.518, 5.0], 't4.101.114.574': [0.5, 10.0]}), 'newmec-1'], [({'t3.102.114.575': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.575': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.575': [0.613, 5.0], 't2.102.114.575': [0.509, 5.0]}), 'newmec-2'], [({'t3.104.114.576': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.576': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.576': [0.544, 5.0], 't4.104.114.576': [0.631, 10.0]}), 'newmec-4'], [({'t2.104.114.577': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.577': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.577': [0.557, 5.0], 't1.104.114.577': [0.649, 6.667]}), 'newmec-4'], [({'t3.102.114.578': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.578': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.578': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.578': [0.543, 5.0], 't2.102.114.578': [0.615, 5.0], 't5.102.114.578': [0.401, 5.0]}), 'newmec-2'], [({'t3.104.114.579': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.579': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.579': [0.4, 5.0], 't5.104.114.579': [0.637, 5.0]}), 'newmec-4'], [({'t4.103.114.580': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.580': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.580': [0.524, 10.0], 't2.103.114.580': [0.64, 5.0]}), 'newmec-3'], [({'t3.104.114.581': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.581': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.581': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.581': [0.442, 5.0], 't5.104.114.581': [0.737, 5.0], 't4.104.114.581': [0.723, 10.0]}), 'newmec-4'], [({'t3.103.114.582': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.582': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.582': [0.799, 5.0], 't2.103.114.582': [0.599, 5.0]}), 'newmec-3'], [({'t5.103.114.583': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.583': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.583': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.583': [0.761, 5.0], 't2.103.114.583': [0.697, 5.0], 't3.103.114.583': [0.455, 5.0]}), 'newmec-3'], [({'t3.103.114.584': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.584': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.584': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.584': [0.419, 5.0], 't4.103.114.584': [0.764, 10.0], 't5.103.114.584': [0.687, 5.0]}), 'newmec-3'], [({'t4.156.114.585': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.585': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.585': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.585': [0.665, 10.0], 't3.156.114.585': [0.666, 5.0], 't5.156.114.585': [0.798, 5.0]}), 'osboxes-0'], [({'t4.104.114.586': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.586': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.586': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.586': [0.535, 10.0], 't2.104.114.586': [0.506, 5.0], 't3.104.114.586': [0.767, 5.0]}), 'newmec-4'], [({'t3.102.114.587': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.587': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.587': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.587': [0.42, 5.0], 't5.102.114.587': [0.736, 5.0], 't2.102.114.587': [0.728, 5.0]}), 'newmec-2'], [({'t5.102.114.588': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.588': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.588': [0.63, 5.0], 't3.102.114.588': [0.547, 5.0]}), 'newmec-2'], [({'t2.104.114.589': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.589': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.589': [0.684, 5.0], 't5.104.114.589': [0.635, 5.0]}), 'newmec-4'], [({'t2.103.114.590': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.590': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.590': [0.48, 5.0], 't4.103.114.590': [0.613, 10.0]}), 'newmec-3'], [({'t5.104.114.591': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.591': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.591': [0.645, 5.0], 't3.104.114.591': [0.665, 5.0]}), 'newmec-4'], [({'t1.101.114.592': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.592': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.592': [0.514, 6.667], 't3.101.114.592': [0.571, 5.0]}), 'newmec-1'], [({'t1.104.114.593': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.593': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.593': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.593': [0.605, 6.667], 't4.104.114.593': [0.455, 10.0], 't2.104.114.593': [0.754, 5.0]}), 'newmec-4'], [({'t4.102.114.594': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.594': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.594': [0.614, 10.0], 't2.102.114.594': [0.48, 5.0]}), 'newmec-2'], [({'t5.103.114.595': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.595': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.595': [0.611, 5.0], 't4.103.114.595': [0.743, 10.0]}), 'newmec-3'], [({'t3.102.114.596': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.596': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.596': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.596': [0.421, 5.0], 't5.102.114.596': [0.774, 5.0], 't1.102.114.596': [0.718, 6.667]}), 'newmec-2'], [({'t3.101.114.597': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.597': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.597': [0.614, 5.0], 't2.101.114.597': [0.65, 5.0]}), 'newmec-1'], [({'t5.103.114.598': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.598': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.598': [0.733, 5.0], 't4.103.114.598': [0.742, 10.0]}), 'newmec-3'], [({'t3.103.114.599': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.599': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.599': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.599': [0.636, 5.0], 't4.103.114.599': [0.532, 10.0], 't1.103.114.599': [0.513, 6.667]}), 'newmec-3']] host_names5 = {'192.168.122.156': 'osboxes-0', '192.168.122.104': 'newmec-4', '192.168.122.103': 'newmec-3', '192.168.122.102': 'newmec-2', '192.168.122.101': 'newmec-1'} record6 = [[({'t2.102.114.0': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.0': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.0': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.0': [0.489, 5.0], 't4.102.114.0': [0.537, 10.0], 't5.102.114.0': [0.567, 5.0]}), 'newmec-2'], [({'t1.102.114.1': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.1': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.1': [0.658, 6.667], 't2.102.114.1': [0.412, 5.0]}), 'newmec-2'], [({'t5.156.114.2': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.2': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.2': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.2': [0.624, 5.0], 't2.156.114.2': [0.408, 5.0], 't3.156.114.2': [0.571, 5.0]}), 'osboxes-0'], [({'t5.101.114.3': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.3': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.3': [0.448, 5.0], 't2.101.114.3': [0.574, 5.0]}), 'newmec-1'], [({'t2.156.114.4': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.4': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.4': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.4': [0.711, 5.0], 't5.156.114.4': [0.723, 5.0], 't4.156.114.4': [0.692, 10.0]}), 'osboxes-0'], [({'t2.102.114.5': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.5': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.5': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.5': [0.771, 5.0], 't3.102.114.5': [0.441, 5.0], 't4.102.114.5': [0.681, 10.0]}), 'newmec-2'], [({'t4.104.114.6': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.6': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.6': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.6': [0.587, 10.0], 't5.104.114.6': [0.48, 5.0], 't3.104.114.6': [0.52, 5.0]}), 'newmec-4'], [({'t3.156.114.7': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.7': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.7': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.7': [0.736, 5.0], 't2.156.114.7': [0.653, 5.0], 't5.156.114.7': [0.635, 5.0]}), 'osboxes-0'], [({'t5.102.114.8': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.8': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.8': [0.481, 5.0], 't2.102.114.8': [0.596, 5.0]}), 'newmec-2'], [({'t3.103.114.9': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.9': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.9': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.9': [0.647, 5.0], 't4.103.114.9': [0.505, 10.0], 't5.103.114.9': [0.457, 5.0]}), 'newmec-3'], [({'t3.104.114.10': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.10': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.10': [0.512, 5.0], 't4.104.114.10': [0.756, 10.0]}), 'newmec-4'], [({'t5.101.114.11': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.11': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.11': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.11': [0.615, 5.0], 't3.101.114.11': [0.672, 5.0], 't2.101.114.11': [0.755, 5.0]}), 'newmec-1'], [({'t2.101.114.12': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.12': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.12': [0.684, 5.0], 't5.101.114.12': [0.5, 5.0]}), 'newmec-1'], [({'t4.101.114.13': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.13': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.13': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.13': [0.461, 10.0], 't3.101.114.13': [0.688, 5.0], 't1.101.114.13': [0.714, 6.667]}), 'newmec-1'], [({'t5.103.114.14': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.14': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.14': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.14': [0.548, 5.0], 't1.103.114.14': [0.602, 6.667], 't2.103.114.14': [0.438, 5.0]}), 'newmec-3'], [({'t2.101.114.15': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.15': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.15': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.15': [0.753, 5.0], 't1.101.114.15': [0.616, 6.667], 't5.101.114.15': [0.757, 5.0]}), 'newmec-1'], [({'t3.101.114.16': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.16': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.16': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.16': [0.404, 5.0], 't5.101.114.16': [0.512, 5.0], 't2.101.114.16': [0.653, 5.0]}), 'newmec-1'], [({'t1.104.114.17': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.17': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.17': [0.582, 6.667], 't5.104.114.17': [0.483, 5.0]}), 'newmec-4'], [({'t5.101.114.18': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.18': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.18': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.18': [0.662, 5.0], 't4.101.114.18': [0.508, 10.0], 't2.101.114.18': [0.683, 5.0]}), 'newmec-1'], [({'t2.102.114.19': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.19': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.19': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.19': [0.616, 5.0], 't1.102.114.19': [0.738, 6.667], 't4.102.114.19': [0.723, 10.0]}), 'newmec-2'], [({'t4.101.114.20': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.20': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.20': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.20': [0.516, 10.0], 't3.101.114.20': [0.417, 5.0], 't5.101.114.20': [0.711, 5.0]}), 'newmec-1'], [({'t3.101.114.21': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.21': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.21': [0.54, 5.0], 't1.101.114.21': [0.556, 6.667]}), 'newmec-1'], [({'t5.105.114.22': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.105.114.22': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.22': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.105.114.22': [0.657, 5.0], 't4.105.114.22': [0.717, 10.0], 't3.105.114.22': [0.72, 5.0]}), 'newmec-5'], [({'t1.102.114.23': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.23': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.23': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.23': [0.623, 6.667], 't4.102.114.23': [0.644, 10.0], 't5.102.114.23': [0.552, 5.0]}), 'newmec-2'], [({'t1.103.114.24': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.24': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.24': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.24': [0.713, 6.667], 't3.103.114.24': [0.687, 5.0], 't5.103.114.24': [0.531, 5.0]}), 'newmec-3'], [({'t3.101.114.25': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.25': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.25': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.25': [0.534, 5.0], 't4.101.114.25': [0.728, 10.0], 't2.101.114.25': [0.769, 5.0]}), 'newmec-1'], [({'t5.104.114.26': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.26': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.26': [0.469, 5.0], 't1.104.114.26': [0.413, 6.667]}), 'newmec-4'], [({'t3.104.114.27': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.27': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.27': [0.747, 5.0], 't5.104.114.27': [0.615, 5.0]}), 'newmec-4'], [({'t3.102.114.28': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.28': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.28': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.28': [0.64, 5.0], 't2.102.114.28': [0.433, 5.0], 't4.102.114.28': [0.726, 10.0]}), 'newmec-2'], [({'t3.101.114.29': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.29': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.29': [0.47, 5.0], 't2.101.114.29': [0.767, 5.0]}), 'newmec-1'], [({'t1.102.114.30': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.30': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.30': [0.556, 6.667], 't2.102.114.30': [0.506, 5.0]}), 'newmec-2'], [({'t5.101.114.31': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.31': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.31': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.31': [0.578, 5.0], 't3.101.114.31': [0.642, 5.0], 't1.101.114.31': [0.643, 6.667]}), 'newmec-1'], [({'t5.102.114.32': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.32': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.32': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.32': [0.762, 5.0], 't4.102.114.32': [0.49, 10.0], 't3.102.114.32': [0.525, 5.0]}), 'newmec-2'], [({'t3.156.114.33': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.33': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.33': [0.628, 5.0], 't4.156.114.33': [0.572, 10.0]}), 'osboxes-0'], [({'t5.101.114.34': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.34': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.34': [0.601, 5.0], 't1.101.114.34': [0.705, 6.667]}), 'newmec-1'], [({'t1.104.114.35': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.35': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.35': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.35': [0.671, 6.667], 't5.104.114.35': [0.412, 5.0], 't4.104.114.35': [0.403, 10.0]}), 'newmec-4'], [({'t2.101.114.36': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.36': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.36': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.36': [0.484, 5.0], 't4.101.114.36': [0.463, 10.0], 't1.101.114.36': [0.444, 6.667]}), 'newmec-1'], [({'t3.103.114.37': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.37': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.37': [0.765, 5.0], 't1.103.114.37': [0.564, 6.667]}), 'newmec-3'], [({'t4.104.114.38': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.38': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.38': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.38': [0.586, 10.0], 't2.104.114.38': [0.562, 5.0], 't1.104.114.38': [0.444, 6.667]}), 'newmec-4'], [({'t5.102.114.39': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.39': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.39': [0.573, 5.0], 't3.102.114.39': [0.621, 5.0]}), 'newmec-2'], [({'t3.104.114.40': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.40': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.40': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.40': [0.692, 5.0], 't1.104.114.40': [0.72, 6.667], 't2.104.114.40': [0.647, 5.0]}), 'newmec-4'], [({'t1.101.114.41': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.41': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.41': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.41': [0.627, 6.667], 't5.101.114.41': [0.424, 5.0], 't3.101.114.41': [0.491, 5.0]}), 'newmec-1'], [({'t4.101.114.42': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.42': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.42': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.42': [0.435, 10.0], 't1.101.114.42': [0.734, 6.667], 't5.101.114.42': [0.502, 5.0]}), 'newmec-1'], [({'t2.102.114.43': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.43': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.43': [0.512, 5.0], 't5.102.114.43': [0.722, 5.0]}), 'newmec-2'], [({'t5.156.114.44': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.44': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.156.114.44': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.44': [0.756, 5.0], 't1.156.114.44': [0.444, 6.667], 't2.156.114.44': [0.727, 5.0]}), 'osboxes-0'], [({'t5.101.114.45': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.45': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.45': [0.419, 5.0], 't1.101.114.45': [0.72, 6.667]}), 'newmec-1'], [({'t1.102.114.46': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.46': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.46': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.46': [0.564, 6.667], 't5.102.114.46': [0.694, 5.0], 't2.102.114.46': [0.572, 5.0]}), 'newmec-2'], [({'t5.105.114.47': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.47': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.105.114.47': [0.626, 5.0], 't2.105.114.47': [0.694, 5.0]}), 'newmec-5'], [({'t3.102.114.48': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.48': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.48': [0.46, 5.0], 't5.102.114.48': [0.551, 5.0]}), 'newmec-2'], [({'t5.102.114.49': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.49': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.49': [0.693, 5.0], 't4.102.114.49': [0.612, 10.0]}), 'newmec-2'], [({'t3.102.114.50': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.50': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.50': [0.702, 5.0], 't2.102.114.50': [0.76, 5.0]}), 'newmec-2'], [({'t5.103.114.51': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.51': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.51': [0.717, 5.0], 't3.103.114.51': [0.41, 5.0]}), 'newmec-3'], [({'t2.102.114.52': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.52': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.52': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.52': [0.425, 5.0], 't3.102.114.52': [0.613, 5.0], 't4.102.114.52': [0.477, 10.0]}), 'newmec-2'], [({'t1.102.114.53': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.53': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.53': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.53': [0.647, 6.667], 't3.102.114.53': [0.693, 5.0], 't4.102.114.53': [0.623, 10.0]}), 'newmec-2'], [({'t2.104.114.54': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.54': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.54': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.54': [0.502, 5.0], 't1.104.114.54': [0.476, 6.667], 't5.104.114.54': [0.406, 5.0]}), 'newmec-4'], [({'t2.102.114.55': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.55': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.55': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.55': [0.452, 5.0], 't3.102.114.55': [0.794, 5.0], 't1.102.114.55': [0.551, 6.667]}), 'newmec-2'], [({'t3.101.114.56': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.56': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.56': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.56': [0.575, 5.0], 't2.101.114.56': [0.555, 5.0], 't4.101.114.56': [0.574, 10.0]}), 'newmec-1'], [({'t5.102.114.57': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.57': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.57': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.57': [0.587, 5.0], 't3.102.114.57': [0.533, 5.0], 't2.102.114.57': [0.502, 5.0]}), 'newmec-2'], [({'t3.102.114.58': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.58': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.58': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.58': [0.594, 5.0], 't1.102.114.58': [0.638, 6.667], 't4.102.114.58': [0.783, 10.0]}), 'newmec-2'], [({'t4.102.114.59': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.59': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.59': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.59': [0.541, 10.0], 't2.102.114.59': [0.773, 5.0], 't3.102.114.59': [0.539, 5.0]}), 'newmec-2'], [({'t4.102.114.60': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.60': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.60': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.60': [0.604, 10.0], 't2.102.114.60': [0.496, 5.0], 't3.102.114.60': [0.635, 5.0]}), 'newmec-2'], [({'t2.102.114.61': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.61': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.61': [0.596, 5.0], 't4.102.114.61': [0.646, 10.0]}), 'newmec-2'], [({'t1.102.114.62': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.62': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.62': [0.465, 6.667], 't4.102.114.62': [0.628, 10.0]}), 'newmec-2'], [({'t1.105.114.63': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.105.114.63': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.105.114.63': [0.426, 6.667], 't5.105.114.63': [0.524, 5.0]}), 'newmec-5'], [({'t5.102.114.64': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.64': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.64': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.64': [0.612, 5.0], 't2.102.114.64': [0.435, 5.0], 't1.102.114.64': [0.577, 6.667]}), 'newmec-2'], [({'t3.101.114.65': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.65': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.65': [0.519, 5.0], 't4.101.114.65': [0.594, 10.0]}), 'newmec-1'], [({'t5.101.114.66': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.66': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.66': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.66': [0.45, 5.0], 't1.101.114.66': [0.447, 6.667], 't4.101.114.66': [0.68, 10.0]}), 'newmec-1'], [({'t3.101.114.67': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.67': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.67': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.67': [0.542, 5.0], 't2.101.114.67': [0.791, 5.0], 't4.101.114.67': [0.634, 10.0]}), 'newmec-1'], [({'t5.102.114.68': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.68': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.68': [0.512, 5.0], 't4.102.114.68': [0.535, 10.0]}), 'newmec-2'], [({'t5.103.114.69': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.69': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.69': [0.481, 5.0], 't4.103.114.69': [0.488, 10.0]}), 'newmec-3'], [({'t2.101.114.70': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.70': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.70': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.70': [0.407, 5.0], 't3.101.114.70': [0.503, 5.0], 't4.101.114.70': [0.783, 10.0]}), 'newmec-1'], [({'t1.102.114.71': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.71': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.71': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.71': [0.579, 6.667], 't2.102.114.71': [0.536, 5.0], 't4.102.114.71': [0.712, 10.0]}), 'newmec-2'], [({'t2.102.114.72': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.72': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.72': [0.435, 5.0], 't5.102.114.72': [0.535, 5.0]}), 'newmec-2'], [({'t5.102.114.73': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.73': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.73': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.73': [0.488, 5.0], 't4.102.114.73': [0.566, 10.0], 't2.102.114.73': [0.653, 5.0]}), 'newmec-2'], [({'t3.101.114.74': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.74': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.74': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.74': [0.68, 5.0], 't4.101.114.74': [0.773, 10.0], 't2.101.114.74': [0.624, 5.0]}), 'newmec-1'], [({'t4.103.114.75': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.75': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.75': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.75': [0.65, 10.0], 't2.103.114.75': [0.471, 5.0], 't1.103.114.75': [0.639, 6.667]}), 'newmec-3'], [({'t3.103.114.76': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.76': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.76': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.76': [0.746, 5.0], 't2.103.114.76': [0.783, 5.0], 't5.103.114.76': [0.535, 5.0]}), 'newmec-3'], [({'t3.102.114.77': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.77': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.77': [0.515, 5.0], 't4.102.114.77': [0.477, 10.0]}), 'newmec-2'], [({'t2.102.114.78': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.78': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.78': [0.718, 5.0], 't4.102.114.78': [0.535, 10.0]}), 'newmec-2'], [({'t2.102.114.79': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.79': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.79': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.79': [0.733, 5.0], 't3.102.114.79': [0.652, 5.0], 't4.102.114.79': [0.505, 10.0]}), 'newmec-2'], [({'t3.102.114.80': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.80': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.80': [0.608, 5.0], 't1.102.114.80': [0.74, 6.667]}), 'newmec-2'], [({'t1.102.114.81': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.81': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.81': [0.768, 6.667], 't4.102.114.81': [0.517, 10.0]}), 'newmec-2'], [({'t2.101.114.82': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.82': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.82': [0.771, 5.0], 't4.101.114.82': [0.773, 10.0]}), 'newmec-1'], [({'t2.104.114.83': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.83': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.83': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.83': [0.562, 5.0], 't5.104.114.83': [0.746, 5.0], 't4.104.114.83': [0.724, 10.0]}), 'newmec-4'], [({'t4.102.114.84': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.84': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.84': [0.411, 10.0], 't2.102.114.84': [0.66, 5.0]}), 'newmec-2'], [({'t3.102.114.85': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.85': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.85': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.85': [0.423, 5.0], 't2.102.114.85': [0.786, 5.0], 't5.102.114.85': [0.726, 5.0]}), 'newmec-2'], [({'t3.101.114.86': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.86': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.86': [0.649, 5.0], 't2.101.114.86': [0.4, 5.0]}), 'newmec-1'], [({'t3.105.114.87': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.87': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.87': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.87': [0.559, 5.0], 't4.105.114.87': [0.739, 10.0], 't2.105.114.87': [0.466, 5.0]}), 'newmec-5'], [({'t1.101.114.88': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.88': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.88': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.88': [0.483, 6.667], 't3.101.114.88': [0.691, 5.0], 't4.101.114.88': [0.608, 10.0]}), 'newmec-1'], [({'t5.102.114.89': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.89': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.89': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.89': [0.76, 5.0], 't3.102.114.89': [0.661, 5.0], 't4.102.114.89': [0.509, 10.0]}), 'newmec-2'], [({'t4.104.114.90': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.90': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.90': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.90': [0.767, 10.0], 't3.104.114.90': [0.733, 5.0], 't5.104.114.90': [0.46, 5.0]}), 'newmec-4'], [({'t4.102.114.91': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.91': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.91': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.91': [0.496, 10.0], 't2.102.114.91': [0.447, 5.0], 't5.102.114.91': [0.759, 5.0]}), 'newmec-2'], [({'t1.101.114.92': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.92': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.92': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.92': [0.581, 6.667], 't5.101.114.92': [0.614, 5.0], 't2.101.114.92': [0.554, 5.0]}), 'newmec-1'], [({'t2.102.114.93': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.93': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.93': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.93': [0.703, 5.0], 't3.102.114.93': [0.645, 5.0], 't1.102.114.93': [0.708, 6.667]}), 'newmec-2'], [({'t2.102.114.94': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.94': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.94': [0.654, 5.0], 't5.102.114.94': [0.749, 5.0]}), 'newmec-2'], [({'t4.102.114.95': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.95': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.95': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.95': [0.423, 10.0], 't2.102.114.95': [0.785, 5.0], 't3.102.114.95': [0.564, 5.0]}), 'newmec-2'], [({'t4.104.114.96': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.96': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.96': [0.491, 10.0], 't5.104.114.96': [0.733, 5.0]}), 'newmec-4'], [({'t1.101.114.97': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.97': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.97': [0.695, 6.667], 't3.101.114.97': [0.435, 5.0]}), 'newmec-1'], [({'t2.104.114.98': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.98': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.98': [0.541, 5.0], 't3.104.114.98': [0.432, 5.0]}), 'newmec-4'], [({'t4.102.114.99': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.99': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.99': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.99': [0.463, 10.0], 't2.102.114.99': [0.755, 5.0], 't5.102.114.99': [0.414, 5.0]}), 'newmec-2'], [({'t1.103.114.100': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.100': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.100': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.100': [0.552, 6.667], 't2.103.114.100': [0.71, 5.0], 't4.103.114.100': [0.577, 10.0]}), 'newmec-3'], [({'t2.102.114.101': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.101': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.101': [0.579, 5.0], 't1.102.114.101': [0.561, 6.667]}), 'newmec-2'], [({'t2.102.114.102': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.102': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.102': [0.451, 5.0], 't4.102.114.102': [0.519, 10.0]}), 'newmec-2'], [({'t5.101.114.103': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.103': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.103': [0.701, 5.0], 't4.101.114.103': [0.494, 10.0]}), 'newmec-1'], [({'t1.102.114.104': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.104': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.104': [0.584, 6.667], 't3.102.114.104': [0.77, 5.0]}), 'newmec-2'], [({'t5.101.114.105': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.105': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.105': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.105': [0.671, 5.0], 't2.101.114.105': [0.423, 5.0], 't3.101.114.105': [0.738, 5.0]}), 'newmec-1'], [({'t2.102.114.106': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.106': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.106': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.106': [0.512, 5.0], 't4.102.114.106': [0.705, 10.0], 't5.102.114.106': [0.642, 5.0]}), 'newmec-2'], [({'t5.102.114.107': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.107': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.107': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.107': [0.692, 5.0], 't4.102.114.107': [0.724, 10.0], 't3.102.114.107': [0.608, 5.0]}), 'newmec-2'], [({'t1.102.114.108': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.108': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.108': [0.411, 6.667], 't5.102.114.108': [0.794, 5.0]}), 'newmec-2'], [({'t3.156.114.109': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.109': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.156.114.109': [0.552, 5.0], 't2.156.114.109': [0.544, 5.0]}), 'osboxes-0'], [({'t1.101.114.110': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.110': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.110': [0.589, 6.667], 't5.101.114.110': [0.583, 5.0]}), 'newmec-1'], [({'t4.103.114.111': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.111': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.111': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.111': [0.638, 10.0], 't1.103.114.111': [0.752, 6.667], 't2.103.114.111': [0.74, 5.0]}), 'newmec-3'], [({'t4.105.114.112': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.112': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.112': [0.542, 10.0], 't5.105.114.112': [0.761, 5.0]}), 'newmec-5'], [({'t4.102.114.113': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.113': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.113': [0.412, 10.0], 't5.102.114.113': [0.669, 5.0]}), 'newmec-2'], [({'t2.102.114.114': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.114': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.114': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.114': [0.798, 5.0], 't4.102.114.114': [0.532, 10.0], 't3.102.114.114': [0.432, 5.0]}), 'newmec-2'], [({'t3.105.114.115': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.115': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.105.114.115': [0.571, 5.0], 't5.105.114.115': [0.441, 5.0]}), 'newmec-5'], [({'t5.101.114.116': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.116': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.116': [0.755, 5.0], 't2.101.114.116': [0.771, 5.0]}), 'newmec-1'], [({'t5.102.114.117': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.117': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.117': [0.601, 5.0], 't2.102.114.117': [0.506, 5.0]}), 'newmec-2'], [({'t2.105.114.118': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.118': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.118': [0.718, 5.0], 't4.105.114.118': [0.5, 10.0]}), 'newmec-5'], [({'t3.105.114.119': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.119': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.119': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.105.114.119': [0.535, 5.0], 't2.105.114.119': [0.633, 5.0], 't4.105.114.119': [0.464, 10.0]}), 'newmec-5'], [({'t1.104.114.120': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.120': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.120': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.120': [0.426, 6.667], 't2.104.114.120': [0.642, 5.0], 't4.104.114.120': [0.786, 10.0]}), 'newmec-4'], [({'t2.105.114.121': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.105.114.121': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.121': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.121': [0.44, 5.0], 't3.105.114.121': [0.634, 5.0], 't4.105.114.121': [0.42, 10.0]}), 'newmec-5'], [({'t1.102.114.122': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.122': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.122': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.122': [0.742, 6.667], 't3.102.114.122': [0.536, 5.0], 't4.102.114.122': [0.764, 10.0]}), 'newmec-2'], [({'t4.101.114.123': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.123': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.123': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.123': [0.601, 10.0], 't3.101.114.123': [0.581, 5.0], 't5.101.114.123': [0.559, 5.0]}), 'newmec-1'], [({'t2.103.114.124': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.124': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.124': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.124': [0.456, 5.0], 't5.103.114.124': [0.793, 5.0], 't4.103.114.124': [0.562, 10.0]}), 'newmec-3'], [({'t4.102.114.125': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.125': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.125': [0.548, 10.0], 't2.102.114.125': [0.765, 5.0]}), 'newmec-2'], [({'t1.101.114.126': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.126': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.126': [0.77, 6.667], 't2.101.114.126': [0.561, 5.0]}), 'newmec-1'], [({'t4.101.114.127': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.127': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.127': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.127': [0.545, 10.0], 't1.101.114.127': [0.617, 6.667], 't2.101.114.127': [0.623, 5.0]}), 'newmec-1'], [({'t4.103.114.128': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.128': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.128': [0.794, 10.0], 't1.103.114.128': [0.576, 6.667]}), 'newmec-3'], [({'t3.156.114.129': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.129': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.129': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.129': [0.424, 5.0], 't1.156.114.129': [0.522, 6.667], 't5.156.114.129': [0.661, 5.0]}), 'osboxes-0'], [({'t4.102.114.130': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.130': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.130': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.130': [0.757, 10.0], 't2.102.114.130': [0.479, 5.0], 't1.102.114.130': [0.601, 6.667]}), 'newmec-2'], [({'t1.102.114.131': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.131': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.131': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.131': [0.499, 6.667], 't5.102.114.131': [0.625, 5.0], 't3.102.114.131': [0.574, 5.0]}), 'newmec-2'], [({'t2.101.114.132': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.132': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.132': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.132': [0.401, 5.0], 't5.101.114.132': [0.475, 5.0], 't3.101.114.132': [0.709, 5.0]}), 'newmec-1'], [({'t2.101.114.133': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.133': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.133': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.133': [0.553, 5.0], 't5.101.114.133': [0.589, 5.0], 't4.101.114.133': [0.458, 10.0]}), 'newmec-1'], [({'t5.102.114.134': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.134': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.134': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.134': [0.452, 5.0], 't4.102.114.134': [0.493, 10.0], 't1.102.114.134': [0.793, 6.667]}), 'newmec-2'], [({'t1.101.114.135': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.135': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.135': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.135': [0.587, 6.667], 't4.101.114.135': [0.407, 10.0], 't3.101.114.135': [0.787, 5.0]}), 'newmec-1'], [({'t4.104.114.136': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.136': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.136': [0.778, 10.0], 't2.104.114.136': [0.622, 5.0]}), 'newmec-4'], [({'t2.102.114.137': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.137': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.137': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.137': [0.412, 5.0], 't4.102.114.137': [0.52, 10.0], 't1.102.114.137': [0.558, 6.667]}), 'newmec-2'], [({'t4.102.114.138': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.138': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.138': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.138': [0.603, 10.0], 't5.102.114.138': [0.682, 5.0], 't3.102.114.138': [0.539, 5.0]}), 'newmec-2'], [({'t4.102.114.139': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.139': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.139': [0.63, 10.0], 't1.102.114.139': [0.637, 6.667]}), 'newmec-2'], [({'t4.104.114.140': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.140': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.140': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.140': [0.565, 10.0], 't2.104.114.140': [0.624, 5.0], 't3.104.114.140': [0.436, 5.0]}), 'newmec-4'], [({'t5.101.114.141': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.141': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.141': [0.642, 5.0], 't2.101.114.141': [0.755, 5.0]}), 'newmec-1'], [({'t1.102.114.142': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.142': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.142': [0.788, 6.667], 't2.102.114.142': [0.753, 5.0]}), 'newmec-2'], [({'t2.101.114.143': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.143': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.143': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.143': [0.41, 5.0], 't4.101.114.143': [0.458, 10.0], 't3.101.114.143': [0.603, 5.0]}), 'newmec-1'], [({'t2.104.114.144': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.144': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.144': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.144': [0.633, 5.0], 't1.104.114.144': [0.603, 6.667], 't3.104.114.144': [0.555, 5.0]}), 'newmec-4'], [({'t3.156.114.145': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.145': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.145': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.145': [0.573, 5.0], 't1.156.114.145': [0.679, 6.667], 't5.156.114.145': [0.619, 5.0]}), 'osboxes-0'], [({'t1.102.114.146': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.146': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.146': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.146': [0.462, 6.667], 't3.102.114.146': [0.749, 5.0], 't2.102.114.146': [0.499, 5.0]}), 'newmec-2'], [({'t5.156.114.147': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.147': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.147': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.147': [0.654, 5.0], 't3.156.114.147': [0.66, 5.0], 't4.156.114.147': [0.507, 10.0]}), 'osboxes-0'], [({'t2.105.114.148': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.148': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.148': [0.587, 5.0], 't1.105.114.148': [0.632, 6.667]}), 'newmec-5'], [({'t2.102.114.149': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.149': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.149': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.149': [0.484, 5.0], 't4.102.114.149': [0.769, 10.0], 't3.102.114.149': [0.424, 5.0]}), 'newmec-2'], [({'t5.101.114.150': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.150': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.150': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.150': [0.546, 5.0], 't2.101.114.150': [0.573, 5.0], 't4.101.114.150': [0.487, 10.0]}), 'newmec-1'], [({'t5.156.114.151': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.151': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.151': [0.736, 5.0], 't3.156.114.151': [0.412, 5.0]}), 'osboxes-0'], [({'t4.102.114.152': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.152': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.152': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.152': [0.794, 10.0], 't1.102.114.152': [0.409, 6.667], 't2.102.114.152': [0.592, 5.0]}), 'newmec-2'], [({'t1.103.114.153': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.153': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.153': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.153': [0.665, 6.667], 't2.103.114.153': [0.694, 5.0], 't3.103.114.153': [0.681, 5.0]}), 'newmec-3'], [({'t3.103.114.154': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.154': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.154': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.154': [0.666, 5.0], 't2.103.114.154': [0.54, 5.0], 't4.103.114.154': [0.656, 10.0]}), 'newmec-3'], [({'t1.104.114.155': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.155': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.155': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.155': [0.627, 6.667], 't2.104.114.155': [0.438, 5.0], 't3.104.114.155': [0.64, 5.0]}), 'newmec-4'], [({'t4.102.114.156': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.156': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.156': [0.746, 10.0], 't2.102.114.156': [0.401, 5.0]}), 'newmec-2'], [({'t4.101.114.157': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.157': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.157': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.157': [0.785, 10.0], 't3.101.114.157': [0.546, 5.0], 't2.101.114.157': [0.677, 5.0]}), 'newmec-1'], [({'t1.101.114.158': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.158': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.158': [0.565, 6.667], 't2.101.114.158': [0.592, 5.0]}), 'newmec-1'], [({'t5.102.114.159': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.159': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.159': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.159': [0.52, 5.0], 't4.102.114.159': [0.759, 10.0], 't3.102.114.159': [0.691, 5.0]}), 'newmec-2'], [({'t5.156.114.160': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.160': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.160': [0.633, 5.0], 't3.156.114.160': [0.491, 5.0]}), 'osboxes-0'], [({'t1.102.114.161': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.161': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.161': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.161': [0.625, 6.667], 't5.102.114.161': [0.655, 5.0], 't2.102.114.161': [0.672, 5.0]}), 'newmec-2'], [({'t5.102.114.162': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.162': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.162': [0.437, 5.0], 't2.102.114.162': [0.511, 5.0]}), 'newmec-2'], [({'t1.105.114.163': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.105.114.163': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.105.114.163': [0.592, 6.667], 't3.105.114.163': [0.454, 5.0]}), 'newmec-5'], [({'t2.101.114.164': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.164': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.164': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.164': [0.648, 5.0], 't1.101.114.164': [0.42, 6.667], 't3.101.114.164': [0.471, 5.0]}), 'newmec-1'], [({'t2.103.114.165': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.165': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.165': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.165': [0.645, 5.0], 't1.103.114.165': [0.742, 6.667], 't4.103.114.165': [0.721, 10.0]}), 'newmec-3'], [({'t4.101.114.166': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.166': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.166': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.166': [0.426, 10.0], 't1.101.114.166': [0.559, 6.667], 't2.101.114.166': [0.741, 5.0]}), 'newmec-1'], [({'t4.156.114.167': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.167': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.167': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.167': [0.446, 10.0], 't3.156.114.167': [0.77, 5.0], 't1.156.114.167': [0.743, 6.667]}), 'osboxes-0'], [({'t2.103.114.168': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.168': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.168': [0.547, 5.0], 't5.103.114.168': [0.596, 5.0]}), 'newmec-3'], [({'t5.104.114.169': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.169': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.169': [0.663, 5.0], 't1.104.114.169': [0.45, 6.667]}), 'newmec-4'], [({'t1.104.114.170': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.170': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.170': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.170': [0.559, 6.667], 't3.104.114.170': [0.445, 5.0], 't2.104.114.170': [0.535, 5.0]}), 'newmec-4'], [({'t4.101.114.171': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.171': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.171': [0.619, 10.0], 't3.101.114.171': [0.578, 5.0]}), 'newmec-1'], [({'t2.101.114.172': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.172': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.172': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.172': [0.753, 5.0], 't5.101.114.172': [0.484, 5.0], 't3.101.114.172': [0.65, 5.0]}), 'newmec-1'], [({'t2.103.114.173': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.173': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.173': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.173': [0.632, 5.0], 't1.103.114.173': [0.541, 6.667], 't4.103.114.173': [0.449, 10.0]}), 'newmec-3'], [({'t2.101.114.174': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.174': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.174': [0.475, 5.0], 't5.101.114.174': [0.408, 5.0]}), 'newmec-1'], [({'t4.105.114.175': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.175': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.175': [0.472, 10.0], 't5.105.114.175': [0.572, 5.0]}), 'newmec-5'], [({'t5.102.114.176': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.176': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.176': [0.595, 5.0], 't4.102.114.176': [0.688, 10.0]}), 'newmec-2'], [({'t2.104.114.177': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.177': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.177': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.177': [0.741, 5.0], 't1.104.114.177': [0.432, 6.667], 't4.104.114.177': [0.675, 10.0]}), 'newmec-4'], [({'t1.101.114.178': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.178': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.178': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.178': [0.415, 6.667], 't3.101.114.178': [0.409, 5.0], 't4.101.114.178': [0.412, 10.0]}), 'newmec-1'], [({'t2.105.114.179': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.179': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.179': [0.414, 5.0], 't1.105.114.179': [0.432, 6.667]}), 'newmec-5'], [({'t2.101.114.180': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.180': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.180': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.180': [0.544, 5.0], 't1.101.114.180': [0.578, 6.667], 't4.101.114.180': [0.579, 10.0]}), 'newmec-1'], [({'t5.101.114.181': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.181': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.181': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.181': [0.647, 5.0], 't2.101.114.181': [0.578, 5.0], 't1.101.114.181': [0.464, 6.667]}), 'newmec-1'], [({'t2.102.114.182': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.182': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.182': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.182': [0.545, 5.0], 't1.102.114.182': [0.61, 6.667], 't3.102.114.182': [0.782, 5.0]}), 'newmec-2'], [({'t4.104.114.183': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.183': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.183': [0.595, 10.0], 't5.104.114.183': [0.426, 5.0]}), 'newmec-4'], [({'t5.102.114.184': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.184': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.184': [0.737, 5.0], 't4.102.114.184': [0.748, 10.0]}), 'newmec-2'], [({'t3.104.114.185': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.185': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.185': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.185': [0.68, 5.0], 't1.104.114.185': [0.448, 6.667], 't2.104.114.185': [0.662, 5.0]}), 'newmec-4'], [({'t5.102.114.186': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.186': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.186': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.186': [0.531, 5.0], 't1.102.114.186': [0.522, 6.667], 't2.102.114.186': [0.568, 5.0]}), 'newmec-2'], [({'t2.102.114.187': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.187': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.187': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.187': [0.768, 5.0], 't5.102.114.187': [0.79, 5.0], 't3.102.114.187': [0.746, 5.0]}), 'newmec-2'], [({'t3.101.114.188': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.188': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.188': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.188': [0.545, 5.0], 't5.101.114.188': [0.659, 5.0], 't4.101.114.188': [0.513, 10.0]}), 'newmec-1'], [({'t1.102.114.189': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.189': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.189': [0.627, 6.667], 't4.102.114.189': [0.497, 10.0]}), 'newmec-2'], [({'t2.104.114.190': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.190': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.190': [0.413, 5.0], 't1.104.114.190': [0.753, 6.667]}), 'newmec-4'], [({'t5.104.114.191': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.191': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.191': [0.536, 5.0], 't1.104.114.191': [0.725, 6.667]}), 'newmec-4'], [({'t5.101.114.192': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.192': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.192': [0.634, 5.0], 't3.101.114.192': [0.699, 5.0]}), 'newmec-1'], [({'t1.103.114.193': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.193': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.193': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.193': [0.466, 6.667], 't5.103.114.193': [0.74, 5.0], 't3.103.114.193': [0.492, 5.0]}), 'newmec-3'], [({'t2.104.114.194': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.194': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.194': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.194': [0.547, 5.0], 't3.104.114.194': [0.556, 5.0], 't4.104.114.194': [0.755, 10.0]}), 'newmec-4'], [({'t2.103.114.195': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.195': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.195': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.195': [0.627, 5.0], 't5.103.114.195': [0.662, 5.0], 't4.103.114.195': [0.45, 10.0]}), 'newmec-3'], [({'t4.103.114.196': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.196': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.196': [0.468, 10.0], 't2.103.114.196': [0.554, 5.0]}), 'newmec-3'], [({'t4.101.114.197': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.197': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.197': [0.753, 10.0], 't2.101.114.197': [0.582, 5.0]}), 'newmec-1'], [({'t3.104.114.198': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.198': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.198': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.198': [0.607, 5.0], 't2.104.114.198': [0.684, 5.0], 't4.104.114.198': [0.408, 10.0]}), 'newmec-4'], [({'t3.102.114.199': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.199': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.199': [0.48, 5.0], 't2.102.114.199': [0.517, 5.0]}), 'newmec-2'], [({'t3.101.114.200': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.200': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.200': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.200': [0.552, 5.0], 't5.101.114.200': [0.511, 5.0], 't2.101.114.200': [0.8, 5.0]}), 'newmec-1'], [({'t4.102.114.201': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.201': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.201': [0.696, 10.0], 't3.102.114.201': [0.704, 5.0]}), 'newmec-2'], [({'t4.104.114.202': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.202': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.202': [0.696, 10.0], 't3.104.114.202': [0.418, 5.0]}), 'newmec-4'], [({'t3.156.114.203': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.203': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.203': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.203': [0.554, 5.0], 't4.156.114.203': [0.518, 10.0], 't5.156.114.203': [0.667, 5.0]}), 'osboxes-0'], [({'t1.101.114.204': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.204': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.204': [0.556, 6.667], 't5.101.114.204': [0.666, 5.0]}), 'newmec-1'], [({'t4.103.114.205': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.205': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.205': [0.476, 10.0], 't2.103.114.205': [0.55, 5.0]}), 'newmec-3'], [({'t4.101.114.206': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.206': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.206': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.206': [0.734, 10.0], 't3.101.114.206': [0.651, 5.0], 't5.101.114.206': [0.49, 5.0]}), 'newmec-1'], [({'t3.102.114.207': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.207': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.207': [0.502, 5.0], 't4.102.114.207': [0.753, 10.0]}), 'newmec-2'], [({'t3.104.114.208': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.208': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.208': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.208': [0.674, 5.0], 't5.104.114.208': [0.658, 5.0], 't1.104.114.208': [0.468, 6.667]}), 'newmec-4'], [({'t2.101.114.209': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.209': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.209': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.209': [0.516, 5.0], 't4.101.114.209': [0.599, 10.0], 't5.101.114.209': [0.679, 5.0]}), 'newmec-1'], [({'t5.102.114.210': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.210': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.210': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.210': [0.589, 5.0], 't2.102.114.210': [0.724, 5.0], 't4.102.114.210': [0.423, 10.0]}), 'newmec-2'], [({'t3.101.114.211': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.211': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.211': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.211': [0.505, 5.0], 't2.101.114.211': [0.677, 5.0], 't4.101.114.211': [0.779, 10.0]}), 'newmec-1'], [({'t2.104.114.212': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.212': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.212': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.212': [0.553, 5.0], 't4.104.114.212': [0.728, 10.0], 't5.104.114.212': [0.49, 5.0]}), 'newmec-4'], [({'t4.102.114.213': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.213': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.213': [0.447, 10.0], 't3.102.114.213': [0.494, 5.0]}), 'newmec-2'], [({'t1.101.114.214': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.214': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.214': [0.485, 6.667], 't4.101.114.214': [0.433, 10.0]}), 'newmec-1'], [({'t5.102.114.215': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.215': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.215': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.215': [0.613, 5.0], 't4.102.114.215': [0.632, 10.0], 't3.102.114.215': [0.761, 5.0]}), 'newmec-2'], [({'t2.104.114.216': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.216': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.216': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.216': [0.681, 5.0], 't4.104.114.216': [0.727, 10.0], 't5.104.114.216': [0.751, 5.0]}), 'newmec-4'], [({'t3.105.114.217': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.217': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.217': [0.63, 5.0], 't2.105.114.217': [0.609, 5.0]}), 'newmec-5'], [({'t4.103.114.218': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.218': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.218': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.218': [0.705, 10.0], 't3.103.114.218': [0.64, 5.0], 't2.103.114.218': [0.75, 5.0]}), 'newmec-3'], [({'t2.102.114.219': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.219': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.219': [0.507, 5.0], 't3.102.114.219': [0.784, 5.0]}), 'newmec-2'], [({'t4.101.114.220': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.220': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.220': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.220': [0.624, 10.0], 't1.101.114.220': [0.401, 6.667], 't5.101.114.220': [0.401, 5.0]}), 'newmec-1'], [({'t4.105.114.221': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.221': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.105.114.221': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.221': [0.474, 10.0], 't3.105.114.221': [0.445, 5.0], 't1.105.114.221': [0.702, 6.667]}), 'newmec-5'], [({'t2.103.114.222': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.222': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.222': [0.437, 5.0], 't5.103.114.222': [0.58, 5.0]}), 'newmec-3'], [({'t5.156.114.223': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.223': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.223': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.223': [0.792, 5.0], 't3.156.114.223': [0.7, 5.0], 't4.156.114.223': [0.687, 10.0]}), 'osboxes-0'], [({'t1.102.114.224': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.224': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.224': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.224': [0.709, 6.667], 't5.102.114.224': [0.613, 5.0], 't4.102.114.224': [0.553, 10.0]}), 'newmec-2'], [({'t5.102.114.225': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.225': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.225': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.225': [0.546, 5.0], 't3.102.114.225': [0.454, 5.0], 't2.102.114.225': [0.796, 5.0]}), 'newmec-2'], [({'t2.104.114.226': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.226': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.226': [0.674, 5.0], 't1.104.114.226': [0.719, 6.667]}), 'newmec-4'], [({'t2.105.114.227': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.227': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.227': [0.491, 5.0], 't1.105.114.227': [0.507, 6.667]}), 'newmec-5'], [({'t5.103.114.228': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.228': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.228': [0.643, 5.0], 't2.103.114.228': [0.628, 5.0]}), 'newmec-3'], [({'t5.102.114.229': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.229': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.229': [0.681, 5.0], 't2.102.114.229': [0.491, 5.0]}), 'newmec-2'], [({'t5.101.114.230': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.230': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.230': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.230': [0.724, 5.0], 't4.101.114.230': [0.777, 10.0], 't1.101.114.230': [0.594, 6.667]}), 'newmec-1'], [({'t1.102.114.231': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.231': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.231': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.231': [0.747, 6.667], 't3.102.114.231': [0.498, 5.0], 't4.102.114.231': [0.742, 10.0]}), 'newmec-2'], [({'t2.105.114.232': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.232': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.232': [0.453, 5.0], 't4.105.114.232': [0.729, 10.0]}), 'newmec-5'], [({'t2.101.114.233': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.233': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.233': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.233': [0.447, 5.0], 't4.101.114.233': [0.712, 10.0], 't5.101.114.233': [0.727, 5.0]}), 'newmec-1'], [({'t2.101.114.234': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.234': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.234': [0.591, 5.0], 't4.101.114.234': [0.428, 10.0]}), 'newmec-1'], [({'t5.102.114.235': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.235': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.235': [0.663, 5.0], 't4.102.114.235': [0.788, 10.0]}), 'newmec-2'], [({'t2.105.114.236': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.236': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.236': [0.74, 5.0], 't4.105.114.236': [0.61, 10.0]}), 'newmec-5'], [({'t2.102.114.237': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.237': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.237': [0.473, 5.0], 't4.102.114.237': [0.771, 10.0]}), 'newmec-2'], [({'t4.102.114.238': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.238': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.238': [0.6, 10.0], 't3.102.114.238': [0.416, 5.0]}), 'newmec-2'], [({'t2.102.114.239': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.239': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.239': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.239': [0.417, 5.0], 't3.102.114.239': [0.533, 5.0], 't4.102.114.239': [0.705, 10.0]}), 'newmec-2'], [({'t3.104.114.240': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.240': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.240': [0.644, 5.0], 't4.104.114.240': [0.795, 10.0]}), 'newmec-4'], [({'t3.102.114.241': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.241': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.241': [0.756, 5.0], 't2.102.114.241': [0.685, 5.0]}), 'newmec-2'], [({'t3.102.114.242': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.242': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.242': [0.463, 5.0], 't2.102.114.242': [0.789, 5.0]}), 'newmec-2'], [({'t2.105.114.243': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.243': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.243': [0.511, 5.0], 't1.105.114.243': [0.468, 6.667]}), 'newmec-5'], [({'t5.102.114.244': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.244': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.244': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.244': [0.404, 5.0], 't4.102.114.244': [0.748, 10.0], 't2.102.114.244': [0.627, 5.0]}), 'newmec-2'], [({'t1.104.114.245': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.245': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.245': [0.49, 6.667], 't2.104.114.245': [0.594, 5.0]}), 'newmec-4'], [({'t4.101.114.246': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.246': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.246': [0.766, 10.0], 't3.101.114.246': [0.409, 5.0]}), 'newmec-1'], [({'t2.101.114.247': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.247': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.247': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.247': [0.532, 5.0], 't4.101.114.247': [0.745, 10.0], 't5.101.114.247': [0.708, 5.0]}), 'newmec-1'], [({'t5.101.114.248': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.248': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.248': [0.659, 5.0], 't3.101.114.248': [0.674, 5.0]}), 'newmec-1'], [({'t2.102.114.249': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.249': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.249': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.249': [0.555, 5.0], 't1.102.114.249': [0.576, 6.667], 't5.102.114.249': [0.608, 5.0]}), 'newmec-2'], [({'t3.104.114.250': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.250': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.250': [0.704, 5.0], 't2.104.114.250': [0.601, 5.0]}), 'newmec-4'], [({'t5.101.114.251': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.251': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.251': [0.465, 5.0], 't3.101.114.251': [0.489, 5.0]}), 'newmec-1'], [({'t5.101.114.252': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.252': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.252': [0.468, 5.0], 't2.101.114.252': [0.567, 5.0]}), 'newmec-1'], [({'t4.103.114.253': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.253': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.253': [0.662, 10.0], 't3.103.114.253': [0.702, 5.0]}), 'newmec-3'], [({'t4.101.114.254': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.254': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.254': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.254': [0.451, 10.0], 't2.101.114.254': [0.647, 5.0], 't1.101.114.254': [0.429, 6.667]}), 'newmec-1'], [({'t4.105.114.255': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.255': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.105.114.255': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.255': [0.795, 10.0], 't3.105.114.255': [0.433, 5.0], 't1.105.114.255': [0.696, 6.667]}), 'newmec-5'], [({'t3.101.114.256': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.256': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.256': [0.675, 5.0], 't4.101.114.256': [0.624, 10.0]}), 'newmec-1'], [({'t4.102.114.257': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.257': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.257': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.257': [0.437, 10.0], 't5.102.114.257': [0.79, 5.0], 't3.102.114.257': [0.467, 5.0]}), 'newmec-2'], [({'t3.102.114.258': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.258': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.258': [0.708, 5.0], 't5.102.114.258': [0.799, 5.0]}), 'newmec-2'], [({'t3.103.114.259': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.259': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.259': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.259': [0.764, 5.0], 't5.103.114.259': [0.668, 5.0], 't4.103.114.259': [0.468, 10.0]}), 'newmec-3'], [({'t5.104.114.260': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.260': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.260': [0.792, 5.0], 't1.104.114.260': [0.498, 6.667]}), 'newmec-4'], [({'t4.102.114.261': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.261': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.261': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.261': [0.493, 10.0], 't2.102.114.261': [0.439, 5.0], 't3.102.114.261': [0.778, 5.0]}), 'newmec-2'], [({'t2.156.114.262': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.262': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.262': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.262': [0.71, 5.0], 't3.156.114.262': [0.779, 5.0], 't5.156.114.262': [0.551, 5.0]}), 'osboxes-0'], [({'t3.102.114.263': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.263': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.263': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.263': [0.412, 5.0], 't1.102.114.263': [0.437, 6.667], 't2.102.114.263': [0.458, 5.0]}), 'newmec-2'], [({'t3.102.114.264': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.264': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.264': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.264': [0.451, 5.0], 't4.102.114.264': [0.475, 10.0], 't2.102.114.264': [0.753, 5.0]}), 'newmec-2'], [({'t2.103.114.265': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.265': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.265': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.265': [0.685, 5.0], 't5.103.114.265': [0.483, 5.0], 't4.103.114.265': [0.613, 10.0]}), 'newmec-3'], [({'t5.103.114.266': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.266': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.266': [0.672, 5.0], 't3.103.114.266': [0.79, 5.0]}), 'newmec-3'], [({'t3.105.114.267': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.267': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.267': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.105.114.267': [0.528, 5.0], 't2.105.114.267': [0.727, 5.0], 't1.105.114.267': [0.722, 6.667]}), 'newmec-5'], [({'t1.104.114.268': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.268': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.268': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.268': [0.719, 6.667], 't5.104.114.268': [0.593, 5.0], 't3.104.114.268': [0.562, 5.0]}), 'newmec-4'], [({'t5.102.114.269': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.269': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.269': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.269': [0.665, 5.0], 't4.102.114.269': [0.438, 10.0], 't3.102.114.269': [0.616, 5.0]}), 'newmec-2'], [({'t2.102.114.270': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.270': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.270': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.270': [0.641, 5.0], 't1.102.114.270': [0.795, 6.667], 't4.102.114.270': [0.592, 10.0]}), 'newmec-2'], [({'t5.101.114.271': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.271': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.271': [0.76, 5.0], 't4.101.114.271': [0.658, 10.0]}), 'newmec-1'], [({'t4.101.114.272': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.272': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.272': [0.478, 10.0], 't3.101.114.272': [0.518, 5.0]}), 'newmec-1'], [({'t5.102.114.273': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.273': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.273': [0.497, 5.0], 't2.102.114.273': [0.736, 5.0]}), 'newmec-2'], [({'t2.104.114.274': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.274': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.274': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.274': [0.494, 5.0], 't1.104.114.274': [0.443, 6.667], 't5.104.114.274': [0.548, 5.0]}), 'newmec-4'], [({'t1.101.114.275': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.275': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.275': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.275': [0.488, 6.667], 't3.101.114.275': [0.515, 5.0], 't5.101.114.275': [0.461, 5.0]}), 'newmec-1'], [({'t2.101.114.276': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.276': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.276': [0.749, 5.0], 't1.101.114.276': [0.546, 6.667]}), 'newmec-1'], [({'t3.101.114.277': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.277': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.277': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.277': [0.671, 5.0], 't4.101.114.277': [0.535, 10.0], 't2.101.114.277': [0.483, 5.0]}), 'newmec-1'], [({'t5.101.114.278': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.278': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.278': [0.752, 5.0], 't3.101.114.278': [0.772, 5.0]}), 'newmec-1'], [({'t4.104.114.279': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.279': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.279': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.279': [0.549, 10.0], 't3.104.114.279': [0.476, 5.0], 't5.104.114.279': [0.661, 5.0]}), 'newmec-4'], [({'t2.105.114.280': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.280': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.105.114.280': [0.58, 5.0], 't5.105.114.280': [0.429, 5.0]}), 'newmec-5'], [({'t2.103.114.281': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.281': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.281': [0.626, 5.0], 't4.103.114.281': [0.693, 10.0]}), 'newmec-3'], [({'t5.104.114.282': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.282': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.282': [0.599, 5.0], 't3.104.114.282': [0.425, 5.0]}), 'newmec-4'], [({'t5.101.114.283': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.283': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.283': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.283': [0.532, 5.0], 't2.101.114.283': [0.528, 5.0], 't3.101.114.283': [0.782, 5.0]}), 'newmec-1'], [({'t2.102.114.284': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.284': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.284': [0.429, 5.0], 't4.102.114.284': [0.4, 10.0]}), 'newmec-2'], [({'t4.102.114.285': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.285': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.285': [0.553, 10.0], 't3.102.114.285': [0.722, 5.0]}), 'newmec-2'], [({'t3.101.114.286': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.286': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.286': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.286': [0.571, 5.0], 't2.101.114.286': [0.75, 5.0], 't4.101.114.286': [0.585, 10.0]}), 'newmec-1'], [({'t2.102.114.287': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.287': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.287': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.287': [0.639, 5.0], 't5.102.114.287': [0.55, 5.0], 't4.102.114.287': [0.492, 10.0]}), 'newmec-2'], [({'t4.101.114.288': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.288': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.288': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.288': [0.692, 10.0], 't1.101.114.288': [0.58, 6.667], 't5.101.114.288': [0.52, 5.0]}), 'newmec-1'], [({'t3.104.114.289': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.289': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.289': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.289': [0.745, 5.0], 't5.104.114.289': [0.442, 5.0], 't2.104.114.289': [0.502, 5.0]}), 'newmec-4'], [({'t4.102.114.290': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.290': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.290': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.290': [0.587, 10.0], 't5.102.114.290': [0.437, 5.0], 't2.102.114.290': [0.608, 5.0]}), 'newmec-2'], [({'t3.103.114.291': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.291': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.291': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.291': [0.623, 5.0], 't4.103.114.291': [0.69, 10.0], 't2.103.114.291': [0.407, 5.0]}), 'newmec-3'], [({'t3.101.114.292': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.292': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.292': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.292': [0.643, 5.0], 't4.101.114.292': [0.603, 10.0], 't1.101.114.292': [0.653, 6.667]}), 'newmec-1'], [({'t5.101.114.293': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.293': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.293': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.293': [0.455, 5.0], 't2.101.114.293': [0.741, 5.0], 't4.101.114.293': [0.628, 10.0]}), 'newmec-1'], [({'t3.101.114.294': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.294': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.294': [0.719, 5.0], 't1.101.114.294': [0.539, 6.667]}), 'newmec-1'], [({'t3.104.114.295': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.295': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.295': [0.629, 5.0], 't5.104.114.295': [0.407, 5.0]}), 'newmec-4'], [({'t1.101.114.296': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.296': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.296': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.296': [0.62, 6.667], 't3.101.114.296': [0.679, 5.0], 't2.101.114.296': [0.653, 5.0]}), 'newmec-1'], [({'t2.103.114.297': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.297': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.297': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.297': [0.59, 5.0], 't5.103.114.297': [0.494, 5.0], 't3.103.114.297': [0.648, 5.0]}), 'newmec-3'], [({'t2.104.114.298': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.298': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.298': [0.462, 5.0], 't5.104.114.298': [0.777, 5.0]}), 'newmec-4'], [({'t5.101.114.299': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.299': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.299': [0.468, 5.0], 't2.101.114.299': [0.529, 5.0]}), 'newmec-1'], [({'t3.102.114.300': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.300': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.300': [0.475, 5.0], 't1.102.114.300': [0.607, 6.667]}), 'newmec-2'], [({'t2.101.114.301': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.301': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.301': [0.646, 5.0], 't5.101.114.301': [0.532, 5.0]}), 'newmec-1'], [({'t5.105.114.302': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.302': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.302': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.105.114.302': [0.738, 5.0], 't2.105.114.302': [0.736, 5.0], 't4.105.114.302': [0.625, 10.0]}), 'newmec-5'], [({'t4.102.114.303': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.303': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.303': [0.544, 10.0], 't1.102.114.303': [0.591, 6.667]}), 'newmec-2'], [({'t2.101.114.304': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.304': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.304': [0.516, 5.0], 't5.101.114.304': [0.731, 5.0]}), 'newmec-1'], [({'t3.104.114.305': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.305': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.305': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.305': [0.45, 5.0], 't4.104.114.305': [0.443, 10.0], 't1.104.114.305': [0.775, 6.667]}), 'newmec-4'], [({'t5.104.114.306': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.306': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.306': [0.522, 5.0], 't4.104.114.306': [0.55, 10.0]}), 'newmec-4'], [({'t4.101.114.307': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.307': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.307': [0.563, 10.0], 't5.101.114.307': [0.587, 5.0]}), 'newmec-1'], [({'t4.105.114.308': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.308': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.308': [0.448, 10.0], 't1.105.114.308': [0.553, 6.667]}), 'newmec-5'], [({'t3.102.114.309': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.309': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.309': [0.579, 5.0], 't4.102.114.309': [0.772, 10.0]}), 'newmec-2'], [({'t5.105.114.310': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.105.114.310': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.105.114.310': [0.645, 5.0], 't3.105.114.310': [0.427, 5.0]}), 'newmec-5'], [({'t4.101.114.311': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.311': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.311': [0.689, 10.0], 't5.101.114.311': [0.569, 5.0]}), 'newmec-1'], [({'t2.102.114.312': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.312': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.312': [0.603, 5.0], 't1.102.114.312': [0.491, 6.667]}), 'newmec-2'], [({'t3.103.114.313': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.313': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.313': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.313': [0.49, 5.0], 't4.103.114.313': [0.461, 10.0], 't5.103.114.313': [0.691, 5.0]}), 'newmec-3'], [({'t1.101.114.314': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.314': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.314': [0.44, 6.667], 't4.101.114.314': [0.615, 10.0]}), 'newmec-1'], [({'t5.104.114.315': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.315': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.315': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.315': [0.546, 5.0], 't2.104.114.315': [0.574, 5.0], 't4.104.114.315': [0.495, 10.0]}), 'newmec-4'], [({'t3.101.114.316': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.316': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.316': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.316': [0.63, 5.0], 't2.101.114.316': [0.581, 5.0], 't4.101.114.316': [0.426, 10.0]}), 'newmec-1'], [({'t5.102.114.317': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.317': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.317': [0.661, 5.0], 't4.102.114.317': [0.584, 10.0]}), 'newmec-2'], [({'t5.105.114.318': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.318': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.105.114.318': [0.566, 5.0], 't1.105.114.318': [0.541, 6.667]}), 'newmec-5'], [({'t3.102.114.319': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.319': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.319': [0.546, 5.0], 't1.102.114.319': [0.635, 6.667]}), 'newmec-2'], [({'t3.105.114.320': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.320': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.320': [0.541, 5.0], 't2.105.114.320': [0.752, 5.0]}), 'newmec-5'], [({'t4.102.114.321': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.321': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.321': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.321': [0.43, 10.0], 't2.102.114.321': [0.739, 5.0], 't5.102.114.321': [0.585, 5.0]}), 'newmec-2'], [({'t3.104.114.322': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.322': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.322': [0.58, 5.0], 't2.104.114.322': [0.453, 5.0]}), 'newmec-4'], [({'t4.102.114.323': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.323': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.323': [0.428, 10.0], 't3.102.114.323': [0.689, 5.0]}), 'newmec-2'], [({'t2.101.114.324': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.324': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.324': [0.527, 5.0], 't5.101.114.324': [0.506, 5.0]}), 'newmec-1'], [({'t3.102.114.325': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.325': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.325': [0.482, 5.0], 't4.102.114.325': [0.57, 10.0]}), 'newmec-2'], [({'t5.102.114.326': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.326': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.326': [0.442, 5.0], 't2.102.114.326': [0.545, 5.0]}), 'newmec-2'], [({'t1.102.114.327': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.327': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.327': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.327': [0.689, 6.667], 't5.102.114.327': [0.476, 5.0], 't4.102.114.327': [0.651, 10.0]}), 'newmec-2'], [({'t4.102.114.328': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.328': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.328': [0.572, 10.0], 't5.102.114.328': [0.666, 5.0]}), 'newmec-2'], [({'t4.105.114.329': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.329': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.105.114.329': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.105.114.329': [0.771, 10.0], 't5.105.114.329': [0.699, 5.0], 't3.105.114.329': [0.476, 5.0]}), 'newmec-5'], [({'t3.105.114.330': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.330': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.105.114.330': [0.464, 5.0], 't4.105.114.330': [0.581, 10.0]}), 'newmec-5'], [({'t3.101.114.331': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.331': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.331': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.331': [0.509, 5.0], 't2.101.114.331': [0.52, 5.0], 't4.101.114.331': [0.74, 10.0]}), 'newmec-1'], [({'t2.101.114.332': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.332': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.332': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.332': [0.452, 5.0], 't5.101.114.332': [0.732, 5.0], 't4.101.114.332': [0.419, 10.0]}), 'newmec-1'], [({'t1.102.114.333': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.333': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.333': [0.763, 6.667], 't5.102.114.333': [0.614, 5.0]}), 'newmec-2'], [({'t3.105.114.334': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.334': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.105.114.334': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.105.114.334': [0.531, 5.0], 't5.105.114.334': [0.43, 5.0], 't4.105.114.334': [0.527, 10.0]}), 'newmec-5'], [({'t5.105.114.335': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.335': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.105.114.335': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.105.114.335': [0.769, 5.0], 't2.105.114.335': [0.609, 5.0], 't3.105.114.335': [0.76, 5.0]}), 'newmec-5'], [({'t2.101.114.336': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.336': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.336': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.336': [0.637, 5.0], 't4.101.114.336': [0.623, 10.0], 't3.101.114.336': [0.554, 5.0]}), 'newmec-1'], [({'t3.102.114.337': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.337': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.337': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.337': [0.436, 5.0], 't2.102.114.337': [0.586, 5.0], 't4.102.114.337': [0.585, 10.0]}), 'newmec-2'], [({'t1.103.114.338': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.338': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.338': [0.41, 6.667], 't4.103.114.338': [0.719, 10.0]}), 'newmec-3'], [({'t2.102.114.339': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.339': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.339': [0.658, 5.0], 't5.102.114.339': [0.635, 5.0]}), 'newmec-2'], [({'t1.104.114.340': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.340': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.340': [0.758, 6.667], 't2.104.114.340': [0.587, 5.0]}), 'newmec-4'], [({'t4.101.114.341': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.341': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.341': [0.645, 10.0], 't2.101.114.341': [0.455, 5.0]}), 'newmec-1'], [({'t2.102.114.342': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.342': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.342': [0.645, 5.0], 't5.102.114.342': [0.637, 5.0]}), 'newmec-2'], [({'t3.102.114.343': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.343': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.343': [0.453, 5.0], 't5.102.114.343': [0.521, 5.0]}), 'newmec-2'], [({'t3.101.114.344': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.344': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.344': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.344': [0.499, 5.0], 't1.101.114.344': [0.454, 6.667], 't5.101.114.344': [0.781, 5.0]}), 'newmec-1'], [({'t4.101.114.345': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.345': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.345': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.345': [0.709, 10.0], 't5.101.114.345': [0.574, 5.0], 't2.101.114.345': [0.592, 5.0]}), 'newmec-1'], [({'t1.105.114.346': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.346': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.346': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.105.114.346': [0.583, 6.667], 't4.105.114.346': [0.408, 10.0], 't5.105.114.346': [0.439, 5.0]}), 'newmec-5'], [({'t4.102.114.347': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.347': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.347': [0.417, 10.0], 't5.102.114.347': [0.533, 5.0]}), 'newmec-2'], [({'t5.104.114.348': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.348': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.348': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.348': [0.734, 5.0], 't1.104.114.348': [0.678, 6.667], 't2.104.114.348': [0.479, 5.0]}), 'newmec-4'], [({'t5.102.114.349': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.349': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.349': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.349': [0.573, 5.0], 't2.102.114.349': [0.598, 5.0], 't3.102.114.349': [0.471, 5.0]}), 'newmec-2'], [({'t5.101.114.350': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.350': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.350': [0.599, 5.0], 't4.101.114.350': [0.547, 10.0]}), 'newmec-1'], [({'t2.102.114.351': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.351': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.351': [0.411, 5.0], 't4.102.114.351': [0.567, 10.0]}), 'newmec-2'], [({'t2.101.114.352': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.352': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.352': [0.723, 5.0], 't3.101.114.352': [0.481, 5.0]}), 'newmec-1'], [({'t5.101.114.353': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.353': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.353': [0.631, 5.0], 't2.101.114.353': [0.421, 5.0]}), 'newmec-1'], [({'t5.102.114.354': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.354': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.354': [0.634, 5.0], 't1.102.114.354': [0.517, 6.667]}), 'newmec-2'], [({'t3.101.114.355': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.355': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.355': [0.54, 5.0], 't1.101.114.355': [0.688, 6.667]}), 'newmec-1'], [({'t1.101.114.356': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.356': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.356': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.356': [0.776, 6.667], 't2.101.114.356': [0.781, 5.0], 't5.101.114.356': [0.464, 5.0]}), 'newmec-1'], [({'t4.104.114.357': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.357': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.357': [0.592, 10.0], 't2.104.114.357': [0.538, 5.0]}), 'newmec-4'], [({'t3.101.114.358': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.358': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.358': [0.458, 5.0], 't1.101.114.358': [0.494, 6.667]}), 'newmec-1'], [({'t3.104.114.359': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.359': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.359': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.359': [0.613, 5.0], 't5.104.114.359': [0.404, 5.0], 't1.104.114.359': [0.519, 6.667]}), 'newmec-4'], [({'t2.101.114.360': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.360': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.360': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.360': [0.689, 5.0], 't5.101.114.360': [0.502, 5.0], 't1.101.114.360': [0.79, 6.667]}), 'newmec-1'], [({'t4.103.114.361': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.361': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.361': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.361': [0.422, 10.0], 't3.103.114.361': [0.658, 5.0], 't5.103.114.361': [0.476, 5.0]}), 'newmec-3'], [({'t5.102.114.362': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.362': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.362': [0.636, 5.0], 't2.102.114.362': [0.697, 5.0]}), 'newmec-2'], [({'t1.102.114.363': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.363': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.363': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.363': [0.414, 6.667], 't2.102.114.363': [0.785, 5.0], 't3.102.114.363': [0.75, 5.0]}), 'newmec-2'], [({'t1.101.114.364': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.364': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.364': [0.58, 6.667], 't3.101.114.364': [0.459, 5.0]}), 'newmec-1'], [({'t4.104.114.365': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.365': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.365': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.365': [0.541, 10.0], 't3.104.114.365': [0.438, 5.0], 't5.104.114.365': [0.761, 5.0]}), 'newmec-4'], [({'t5.102.114.366': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.366': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.366': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.366': [0.583, 5.0], 't1.102.114.366': [0.512, 6.667], 't4.102.114.366': [0.73, 10.0]}), 'newmec-2'], [({'t2.105.114.367': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.367': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.367': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.105.114.367': [0.426, 5.0], 't4.105.114.367': [0.787, 10.0], 't3.105.114.367': [0.74, 5.0]}), 'newmec-5'], [({'t4.102.114.368': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.368': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.368': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.368': [0.734, 10.0], 't3.102.114.368': [0.507, 5.0], 't1.102.114.368': [0.615, 6.667]}), 'newmec-2'], [({'t5.101.114.369': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.369': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.369': [0.524, 5.0], 't3.101.114.369': [0.432, 5.0]}), 'newmec-1'], [({'t5.101.114.370': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.370': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.370': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.370': [0.641, 5.0], 't1.101.114.370': [0.743, 6.667], 't4.101.114.370': [0.515, 10.0]}), 'newmec-1'], [({'t1.101.114.371': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.371': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.371': [0.518, 6.667], 't5.101.114.371': [0.494, 5.0]}), 'newmec-1'], [({'t2.101.114.372': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.372': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.372': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.372': [0.751, 5.0], 't4.101.114.372': [0.603, 10.0], 't5.101.114.372': [0.557, 5.0]}), 'newmec-1'], [({'t2.101.114.373': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.373': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.373': [0.698, 5.0], 't5.101.114.373': [0.787, 5.0]}), 'newmec-1'], [({'t2.102.114.374': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.374': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.374': [0.78, 5.0], 't3.102.114.374': [0.427, 5.0]}), 'newmec-2'], [({'t3.102.114.375': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.375': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.375': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.375': [0.61, 5.0], 't5.102.114.375': [0.707, 5.0], 't1.102.114.375': [0.458, 6.667]}), 'newmec-2'], [({'t4.105.114.376': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.376': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.376': [0.765, 10.0], 't1.105.114.376': [0.482, 6.667]}), 'newmec-5'], [({'t1.102.114.377': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.377': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.377': [0.592, 6.667], 't4.102.114.377': [0.46, 10.0]}), 'newmec-2'], [({'t2.102.114.378': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.378': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.378': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.378': [0.584, 5.0], 't3.102.114.378': [0.516, 5.0], 't5.102.114.378': [0.522, 5.0]}), 'newmec-2'], [({'t5.103.114.379': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.379': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.379': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.379': [0.525, 5.0], 't3.103.114.379': [0.424, 5.0], 't2.103.114.379': [0.424, 5.0]}), 'newmec-3'], [({'t4.101.114.380': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.380': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.380': [0.684, 10.0], 't5.101.114.380': [0.565, 5.0]}), 'newmec-1'], [({'t3.101.114.381': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.381': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.381': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.381': [0.667, 5.0], 't2.101.114.381': [0.717, 5.0], 't5.101.114.381': [0.464, 5.0]}), 'newmec-1'], [({'t2.102.114.382': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.382': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.382': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.382': [0.738, 5.0], 't5.102.114.382': [0.536, 5.0], 't4.102.114.382': [0.43, 10.0]}), 'newmec-2'], [({'t5.102.114.383': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.383': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.383': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.383': [0.781, 5.0], 't2.102.114.383': [0.703, 5.0], 't4.102.114.383': [0.529, 10.0]}), 'newmec-2'], [({'t5.102.114.384': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.384': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.384': [0.66, 5.0], 't4.102.114.384': [0.761, 10.0]}), 'newmec-2'], [({'t4.104.114.385': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.385': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.385': [0.52, 10.0], 't3.104.114.385': [0.755, 5.0]}), 'newmec-4'], [({'t1.104.114.386': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.386': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.386': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.386': [0.626, 6.667], 't2.104.114.386': [0.59, 5.0], 't3.104.114.386': [0.586, 5.0]}), 'newmec-4'], [({'t4.101.114.387': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.387': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.387': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.387': [0.478, 10.0], 't3.101.114.387': [0.579, 5.0], 't1.101.114.387': [0.627, 6.667]}), 'newmec-1'], [({'t3.105.114.388': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.388': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.105.114.388': [0.738, 5.0], 't4.105.114.388': [0.791, 10.0]}), 'newmec-5'], [({'t1.102.114.389': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.389': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.389': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.389': [0.7, 6.667], 't2.102.114.389': [0.713, 5.0], 't4.102.114.389': [0.777, 10.0]}), 'newmec-2'], [({'t5.102.114.390': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.390': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.390': [0.743, 5.0], 't1.102.114.390': [0.587, 6.667]}), 'newmec-2'], [({'t4.105.114.391': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.391': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.391': [0.492, 10.0], 't1.105.114.391': [0.437, 6.667]}), 'newmec-5'], [({'t5.102.114.392': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.392': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.392': [0.48, 5.0], 't1.102.114.392': [0.414, 6.667]}), 'newmec-2'], [({'t2.101.114.393': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.393': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.393': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.393': [0.434, 5.0], 't1.101.114.393': [0.729, 6.667], 't3.101.114.393': [0.538, 5.0]}), 'newmec-1'], [({'t2.103.114.394': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.394': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.394': [0.545, 5.0], 't5.103.114.394': [0.753, 5.0]}), 'newmec-3'], [({'t4.104.114.395': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.395': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.395': [0.615, 10.0], 't2.104.114.395': [0.745, 5.0]}), 'newmec-4'], [({'t4.156.114.396': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.396': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.396': [0.641, 10.0], 't5.156.114.396': [0.478, 5.0]}), 'osboxes-0'], [({'t5.104.114.397': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.397': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.397': [0.635, 5.0], 't1.104.114.397': [0.421, 6.667]}), 'newmec-4'], [({'t5.101.114.398': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.398': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.398': [0.53, 5.0], 't2.101.114.398': [0.427, 5.0]}), 'newmec-1'], [({'t3.105.114.399': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.399': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.399': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.399': [0.536, 5.0], 't4.105.114.399': [0.414, 10.0], 't2.105.114.399': [0.616, 5.0]}), 'newmec-5'], [({'t5.101.114.400': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.400': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.400': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.400': [0.75, 5.0], 't3.101.114.400': [0.683, 5.0], 't4.101.114.400': [0.689, 10.0]}), 'newmec-1'], [({'t2.103.114.401': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.401': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.401': [0.736, 5.0], 't4.103.114.401': [0.504, 10.0]}), 'newmec-3'], [({'t5.102.114.402': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.402': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.402': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.402': [0.706, 5.0], 't1.102.114.402': [0.429, 6.667], 't2.102.114.402': [0.493, 5.0]}), 'newmec-2'], [({'t2.105.114.403': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.403': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.105.114.403': [0.471, 5.0], 't5.105.114.403': [0.498, 5.0]}), 'newmec-5'], [({'t2.104.114.404': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.404': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.404': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.404': [0.675, 5.0], 't1.104.114.404': [0.482, 6.667], 't5.104.114.404': [0.406, 5.0]}), 'newmec-4'], [({'t1.101.114.405': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.405': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.405': [0.572, 6.667], 't5.101.114.405': [0.706, 5.0]}), 'newmec-1'], [({'t5.101.114.406': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.406': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.406': [0.577, 5.0], 't3.101.114.406': [0.431, 5.0]}), 'newmec-1'], [({'t5.101.114.407': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.407': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.407': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.407': [0.733, 5.0], 't1.101.114.407': [0.618, 6.667], 't4.101.114.407': [0.689, 10.0]}), 'newmec-1'], [({'t3.102.114.408': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.408': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.408': [0.67, 5.0], 't1.102.114.408': [0.745, 6.667]}), 'newmec-2'], [({'t4.102.114.409': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.409': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.409': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.409': [0.442, 10.0], 't2.102.114.409': [0.455, 5.0], 't5.102.114.409': [0.401, 5.0]}), 'newmec-2'], [({'t4.101.114.410': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.410': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.410': [0.607, 10.0], 't2.101.114.410': [0.647, 5.0]}), 'newmec-1'], [({'t5.101.114.411': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.411': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.411': [0.578, 5.0], 't4.101.114.411': [0.782, 10.0]}), 'newmec-1'], [({'t3.101.114.412': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.412': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.412': [0.615, 5.0], 't4.101.114.412': [0.788, 10.0]}), 'newmec-1'], [({'t4.102.114.413': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.413': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.413': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.413': [0.459, 10.0], 't1.102.114.413': [0.499, 6.667], 't5.102.114.413': [0.614, 5.0]}), 'newmec-2'], [({'t2.101.114.414': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.414': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.414': [0.406, 5.0], 't5.101.114.414': [0.693, 5.0]}), 'newmec-1'], [({'t1.102.114.415': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.415': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.415': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.415': [0.56, 6.667], 't2.102.114.415': [0.722, 5.0], 't3.102.114.415': [0.606, 5.0]}), 'newmec-2'], [({'t2.102.114.416': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.416': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.416': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.416': [0.565, 5.0], 't3.102.114.416': [0.406, 5.0], 't5.102.114.416': [0.477, 5.0]}), 'newmec-2'], [({'t4.101.114.417': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.417': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.417': [0.605, 10.0], 't3.101.114.417': [0.506, 5.0]}), 'newmec-1'], [({'t2.102.114.418': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.418': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.418': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.418': [0.5, 5.0], 't4.102.114.418': [0.416, 10.0], 't1.102.114.418': [0.766, 6.667]}), 'newmec-2'], [({'t2.104.114.419': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.419': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.419': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.419': [0.498, 5.0], 't3.104.114.419': [0.686, 5.0], 't5.104.114.419': [0.789, 5.0]}), 'newmec-4'], [({'t5.101.114.420': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.420': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.420': [0.531, 5.0], 't4.101.114.420': [0.462, 10.0]}), 'newmec-1'], [({'t2.103.114.421': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.421': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.421': [0.514, 5.0], 't4.103.114.421': [0.774, 10.0]}), 'newmec-3'], [({'t2.101.114.422': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.422': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.422': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.422': [0.71, 5.0], 't3.101.114.422': [0.702, 5.0], 't4.101.114.422': [0.556, 10.0]}), 'newmec-1'], [({'t2.101.114.423': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.423': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.423': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.423': [0.55, 5.0], 't4.101.114.423': [0.448, 10.0], 't5.101.114.423': [0.799, 5.0]}), 'newmec-1'], [({'t4.104.114.424': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.424': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.424': [0.539, 10.0], 't2.104.114.424': [0.443, 5.0]}), 'newmec-4'], [({'t5.101.114.425': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.425': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.425': [0.441, 5.0], 't4.101.114.425': [0.792, 10.0]}), 'newmec-1'], [({'t5.102.114.426': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.426': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.426': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.426': [0.747, 5.0], 't3.102.114.426': [0.524, 5.0], 't1.102.114.426': [0.724, 6.667]}), 'newmec-2'], [({'t3.102.114.427': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.427': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.427': [0.783, 5.0], 't4.102.114.427': [0.409, 10.0]}), 'newmec-2'], [({'t2.101.114.428': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.428': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.428': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.428': [0.454, 5.0], 't5.101.114.428': [0.726, 5.0], 't4.101.114.428': [0.723, 10.0]}), 'newmec-1'], [({'t1.101.114.429': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.429': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.429': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.429': [0.589, 6.667], 't4.101.114.429': [0.558, 10.0], 't2.101.114.429': [0.587, 5.0]}), 'newmec-1'], [({'t2.101.114.430': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.430': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.430': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.430': [0.529, 5.0], 't4.101.114.430': [0.602, 10.0], 't5.101.114.430': [0.415, 5.0]}), 'newmec-1'], [({'t2.105.114.431': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.431': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.105.114.431': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.105.114.431': [0.411, 5.0], 't5.105.114.431': [0.589, 5.0], 't3.105.114.431': [0.717, 5.0]}), 'newmec-5'], [({'t5.104.114.432': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.432': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.432': [0.462, 5.0], 't3.104.114.432': [0.557, 5.0]}), 'newmec-4'], [({'t3.102.114.433': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.433': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.433': [0.584, 5.0], 't5.102.114.433': [0.452, 5.0]}), 'newmec-2'], [({'t1.101.114.434': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.434': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.434': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.434': [0.513, 6.667], 't5.101.114.434': [0.752, 5.0], 't3.101.114.434': [0.473, 5.0]}), 'newmec-1'], [({'t1.104.114.435': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.435': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.435': [0.544, 6.667], 't2.104.114.435': [0.741, 5.0]}), 'newmec-4'], [({'t5.104.114.436': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.436': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.436': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.436': [0.408, 5.0], 't4.104.114.436': [0.622, 10.0], 't1.104.114.436': [0.742, 6.667]}), 'newmec-4'], [({'t4.102.114.437': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.437': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.437': [0.661, 10.0], 't2.102.114.437': [0.787, 5.0]}), 'newmec-2'], [({'t2.104.114.438': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.438': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.438': [0.687, 5.0], 't5.104.114.438': [0.433, 5.0]}), 'newmec-4'], [({'t2.104.114.439': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.439': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.439': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.439': [0.468, 5.0], 't3.104.114.439': [0.784, 5.0], 't1.104.114.439': [0.507, 6.667]}), 'newmec-4'], [({'t2.105.114.440': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.440': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.440': [0.449, 5.0], 't4.105.114.440': [0.422, 10.0]}), 'newmec-5'], [({'t4.102.114.441': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.441': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.441': [0.658, 10.0], 't1.102.114.441': [0.591, 6.667]}), 'newmec-2'], [({'t1.102.114.442': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.442': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.442': [0.506, 6.667], 't3.102.114.442': [0.719, 5.0]}), 'newmec-2'], [({'t3.101.114.443': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.443': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.443': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.443': [0.42, 5.0], 't2.101.114.443': [0.696, 5.0], 't1.101.114.443': [0.405, 6.667]}), 'newmec-1'], [({'t5.102.114.444': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.444': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.444': [0.472, 5.0], 't1.102.114.444': [0.557, 6.667]}), 'newmec-2'], [({'t5.101.114.445': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.445': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.445': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.445': [0.603, 5.0], 't2.101.114.445': [0.567, 5.0], 't1.101.114.445': [0.445, 6.667]}), 'newmec-1'], [({'t5.102.114.446': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.446': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.446': [0.442, 5.0], 't3.102.114.446': [0.505, 5.0]}), 'newmec-2'], [({'t1.101.114.447': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.447': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.447': [0.744, 6.667], 't2.101.114.447': [0.756, 5.0]}), 'newmec-1'], [({'t1.101.114.448': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.448': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.448': [0.507, 6.667], 't4.101.114.448': [0.608, 10.0]}), 'newmec-1'], [({'t4.101.114.449': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.449': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.449': [0.472, 10.0], 't3.101.114.449': [0.72, 5.0]}), 'newmec-1'], [({'t2.102.114.450': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.450': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.450': [0.713, 5.0], 't3.102.114.450': [0.419, 5.0]}), 'newmec-2'], [({'t2.103.114.451': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.451': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.451': [0.62, 5.0], 't4.103.114.451': [0.751, 10.0]}), 'newmec-3'], [({'t5.105.114.452': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.452': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.105.114.452': [0.793, 5.0], 't2.105.114.452': [0.572, 5.0]}), 'newmec-5'], [({'t2.102.114.453': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.453': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.453': [0.543, 5.0], 't3.102.114.453': [0.638, 5.0]}), 'newmec-2'], [({'t4.102.114.454': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.454': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.454': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.454': [0.654, 10.0], 't3.102.114.454': [0.671, 5.0], 't5.102.114.454': [0.721, 5.0]}), 'newmec-2'], [({'t3.102.114.455': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.455': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.455': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.455': [0.776, 5.0], 't2.102.114.455': [0.54, 5.0], 't4.102.114.455': [0.651, 10.0]}), 'newmec-2'], [({'t3.101.114.456': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.456': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.456': [0.579, 5.0], 't2.101.114.456': [0.633, 5.0]}), 'newmec-1'], [({'t2.102.114.457': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.457': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.457': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.457': [0.62, 5.0], 't1.102.114.457': [0.662, 6.667], 't5.102.114.457': [0.619, 5.0]}), 'newmec-2'], [({'t2.103.114.458': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.458': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.458': [0.703, 5.0], 't1.103.114.458': [0.648, 6.667]}), 'newmec-3'], [({'t3.101.114.459': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.459': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.459': [0.693, 5.0], 't4.101.114.459': [0.676, 10.0]}), 'newmec-1'], [({'t4.101.114.460': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.460': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.460': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.460': [0.585, 10.0], 't2.101.114.460': [0.622, 5.0], 't5.101.114.460': [0.694, 5.0]}), 'newmec-1'], [({'t3.103.114.461': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.461': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.461': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.461': [0.489, 5.0], 't2.103.114.461': [0.59, 5.0], 't5.103.114.461': [0.7, 5.0]}), 'newmec-3'], [({'t4.105.114.462': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.462': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.462': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.462': [0.53, 10.0], 't5.105.114.462': [0.704, 5.0], 't1.105.114.462': [0.719, 6.667]}), 'newmec-5'], [({'t2.102.114.463': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.463': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.463': [0.471, 5.0], 't3.102.114.463': [0.745, 5.0]}), 'newmec-2'], [({'t3.105.114.464': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.464': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.105.114.464': [0.72, 5.0], 't4.105.114.464': [0.514, 10.0]}), 'newmec-5'], [({'t2.102.114.465': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.465': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.465': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.465': [0.508, 5.0], 't3.102.114.465': [0.79, 5.0], 't1.102.114.465': [0.532, 6.667]}), 'newmec-2'], [({'t5.101.114.466': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.466': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.466': [0.446, 5.0], 't2.101.114.466': [0.497, 5.0]}), 'newmec-1'], [({'t3.105.114.467': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.467': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.105.114.467': [0.731, 5.0], 't4.105.114.467': [0.496, 10.0]}), 'newmec-5'], [({'t2.101.114.468': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.468': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.468': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.468': [0.493, 5.0], 't3.101.114.468': [0.644, 5.0], 't1.101.114.468': [0.667, 6.667]}), 'newmec-1'], [({'t4.101.114.469': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.469': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.469': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.469': [0.628, 10.0], 't2.101.114.469': [0.477, 5.0], 't5.101.114.469': [0.682, 5.0]}), 'newmec-1'], [({'t4.101.114.470': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.470': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.470': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.470': [0.685, 10.0], 't2.101.114.470': [0.659, 5.0], 't3.101.114.470': [0.775, 5.0]}), 'newmec-1'], [({'t2.102.114.471': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.471': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.471': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.471': [0.742, 5.0], 't4.102.114.471': [0.741, 10.0], 't3.102.114.471': [0.535, 5.0]}), 'newmec-2'], [({'t1.101.114.472': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.472': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.472': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.472': [0.72, 6.667], 't4.101.114.472': [0.648, 10.0], 't5.101.114.472': [0.708, 5.0]}), 'newmec-1'], [({'t4.105.114.473': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.473': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.473': [0.528, 10.0], 't1.105.114.473': [0.556, 6.667]}), 'newmec-5'], [({'t1.101.114.474': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.474': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.474': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.474': [0.618, 6.667], 't5.101.114.474': [0.657, 5.0], 't2.101.114.474': [0.639, 5.0]}), 'newmec-1'], [({'t2.104.114.475': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.475': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.475': [0.791, 5.0], 't3.104.114.475': [0.68, 5.0]}), 'newmec-4'], [({'t3.104.114.476': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.476': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.476': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.476': [0.451, 5.0], 't2.104.114.476': [0.503, 5.0], 't1.104.114.476': [0.714, 6.667]}), 'newmec-4'], [({'t5.102.114.477': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.477': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.477': [0.657, 5.0], 't3.102.114.477': [0.7, 5.0]}), 'newmec-2'], [({'t2.101.114.478': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.478': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.478': [0.692, 5.0], 't1.101.114.478': [0.403, 6.667]}), 'newmec-1'], [({'t1.105.114.479': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.479': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.105.114.479': [0.698, 6.667], 't2.105.114.479': [0.621, 5.0]}), 'newmec-5'], [({'t3.102.114.480': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.480': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.480': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.480': [0.673, 5.0], 't1.102.114.480': [0.702, 6.667], 't4.102.114.480': [0.502, 10.0]}), 'newmec-2'], [({'t5.101.114.481': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.481': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.481': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.481': [0.791, 5.0], 't1.101.114.481': [0.739, 6.667], 't2.101.114.481': [0.402, 5.0]}), 'newmec-1'], [({'t5.103.114.482': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.482': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.482': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.482': [0.604, 5.0], 't1.103.114.482': [0.743, 6.667], 't3.103.114.482': [0.751, 5.0]}), 'newmec-3'], [({'t4.101.114.483': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.483': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.483': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.483': [0.605, 10.0], 't2.101.114.483': [0.74, 5.0], 't5.101.114.483': [0.405, 5.0]}), 'newmec-1'], [({'t4.102.114.484': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.484': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.484': [0.718, 10.0], 't2.102.114.484': [0.464, 5.0]}), 'newmec-2'], [({'t4.101.114.485': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.485': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.485': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.485': [0.522, 10.0], 't3.101.114.485': [0.473, 5.0], 't1.101.114.485': [0.51, 6.667]}), 'newmec-1'], [({'t1.101.114.486': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.486': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.486': [0.503, 6.667], 't3.101.114.486': [0.676, 5.0]}), 'newmec-1'], [({'t5.101.114.487': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.487': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.487': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.487': [0.609, 5.0], 't4.101.114.487': [0.692, 10.0], 't1.101.114.487': [0.505, 6.667]}), 'newmec-1'], [({'t3.105.114.488': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.488': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.488': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.105.114.488': [0.633, 5.0], 't5.105.114.488': [0.514, 5.0], 't1.105.114.488': [0.702, 6.667]}), 'newmec-5'], [({'t4.104.114.489': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.489': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.489': [0.494, 10.0], 't5.104.114.489': [0.526, 5.0]}), 'newmec-4'], [({'t5.105.114.490': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.490': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.105.114.490': [0.485, 5.0], 't1.105.114.490': [0.44, 6.667]}), 'newmec-5'], [({'t2.104.114.491': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.491': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.491': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.491': [0.793, 5.0], 't3.104.114.491': [0.508, 5.0], 't1.104.114.491': [0.7, 6.667]}), 'newmec-4'], [({'t3.102.114.492': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.492': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.492': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.492': [0.797, 5.0], 't4.102.114.492': [0.759, 10.0], 't2.102.114.492': [0.552, 5.0]}), 'newmec-2'], [({'t1.104.114.493': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.493': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.493': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.493': [0.536, 6.667], 't2.104.114.493': [0.597, 5.0], 't4.104.114.493': [0.671, 10.0]}), 'newmec-4'], [({'t5.104.114.494': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.494': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.494': [0.557, 5.0], 't2.104.114.494': [0.565, 5.0]}), 'newmec-4'], [({'t5.102.114.495': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.495': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.495': [0.532, 5.0], 't4.102.114.495': [0.432, 10.0]}), 'newmec-2'], [({'t4.105.114.496': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.496': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.496': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.496': [0.546, 10.0], 't3.105.114.496': [0.669, 5.0], 't5.105.114.496': [0.686, 5.0]}), 'newmec-5'], [({'t2.101.114.497': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.497': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.497': [0.756, 5.0], 't4.101.114.497': [0.432, 10.0]}), 'newmec-1'], [({'t1.105.114.498': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.498': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.105.114.498': [0.559, 6.667], 't2.105.114.498': [0.6, 5.0]}), 'newmec-5'], [({'t5.101.114.499': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.499': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.499': [0.779, 5.0], 't3.101.114.499': [0.638, 5.0]}), 'newmec-1'], [({'t5.102.114.500': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.500': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.500': [0.686, 5.0], 't3.102.114.500': [0.576, 5.0]}), 'newmec-2'], [({'t5.104.114.501': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.501': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.501': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.501': [0.443, 5.0], 't1.104.114.501': [0.686, 6.667], 't4.104.114.501': [0.74, 10.0]}), 'newmec-4'], [({'t2.104.114.502': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.502': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.502': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.502': [0.432, 5.0], 't5.104.114.502': [0.459, 5.0], 't1.104.114.502': [0.543, 6.667]}), 'newmec-4'], [({'t2.104.114.503': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.503': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.503': [0.688, 5.0], 't4.104.114.503': [0.797, 10.0]}), 'newmec-4'], [({'t5.102.114.504': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.504': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.504': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.504': [0.588, 5.0], 't3.102.114.504': [0.426, 5.0], 't4.102.114.504': [0.411, 10.0]}), 'newmec-2'], [({'t2.105.114.505': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.505': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.505': [0.696, 5.0], 't4.105.114.505': [0.637, 10.0]}), 'newmec-5'], [({'t4.103.114.506': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.506': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.506': [0.646, 10.0], 't3.103.114.506': [0.482, 5.0]}), 'newmec-3'], [({'t4.101.114.507': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.507': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.507': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.507': [0.698, 10.0], 't3.101.114.507': [0.75, 5.0], 't1.101.114.507': [0.686, 6.667]}), 'newmec-1'], [({'t2.101.114.508': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.508': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.508': [0.774, 5.0], 't3.101.114.508': [0.599, 5.0]}), 'newmec-1'], [({'t3.101.114.509': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.509': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.509': [0.465, 5.0], 't1.101.114.509': [0.54, 6.667]}), 'newmec-1'], [({'t2.104.114.510': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.510': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.510': [0.493, 5.0], 't4.104.114.510': [0.659, 10.0]}), 'newmec-4'], [({'t5.101.114.511': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.511': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.511': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.511': [0.64, 5.0], 't1.101.114.511': [0.516, 6.667], 't4.101.114.511': [0.672, 10.0]}), 'newmec-1'], [({'t2.105.114.512': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.512': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.512': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.512': [0.4, 5.0], 't1.105.114.512': [0.495, 6.667], 't4.105.114.512': [0.6, 10.0]}), 'newmec-5'], [({'t1.102.114.513': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.513': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.513': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.102.114.513': [0.522, 6.667], 't3.102.114.513': [0.767, 5.0], 't4.102.114.513': [0.418, 10.0]}), 'newmec-2'], [({'t1.103.114.514': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.514': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.514': [0.76, 6.667], 't5.103.114.514': [0.665, 5.0]}), 'newmec-3'], [({'t1.101.114.515': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.515': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.515': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.101.114.515': [0.506, 6.667], 't4.101.114.515': [0.65, 10.0], 't3.101.114.515': [0.648, 5.0]}), 'newmec-1'], [({'t3.102.114.516': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.516': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.516': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.516': [0.772, 5.0], 't5.102.114.516': [0.558, 5.0], 't2.102.114.516': [0.409, 5.0]}), 'newmec-2'], [({'t1.105.114.517': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.517': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.105.114.517': [0.791, 6.667], 't2.105.114.517': [0.428, 5.0]}), 'newmec-5'], [({'t3.102.114.518': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.518': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.518': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.518': [0.543, 5.0], 't4.102.114.518': [0.587, 10.0], 't2.102.114.518': [0.691, 5.0]}), 'newmec-2'], [({'t4.104.114.519': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.519': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.519': [0.722, 10.0], 't5.104.114.519': [0.701, 5.0]}), 'newmec-4'], [({'t3.101.114.520': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.520': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.520': [0.459, 5.0], 't1.101.114.520': [0.522, 6.667]}), 'newmec-1'], [({'t4.102.114.521': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.521': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.521': [0.403, 10.0], 't1.102.114.521': [0.602, 6.667]}), 'newmec-2'], [({'t4.102.114.522': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.522': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.522': [0.558, 10.0], 't1.102.114.522': [0.647, 6.667]}), 'newmec-2'], [({'t3.102.114.523': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.523': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.523': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.523': [0.576, 5.0], 't2.102.114.523': [0.652, 5.0], 't5.102.114.523': [0.674, 5.0]}), 'newmec-2'], [({'t3.101.114.524': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.524': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.524': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.524': [0.624, 5.0], 't4.101.114.524': [0.439, 10.0], 't1.101.114.524': [0.581, 6.667]}), 'newmec-1'], [({'t4.104.114.525': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.525': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.525': [0.702, 10.0], 't2.104.114.525': [0.425, 5.0]}), 'newmec-4'], [({'t2.102.114.526': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.526': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.526': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.526': [0.784, 5.0], 't5.102.114.526': [0.497, 5.0], 't3.102.114.526': [0.705, 5.0]}), 'newmec-2'], [({'t5.102.114.527': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.527': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.527': [0.723, 5.0], 't4.102.114.527': [0.562, 10.0]}), 'newmec-2'], [({'t4.101.114.528': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.528': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.528': [0.471, 10.0], 't1.101.114.528': [0.602, 6.667]}), 'newmec-1'], [({'t5.104.114.529': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.529': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.529': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.529': [0.474, 5.0], 't1.104.114.529': [0.679, 6.667], 't2.104.114.529': [0.739, 5.0]}), 'newmec-4'], [({'t1.105.114.530': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.530': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.530': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.105.114.530': [0.542, 6.667], 't4.105.114.530': [0.772, 10.0], 't2.105.114.530': [0.723, 5.0]}), 'newmec-5'], [({'t5.101.114.531': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.531': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.531': [0.423, 5.0], 't3.101.114.531': [0.469, 5.0]}), 'newmec-1'], [({'t3.103.114.532': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.532': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.532': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.532': [0.651, 5.0], 't4.103.114.532': [0.406, 10.0], 't5.103.114.532': [0.74, 5.0]}), 'newmec-3'], [({'t3.102.114.533': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.533': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.533': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.533': [0.745, 5.0], 't1.102.114.533': [0.643, 6.667], 't2.102.114.533': [0.561, 5.0]}), 'newmec-2'], [({'t5.101.114.534': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.534': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.534': [0.507, 5.0], 't1.101.114.534': [0.747, 6.667]}), 'newmec-1'], [({'t3.105.114.535': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.535': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.535': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.105.114.535': [0.607, 5.0], 't5.105.114.535': [0.712, 5.0], 't1.105.114.535': [0.737, 6.667]}), 'newmec-5'], [({'t2.156.114.536': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.536': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.536': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.536': [0.433, 5.0], 't5.156.114.536': [0.683, 5.0], 't3.156.114.536': [0.569, 5.0]}), 'osboxes-0'], [({'t4.101.114.537': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.537': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.537': [0.58, 10.0], 't2.101.114.537': [0.684, 5.0]}), 'newmec-1'], [({'t5.101.114.538': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.538': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.538': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.538': [0.501, 5.0], 't2.101.114.538': [0.796, 5.0], 't3.101.114.538': [0.695, 5.0]}), 'newmec-1'], [({'t2.103.114.539': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.539': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.539': [0.659, 5.0], 't3.103.114.539': [0.731, 5.0]}), 'newmec-3'], [({'t5.103.114.540': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.540': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.540': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.540': [0.773, 5.0], 't4.103.114.540': [0.445, 10.0], 't1.103.114.540': [0.606, 6.667]}), 'newmec-3'], [({'t4.101.114.541': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.541': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.541': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.541': [0.717, 10.0], 't1.101.114.541': [0.478, 6.667], 't2.101.114.541': [0.703, 5.0]}), 'newmec-1'], [({'t3.102.114.542': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.542': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.542': [0.705, 5.0], 't2.102.114.542': [0.551, 5.0]}), 'newmec-2'], [({'t4.102.114.543': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.543': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.543': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.543': [0.587, 10.0], 't1.102.114.543': [0.727, 6.667], 't3.102.114.543': [0.527, 5.0]}), 'newmec-2'], [({'t2.104.114.544': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.544': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.544': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.544': [0.409, 5.0], 't3.104.114.544': [0.484, 5.0], 't4.104.114.544': [0.456, 10.0]}), 'newmec-4'], [({'t2.101.114.545': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.545': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.545': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.545': [0.465, 5.0], 't4.101.114.545': [0.685, 10.0], 't1.101.114.545': [0.716, 6.667]}), 'newmec-1'], [({'t4.101.114.546': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.546': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.546': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.546': [0.759, 10.0], 't2.101.114.546': [0.412, 5.0], 't1.101.114.546': [0.469, 6.667]}), 'newmec-1'], [({'t5.104.114.547': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.547': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.547': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.547': [0.537, 5.0], 't4.104.114.547': [0.524, 10.0], 't3.104.114.547': [0.599, 5.0]}), 'newmec-4'], [({'t3.102.114.548': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.548': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.548': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.548': [0.67, 5.0], 't4.102.114.548': [0.701, 10.0], 't5.102.114.548': [0.747, 5.0]}), 'newmec-2'], [({'t5.103.114.549': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.549': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.549': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.549': [0.789, 5.0], 't1.103.114.549': [0.649, 6.667], 't4.103.114.549': [0.465, 10.0]}), 'newmec-3'], [({'t4.101.114.550': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.550': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.550': [0.444, 10.0], 't5.101.114.550': [0.439, 5.0]}), 'newmec-1'], [({'t3.104.114.551': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.551': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.551': [0.612, 5.0], 't5.104.114.551': [0.438, 5.0]}), 'newmec-4'], [({'t4.101.114.552': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.552': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.552': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.552': [0.76, 10.0], 't5.101.114.552': [0.432, 5.0], 't1.101.114.552': [0.401, 6.667]}), 'newmec-1'], [({'t2.101.114.553': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.553': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.553': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.553': [0.545, 5.0], 't1.101.114.553': [0.516, 6.667], 't4.101.114.553': [0.631, 10.0]}), 'newmec-1'], [({'t3.102.114.554': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.554': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.554': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.554': [0.528, 5.0], 't4.102.114.554': [0.756, 10.0], 't2.102.114.554': [0.477, 5.0]}), 'newmec-2'], [({'t5.101.114.555': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.555': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.555': [0.614, 5.0], 't4.101.114.555': [0.612, 10.0]}), 'newmec-1'], [({'t5.101.114.556': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.556': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.556': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.556': [0.69, 5.0], 't3.101.114.556': [0.617, 5.0], 't1.101.114.556': [0.547, 6.667]}), 'newmec-1'], [({'t5.103.114.557': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.557': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.557': [0.454, 5.0], 't4.103.114.557': [0.472, 10.0]}), 'newmec-3'], [({'t2.102.114.558': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.558': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.558': [0.563, 5.0], 't3.102.114.558': [0.623, 5.0]}), 'newmec-2'], [({'t3.101.114.559': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.559': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.559': [0.408, 5.0], 't4.101.114.559': [0.506, 10.0]}), 'newmec-1'], [({'t4.101.114.560': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.560': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.560': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.560': [0.664, 10.0], 't5.101.114.560': [0.539, 5.0], 't2.101.114.560': [0.455, 5.0]}), 'newmec-1'], [({'t2.101.114.561': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.561': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.561': [0.626, 5.0], 't1.101.114.561': [0.778, 6.667]}), 'newmec-1'], [({'t4.103.114.562': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.562': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.562': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.562': [0.577, 10.0], 't1.103.114.562': [0.612, 6.667], 't5.103.114.562': [0.419, 5.0]}), 'newmec-3'], [({'t5.103.114.563': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.563': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.563': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.563': [0.439, 5.0], 't4.103.114.563': [0.772, 10.0], 't3.103.114.563': [0.429, 5.0]}), 'newmec-3'], [({'t4.101.114.564': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.564': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.564': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.564': [0.523, 10.0], 't5.101.114.564': [0.57, 5.0], 't1.101.114.564': [0.669, 6.667]}), 'newmec-1'], [({'t2.102.114.565': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.565': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.565': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.565': [0.663, 5.0], 't4.102.114.565': [0.683, 10.0], 't5.102.114.565': [0.635, 5.0]}), 'newmec-2'], [({'t3.102.114.566': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.566': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.566': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.566': [0.641, 5.0], 't4.102.114.566': [0.51, 10.0], 't2.102.114.566': [0.607, 5.0]}), 'newmec-2'], [({'t3.102.114.567': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.567': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.567': [0.555, 5.0], 't2.102.114.567': [0.707, 5.0]}), 'newmec-2'], [({'t1.102.114.568': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.568': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.568': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.568': [0.645, 6.667], 't4.102.114.568': [0.538, 10.0], 't5.102.114.568': [0.407, 5.0]}), 'newmec-2'], [({'t4.156.114.569': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.569': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.569': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.569': [0.579, 10.0], 't2.156.114.569': [0.473, 5.0], 't1.156.114.569': [0.462, 6.667]}), 'osboxes-0'], [({'t2.102.114.570': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.570': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.570': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.570': [0.657, 5.0], 't4.102.114.570': [0.733, 10.0], 't3.102.114.570': [0.529, 5.0]}), 'newmec-2'], [({'t2.102.114.571': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.571': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.571': [0.494, 5.0], 't4.102.114.571': [0.612, 10.0]}), 'newmec-2'], [({'t4.102.114.572': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.572': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.572': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.572': [0.586, 10.0], 't3.102.114.572': [0.749, 5.0], 't2.102.114.572': [0.763, 5.0]}), 'newmec-2'], [({'t5.101.114.573': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.573': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.573': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.573': [0.647, 5.0], 't2.101.114.573': [0.446, 5.0], 't3.101.114.573': [0.79, 5.0]}), 'newmec-1'], [({'t3.101.114.574': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.574': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.574': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.574': [0.716, 5.0], 't5.101.114.574': [0.701, 5.0], 't1.101.114.574': [0.48, 6.667]}), 'newmec-1'], [({'t2.102.114.575': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.575': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.575': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.575': [0.442, 5.0], 't5.102.114.575': [0.515, 5.0], 't1.102.114.575': [0.563, 6.667]}), 'newmec-2'], [({'t3.101.114.576': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.576': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.576': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.576': [0.753, 5.0], 't1.101.114.576': [0.699, 6.667], 't5.101.114.576': [0.765, 5.0]}), 'newmec-1'], [({'t3.101.114.577': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.577': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.577': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.577': [0.667, 5.0], 't4.101.114.577': [0.483, 10.0], 't1.101.114.577': [0.404, 6.667]}), 'newmec-1'], [({'t4.156.114.578': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.578': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.578': [0.721, 10.0], 't2.156.114.578': [0.573, 5.0]}), 'osboxes-0'], [({'t3.102.114.579': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.579': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.579': [0.716, 5.0], 't2.102.114.579': [0.421, 5.0]}), 'newmec-2'], [({'t2.104.114.580': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.580': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.580': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.580': [0.707, 5.0], 't1.104.114.580': [0.596, 6.667], 't4.104.114.580': [0.513, 10.0]}), 'newmec-4'], [({'t4.101.114.581': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.581': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.581': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.581': [0.483, 10.0], 't1.101.114.581': [0.497, 6.667], 't2.101.114.581': [0.434, 5.0]}), 'newmec-1'], [({'t3.102.114.582': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.582': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.582': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.582': [0.799, 5.0], 't4.102.114.582': [0.643, 10.0], 't5.102.114.582': [0.514, 5.0]}), 'newmec-2'], [({'t2.102.114.583': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.583': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.583': [0.638, 5.0], 't3.102.114.583': [0.54, 5.0]}), 'newmec-2'], [({'t1.101.114.584': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.584': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.584': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.584': [0.526, 6.667], 't5.101.114.584': [0.699, 5.0], 't2.101.114.584': [0.63, 5.0]}), 'newmec-1'], [({'t5.103.114.585': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.585': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.585': [0.705, 5.0], 't3.103.114.585': [0.461, 5.0]}), 'newmec-3'], [({'t5.101.114.586': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.586': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.586': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.586': [0.576, 5.0], 't1.101.114.586': [0.444, 6.667], 't2.101.114.586': [0.755, 5.0]}), 'newmec-1'], [({'t4.101.114.587': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.587': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.587': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.587': [0.503, 10.0], 't2.101.114.587': [0.736, 5.0], 't1.101.114.587': [0.423, 6.667]}), 'newmec-1'], [({'t2.104.114.588': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.588': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.588': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.588': [0.738, 5.0], 't4.104.114.588': [0.666, 10.0], 't1.104.114.588': [0.655, 6.667]}), 'newmec-4'], [({'t2.103.114.589': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.589': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.589': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.589': [0.711, 5.0], 't5.103.114.589': [0.657, 5.0], 't3.103.114.589': [0.539, 5.0]}), 'newmec-3'], [({'t3.104.114.590': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.590': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.590': [0.427, 5.0], 't5.104.114.590': [0.462, 5.0]}), 'newmec-4'], [({'t3.101.114.591': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.591': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.591': [0.688, 5.0], 't4.101.114.591': [0.549, 10.0]}), 'newmec-1'], [({'t3.102.114.592': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.592': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.592': [0.571, 5.0], 't4.102.114.592': [0.705, 10.0]}), 'newmec-2'], [({'t5.101.114.593': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.593': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.593': [0.717, 5.0], 't2.101.114.593': [0.436, 5.0]}), 'newmec-1'], [({'t2.102.114.594': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.594': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.594': [0.49, 5.0], 't5.102.114.594': [0.602, 5.0]}), 'newmec-2'], [({'t5.102.114.595': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.595': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.595': [0.546, 5.0], 't1.102.114.595': [0.521, 6.667]}), 'newmec-2'], [({'t1.102.114.596': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.596': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.596': [0.754, 6.667], 't2.102.114.596': [0.535, 5.0]}), 'newmec-2'], [({'t5.102.114.597': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.597': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.597': [0.766, 5.0], 't4.102.114.597': [0.539, 10.0]}), 'newmec-2'], [({'t4.102.114.598': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.598': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.598': [0.434, 10.0], 't5.102.114.598': [0.432, 5.0]}), 'newmec-2'], [({'t3.101.114.599': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.599': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.599': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.599': [0.728, 5.0], 't2.101.114.599': [0.46, 5.0], 't1.101.114.599': [0.406, 6.667]}), 'newmec-1']] host_names6 = {'192.168.122.156': 'osboxes-0', '192.168.122.102': 'newmec-2', '192.168.122.103': 'newmec-3', '192.168.122.104': 'newmec-4', '192.168.122.105': 'newmec-5', '192.168.122.101': 'newmec-1'} record7 = [[({'t5.101.114.0': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.0': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.0': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.0': [0.714, 5.0], 't4.101.114.0': [0.592, 10.0], 't2.101.114.0': [0.492, 5.0]}), 'newmec-1'], [({'t4.103.114.1': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.1': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.1': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.1': [0.438, 10.0], 't2.103.114.1': [0.578, 5.0], 't3.103.114.1': [0.56, 5.0]}), 'newmec-3'], [({'t3.105.114.2': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.2': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.2': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.105.114.2': [0.659, 5.0], 't2.105.114.2': [0.583, 5.0], 't5.105.114.2': [0.559, 5.0]}), 'newmec-5'], [({'t3.102.114.3': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.3': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.3': [0.429, 5.0], 't1.102.114.3': [0.734, 6.667]}), 'newmec-2'], [({'t4.103.114.4': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.4': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.4': [0.613, 10.0], 't1.103.114.4': [0.41, 6.667]}), 'newmec-3'], [({'t3.102.114.5': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.5': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.5': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.5': [0.729, 5.0], 't5.102.114.5': [0.653, 5.0], 't2.102.114.5': [0.581, 5.0]}), 'newmec-2'], [({'t2.101.114.6': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.6': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.6': [0.612, 5.0], 't5.101.114.6': [0.436, 5.0]}), 'newmec-1'], [({'t2.102.114.7': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.7': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.7': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.7': [0.624, 5.0], 't3.102.114.7': [0.792, 5.0], 't4.102.114.7': [0.442, 10.0]}), 'newmec-2'], [({'t5.102.114.8': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.8': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.8': [0.705, 5.0], 't4.102.114.8': [0.431, 10.0]}), 'newmec-2'], [({'t5.103.114.9': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.9': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.9': [0.529, 5.0], 't4.103.114.9': [0.596, 10.0]}), 'newmec-3'], [({'t5.103.114.10': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.10': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.10': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.10': [0.742, 5.0], 't2.103.114.10': [0.726, 5.0], 't4.103.114.10': [0.71, 10.0]}), 'newmec-3'], [({'t2.104.114.11': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.11': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.11': [0.683, 5.0], 't4.104.114.11': [0.427, 10.0]}), 'newmec-4'], [({'t2.103.114.12': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.12': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.12': [0.766, 5.0], 't4.103.114.12': [0.668, 10.0]}), 'newmec-3'], [({'t2.106.114.13': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.13': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.106.114.13': [0.788, 5.0], 't1.106.114.13': [0.727, 6.667]}), 'newmec-6'], [({'t5.101.114.14': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.14': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.14': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.14': [0.497, 5.0], 't4.101.114.14': [0.735, 10.0], 't2.101.114.14': [0.63, 5.0]}), 'newmec-1'], [({'t3.102.114.15': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.15': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.15': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.15': [0.595, 5.0], 't5.102.114.15': [0.631, 5.0], 't2.102.114.15': [0.442, 5.0]}), 'newmec-2'], [({'t5.101.114.16': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.16': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.16': [0.673, 5.0], 't1.101.114.16': [0.437, 6.667]}), 'newmec-1'], [({'t2.103.114.17': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.17': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.17': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.17': [0.693, 5.0], 't5.103.114.17': [0.797, 5.0], 't4.103.114.17': [0.574, 10.0]}), 'newmec-3'], [({'t3.104.114.18': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.18': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.18': [0.715, 5.0], 't2.104.114.18': [0.779, 5.0]}), 'newmec-4'], [({'t5.103.114.19': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.19': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.19': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.19': [0.641, 5.0], 't2.103.114.19': [0.76, 5.0], 't4.103.114.19': [0.698, 10.0]}), 'newmec-3'], [({'t2.102.114.20': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.20': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.20': [0.792, 5.0], 't4.102.114.20': [0.693, 10.0]}), 'newmec-2'], [({'t4.103.114.21': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.21': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.21': [0.515, 10.0], 't5.103.114.21': [0.562, 5.0]}), 'newmec-3'], [({'t1.104.114.22': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.22': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.22': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.22': [0.798, 6.667], 't4.104.114.22': [0.626, 10.0], 't2.104.114.22': [0.767, 5.0]}), 'newmec-4'], [({'t2.103.114.23': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.23': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.23': [0.785, 5.0], 't4.103.114.23': [0.419, 10.0]}), 'newmec-3'], [({'t5.106.114.24': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.24': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.106.114.24': [0.722, 5.0], 't2.106.114.24': [0.587, 5.0]}), 'newmec-6'], [({'t2.102.114.25': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.25': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.25': [0.491, 5.0], 't4.102.114.25': [0.423, 10.0]}), 'newmec-2'], [({'t1.106.114.26': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.106.114.26': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.106.114.26': [0.612, 6.667], 't2.106.114.26': [0.571, 5.0]}), 'newmec-6'], [({'t5.105.114.27': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.27': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.27': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.105.114.27': [0.574, 5.0], 't1.105.114.27': [0.634, 6.667], 't4.105.114.27': [0.772, 10.0]}), 'newmec-5'], [({'t2.156.114.28': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.28': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.28': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.28': [0.676, 5.0], 't5.156.114.28': [0.556, 5.0], 't4.156.114.28': [0.413, 10.0]}), 'osboxes-0'], [({'t4.156.114.29': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.29': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.29': [0.53, 10.0], 't5.156.114.29': [0.494, 5.0]}), 'osboxes-0'], [({'t2.103.114.30': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.30': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.30': [0.613, 5.0], 't4.103.114.30': [0.778, 10.0]}), 'newmec-3'], [({'t4.102.114.31': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.31': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.31': [0.539, 10.0], 't3.102.114.31': [0.496, 5.0]}), 'newmec-2'], [({'t5.103.114.32': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.32': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.32': [0.576, 5.0], 't4.103.114.32': [0.472, 10.0]}), 'newmec-3'], [({'t2.102.114.33': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.33': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.33': [0.725, 5.0], 't1.102.114.33': [0.652, 6.667]}), 'newmec-2'], [({'t4.105.114.34': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.34': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.34': [0.5, 10.0], 't2.105.114.34': [0.559, 5.0]}), 'newmec-5'], [({'t5.101.114.35': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.35': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.35': [0.595, 5.0], 't1.101.114.35': [0.796, 6.667]}), 'newmec-1'], [({'t4.104.114.36': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.36': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.36': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.36': [0.484, 10.0], 't5.104.114.36': [0.435, 5.0], 't2.104.114.36': [0.456, 5.0]}), 'newmec-4'], [({'t1.103.114.37': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.37': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.37': [0.609, 6.667], 't3.103.114.37': [0.717, 5.0]}), 'newmec-3'], [({'t3.103.114.38': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.38': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.38': [0.64, 5.0], 't2.103.114.38': [0.725, 5.0]}), 'newmec-3'], [({'t4.103.114.39': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.39': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.39': [0.414, 10.0], 't2.103.114.39': [0.594, 5.0]}), 'newmec-3'], [({'t4.103.114.40': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.40': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.40': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.40': [0.53, 10.0], 't2.103.114.40': [0.517, 5.0], 't3.103.114.40': [0.425, 5.0]}), 'newmec-3'], [({'t5.103.114.41': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.41': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.41': [0.796, 5.0], 't1.103.114.41': [0.491, 6.667]}), 'newmec-3'], [({'t1.106.114.42': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.106.114.42': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.106.114.42': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.106.114.42': [0.649, 6.667], 't3.106.114.42': [0.686, 5.0], 't5.106.114.42': [0.463, 5.0]}), 'newmec-6'], [({'t5.101.114.43': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.43': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.43': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.43': [0.439, 5.0], 't4.101.114.43': [0.628, 10.0], 't2.101.114.43': [0.448, 5.0]}), 'newmec-1'], [({'t4.105.114.44': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.44': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.105.114.44': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.105.114.44': [0.659, 10.0], 't2.105.114.44': [0.604, 5.0], 't3.105.114.44': [0.606, 5.0]}), 'newmec-5'], [({'t2.102.114.45': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.45': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.45': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.45': [0.76, 5.0], 't5.102.114.45': [0.475, 5.0], 't4.102.114.45': [0.506, 10.0]}), 'newmec-2'], [({'t2.106.114.46': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.106.114.46': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.106.114.46': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.106.114.46': [0.603, 5.0], 't5.106.114.46': [0.553, 5.0], 't1.106.114.46': [0.587, 6.667]}), 'newmec-6'], [({'t5.106.114.47': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.47': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.106.114.47': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.106.114.47': [0.521, 5.0], 't2.106.114.47': [0.748, 5.0], 't4.106.114.47': [0.688, 10.0]}), 'newmec-6'], [({'t1.101.114.48': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.101.114.48': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.48': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.48': [0.672, 6.667], 't3.101.114.48': [0.758, 5.0], 't5.101.114.48': [0.599, 5.0]}), 'newmec-1'], [({'t2.156.114.49': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.49': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.49': [0.662, 5.0], 't4.156.114.49': [0.615, 10.0]}), 'osboxes-0'], [({'t2.106.114.50': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.50': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.50': [0.436, 5.0], 't3.106.114.50': [0.466, 5.0]}), 'newmec-6'], [({'t5.102.114.51': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.51': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.51': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.51': [0.643, 5.0], 't2.102.114.51': [0.568, 5.0], 't1.102.114.51': [0.584, 6.667]}), 'newmec-2'], [({'t5.156.114.52': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.52': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.156.114.52': [0.625, 5.0], 't1.156.114.52': [0.412, 6.667]}), 'osboxes-0'], [({'t2.101.114.53': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.53': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.53': [0.435, 5.0], 't1.101.114.53': [0.721, 6.667]}), 'newmec-1'], [({'t5.104.114.54': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.54': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.54': [0.646, 5.0], 't1.104.114.54': [0.687, 6.667]}), 'newmec-4'], [({'t5.106.114.55': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.106.114.55': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.55': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.106.114.55': [0.408, 5.0], 't3.106.114.55': [0.788, 5.0], 't4.106.114.55': [0.518, 10.0]}), 'newmec-6'], [({'t3.104.114.56': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.56': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.56': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.56': [0.525, 5.0], 't5.104.114.56': [0.484, 5.0], 't2.104.114.56': [0.551, 5.0]}), 'newmec-4'], [({'t1.156.114.57': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.156.114.57': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.57': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.156.114.57': [0.432, 6.667], 't2.156.114.57': [0.415, 5.0], 't4.156.114.57': [0.524, 10.0]}), 'osboxes-0'], [({'t2.106.114.58': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.58': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.106.114.58': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.58': [0.724, 5.0], 't1.106.114.58': [0.671, 6.667], 't3.106.114.58': [0.523, 5.0]}), 'newmec-6'], [({'t4.156.114.59': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.59': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.59': [0.443, 10.0], 't2.156.114.59': [0.597, 5.0]}), 'osboxes-0'], [({'t4.105.114.60': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.60': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.105.114.60': [0.47, 10.0], 't3.105.114.60': [0.619, 5.0]}), 'newmec-5'], [({'t4.105.114.61': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.61': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.61': [0.428, 10.0], 't2.105.114.61': [0.422, 5.0]}), 'newmec-5'], [({'t2.104.114.62': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.62': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.62': [0.673, 5.0], 't1.104.114.62': [0.681, 6.667]}), 'newmec-4'], [({'t2.106.114.63': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.106.114.63': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.106.114.63': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.106.114.63': [0.692, 5.0], 't4.106.114.63': [0.508, 10.0], 't5.106.114.63': [0.617, 5.0]}), 'newmec-6'], [({'t5.104.114.64': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.64': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.64': [0.561, 5.0], 't4.104.114.64': [0.468, 10.0]}), 'newmec-4'], [({'t2.104.114.65': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.65': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.65': [0.77, 5.0], 't1.104.114.65': [0.549, 6.667]}), 'newmec-4'], [({'t4.105.114.66': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.66': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.66': [0.709, 10.0], 't5.105.114.66': [0.406, 5.0]}), 'newmec-5'], [({'t5.101.114.67': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.67': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.67': [0.702, 5.0], 't4.101.114.67': [0.47, 10.0]}), 'newmec-1'], [({'t3.106.114.68': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.68': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.68': [0.703, 5.0], 't1.106.114.68': [0.705, 6.667]}), 'newmec-6'], [({'t3.102.114.69': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.69': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.69': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.69': [0.602, 5.0], 't2.102.114.69': [0.513, 5.0], 't5.102.114.69': [0.778, 5.0]}), 'newmec-2'], [({'t4.102.114.70': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.70': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.70': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.70': [0.531, 10.0], 't3.102.114.70': [0.762, 5.0], 't2.102.114.70': [0.499, 5.0]}), 'newmec-2'], [({'t4.105.114.71': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.71': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.71': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.71': [0.572, 10.0], 't1.105.114.71': [0.791, 6.667], 't2.105.114.71': [0.51, 5.0]}), 'newmec-5'], [({'t5.102.114.72': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.72': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.72': [0.588, 5.0], 't3.102.114.72': [0.734, 5.0]}), 'newmec-2'], [({'t3.102.114.73': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.73': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.73': [0.584, 5.0], 't5.102.114.73': [0.569, 5.0]}), 'newmec-2'], [({'t4.103.114.74': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.74': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.74': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.74': [0.459, 10.0], 't2.103.114.74': [0.778, 5.0], 't5.103.114.74': [0.774, 5.0]}), 'newmec-3'], [({'t3.102.114.75': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.75': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.75': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.75': [0.711, 5.0], 't4.102.114.75': [0.553, 10.0], 't2.102.114.75': [0.779, 5.0]}), 'newmec-2'], [({'t4.101.114.76': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.76': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.76': [0.789, 10.0], 't2.101.114.76': [0.559, 5.0]}), 'newmec-1'], [({'t3.156.114.77': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.77': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.77': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.156.114.77': [0.69, 5.0], 't2.156.114.77': [0.535, 5.0], 't1.156.114.77': [0.77, 6.667]}), 'osboxes-0'], [({'t3.106.114.78': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.78': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.106.114.78': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.106.114.78': [0.658, 5.0], 't1.106.114.78': [0.67, 6.667], 't5.106.114.78': [0.576, 5.0]}), 'newmec-6'], [({'t5.103.114.79': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.79': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.79': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.79': [0.483, 5.0], 't4.103.114.79': [0.777, 10.0], 't3.103.114.79': [0.606, 5.0]}), 'newmec-3'], [({'t4.104.114.80': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.80': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.80': [0.479, 10.0], 't3.104.114.80': [0.701, 5.0]}), 'newmec-4'], [({'t4.101.114.81': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.81': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.81': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.81': [0.746, 10.0], 't3.101.114.81': [0.453, 5.0], 't5.101.114.81': [0.543, 5.0]}), 'newmec-1'], [({'t2.105.114.82': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.82': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.82': [0.405, 5.0], 't4.105.114.82': [0.587, 10.0]}), 'newmec-5'], [({'t1.102.114.83': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.83': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.83': [0.714, 6.667], 't2.102.114.83': [0.414, 5.0]}), 'newmec-2'], [({'t5.103.114.84': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.84': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.84': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.84': [0.635, 5.0], 't2.103.114.84': [0.715, 5.0], 't1.103.114.84': [0.784, 6.667]}), 'newmec-3'], [({'t3.103.114.85': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.85': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.85': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.85': [0.645, 5.0], 't1.103.114.85': [0.764, 6.667], 't5.103.114.85': [0.704, 5.0]}), 'newmec-3'], [({'t1.156.114.86': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.86': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.86': [0.538, 6.667], 't5.156.114.86': [0.523, 5.0]}), 'osboxes-0'], [({'t5.102.114.87': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.87': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.87': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.87': [0.614, 5.0], 't2.102.114.87': [0.721, 5.0], 't4.102.114.87': [0.536, 10.0]}), 'newmec-2'], [({'t5.102.114.88': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.88': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.88': [0.572, 5.0], 't4.102.114.88': [0.545, 10.0]}), 'newmec-2'], [({'t2.102.114.89': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.89': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.89': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.89': [0.555, 5.0], 't5.102.114.89': [0.466, 5.0], 't3.102.114.89': [0.711, 5.0]}), 'newmec-2'], [({'t4.101.114.90': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.90': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.90': [0.754, 10.0], 't2.101.114.90': [0.48, 5.0]}), 'newmec-1'], [({'t5.106.114.91': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.106.114.91': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.106.114.91': [0.727, 5.0], 't1.106.114.91': [0.681, 6.667]}), 'newmec-6'], [({'t3.104.114.92': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.92': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.92': [0.612, 5.0], 't2.104.114.92': [0.443, 5.0]}), 'newmec-4'], [({'t4.106.114.93': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.93': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.106.114.93': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.106.114.93': [0.474, 10.0], 't3.106.114.93': [0.625, 5.0], 't5.106.114.93': [0.722, 5.0]}), 'newmec-6'], [({'t1.101.114.94': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.94': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.101.114.94': [0.437, 6.667], 't5.101.114.94': [0.746, 5.0]}), 'newmec-1'], [({'t4.105.114.95': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.95': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.105.114.95': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.95': [0.659, 10.0], 't1.105.114.95': [0.656, 6.667], 't5.105.114.95': [0.734, 5.0]}), 'newmec-5'], [({'t2.106.114.96': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.106.114.96': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.106.114.96': [0.714, 5.0], 't4.106.114.96': [0.575, 10.0]}), 'newmec-6'], [({'t3.102.114.97': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.97': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.97': [0.756, 5.0], 't4.102.114.97': [0.554, 10.0]}), 'newmec-2'], [({'t5.156.114.98': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.98': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.98': [0.603, 5.0], 't2.156.114.98': [0.78, 5.0]}), 'osboxes-0'], [({'t1.103.114.99': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.99': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.99': [0.632, 6.667], 't5.103.114.99': [0.573, 5.0]}), 'newmec-3'], [({'t5.103.114.100': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.100': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.100': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.100': [0.624, 5.0], 't2.103.114.100': [0.713, 5.0], 't3.103.114.100': [0.43, 5.0]}), 'newmec-3'], [({'t2.103.114.101': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.101': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.101': [0.405, 5.0], 't4.103.114.101': [0.718, 10.0]}), 'newmec-3'], [({'t4.101.114.102': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.102': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.102': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.102': [0.727, 10.0], 't3.101.114.102': [0.681, 5.0], 't5.101.114.102': [0.554, 5.0]}), 'newmec-1'], [({'t2.104.114.103': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.103': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.103': [0.651, 5.0], 't5.104.114.103': [0.431, 5.0]}), 'newmec-4'], [({'t4.105.114.104': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.104': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.104': [0.474, 10.0], 't2.105.114.104': [0.505, 5.0]}), 'newmec-5'], [({'t5.103.114.105': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.105': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.105': [0.424, 5.0], 't3.103.114.105': [0.638, 5.0]}), 'newmec-3'], [({'t2.106.114.106': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.106.114.106': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.106.114.106': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.106.114.106': [0.687, 5.0], 't4.106.114.106': [0.659, 10.0], 't5.106.114.106': [0.698, 5.0]}), 'newmec-6'], [({'t4.105.114.107': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.107': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.107': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.107': [0.52, 10.0], 't1.105.114.107': [0.416, 6.667], 't2.105.114.107': [0.531, 5.0]}), 'newmec-5'], [({'t2.102.114.108': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.108': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.108': [0.41, 5.0], 't5.102.114.108': [0.663, 5.0]}), 'newmec-2'], [({'t2.106.114.109': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.109': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.106.114.109': [0.443, 5.0], 't1.106.114.109': [0.662, 6.667]}), 'newmec-6'], [({'t3.156.114.110': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.110': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.110': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.156.114.110': [0.414, 5.0], 't5.156.114.110': [0.607, 5.0], 't2.156.114.110': [0.598, 5.0]}), 'osboxes-0'], [({'t3.156.114.111': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.111': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.111': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.111': [0.417, 5.0], 't1.156.114.111': [0.487, 6.667], 't5.156.114.111': [0.733, 5.0]}), 'osboxes-0'], [({'t5.106.114.112': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.106.114.112': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.106.114.112': [0.405, 5.0], 't4.106.114.112': [0.43, 10.0]}), 'newmec-6'], [({'t4.105.114.113': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.113': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.113': [0.768, 10.0], 't5.105.114.113': [0.637, 5.0]}), 'newmec-5'], [({'t2.101.114.114': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.114': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.114': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.114': [0.527, 5.0], 't3.101.114.114': [0.582, 5.0], 't1.101.114.114': [0.424, 6.667]}), 'newmec-1'], [({'t5.105.114.115': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.105.114.115': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.115': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.105.114.115': [0.486, 5.0], 't4.105.114.115': [0.765, 10.0], 't2.105.114.115': [0.708, 5.0]}), 'newmec-5'], [({'t1.102.114.116': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.116': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.116': [0.559, 6.667], 't2.102.114.116': [0.631, 5.0]}), 'newmec-2'], [({'t3.103.114.117': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.117': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.117': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.117': [0.615, 5.0], 't2.103.114.117': [0.441, 5.0], 't1.103.114.117': [0.57, 6.667]}), 'newmec-3'], [({'t2.105.114.118': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.105.114.118': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.105.114.118': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.118': [0.449, 5.0], 't3.105.114.118': [0.548, 5.0], 't1.105.114.118': [0.603, 6.667]}), 'newmec-5'], [({'t5.103.114.119': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.119': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.119': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.119': [0.633, 5.0], 't3.103.114.119': [0.513, 5.0], 't4.103.114.119': [0.438, 10.0]}), 'newmec-3'], [({'t5.101.114.120': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.120': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.120': [0.595, 5.0], 't3.101.114.120': [0.618, 5.0]}), 'newmec-1'], [({'t5.103.114.121': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.121': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.121': [0.424, 5.0], 't4.103.114.121': [0.738, 10.0]}), 'newmec-3'], [({'t2.106.114.122': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.106.114.122': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.106.114.122': [0.451, 5.0], 't4.106.114.122': [0.787, 10.0]}), 'newmec-6'], [({'t3.103.114.123': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.123': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.123': [0.793, 5.0], 't2.103.114.123': [0.637, 5.0]}), 'newmec-3'], [({'t2.104.114.124': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.124': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.124': [0.422, 5.0], 't4.104.114.124': [0.763, 10.0]}), 'newmec-4'], [({'t2.105.114.125': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.105.114.125': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.105.114.125': [0.608, 5.0], 't3.105.114.125': [0.781, 5.0]}), 'newmec-5'], [({'t2.103.114.126': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.126': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.126': [0.682, 5.0], 't3.103.114.126': [0.654, 5.0]}), 'newmec-3'], [({'t5.103.114.127': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.127': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.127': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.127': [0.563, 5.0], 't2.103.114.127': [0.686, 5.0], 't1.103.114.127': [0.676, 6.667]}), 'newmec-3'], [({'t3.102.114.128': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.128': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.128': [0.412, 5.0], 't4.102.114.128': [0.432, 10.0]}), 'newmec-2'], [({'t4.103.114.129': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.129': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.129': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.129': [0.407, 10.0], 't5.103.114.129': [0.56, 5.0], 't2.103.114.129': [0.506, 5.0]}), 'newmec-3'], [({'t3.104.114.130': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.130': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.130': [0.426, 5.0], 't4.104.114.130': [0.417, 10.0]}), 'newmec-4'], [({'t5.101.114.131': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.131': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.131': [0.68, 5.0], 't2.101.114.131': [0.424, 5.0]}), 'newmec-1'], [({'t2.104.114.132': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.132': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.132': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.132': [0.528, 5.0], 't5.104.114.132': [0.69, 5.0], 't4.104.114.132': [0.416, 10.0]}), 'newmec-4'], [({'t4.106.114.133': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.106.114.133': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.106.114.133': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.106.114.133': [0.448, 10.0], 't1.106.114.133': [0.766, 6.667], 't5.106.114.133': [0.411, 5.0]}), 'newmec-6'], [({'t1.104.114.134': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.134': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.134': [0.735, 6.667], 't2.104.114.134': [0.766, 5.0]}), 'newmec-4'], [({'t4.104.114.135': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.135': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.135': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.135': [0.646, 10.0], 't3.104.114.135': [0.492, 5.0], 't2.104.114.135': [0.59, 5.0]}), 'newmec-4'], [({'t2.105.114.136': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.136': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.136': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.105.114.136': [0.463, 5.0], 't4.105.114.136': [0.4, 10.0], 't5.105.114.136': [0.769, 5.0]}), 'newmec-5'], [({'t4.156.114.137': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.137': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.137': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.137': [0.741, 10.0], 't5.156.114.137': [0.411, 5.0], 't3.156.114.137': [0.685, 5.0]}), 'osboxes-0'], [({'t5.103.114.138': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.138': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.138': [0.49, 5.0], 't1.103.114.138': [0.506, 6.667]}), 'newmec-3'], [({'t5.105.114.139': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.105.114.139': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.105.114.139': [0.486, 5.0], 't4.105.114.139': [0.501, 10.0]}), 'newmec-5'], [({'t4.103.114.140': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.140': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.140': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.140': [0.732, 10.0], 't1.103.114.140': [0.642, 6.667], 't5.103.114.140': [0.581, 5.0]}), 'newmec-3'], [({'t3.104.114.141': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.141': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.141': [0.721, 5.0], 't5.104.114.141': [0.522, 5.0]}), 'newmec-4'], [({'t4.156.114.142': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.142': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.142': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.142': [0.578, 10.0], 't3.156.114.142': [0.515, 5.0], 't1.156.114.142': [0.448, 6.667]}), 'osboxes-0'], [({'t3.106.114.143': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.143': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.106.114.143': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.143': [0.648, 5.0], 't4.106.114.143': [0.689, 10.0], 't1.106.114.143': [0.455, 6.667]}), 'newmec-6'], [({'t5.104.114.144': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.144': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.144': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.144': [0.65, 5.0], 't2.104.114.144': [0.719, 5.0], 't1.104.114.144': [0.535, 6.667]}), 'newmec-4'], [({'t2.105.114.145': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.105.114.145': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.105.114.145': [0.442, 5.0], 't3.105.114.145': [0.795, 5.0]}), 'newmec-5'], [({'t2.105.114.146': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.146': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.146': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.105.114.146': [0.594, 5.0], 't4.105.114.146': [0.77, 10.0], 't3.105.114.146': [0.6, 5.0]}), 'newmec-5'], [({'t3.104.114.147': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.147': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.147': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.104.114.147': [0.788, 5.0], 't1.104.114.147': [0.597, 6.667], 't2.104.114.147': [0.741, 5.0]}), 'newmec-4'], [({'t3.101.114.148': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.148': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.148': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.148': [0.711, 5.0], 't2.101.114.148': [0.587, 5.0], 't5.101.114.148': [0.74, 5.0]}), 'newmec-1'], [({'t5.103.114.149': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.149': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.149': [0.521, 5.0], 't3.103.114.149': [0.724, 5.0]}), 'newmec-3'], [({'t4.103.114.150': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.150': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.150': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.150': [0.699, 10.0], 't3.103.114.150': [0.405, 5.0], 't5.103.114.150': [0.443, 5.0]}), 'newmec-3'], [({'t5.101.114.151': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.151': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.151': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.151': [0.64, 5.0], 't3.101.114.151': [0.796, 5.0], 't1.101.114.151': [0.571, 6.667]}), 'newmec-1'], [({'t5.106.114.152': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.152': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.106.114.152': [0.614, 5.0], 't2.106.114.152': [0.406, 5.0]}), 'newmec-6'], [({'t5.106.114.153': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.106.114.153': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.153': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.106.114.153': [0.427, 5.0], 't4.106.114.153': [0.654, 10.0], 't3.106.114.153': [0.568, 5.0]}), 'newmec-6'], [({'t1.104.114.154': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.154': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.154': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.154': [0.642, 6.667], 't5.104.114.154': [0.711, 5.0], 't4.104.114.154': [0.687, 10.0]}), 'newmec-4'], [({'t5.101.114.155': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.155': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.155': [0.505, 5.0], 't2.101.114.155': [0.461, 5.0]}), 'newmec-1'], [({'t2.103.114.156': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.156': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.156': [0.593, 5.0], 't4.103.114.156': [0.612, 10.0]}), 'newmec-3'], [({'t3.104.114.157': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.157': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.157': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.157': [0.498, 5.0], 't5.104.114.157': [0.421, 5.0], 't4.104.114.157': [0.434, 10.0]}), 'newmec-4'], [({'t3.102.114.158': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.102.114.158': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.158': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.158': [0.553, 5.0], 't5.102.114.158': [0.609, 5.0], 't4.102.114.158': [0.541, 10.0]}), 'newmec-2'], [({'t5.102.114.159': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.159': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.159': [0.414, 5.0], 't1.102.114.159': [0.633, 6.667]}), 'newmec-2'], [({'t2.102.114.160': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.160': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.160': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.160': [0.609, 5.0], 't3.102.114.160': [0.516, 5.0], 't4.102.114.160': [0.645, 10.0]}), 'newmec-2'], [({'t5.104.114.161': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.161': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.161': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.161': [0.782, 5.0], 't1.104.114.161': [0.646, 6.667], 't2.104.114.161': [0.799, 5.0]}), 'newmec-4'], [({'t5.101.114.162': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.162': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.162': [0.554, 5.0], 't1.101.114.162': [0.52, 6.667]}), 'newmec-1'], [({'t4.104.114.163': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.163': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.163': [0.574, 10.0], 't2.104.114.163': [0.606, 5.0]}), 'newmec-4'], [({'t5.101.114.164': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.164': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.101.114.164': [0.578, 5.0], 't2.101.114.164': [0.554, 5.0]}), 'newmec-1'], [({'t3.103.114.165': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.165': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.165': [0.734, 5.0], 't2.103.114.165': [0.57, 5.0]}), 'newmec-3'], [({'t5.101.114.166': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.166': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.166': [0.531, 5.0], 't1.101.114.166': [0.422, 6.667]}), 'newmec-1'], [({'t2.104.114.167': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.167': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.167': [0.692, 5.0], 't1.104.114.167': [0.8, 6.667]}), 'newmec-4'], [({'t2.102.114.168': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.168': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.168': [0.704, 5.0], 't1.102.114.168': [0.577, 6.667]}), 'newmec-2'], [({'t4.156.114.169': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.169': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.169': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.169': [0.557, 10.0], 't5.156.114.169': [0.407, 5.0], 't3.156.114.169': [0.435, 5.0]}), 'osboxes-0'], [({'t3.106.114.170': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.170': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.170': [0.628, 5.0], 't1.106.114.170': [0.589, 6.667]}), 'newmec-6'], [({'t4.103.114.171': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.171': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.171': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.171': [0.609, 10.0], 't2.103.114.171': [0.607, 5.0], 't3.103.114.171': [0.743, 5.0]}), 'newmec-3'], [({'t1.104.114.172': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.172': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.172': [0.786, 6.667], 't5.104.114.172': [0.541, 5.0]}), 'newmec-4'], [({'t5.103.114.173': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.173': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.173': [0.514, 5.0], 't1.103.114.173': [0.401, 6.667]}), 'newmec-3'], [({'t2.104.114.174': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.174': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.174': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.174': [0.643, 5.0], 't4.104.114.174': [0.514, 10.0], 't5.104.114.174': [0.789, 5.0]}), 'newmec-4'], [({'t1.104.114.175': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.175': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.175': [0.423, 6.667], 't3.104.114.175': [0.447, 5.0]}), 'newmec-4'], [({'t1.104.114.176': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.176': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.176': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.176': [0.494, 6.667], 't4.104.114.176': [0.443, 10.0], 't5.104.114.176': [0.798, 5.0]}), 'newmec-4'], [({'t2.105.114.177': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.177': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.105.114.177': [0.763, 5.0], 't5.105.114.177': [0.605, 5.0]}), 'newmec-5'], [({'t3.101.114.178': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.178': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.178': [0.548, 5.0], 't2.101.114.178': [0.522, 5.0]}), 'newmec-1'], [({'t3.101.114.179': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.179': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.179': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.179': [0.708, 5.0], 't1.101.114.179': [0.696, 6.667], 't2.101.114.179': [0.477, 5.0]}), 'newmec-1'], [({'t3.106.114.180': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.180': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.106.114.180': [0.532, 5.0], 't2.106.114.180': [0.776, 5.0]}), 'newmec-6'], [({'t1.102.114.181': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.181': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.181': [0.484, 6.667], 't3.102.114.181': [0.76, 5.0]}), 'newmec-2'], [({'t4.156.114.182': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.182': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.182': [0.633, 10.0], 't3.156.114.182': [0.416, 5.0]}), 'osboxes-0'], [({'t5.103.114.183': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.183': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.183': [0.667, 5.0], 't1.103.114.183': [0.763, 6.667]}), 'newmec-3'], [({'t5.106.114.184': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.106.114.184': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.106.114.184': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.106.114.184': [0.585, 5.0], 't1.106.114.184': [0.781, 6.667], 't2.106.114.184': [0.658, 5.0]}), 'newmec-6'], [({'t1.106.114.185': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.106.114.185': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.106.114.185': [0.702, 6.667], 't2.106.114.185': [0.573, 5.0]}), 'newmec-6'], [({'t3.102.114.186': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.186': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.186': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.186': [0.517, 5.0], 't1.102.114.186': [0.709, 6.667], 't5.102.114.186': [0.435, 5.0]}), 'newmec-2'], [({'t3.156.114.187': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.187': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.187': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.187': [0.736, 5.0], 't2.156.114.187': [0.723, 5.0], 't5.156.114.187': [0.626, 5.0]}), 'osboxes-0'], [({'t3.104.114.188': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.188': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.188': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.188': [0.402, 5.0], 't5.104.114.188': [0.705, 5.0], 't4.104.114.188': [0.654, 10.0]}), 'newmec-4'], [({'t5.102.114.189': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.189': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.189': [0.46, 5.0], 't3.102.114.189': [0.477, 5.0]}), 'newmec-2'], [({'t5.104.114.190': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.190': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.104.114.190': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.190': [0.752, 5.0], 't3.104.114.190': [0.65, 5.0], 't1.104.114.190': [0.425, 6.667]}), 'newmec-4'], [({'t5.104.114.191': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.191': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.191': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.191': [0.789, 5.0], 't2.104.114.191': [0.71, 5.0], 't3.104.114.191': [0.63, 5.0]}), 'newmec-4'], [({'t4.106.114.192': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.192': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.106.114.192': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.106.114.192': [0.688, 10.0], 't3.106.114.192': [0.757, 5.0], 't5.106.114.192': [0.783, 5.0]}), 'newmec-6'], [({'t1.104.114.193': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.193': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.193': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.193': [0.78, 6.667], 't3.104.114.193': [0.732, 5.0], 't4.104.114.193': [0.634, 10.0]}), 'newmec-4'], [({'t4.103.114.194': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.194': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.194': [0.548, 10.0], 't3.103.114.194': [0.422, 5.0]}), 'newmec-3'], [({'t3.106.114.195': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.195': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.106.114.195': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.195': [0.418, 5.0], 't4.106.114.195': [0.449, 10.0], 't1.106.114.195': [0.47, 6.667]}), 'newmec-6'], [({'t3.101.114.196': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.196': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.196': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.196': [0.662, 5.0], 't1.101.114.196': [0.598, 6.667], 't4.101.114.196': [0.73, 10.0]}), 'newmec-1'], [({'t1.105.114.197': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.105.114.197': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.105.114.197': [0.431, 6.667], 't3.105.114.197': [0.712, 5.0]}), 'newmec-5'], [({'t5.102.114.198': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.198': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.198': [0.766, 5.0], 't1.102.114.198': [0.446, 6.667]}), 'newmec-2'], [({'t4.101.114.199': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.199': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.199': [0.417, 10.0], 't1.101.114.199': [0.677, 6.667]}), 'newmec-1'], [({'t3.103.114.200': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.200': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.200': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.200': [0.638, 5.0], 't5.103.114.200': [0.77, 5.0], 't2.103.114.200': [0.788, 5.0]}), 'newmec-3'], [({'t4.103.114.201': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.201': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.201': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.201': [0.681, 10.0], 't5.103.114.201': [0.593, 5.0], 't2.103.114.201': [0.609, 5.0]}), 'newmec-3'], [({'t5.156.114.202': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.202': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.202': [0.581, 5.0], 't3.156.114.202': [0.635, 5.0]}), 'osboxes-0'], [({'t4.103.114.203': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.203': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.203': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.203': [0.509, 10.0], 't3.103.114.203': [0.719, 5.0], 't5.103.114.203': [0.425, 5.0]}), 'newmec-3'], [({'t2.106.114.204': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.204': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.204': [0.559, 5.0], 't3.106.114.204': [0.509, 5.0]}), 'newmec-6'], [({'t2.104.114.205': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.205': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.205': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.205': [0.643, 5.0], 't1.104.114.205': [0.763, 6.667], 't5.104.114.205': [0.645, 5.0]}), 'newmec-4'], [({'t1.104.114.206': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.206': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.206': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.206': [0.775, 6.667], 't4.104.114.206': [0.776, 10.0], 't2.104.114.206': [0.504, 5.0]}), 'newmec-4'], [({'t4.104.114.207': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.207': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.207': [0.642, 10.0], 't5.104.114.207': [0.634, 5.0]}), 'newmec-4'], [({'t3.102.114.208': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.208': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.208': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.208': [0.637, 5.0], 't2.102.114.208': [0.611, 5.0], 't5.102.114.208': [0.518, 5.0]}), 'newmec-2'], [({'t3.105.114.209': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.209': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.105.114.209': [0.779, 5.0], 't5.105.114.209': [0.418, 5.0]}), 'newmec-5'], [({'t2.103.114.210': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.210': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.210': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.210': [0.721, 5.0], 't5.103.114.210': [0.769, 5.0], 't3.103.114.210': [0.416, 5.0]}), 'newmec-3'], [({'t4.103.114.211': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.211': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.211': [0.638, 10.0], 't1.103.114.211': [0.546, 6.667]}), 'newmec-3'], [({'t4.105.114.212': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.212': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.105.114.212': [0.542, 10.0], 't3.105.114.212': [0.712, 5.0]}), 'newmec-5'], [({'t4.102.114.213': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.213': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.213': [0.676, 10.0], 't1.102.114.213': [0.597, 6.667]}), 'newmec-2'], [({'t3.105.114.214': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.214': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.214': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.214': [0.769, 5.0], 't5.105.114.214': [0.669, 5.0], 't2.105.114.214': [0.643, 5.0]}), 'newmec-5'], [({'t1.105.114.215': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.215': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.215': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.105.114.215': [0.772, 6.667], 't4.105.114.215': [0.548, 10.0], 't2.105.114.215': [0.508, 5.0]}), 'newmec-5'], [({'t2.156.114.216': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.216': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.216': [0.537, 5.0], 't3.156.114.216': [0.795, 5.0]}), 'osboxes-0'], [({'t2.102.114.217': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.217': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.217': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.217': [0.438, 5.0], 't3.102.114.217': [0.519, 5.0], 't4.102.114.217': [0.636, 10.0]}), 'newmec-2'], [({'t2.104.114.218': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.218': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.218': [0.755, 5.0], 't1.104.114.218': [0.672, 6.667]}), 'newmec-4'], [({'t5.102.114.219': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.219': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.219': [0.682, 5.0], 't4.102.114.219': [0.598, 10.0]}), 'newmec-2'], [({'t2.105.114.220': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.220': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.220': [0.796, 5.0], 't4.105.114.220': [0.78, 10.0]}), 'newmec-5'], [({'t5.106.114.221': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.106.114.221': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.106.114.221': [0.536, 5.0], 't4.106.114.221': [0.681, 10.0]}), 'newmec-6'], [({'t3.103.114.222': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.222': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.222': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.222': [0.699, 5.0], 't5.103.114.222': [0.502, 5.0], 't4.103.114.222': [0.731, 10.0]}), 'newmec-3'], [({'t4.101.114.223': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.223': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.223': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.223': [0.585, 10.0], 't3.101.114.223': [0.582, 5.0], 't2.101.114.223': [0.572, 5.0]}), 'newmec-1'], [({'t4.103.114.224': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.224': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.224': [0.483, 10.0], 't3.103.114.224': [0.485, 5.0]}), 'newmec-3'], [({'t4.104.114.225': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.225': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.225': [0.78, 10.0], 't3.104.114.225': [0.597, 5.0]}), 'newmec-4'], [({'t4.106.114.226': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.226': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.226': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.106.114.226': [0.486, 10.0], 't2.106.114.226': [0.576, 5.0], 't1.106.114.226': [0.576, 6.667]}), 'newmec-6'], [({'t4.103.114.227': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.227': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.227': [0.721, 10.0], 't3.103.114.227': [0.731, 5.0]}), 'newmec-3'], [({'t1.105.114.228': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.228': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.105.114.228': [0.5, 6.667], 't2.105.114.228': [0.614, 5.0]}), 'newmec-5'], [({'t5.103.114.229': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.229': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.229': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.229': [0.566, 5.0], 't4.103.114.229': [0.767, 10.0], 't1.103.114.229': [0.672, 6.667]}), 'newmec-3'], [({'t2.103.114.230': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.230': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.230': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.230': [0.76, 5.0], 't3.103.114.230': [0.527, 5.0], 't4.103.114.230': [0.794, 10.0]}), 'newmec-3'], [({'t3.106.114.231': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.106.114.231': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.231': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.106.114.231': [0.547, 5.0], 't5.106.114.231': [0.573, 5.0], 't2.106.114.231': [0.546, 5.0]}), 'newmec-6'], [({'t3.103.114.232': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.232': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.232': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.232': [0.536, 5.0], 't2.103.114.232': [0.695, 5.0], 't5.103.114.232': [0.648, 5.0]}), 'newmec-3'], [({'t5.105.114.233': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.105.114.233': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.233': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.105.114.233': [0.431, 5.0], 't4.105.114.233': [0.712, 10.0], 't1.105.114.233': [0.508, 6.667]}), 'newmec-5'], [({'t5.104.114.234': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.234': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.234': [0.585, 5.0], 't4.104.114.234': [0.534, 10.0]}), 'newmec-4'], [({'t4.106.114.235': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.106.114.235': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.235': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.235': [0.702, 10.0], 't5.106.114.235': [0.419, 5.0], 't2.106.114.235': [0.786, 5.0]}), 'newmec-6'], [({'t3.103.114.236': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.236': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.236': [0.667, 5.0], 't5.103.114.236': [0.494, 5.0]}), 'newmec-3'], [({'t4.106.114.237': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.237': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.106.114.237': [0.78, 10.0], 't3.106.114.237': [0.745, 5.0]}), 'newmec-6'], [({'t3.103.114.238': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.238': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.238': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.238': [0.479, 5.0], 't5.103.114.238': [0.486, 5.0], 't4.103.114.238': [0.516, 10.0]}), 'newmec-3'], [({'t2.103.114.239': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.239': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.239': [0.485, 5.0], 't1.103.114.239': [0.553, 6.667]}), 'newmec-3'], [({'t3.103.114.240': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.240': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.240': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.240': [0.786, 5.0], 't2.103.114.240': [0.587, 5.0], 't5.103.114.240': [0.452, 5.0]}), 'newmec-3'], [({'t3.102.114.241': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.241': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.241': [0.65, 5.0], 't2.102.114.241': [0.46, 5.0]}), 'newmec-2'], [({'t2.101.114.242': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.242': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.242': [0.676, 5.0], 't1.101.114.242': [0.424, 6.667]}), 'newmec-1'], [({'t1.103.114.243': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.243': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.243': [0.466, 6.667], 't5.103.114.243': [0.428, 5.0]}), 'newmec-3'], [({'t2.102.114.244': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.244': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.244': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.244': [0.754, 5.0], 't4.102.114.244': [0.629, 10.0], 't1.102.114.244': [0.421, 6.667]}), 'newmec-2'], [({'t5.103.114.245': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.245': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.245': [0.607, 5.0], 't3.103.114.245': [0.524, 5.0]}), 'newmec-3'], [({'t2.156.114.246': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.246': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.246': [0.537, 5.0], 't4.156.114.246': [0.415, 10.0]}), 'osboxes-0'], [({'t4.106.114.247': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.247': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.247': [0.626, 10.0], 't2.106.114.247': [0.617, 5.0]}), 'newmec-6'], [({'t1.104.114.248': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.248': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.248': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.248': [0.477, 6.667], 't2.104.114.248': [0.42, 5.0], 't3.104.114.248': [0.496, 5.0]}), 'newmec-4'], [({'t4.103.114.249': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.249': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.249': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.249': [0.765, 10.0], 't1.103.114.249': [0.72, 6.667], 't2.103.114.249': [0.436, 5.0]}), 'newmec-3'], [({'t5.101.114.250': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.250': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.250': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.250': [0.789, 5.0], 't3.101.114.250': [0.418, 5.0], 't4.101.114.250': [0.697, 10.0]}), 'newmec-1'], [({'t2.104.114.251': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.251': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.251': [0.424, 5.0], 't3.104.114.251': [0.669, 5.0]}), 'newmec-4'], [({'t3.106.114.252': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.252': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.252': [0.464, 5.0], 't1.106.114.252': [0.733, 6.667]}), 'newmec-6'], [({'t5.102.114.253': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.253': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.253': [0.623, 5.0], 't4.102.114.253': [0.779, 10.0]}), 'newmec-2'], [({'t1.104.114.254': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.104.114.254': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.104.114.254': [0.739, 6.667], 't4.104.114.254': [0.761, 10.0]}), 'newmec-4'], [({'t5.106.114.255': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.255': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.255': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.106.114.255': [0.444, 5.0], 't2.106.114.255': [0.663, 5.0], 't1.106.114.255': [0.512, 6.667]}), 'newmec-6'], [({'t2.104.114.256': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.256': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.256': [0.716, 5.0], 't1.104.114.256': [0.755, 6.667]}), 'newmec-4'], [({'t5.103.114.257': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.257': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.257': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.257': [0.407, 5.0], 't2.103.114.257': [0.494, 5.0], 't4.103.114.257': [0.755, 10.0]}), 'newmec-3'], [({'t1.102.114.258': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.102.114.258': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.258': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.102.114.258': [0.422, 6.667], 't4.102.114.258': [0.788, 10.0], 't5.102.114.258': [0.714, 5.0]}), 'newmec-2'], [({'t1.156.114.259': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.259': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.259': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.259': [0.406, 6.667], 't4.156.114.259': [0.577, 10.0], 't5.156.114.259': [0.645, 5.0]}), 'osboxes-0'], [({'t3.103.114.260': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.260': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.260': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.260': [0.798, 5.0], 't1.103.114.260': [0.66, 6.667], 't5.103.114.260': [0.644, 5.0]}), 'newmec-3'], [({'t4.106.114.261': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.261': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.261': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.106.114.261': [0.571, 10.0], 't3.106.114.261': [0.498, 5.0], 't1.106.114.261': [0.734, 6.667]}), 'newmec-6'], [({'t4.104.114.262': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.262': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.262': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.262': [0.64, 10.0], 't5.104.114.262': [0.402, 5.0], 't1.104.114.262': [0.781, 6.667]}), 'newmec-4'], [({'t3.103.114.263': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.263': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.263': [0.792, 5.0], 't4.103.114.263': [0.703, 10.0]}), 'newmec-3'], [({'t3.103.114.264': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.264': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.264': [0.442, 5.0], 't2.103.114.264': [0.748, 5.0]}), 'newmec-3'], [({'t3.101.114.265': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.265': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.265': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.265': [0.566, 5.0], 't5.101.114.265': [0.573, 5.0], 't1.101.114.265': [0.699, 6.667]}), 'newmec-1'], [({'t1.156.114.266': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.266': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.266': [0.724, 6.667], 't5.156.114.266': [0.533, 5.0]}), 'osboxes-0'], [({'t1.105.114.267': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.105.114.267': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.267': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.105.114.267': [0.55, 6.667], 't3.105.114.267': [0.753, 5.0], 't4.105.114.267': [0.426, 10.0]}), 'newmec-5'], [({'t3.104.114.268': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.268': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.268': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.268': [0.676, 5.0], 't4.104.114.268': [0.635, 10.0], 't5.104.114.268': [0.67, 5.0]}), 'newmec-4'], [({'t4.104.114.269': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.269': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.269': [0.715, 10.0], 't3.104.114.269': [0.564, 5.0]}), 'newmec-4'], [({'t5.102.114.270': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.270': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.270': [0.701, 5.0], 't4.102.114.270': [0.752, 10.0]}), 'newmec-2'], [({'t2.102.114.271': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.271': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.271': [0.719, 5.0], 't4.102.114.271': [0.595, 10.0]}), 'newmec-2'], [({'t2.156.114.272': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.272': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.272': [0.613, 5.0], 't5.156.114.272': [0.641, 5.0]}), 'osboxes-0'], [({'t4.103.114.273': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.273': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.273': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.273': [0.602, 10.0], 't1.103.114.273': [0.791, 6.667], 't2.103.114.273': [0.425, 5.0]}), 'newmec-3'], [({'t5.103.114.274': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.274': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.274': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.274': [0.579, 5.0], 't3.103.114.274': [0.646, 5.0], 't4.103.114.274': [0.733, 10.0]}), 'newmec-3'], [({'t1.104.114.275': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.275': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.275': [0.585, 6.667], 't5.104.114.275': [0.58, 5.0]}), 'newmec-4'], [({'t5.102.114.276': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.276': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.276': [0.547, 5.0], 't4.102.114.276': [0.412, 10.0]}), 'newmec-2'], [({'t5.106.114.277': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.106.114.277': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.277': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.106.114.277': [0.401, 5.0], 't3.106.114.277': [0.63, 5.0], 't1.106.114.277': [0.778, 6.667]}), 'newmec-6'], [({'t5.105.114.278': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.278': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.105.114.278': [0.708, 5.0], 't2.105.114.278': [0.684, 5.0]}), 'newmec-5'], [({'t1.102.114.279': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.279': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.279': [0.428, 6.667], 't3.102.114.279': [0.566, 5.0]}), 'newmec-2'], [({'t5.103.114.280': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.280': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.280': [0.643, 5.0], 't1.103.114.280': [0.672, 6.667]}), 'newmec-3'], [({'t3.103.114.281': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.281': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.281': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.281': [0.502, 5.0], 't2.103.114.281': [0.666, 5.0], 't5.103.114.281': [0.653, 5.0]}), 'newmec-3'], [({'t1.104.114.282': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.282': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.104.114.282': [0.556, 6.667], 't2.104.114.282': [0.567, 5.0]}), 'newmec-4'], [({'t4.105.114.283': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.283': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.105.114.283': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.283': [0.587, 10.0], 't1.105.114.283': [0.452, 6.667], 't5.105.114.283': [0.465, 5.0]}), 'newmec-5'], [({'t2.101.114.284': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.284': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.101.114.284': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.284': [0.638, 5.0], 't1.101.114.284': [0.769, 6.667], 't5.101.114.284': [0.59, 5.0]}), 'newmec-1'], [({'t2.105.114.285': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.285': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.285': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.285': [0.777, 5.0], 't5.105.114.285': [0.634, 5.0], 't1.105.114.285': [0.759, 6.667]}), 'newmec-5'], [({'t4.103.114.286': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.286': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.286': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.286': [0.526, 10.0], 't5.103.114.286': [0.663, 5.0], 't3.103.114.286': [0.618, 5.0]}), 'newmec-3'], [({'t1.104.114.287': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.287': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.287': [0.602, 6.667], 't5.104.114.287': [0.405, 5.0]}), 'newmec-4'], [({'t2.102.114.288': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.288': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.288': [0.636, 5.0], 't4.102.114.288': [0.47, 10.0]}), 'newmec-2'], [({'t5.106.114.289': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.106.114.289': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.106.114.289': [0.408, 5.0], 't1.106.114.289': [0.747, 6.667]}), 'newmec-6'], [({'t4.156.114.290': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.290': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.290': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.290': [0.769, 10.0], 't5.156.114.290': [0.763, 5.0], 't1.156.114.290': [0.649, 6.667]}), 'osboxes-0'], [({'t2.104.114.291': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.291': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.291': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.291': [0.497, 5.0], 't4.104.114.291': [0.693, 10.0], 't5.104.114.291': [0.533, 5.0]}), 'newmec-4'], [({'t2.104.114.292': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.292': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.292': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.292': [0.526, 5.0], 't4.104.114.292': [0.683, 10.0], 't3.104.114.292': [0.469, 5.0]}), 'newmec-4'], [({'t2.102.114.293': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.293': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.293': [0.449, 5.0], 't3.102.114.293': [0.65, 5.0]}), 'newmec-2'], [({'t5.101.114.294': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.294': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.294': [0.777, 5.0], 't4.101.114.294': [0.63, 10.0]}), 'newmec-1'], [({'t1.103.114.295': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.295': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.295': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.103.114.295': [0.522, 6.667], 't2.103.114.295': [0.653, 5.0], 't3.103.114.295': [0.698, 5.0]}), 'newmec-3'], [({'t4.103.114.296': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.296': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.296': [0.595, 10.0], 't3.103.114.296': [0.518, 5.0]}), 'newmec-3'], [({'t5.103.114.297': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.297': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.297': [0.672, 5.0], 't2.103.114.297': [0.642, 5.0]}), 'newmec-3'], [({'t5.104.114.298': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.298': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.298': [0.699, 5.0], 't4.104.114.298': [0.434, 10.0]}), 'newmec-4'], [({'t4.104.114.299': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.299': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.299': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.299': [0.455, 10.0], 't1.104.114.299': [0.484, 6.667], 't3.104.114.299': [0.731, 5.0]}), 'newmec-4'], [({'t4.103.114.300': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.300': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.300': [0.438, 10.0], 't3.103.114.300': [0.643, 5.0]}), 'newmec-3'], [({'t1.156.114.301': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.156.114.301': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.301': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.156.114.301': [0.714, 6.667], 't3.156.114.301': [0.607, 5.0], 't4.156.114.301': [0.734, 10.0]}), 'osboxes-0'], [({'t4.104.114.302': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.302': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.302': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.302': [0.613, 10.0], 't5.104.114.302': [0.79, 5.0], 't2.104.114.302': [0.705, 5.0]}), 'newmec-4'], [({'t3.105.114.303': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.105.114.303': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.105.114.303': [0.714, 5.0], 't1.105.114.303': [0.677, 6.667]}), 'newmec-5'], [({'t3.102.114.304': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.304': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.102.114.304': [0.65, 5.0], 't2.102.114.304': [0.727, 5.0]}), 'newmec-2'], [({'t4.103.114.305': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.305': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.305': [0.425, 10.0], 't1.103.114.305': [0.546, 6.667]}), 'newmec-3'], [({'t2.105.114.306': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.306': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.306': [0.656, 5.0], 't4.105.114.306': [0.45, 10.0]}), 'newmec-5'], [({'t2.104.114.307': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.307': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.307': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.307': [0.434, 5.0], 't5.104.114.307': [0.765, 5.0], 't4.104.114.307': [0.708, 10.0]}), 'newmec-4'], [({'t5.103.114.308': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.308': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.308': [0.722, 5.0], 't3.103.114.308': [0.418, 5.0]}), 'newmec-3'], [({'t4.104.114.309': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.309': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.309': [0.55, 10.0], 't1.104.114.309': [0.501, 6.667]}), 'newmec-4'], [({'t3.156.114.310': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.156.114.310': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.310': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.156.114.310': [0.668, 5.0], 't4.156.114.310': [0.602, 10.0], 't1.156.114.310': [0.737, 6.667]}), 'osboxes-0'], [({'t5.102.114.311': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.311': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.311': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.311': [0.773, 5.0], 't2.102.114.311': [0.639, 5.0], 't3.102.114.311': [0.558, 5.0]}), 'newmec-2'], [({'t3.101.114.312': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.312': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.312': [0.441, 5.0], 't2.101.114.312': [0.476, 5.0]}), 'newmec-1'], [({'t4.103.114.313': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.313': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.313': [0.716, 10.0], 't2.103.114.313': [0.425, 5.0]}), 'newmec-3'], [({'t4.106.114.314': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.106.114.314': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.314': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.314': [0.685, 10.0], 't5.106.114.314': [0.573, 5.0], 't2.106.114.314': [0.527, 5.0]}), 'newmec-6'], [({'t2.104.114.315': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.315': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.315': [0.567, 5.0], 't5.104.114.315': [0.751, 5.0]}), 'newmec-4'], [({'t2.103.114.316': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.316': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.316': [0.768, 5.0], 't1.103.114.316': [0.491, 6.667]}), 'newmec-3'], [({'t4.104.114.317': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.317': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.104.114.317': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.317': [0.513, 10.0], 't1.104.114.317': [0.56, 6.667], 't3.104.114.317': [0.467, 5.0]}), 'newmec-4'], [({'t5.101.114.318': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.318': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.101.114.318': [0.485, 5.0], 't4.101.114.318': [0.63, 10.0]}), 'newmec-1'], [({'t1.101.114.319': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.101.114.319': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.101.114.319': [0.566, 6.667], 't2.101.114.319': [0.54, 5.0]}), 'newmec-1'], [({'t5.104.114.320': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.320': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.320': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.320': [0.426, 5.0], 't4.104.114.320': [0.449, 10.0], 't3.104.114.320': [0.513, 5.0]}), 'newmec-4'], [({'t5.104.114.321': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.321': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.321': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.321': [0.557, 5.0], 't2.104.114.321': [0.527, 5.0], 't4.104.114.321': [0.493, 10.0]}), 'newmec-4'], [({'t2.102.114.322': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.322': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.322': [0.655, 5.0], 't5.102.114.322': [0.439, 5.0]}), 'newmec-2'], [({'t5.103.114.323': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.323': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.323': [0.739, 5.0], 't1.103.114.323': [0.746, 6.667]}), 'newmec-3'], [({'t4.156.114.324': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.324': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.324': [0.72, 10.0], 't3.156.114.324': [0.616, 5.0]}), 'osboxes-0'], [({'t5.104.114.325': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.325': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.325': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.325': [0.583, 5.0], 't2.104.114.325': [0.682, 5.0], 't1.104.114.325': [0.78, 6.667]}), 'newmec-4'], [({'t3.101.114.326': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.326': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.326': [0.752, 5.0], 't2.101.114.326': [0.636, 5.0]}), 'newmec-1'], [({'t4.101.114.327': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.327': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.101.114.327': [0.632, 10.0], 't5.101.114.327': [0.401, 5.0]}), 'newmec-1'], [({'t2.104.114.328': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.328': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.328': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.328': [0.715, 5.0], 't5.104.114.328': [0.784, 5.0], 't4.104.114.328': [0.441, 10.0]}), 'newmec-4'], [({'t4.156.114.329': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.329': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.329': [0.556, 10.0], 't2.156.114.329': [0.467, 5.0]}), 'osboxes-0'], [({'t1.156.114.330': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.330': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.330': [0.517, 6.667], 't5.156.114.330': [0.53, 5.0]}), 'osboxes-0'], [({'t4.104.114.331': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.331': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.331': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.331': [0.52, 10.0], 't5.104.114.331': [0.63, 5.0], 't3.104.114.331': [0.727, 5.0]}), 'newmec-4'], [({'t5.102.114.332': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.332': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.332': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.332': [0.436, 5.0], 't2.102.114.332': [0.452, 5.0], 't3.102.114.332': [0.42, 5.0]}), 'newmec-2'], [({'t1.105.114.333': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.105.114.333': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.105.114.333': [0.476, 6.667], 't3.105.114.333': [0.69, 5.0]}), 'newmec-5'], [({'t4.104.114.334': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.334': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.334': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.334': [0.604, 10.0], 't2.104.114.334': [0.594, 5.0], 't1.104.114.334': [0.751, 6.667]}), 'newmec-4'], [({'t4.103.114.335': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.335': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.335': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.335': [0.701, 10.0], 't3.103.114.335': [0.48, 5.0], 't1.103.114.335': [0.431, 6.667]}), 'newmec-3'], [({'t1.156.114.336': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.336': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.336': [0.495, 6.667], 't5.156.114.336': [0.521, 5.0]}), 'osboxes-0'], [({'t5.105.114.337': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.105.114.337': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.105.114.337': [0.611, 5.0], 't4.105.114.337': [0.604, 10.0]}), 'newmec-5'], [({'t4.102.114.338': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.102.114.338': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.102.114.338': [0.704, 10.0], 't1.102.114.338': [0.726, 6.667]}), 'newmec-2'], [({'t1.105.114.339': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.339': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.105.114.339': [0.582, 6.667], 't4.105.114.339': [0.426, 10.0]}), 'newmec-5'], [({'t2.103.114.340': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.340': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.340': [0.74, 5.0], 't1.103.114.340': [0.537, 6.667]}), 'newmec-3'], [({'t4.102.114.341': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.102.114.341': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.102.114.341': [0.429, 10.0], 't3.102.114.341': [0.782, 5.0]}), 'newmec-2'], [({'t2.106.114.342': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.106.114.342': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.106.114.342': [0.486, 5.0], 't4.106.114.342': [0.75, 10.0]}), 'newmec-6'], [({'t5.105.114.343': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.105.114.343': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.343': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.105.114.343': [0.584, 5.0], 't3.105.114.343': [0.792, 5.0], 't4.105.114.343': [0.631, 10.0]}), 'newmec-5'], [({'t5.103.114.344': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.344': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.344': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.344': [0.781, 5.0], 't4.103.114.344': [0.497, 10.0], 't2.103.114.344': [0.654, 5.0]}), 'newmec-3'], [({'t4.101.114.345': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.345': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.101.114.345': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.345': [0.679, 10.0], 't2.101.114.345': [0.613, 5.0], 't3.101.114.345': [0.507, 5.0]}), 'newmec-1'], [({'t5.102.114.346': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.346': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.346': [0.413, 5.0], 't3.102.114.346': [0.405, 5.0]}), 'newmec-2'], [({'t3.101.114.347': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.347': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.347': [0.491, 5.0], 't2.101.114.347': [0.526, 5.0]}), 'newmec-1'], [({'t3.106.114.348': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.348': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.106.114.348': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.106.114.348': [0.783, 5.0], 't2.106.114.348': [0.644, 5.0], 't5.106.114.348': [0.652, 5.0]}), 'newmec-6'], [({'t2.102.114.349': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.349': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.349': [0.471, 5.0], 't4.102.114.349': [0.624, 10.0]}), 'newmec-2'], [({'t4.103.114.350': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.350': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.350': [0.432, 10.0], 't1.103.114.350': [0.533, 6.667]}), 'newmec-3'], [({'t5.105.114.351': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.351': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.351': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.105.114.351': [0.65, 5.0], 't1.105.114.351': [0.445, 6.667], 't4.105.114.351': [0.573, 10.0]}), 'newmec-5'], [({'t4.103.114.352': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.352': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.352': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.352': [0.437, 10.0], 't2.103.114.352': [0.558, 5.0], 't3.103.114.352': [0.652, 5.0]}), 'newmec-3'], [({'t2.103.114.353': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.353': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.353': [0.755, 5.0], 't3.103.114.353': [0.644, 5.0]}), 'newmec-3'], [({'t3.105.114.354': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.354': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.354': [0.486, 5.0], 't2.105.114.354': [0.424, 5.0]}), 'newmec-5'], [({'t3.106.114.355': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.106.114.355': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.106.114.355': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.106.114.355': [0.63, 5.0], 't5.106.114.355': [0.685, 5.0], 't4.106.114.355': [0.511, 10.0]}), 'newmec-6'], [({'t5.102.114.356': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.356': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.356': [0.512, 5.0], 't4.102.114.356': [0.589, 10.0]}), 'newmec-2'], [({'t3.106.114.357': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.357': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.106.114.357': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.106.114.357': [0.416, 5.0], 't1.106.114.357': [0.531, 6.667], 't5.106.114.357': [0.544, 5.0]}), 'newmec-6'], [({'t3.106.114.358': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.358': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.106.114.358': [0.658, 5.0], 't2.106.114.358': [0.506, 5.0]}), 'newmec-6'], [({'t2.101.114.359': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.359': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.359': [0.629, 5.0], 't1.101.114.359': [0.782, 6.667]}), 'newmec-1'], [({'t1.103.114.360': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.360': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.360': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.360': [0.759, 6.667], 't5.103.114.360': [0.589, 5.0], 't4.103.114.360': [0.624, 10.0]}), 'newmec-3'], [({'t5.156.114.361': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.361': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.361': [0.761, 5.0], 't3.156.114.361': [0.789, 5.0]}), 'osboxes-0'], [({'t1.105.114.362': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.362': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.105.114.362': [0.604, 6.667], 't4.105.114.362': [0.659, 10.0]}), 'newmec-5'], [({'t5.104.114.363': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.363': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.363': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.363': [0.535, 5.0], 't4.104.114.363': [0.489, 10.0], 't1.104.114.363': [0.716, 6.667]}), 'newmec-4'], [({'t4.156.114.364': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.364': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.364': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.364': [0.744, 10.0], 't5.156.114.364': [0.506, 5.0], 't3.156.114.364': [0.454, 5.0]}), 'osboxes-0'], [({'t4.104.114.365': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.365': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.365': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.365': [0.676, 10.0], 't2.104.114.365': [0.474, 5.0], 't1.104.114.365': [0.705, 6.667]}), 'newmec-4'], [({'t2.106.114.366': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.366': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.366': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.106.114.366': [0.692, 5.0], 't3.106.114.366': [0.541, 5.0], 't4.106.114.366': [0.403, 10.0]}), 'newmec-6'], [({'t4.102.114.367': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.367': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.367': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.102.114.367': [0.572, 10.0], 't2.102.114.367': [0.483, 5.0], 't5.102.114.367': [0.555, 5.0]}), 'newmec-2'], [({'t2.106.114.368': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.368': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.368': [0.539, 5.0], 't3.106.114.368': [0.529, 5.0]}), 'newmec-6'], [({'t5.106.114.369': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.369': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.106.114.369': [0.47, 5.0], 't2.106.114.369': [0.756, 5.0]}), 'newmec-6'], [({'t3.105.114.370': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.370': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.370': [0.568, 5.0], 't2.105.114.370': [0.643, 5.0]}), 'newmec-5'], [({'t2.101.114.371': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.371': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.371': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.101.114.371': [0.515, 5.0], 't4.101.114.371': [0.639, 10.0], 't1.101.114.371': [0.4, 6.667]}), 'newmec-1'], [({'t5.103.114.372': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.372': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.372': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.372': [0.445, 5.0], 't4.103.114.372': [0.584, 10.0], 't1.103.114.372': [0.697, 6.667]}), 'newmec-3'], [({'t5.102.114.373': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.373': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.373': [0.575, 5.0], 't2.102.114.373': [0.576, 5.0]}), 'newmec-2'], [({'t1.104.114.374': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.374': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.374': [0.41, 6.667], 't5.104.114.374': [0.789, 5.0]}), 'newmec-4'], [({'t5.102.114.375': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.375': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.375': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.375': [0.454, 5.0], 't2.102.114.375': [0.473, 5.0], 't4.102.114.375': [0.636, 10.0]}), 'newmec-2'], [({'t4.156.114.376': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.376': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.376': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.156.114.376': [0.766, 10.0], 't3.156.114.376': [0.418, 5.0], 't5.156.114.376': [0.787, 5.0]}), 'osboxes-0'], [({'t5.105.114.377': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.377': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.105.114.377': [0.743, 5.0], 't1.105.114.377': [0.601, 6.667]}), 'newmec-5'], [({'t4.156.114.378': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.378': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.378': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.378': [0.571, 10.0], 't3.156.114.378': [0.763, 5.0], 't2.156.114.378': [0.524, 5.0]}), 'osboxes-0'], [({'t5.105.114.379': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.379': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.379': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.105.114.379': [0.768, 5.0], 't1.105.114.379': [0.572, 6.667], 't2.105.114.379': [0.622, 5.0]}), 'newmec-5'], [({'t3.106.114.380': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.380': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.380': [0.696, 5.0], 't1.106.114.380': [0.751, 6.667]}), 'newmec-6'], [({'t1.101.114.381': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.101.114.381': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.101.114.381': [0.476, 6.667], 't4.101.114.381': [0.581, 10.0]}), 'newmec-1'], [({'t2.104.114.382': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.382': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.382': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.382': [0.763, 5.0], 't5.104.114.382': [0.609, 5.0], 't3.104.114.382': [0.596, 5.0]}), 'newmec-4'], [({'t4.156.114.383': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.156.114.383': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.156.114.383': [0.438, 10.0], 't1.156.114.383': [0.659, 6.667]}), 'osboxes-0'], [({'t2.103.114.384': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.384': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.384': [0.717, 5.0], 't1.103.114.384': [0.559, 6.667]}), 'newmec-3'], [({'t2.106.114.385': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.385': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.385': [0.699, 5.0], 't3.106.114.385': [0.669, 5.0]}), 'newmec-6'], [({'t3.156.114.386': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.156.114.386': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.156.114.386': [0.492, 5.0], 't5.156.114.386': [0.751, 5.0]}), 'osboxes-0'], [({'t5.105.114.387': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.387': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.105.114.387': [0.408, 5.0], 't1.105.114.387': [0.741, 6.667]}), 'newmec-5'], [({'t2.103.114.388': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.388': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.388': [0.601, 5.0], 't1.103.114.388': [0.402, 6.667]}), 'newmec-3'], [({'t3.103.114.389': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.389': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.389': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.389': [0.413, 5.0], 't2.103.114.389': [0.475, 5.0], 't1.103.114.389': [0.414, 6.667]}), 'newmec-3'], [({'t2.105.114.390': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.390': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.390': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.105.114.390': [0.64, 5.0], 't4.105.114.390': [0.534, 10.0], 't5.105.114.390': [0.484, 5.0]}), 'newmec-5'], [({'t4.106.114.391': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.391': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.106.114.391': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.106.114.391': [0.677, 10.0], 't2.106.114.391': [0.685, 5.0], 't5.106.114.391': [0.503, 5.0]}), 'newmec-6'], [({'t3.104.114.392': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.392': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.392': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.104.114.392': [0.557, 5.0], 't4.104.114.392': [0.508, 10.0], 't1.104.114.392': [0.476, 6.667]}), 'newmec-4'], [({'t4.102.114.393': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.393': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.102.114.393': [0.684, 10.0], 't2.102.114.393': [0.454, 5.0]}), 'newmec-2'], [({'t4.105.114.394': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.394': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.394': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.394': [0.739, 10.0], 't5.105.114.394': [0.507, 5.0], 't1.105.114.394': [0.565, 6.667]}), 'newmec-5'], [({'t5.156.114.395': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.395': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.395': [0.471, 5.0], 't4.156.114.395': [0.565, 10.0]}), 'osboxes-0'], [({'t2.156.114.396': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.396': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.396': [0.736, 5.0], 't5.156.114.396': [0.712, 5.0]}), 'osboxes-0'], [({'t4.103.114.397': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.397': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.397': [0.495, 10.0], 't2.103.114.397': [0.553, 5.0]}), 'newmec-3'], [({'t5.104.114.398': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.398': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.104.114.398': [0.578, 5.0], 't4.104.114.398': [0.654, 10.0]}), 'newmec-4'], [({'t5.106.114.399': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.106.114.399': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.106.114.399': [0.75, 5.0], 't3.106.114.399': [0.519, 5.0]}), 'newmec-6'], [({'t2.105.114.400': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.105.114.400': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.105.114.400': [0.541, 5.0], 't3.105.114.400': [0.424, 5.0]}), 'newmec-5'], [({'t4.105.114.401': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.401': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.401': [0.595, 10.0], 't2.105.114.401': [0.734, 5.0]}), 'newmec-5'], [({'t2.102.114.402': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.402': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.402': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.402': [0.659, 5.0], 't4.102.114.402': [0.795, 10.0], 't5.102.114.402': [0.65, 5.0]}), 'newmec-2'], [({'t5.156.114.403': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.403': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.403': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.156.114.403': [0.454, 5.0], 't2.156.114.403': [0.783, 5.0], 't4.156.114.403': [0.64, 10.0]}), 'osboxes-0'], [({'t2.102.114.404': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.404': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.102.114.404': [0.65, 5.0], 't4.102.114.404': [0.663, 10.0]}), 'newmec-2'], [({'t1.104.114.405': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.405': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.405': [0.711, 6.667], 't5.104.114.405': [0.537, 5.0]}), 'newmec-4'], [({'t4.103.114.406': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.406': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.406': [0.506, 10.0], 't5.103.114.406': [0.433, 5.0]}), 'newmec-3'], [({'t3.101.114.407': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.101.114.407': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.101.114.407': [0.558, 5.0], 't5.101.114.407': [0.546, 5.0]}), 'newmec-1'], [({'t1.104.114.408': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.408': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.408': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.408': [0.678, 6.667], 't2.104.114.408': [0.414, 5.0], 't5.104.114.408': [0.645, 5.0]}), 'newmec-4'], [({'t4.106.114.409': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.409': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.409': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.106.114.409': [0.778, 10.0], 't2.106.114.409': [0.681, 5.0], 't1.106.114.409': [0.666, 6.667]}), 'newmec-6'], [({'t3.105.114.410': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.105.114.410': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.105.114.410': [0.582, 5.0], 't1.105.114.410': [0.674, 6.667]}), 'newmec-5'], [({'t5.104.114.411': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.104.114.411': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.411': [0.678, 5.0], 't1.104.114.411': [0.551, 6.667]}), 'newmec-4'], [({'t3.106.114.412': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.412': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.106.114.412': [0.451, 5.0], 't2.106.114.412': [0.779, 5.0]}), 'newmec-6'], [({'t4.106.114.413': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.413': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.413': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.413': [0.676, 10.0], 't3.106.114.413': [0.417, 5.0], 't2.106.114.413': [0.708, 5.0]}), 'newmec-6'], [({'t5.103.114.414': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.414': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.414': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.414': [0.789, 5.0], 't2.103.114.414': [0.512, 5.0], 't4.103.114.414': [0.783, 10.0]}), 'newmec-3'], [({'t4.103.114.415': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.415': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.415': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.415': [0.744, 10.0], 't3.103.114.415': [0.741, 5.0], 't2.103.114.415': [0.765, 5.0]}), 'newmec-3'], [({'t2.106.114.416': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.416': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.416': [0.527, 5.0], 't3.106.114.416': [0.628, 5.0]}), 'newmec-6'], [({'t2.105.114.417': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.417': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.417': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.105.114.417': [0.475, 5.0], 't4.105.114.417': [0.758, 10.0], 't3.105.114.417': [0.55, 5.0]}), 'newmec-5'], [({'t3.105.114.418': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.105.114.418': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.105.114.418': [0.495, 5.0], 't5.105.114.418': [0.614, 5.0]}), 'newmec-5'], [({'t3.102.114.419': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.419': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.102.114.419': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.102.114.419': [0.604, 5.0], 't2.102.114.419': [0.567, 5.0], 't5.102.114.419': [0.612, 5.0]}), 'newmec-2'], [({'t4.106.114.420': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.420': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.106.114.420': [0.625, 10.0], 't3.106.114.420': [0.468, 5.0]}), 'newmec-6'], [({'t1.156.114.421': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.421': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.421': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.156.114.421': [0.607, 6.667], 't4.156.114.421': [0.501, 10.0], 't3.156.114.421': [0.467, 5.0]}), 'osboxes-0'], [({'t5.156.114.422': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.422': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.156.114.422': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.156.114.422': [0.437, 5.0], 't4.156.114.422': [0.493, 10.0], 't2.156.114.422': [0.789, 5.0]}), 'osboxes-0'], [({'t3.101.114.423': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.423': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.423': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.423': [0.455, 5.0], 't4.101.114.423': [0.508, 10.0], 't1.101.114.423': [0.644, 6.667]}), 'newmec-1'], [({'t3.104.114.424': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.424': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.424': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.424': [0.659, 5.0], 't5.104.114.424': [0.755, 5.0], 't4.104.114.424': [0.686, 10.0]}), 'newmec-4'], [({'t3.105.114.425': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.105.114.425': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.105.114.425': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.105.114.425': [0.54, 5.0], 't1.105.114.425': [0.621, 6.667], 't5.105.114.425': [0.591, 5.0]}), 'newmec-5'], [({'t5.103.114.426': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.426': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.426': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.426': [0.531, 5.0], 't2.103.114.426': [0.54, 5.0], 't1.103.114.426': [0.711, 6.667]}), 'newmec-3'], [({'t3.106.114.427': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.106.114.427': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.106.114.427': [0.746, 5.0], 't5.106.114.427': [0.422, 5.0]}), 'newmec-6'], [({'t1.105.114.428': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.428': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.105.114.428': [0.762, 6.667], 't2.105.114.428': [0.487, 5.0]}), 'newmec-5'], [({'t5.156.114.429': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.429': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.429': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.429': [0.697, 5.0], 't4.156.114.429': [0.558, 10.0], 't3.156.114.429': [0.57, 5.0]}), 'osboxes-0'], [({'t3.104.114.430': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.104.114.430': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.430': [0.528, 5.0], 't5.104.114.430': [0.591, 5.0]}), 'newmec-4'], [({'t4.103.114.431': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.431': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.431': [0.444, 10.0], 't1.103.114.431': [0.614, 6.667]}), 'newmec-3'], [({'t5.105.114.432': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.432': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.432': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.105.114.432': [0.571, 5.0], 't2.105.114.432': [0.741, 5.0], 't1.105.114.432': [0.775, 6.667]}), 'newmec-5'], [({'t3.103.114.433': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.433': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.433': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.433': [0.609, 5.0], 't1.103.114.433': [0.621, 6.667], 't2.103.114.433': [0.568, 5.0]}), 'newmec-3'], [({'t2.104.114.434': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.434': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.434': [0.421, 5.0], 't3.104.114.434': [0.637, 5.0]}), 'newmec-4'], [({'t4.105.114.435': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.435': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.105.114.435': [0.617, 10.0], 't3.105.114.435': [0.78, 5.0]}), 'newmec-5'], [({'t1.103.114.436': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.436': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.436': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.103.114.436': [0.569, 6.667], 't2.103.114.436': [0.726, 5.0], 't5.103.114.436': [0.436, 5.0]}), 'newmec-3'], [({'t3.103.114.437': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.437': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.437': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.437': [0.538, 5.0], 't1.103.114.437': [0.628, 6.667], 't2.103.114.437': [0.442, 5.0]}), 'newmec-3'], [({'t2.104.114.438': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.438': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.438': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.104.114.438': [0.505, 5.0], 't5.104.114.438': [0.508, 5.0], 't4.104.114.438': [0.461, 10.0]}), 'newmec-4'], [({'t2.103.114.439': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.439': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.439': [0.796, 5.0], 't4.103.114.439': [0.43, 10.0]}), 'newmec-3'], [({'t4.105.114.440': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.440': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.440': [0.729, 10.0], 't5.105.114.440': [0.751, 5.0]}), 'newmec-5'], [({'t1.103.114.441': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.441': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.441': [0.727, 6.667], 't4.103.114.441': [0.707, 10.0]}), 'newmec-3'], [({'t3.103.114.442': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.442': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.442': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.442': [0.495, 5.0], 't1.103.114.442': [0.636, 6.667], 't2.103.114.442': [0.439, 5.0]}), 'newmec-3'], [({'t5.103.114.443': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.443': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.443': [0.578, 5.0], 't4.103.114.443': [0.523, 10.0]}), 'newmec-3'], [({'t3.106.114.444': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.444': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.106.114.444': [0.551, 5.0], 't4.106.114.444': [0.65, 10.0]}), 'newmec-6'], [({'t5.102.114.445': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.445': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.445': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.445': [0.67, 5.0], 't3.102.114.445': [0.713, 5.0], 't2.102.114.445': [0.449, 5.0]}), 'newmec-2'], [({'t4.103.114.446': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.446': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.446': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.446': [0.775, 10.0], 't5.103.114.446': [0.775, 5.0], 't2.103.114.446': [0.523, 5.0]}), 'newmec-3'], [({'t5.103.114.447': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.447': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.447': [0.441, 5.0], 't4.103.114.447': [0.775, 10.0]}), 'newmec-3'], [({'t2.156.114.448': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.448': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.448': [0.642, 5.0], 't5.156.114.448': [0.517, 5.0]}), 'osboxes-0'], [({'t5.101.114.449': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.101.114.449': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.101.114.449': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.101.114.449': [0.564, 5.0], 't2.101.114.449': [0.681, 5.0], 't1.101.114.449': [0.599, 6.667]}), 'newmec-1'], [({'t2.103.114.450': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.450': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.450': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.450': [0.482, 5.0], 't3.103.114.450': [0.764, 5.0], 't1.103.114.450': [0.679, 6.667]}), 'newmec-3'], [({'t3.102.114.451': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.102.114.451': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.102.114.451': [0.446, 5.0], 't1.102.114.451': [0.658, 6.667]}), 'newmec-2'], [({'t2.102.114.452': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.452': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.452': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.452': [0.627, 5.0], 't1.102.114.452': [0.664, 6.667], 't5.102.114.452': [0.639, 5.0]}), 'newmec-2'], [({'t2.105.114.453': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.105.114.453': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.453': [0.612, 5.0], 't4.105.114.453': [0.681, 10.0]}), 'newmec-5'], [({'t5.102.114.454': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.454': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.454': [0.471, 5.0], 't4.102.114.454': [0.599, 10.0]}), 'newmec-2'], [({'t4.101.114.455': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.455': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.101.114.455': [0.558, 10.0], 't3.101.114.455': [0.652, 5.0]}), 'newmec-1'], [({'t4.106.114.456': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.456': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.456': [0.487, 10.0], 't2.106.114.456': [0.412, 5.0]}), 'newmec-6'], [({'t4.103.114.457': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.457': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.457': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.457': [0.78, 10.0], 't5.103.114.457': [0.658, 5.0], 't2.103.114.457': [0.661, 5.0]}), 'newmec-3'], [({'t4.105.114.458': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.105.114.458': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.105.114.458': [0.523, 10.0], 't3.105.114.458': [0.633, 5.0]}), 'newmec-5'], [({'t3.101.114.459': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.459': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.101.114.459': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.101.114.459': [0.409, 5.0], 't4.101.114.459': [0.639, 10.0], 't1.101.114.459': [0.64, 6.667]}), 'newmec-1'], [({'t4.105.114.460': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.460': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.460': [0.422, 10.0], 't2.105.114.460': [0.7, 5.0]}), 'newmec-5'], [({'t5.101.114.461': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.101.114.461': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.461': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.101.114.461': [0.64, 5.0], 't4.101.114.461': [0.71, 10.0], 't3.101.114.461': [0.692, 5.0]}), 'newmec-1'], [({'t5.106.114.462': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.106.114.462': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.462': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.106.114.462': [0.496, 5.0], 't4.106.114.462': [0.53, 10.0], 't3.106.114.462': [0.722, 5.0]}), 'newmec-6'], [({'t4.156.114.463': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.463': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.463': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.156.114.463': [0.736, 10.0], 't5.156.114.463': [0.401, 5.0], 't2.156.114.463': [0.42, 5.0]}), 'osboxes-0'], [({'t5.105.114.464': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.105.114.464': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.105.114.464': [0.463, 5.0], 't4.105.114.464': [0.682, 10.0]}), 'newmec-5'], [({'t2.104.114.465': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.465': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.465': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.465': [0.528, 5.0], 't4.104.114.465': [0.541, 10.0], 't5.104.114.465': [0.504, 5.0]}), 'newmec-4'], [({'t2.156.114.466': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.466': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.156.114.466': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.466': [0.453, 5.0], 't5.156.114.466': [0.454, 5.0], 't3.156.114.466': [0.439, 5.0]}), 'osboxes-0'], [({'t2.103.114.467': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.467': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.467': [0.705, 5.0], 't3.103.114.467': [0.772, 5.0]}), 'newmec-3'], [({'t4.106.114.468': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.468': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.468': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.468': [0.578, 10.0], 't3.106.114.468': [0.424, 5.0], 't2.106.114.468': [0.681, 5.0]}), 'newmec-6'], [({'t2.101.114.469': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.469': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.101.114.469': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.101.114.469': [0.585, 5.0], 't5.101.114.469': [0.653, 5.0], 't3.101.114.469': [0.721, 5.0]}), 'newmec-1'], [({'t2.103.114.470': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.470': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.470': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.470': [0.462, 5.0], 't4.103.114.470': [0.66, 10.0], 't5.103.114.470': [0.658, 5.0]}), 'newmec-3'], [({'t4.106.114.471': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.471': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.106.114.471': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.106.114.471': [0.715, 10.0], 't2.106.114.471': [0.548, 5.0], 't5.106.114.471': [0.665, 5.0]}), 'newmec-6'], [({'t1.103.114.472': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.472': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.472': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.103.114.472': [0.689, 6.667], 't4.103.114.472': [0.599, 10.0], 't2.103.114.472': [0.616, 5.0]}), 'newmec-3'], [({'t3.104.114.473': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.473': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.473': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.473': [0.712, 5.0], 't2.104.114.473': [0.523, 5.0], 't4.104.114.473': [0.728, 10.0]}), 'newmec-4'], [({'t4.104.114.474': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.474': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.104.114.474': [0.713, 10.0], 't5.104.114.474': [0.637, 5.0]}), 'newmec-4'], [({'t2.102.114.475': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.102.114.475': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.102.114.475': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.475': [0.623, 5.0], 't4.102.114.475': [0.643, 10.0], 't5.102.114.475': [0.604, 5.0]}), 'newmec-2'], [({'t3.103.114.476': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.476': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.476': [0.48, 5.0], 't1.103.114.476': [0.731, 6.667]}), 'newmec-3'], [({'t4.103.114.477': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.477': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.477': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.477': [0.715, 10.0], 't1.103.114.477': [0.504, 6.667], 't2.103.114.477': [0.533, 5.0]}), 'newmec-3'], [({'t4.104.114.478': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.104.114.478': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.104.114.478': [0.788, 10.0], 't3.104.114.478': [0.424, 5.0]}), 'newmec-4'], [({'t2.101.114.479': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.479': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.479': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.479': [0.691, 5.0], 't4.101.114.479': [0.789, 10.0], 't5.101.114.479': [0.767, 5.0]}), 'newmec-1'], [({'t1.102.114.480': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.102.114.480': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.480': [0.74, 6.667], 't3.102.114.480': [0.634, 5.0]}), 'newmec-2'], [({'t5.106.114.481': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.106.114.481': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.106.114.481': [0.479, 5.0], 't3.106.114.481': [0.561, 5.0]}), 'newmec-6'], [({'t5.103.114.482': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.482': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.482': [0.634, 5.0], 't4.103.114.482': [0.572, 10.0]}), 'newmec-3'], [({'t1.156.114.483': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.156.114.483': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.483': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.156.114.483': [0.514, 6.667], 't2.156.114.483': [0.752, 5.0], 't3.156.114.483': [0.583, 5.0]}), 'osboxes-0'], [({'t2.103.114.484': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.484': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.484': [0.697, 5.0], 't4.103.114.484': [0.607, 10.0]}), 'newmec-3'], [({'t2.103.114.485': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.485': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.485': [0.485, 5.0], 't1.103.114.485': [0.751, 6.667]}), 'newmec-3'], [({'t3.106.114.486': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.486': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.486': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.106.114.486': [0.47, 5.0], 't4.106.114.486': [0.654, 10.0], 't2.106.114.486': [0.418, 5.0]}), 'newmec-6'], [({'t2.105.114.487': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.487': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.105.114.487': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.105.114.487': [0.623, 5.0], 't1.105.114.487': [0.46, 6.667], 't4.105.114.487': [0.678, 10.0]}), 'newmec-5'], [({'t2.103.114.488': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.488': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.488': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.488': [0.67, 5.0], 't5.103.114.488': [0.454, 5.0], 't4.103.114.488': [0.623, 10.0]}), 'newmec-3'], [({'t2.156.114.489': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.489': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.489': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.489': [0.468, 5.0], 't4.156.114.489': [0.623, 10.0], 't5.156.114.489': [0.484, 5.0]}), 'osboxes-0'], [({'t3.103.114.490': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.490': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.490': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.490': [0.606, 5.0], 't5.103.114.490': [0.418, 5.0], 't4.103.114.490': [0.642, 10.0]}), 'newmec-3'], [({'t5.102.114.491': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.102.114.491': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.102.114.491': [0.513, 5.0], 't1.102.114.491': [0.657, 6.667]}), 'newmec-2'], [({'t2.104.114.492': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.492': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.492': [0.691, 5.0], 't5.104.114.492': [0.405, 5.0]}), 'newmec-4'], [({'t2.104.114.493': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.493': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.104.114.493': [0.563, 5.0], 't3.104.114.493': [0.562, 5.0]}), 'newmec-4'], [({'t4.106.114.494': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.494': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.494': [0.711, 10.0], 't2.106.114.494': [0.581, 5.0]}), 'newmec-6'], [({'t2.103.114.495': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.495': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.103.114.495': [0.708, 5.0], 't5.103.114.495': [0.7, 5.0]}), 'newmec-3'], [({'t4.101.114.496': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.496': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.496': [0.75, 10.0], 't2.101.114.496': [0.701, 5.0]}), 'newmec-1'], [({'t3.105.114.497': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.497': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.497': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.105.114.497': [0.609, 5.0], 't2.105.114.497': [0.493, 5.0], 't5.105.114.497': [0.451, 5.0]}), 'newmec-5'], [({'t4.103.114.498': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.498': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.498': [0.782, 10.0], 't3.103.114.498': [0.762, 5.0]}), 'newmec-3'], [({'t3.105.114.499': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.499': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.105.114.499': [0.65, 5.0], 't4.105.114.499': [0.705, 10.0]}), 'newmec-5'], [({'t3.103.114.500': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.500': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.103.114.500': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.103.114.500': [0.599, 5.0], 't1.103.114.500': [0.727, 6.667], 't5.103.114.500': [0.579, 5.0]}), 'newmec-3'], [({'t5.103.114.501': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.501': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.103.114.501': [0.607, 5.0], 't1.103.114.501': [0.758, 6.667]}), 'newmec-3'], [({'t3.105.114.502': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.105.114.502': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.502': [0.68, 5.0], 't2.105.114.502': [0.789, 5.0]}), 'newmec-5'], [({'t3.103.114.503': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.503': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.103.114.503': [0.548, 5.0], 't1.103.114.503': [0.665, 6.667]}), 'newmec-3'], [({'t4.103.114.504': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.504': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.103.114.504': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.504': [0.611, 10.0], 't3.103.114.504': [0.721, 5.0], 't2.103.114.504': [0.794, 5.0]}), 'newmec-3'], [({'t1.156.114.505': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.505': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.156.114.505': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.156.114.505': [0.673, 6.667], 't4.156.114.505': [0.559, 10.0], 't5.156.114.505': [0.732, 5.0]}), 'osboxes-0'], [({'t1.105.114.506': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.105.114.506': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.105.114.506': [0.716, 6.667], 't5.105.114.506': [0.69, 5.0]}), 'newmec-5'], [({'t2.101.114.507': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.507': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.507': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.507': [0.674, 5.0], 't4.101.114.507': [0.73, 10.0], 't5.101.114.507': [0.521, 5.0]}), 'newmec-1'], [({'t1.102.114.508': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.102.114.508': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.508': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.102.114.508': [0.768, 6.667], 't2.102.114.508': [0.424, 5.0], 't3.102.114.508': [0.609, 5.0]}), 'newmec-2'], [({'t4.105.114.509': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.509': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.509': [0.491, 10.0], 't2.105.114.509': [0.56, 5.0]}), 'newmec-5'], [({'t2.102.114.510': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.510': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.102.114.510': [0.489, 5.0], 't3.102.114.510': [0.691, 5.0]}), 'newmec-2'], [({'t2.106.114.511': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.106.114.511': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.106.114.511': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.106.114.511': [0.544, 5.0], 't5.106.114.511': [0.715, 5.0], 't4.106.114.511': [0.635, 10.0]}), 'newmec-6'], [({'t4.105.114.512': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.512': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.512': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.512': [0.622, 10.0], 't2.105.114.512': [0.615, 5.0], 't1.105.114.512': [0.443, 6.667]}), 'newmec-5'], [({'t5.102.114.513': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.513': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.513': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.513': [0.495, 5.0], 't3.102.114.513': [0.765, 5.0], 't2.102.114.513': [0.478, 5.0]}), 'newmec-2'], [({'t4.105.114.514': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.514': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.514': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.514': [0.642, 10.0], 't2.105.114.514': [0.705, 5.0], 't1.105.114.514': [0.464, 6.667]}), 'newmec-5'], [({'t1.156.114.515': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.515': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.515': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.515': [0.578, 6.667], 't5.156.114.515': [0.647, 5.0], 't2.156.114.515': [0.652, 5.0]}), 'osboxes-0'], [({'t1.104.114.516': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.104.114.516': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.516': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t1.104.114.516': [0.653, 6.667], 't2.104.114.516': [0.553, 5.0], 't5.104.114.516': [0.746, 5.0]}), 'newmec-4'], [({'t5.103.114.517': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.103.114.517': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.103.114.517': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.517': [0.472, 5.0], 't1.103.114.517': [0.72, 6.667], 't3.103.114.517': [0.559, 5.0]}), 'newmec-3'], [({'t4.106.114.518': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.518': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.518': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.106.114.518': [0.6, 10.0], 't2.106.114.518': [0.786, 5.0], 't1.106.114.518': [0.781, 6.667]}), 'newmec-6'], [({'t2.103.114.519': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.519': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.103.114.519': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.103.114.519': [0.798, 5.0], 't4.103.114.519': [0.659, 10.0], 't1.103.114.519': [0.676, 6.667]}), 'newmec-3'], [({'t4.103.114.520': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.520': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.103.114.520': [0.585, 10.0], 't5.103.114.520': [0.574, 5.0]}), 'newmec-3'], [({'t3.103.114.521': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.521': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.103.114.521': [0.685, 5.0], 't4.103.114.521': [0.679, 10.0]}), 'newmec-3'], [({'t4.104.114.522': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.522': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.522': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.522': [0.542, 10.0], 't5.104.114.522': [0.422, 5.0], 't2.104.114.522': [0.406, 5.0]}), 'newmec-4'], [({'t3.106.114.523': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.106.114.523': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.523': [0.405, 5.0], 't1.106.114.523': [0.461, 6.667]}), 'newmec-6'], [({'t5.102.114.524': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.524': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.524': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.102.114.524': [0.714, 5.0], 't3.102.114.524': [0.465, 5.0], 't4.102.114.524': [0.441, 10.0]}), 'newmec-2'], [({'t3.105.114.525': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.105.114.525': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.525': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.525': [0.6, 5.0], 't4.105.114.525': [0.738, 10.0], 't2.105.114.525': [0.547, 5.0]}), 'newmec-5'], [({'t3.106.114.526': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.526': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.106.114.526': [0.712, 5.0], 't2.106.114.526': [0.426, 5.0]}), 'newmec-6'], [({'t4.103.114.527': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.527': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.527': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.527': [0.464, 10.0], 't2.103.114.527': [0.701, 5.0], 't3.103.114.527': [0.693, 5.0]}), 'newmec-3'], [({'t4.101.114.528': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.101.114.528': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.101.114.528': [0.569, 10.0], 't2.101.114.528': [0.565, 5.0]}), 'newmec-1'], [({'t3.101.114.529': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.529': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.529': [0.758, 5.0], 't4.101.114.529': [0.464, 10.0]}), 'newmec-1'], [({'t4.103.114.530': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.103.114.530': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.530': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.530': [0.719, 10.0], 't5.103.114.530': [0.751, 5.0], 't3.103.114.530': [0.506, 5.0]}), 'newmec-3'], [({'t4.105.114.531': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.531': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.531': [0.726, 10.0], 't2.105.114.531': [0.598, 5.0]}), 'newmec-5'], [({'t2.103.114.532': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.532': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.103.114.532': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.532': [0.752, 5.0], 't3.103.114.532': [0.435, 5.0], 't4.103.114.532': [0.438, 10.0]}), 'newmec-3'], [({'t3.101.114.533': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.101.114.533': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.101.114.533': [0.604, 5.0], 't4.101.114.533': [0.617, 10.0]}), 'newmec-1'], [({'t3.104.114.534': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.534': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.534': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t3.104.114.534': [0.743, 5.0], 't4.104.114.534': [0.685, 10.0], 't5.104.114.534': [0.481, 5.0]}), 'newmec-4'], [({'t4.101.114.535': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.101.114.535': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.101.114.535': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.535': [0.502, 10.0], 't3.101.114.535': [0.766, 5.0], 't1.101.114.535': [0.724, 6.667]}), 'newmec-1'], [({'t1.103.114.536': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.536': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.536': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.536': [0.438, 6.667], 't2.103.114.536': [0.653, 5.0], 't4.103.114.536': [0.704, 10.0]}), 'newmec-3'], [({'t2.101.114.537': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.101.114.537': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.101.114.537': [0.746, 5.0], 't5.101.114.537': [0.636, 5.0]}), 'newmec-1'], [({'t5.156.114.538': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.156.114.538': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.538': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.156.114.538': [0.416, 5.0], 't4.156.114.538': [0.712, 10.0], 't3.156.114.538': [0.475, 5.0]}), 'osboxes-0'], [({'t5.104.114.539': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.539': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.539': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t5.104.114.539': [0.476, 5.0], 't4.104.114.539': [0.781, 10.0], 't1.104.114.539': [0.605, 6.667]}), 'newmec-4'], [({'t3.105.114.540': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.105.114.540': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.105.114.540': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.105.114.540': [0.736, 5.0], 't1.105.114.540': [0.741, 6.667], 't2.105.114.540': [0.776, 5.0]}), 'newmec-5'], [({'t5.103.114.541': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.541': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.541': [0.429, 5.0], 't4.103.114.541': [0.585, 10.0]}), 'newmec-3'], [({'t4.106.114.542': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.106.114.542': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.106.114.542': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.106.114.542': [0.701, 10.0], 't3.106.114.542': [0.553, 5.0], 't2.106.114.542': [0.473, 5.0]}), 'newmec-6'], [({'t3.156.114.543': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.156.114.543': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.156.114.543': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.156.114.543': [0.748, 5.0], 't1.156.114.543': [0.559, 6.667], 't4.156.114.543': [0.531, 10.0]}), 'osboxes-0'], [({'t5.103.114.544': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.544': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t5.103.114.544': [0.64, 5.0], 't4.103.114.544': [0.601, 10.0]}), 'newmec-3'], [({'t4.103.114.545': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.545': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.103.114.545': [0.712, 10.0], 't2.103.114.545': [0.523, 5.0]}), 'newmec-3'], [({'t2.106.114.546': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.106.114.546': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.106.114.546': [0.423, 5.0], 't4.106.114.546': [0.418, 10.0]}), 'newmec-6'], [({'t2.102.114.547': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.547': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.102.114.547': [0.676, 5.0], 't1.102.114.547': [0.731, 6.667]}), 'newmec-2'], [({'t2.156.114.548': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.156.114.548': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.548': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.156.114.548': [0.62, 5.0], 't1.156.114.548': [0.484, 6.667], 't5.156.114.548': [0.696, 5.0]}), 'osboxes-0'], [({'t2.106.114.549': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.549': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.106.114.549': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.549': [0.736, 5.0], 't1.106.114.549': [0.648, 6.667], 't3.106.114.549': [0.628, 5.0]}), 'newmec-6'], [({'t2.102.114.550': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.102.114.550': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.550': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.102.114.550': [0.605, 5.0], 't1.102.114.550': [0.53, 6.667], 't5.102.114.550': [0.506, 5.0]}), 'newmec-2'], [({'t2.105.114.551': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.105.114.551': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.105.114.551': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.551': [0.726, 5.0], 't5.105.114.551': [0.663, 5.0], 't1.105.114.551': [0.734, 6.667]}), 'newmec-5'], [({'t5.102.114.552': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.102.114.552': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.102.114.552': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.552': [0.427, 5.0], 't4.102.114.552': [0.644, 10.0], 't2.102.114.552': [0.597, 5.0]}), 'newmec-2'], [({'t1.156.114.553': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.156.114.553': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.156.114.553': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.156.114.553': [0.564, 6.667], 't5.156.114.553': [0.643, 5.0], 't2.156.114.553': [0.435, 5.0]}), 'osboxes-0'], [({'t2.156.114.554': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.156.114.554': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.156.114.554': [0.7, 5.0], 't3.156.114.554': [0.498, 5.0]}), 'osboxes-0'], [({'t4.103.114.555': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.103.114.555': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.103.114.555': [0.416, 10.0], 't3.103.114.555': [0.433, 5.0]}), 'newmec-3'], [({'t2.104.114.556': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.104.114.556': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.556': [0.58, 5.0], 't5.104.114.556': [0.5, 5.0]}), 'newmec-4'], [({'t2.105.114.557': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.557': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.105.114.557': [0.605, 5.0], 't1.105.114.557': [0.458, 6.667]}), 'newmec-5'], [({'t1.104.114.558': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.104.114.558': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.104.114.558': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t1.104.114.558': [0.768, 6.667], 't5.104.114.558': [0.57, 5.0], 't3.104.114.558': [0.69, 5.0]}), 'newmec-4'], [({'t3.106.114.559': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.559': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.106.114.559': [0.565, 5.0], 't4.106.114.559': [0.446, 10.0]}), 'newmec-6'], [({'t4.104.114.560': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.104.114.560': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.104.114.560': [0.52, 10.0], 't1.104.114.560': [0.566, 6.667]}), 'newmec-4'], [({'t5.103.114.561': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.561': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.103.114.561': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.103.114.561': [0.78, 5.0], 't2.103.114.561': [0.634, 5.0], 't3.103.114.561': [0.523, 5.0]}), 'newmec-3'], [({'t4.105.114.562': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.105.114.562': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.105.114.562': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.105.114.562': [0.427, 10.0], 't2.105.114.562': [0.433, 5.0], 't1.105.114.562': [0.534, 6.667]}), 'newmec-5'], [({'t4.156.114.563': {'wcet': 1, 'period': 10, 'deadline': 9}, 't3.156.114.563': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.156.114.563': [0.739, 10.0], 't3.156.114.563': [0.44, 5.0]}), 'osboxes-0'], [({'t2.156.114.564': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.156.114.564': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.156.114.564': [0.632, 5.0], 't4.156.114.564': [0.551, 10.0]}), 'osboxes-0'], [({'t3.104.114.565': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.104.114.565': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.565': [0.764, 5.0], 't4.104.114.565': [0.652, 10.0]}), 'newmec-4'], [({'t4.103.114.566': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.566': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.103.114.566': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.103.114.566': [0.711, 10.0], 't2.103.114.566': [0.415, 5.0], 't1.103.114.566': [0.7, 6.667]}), 'newmec-3'], [({'t2.101.114.567': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.101.114.567': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.101.114.567': [0.488, 5.0], 't4.101.114.567': [0.533, 10.0]}), 'newmec-1'], [({'t3.103.114.568': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.103.114.568': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.103.114.568': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.568': [0.482, 5.0], 't5.103.114.568': [0.427, 5.0], 't2.103.114.568': [0.519, 5.0]}), 'newmec-3'], [({'t3.104.114.569': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.104.114.569': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.569': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.104.114.569': [0.588, 5.0], 't2.104.114.569': [0.44, 5.0], 't4.104.114.569': [0.56, 10.0]}), 'newmec-4'], [({'t4.106.114.570': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.106.114.570': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.106.114.570': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.106.114.570': [0.643, 10.0], 't2.106.114.570': [0.695, 5.0], 't1.106.114.570': [0.76, 6.667]}), 'newmec-6'], [({'t3.101.114.571': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.101.114.571': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.101.114.571': [0.548, 5.0], 't2.101.114.571': [0.77, 5.0]}), 'newmec-1'], [({'t4.105.114.572': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.105.114.572': {'wcet': 3, 'period': 20, 'deadline': 15}, 't3.105.114.572': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t4.105.114.572': [0.678, 10.0], 't1.105.114.572': [0.641, 6.667], 't3.105.114.572': [0.453, 5.0]}), 'newmec-5'], [({'t2.106.114.573': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.106.114.573': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.106.114.573': [0.644, 5.0], 't5.106.114.573': [0.628, 5.0]}), 'newmec-6'], [({'t4.105.114.574': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.574': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t4.105.114.574': [0.438, 10.0], 't5.105.114.574': [0.554, 5.0]}), 'newmec-5'], [({'t2.106.114.575': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.575': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.575': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.106.114.575': [0.778, 5.0], 't3.106.114.575': [0.744, 5.0], 't4.106.114.575': [0.51, 10.0]}), 'newmec-6'], [({'t2.156.114.576': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.156.114.576': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.156.114.576': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.156.114.576': [0.669, 5.0], 't5.156.114.576': [0.442, 5.0], 't1.156.114.576': [0.55, 6.667]}), 'osboxes-0'], [({'t5.104.114.577': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.104.114.577': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.104.114.577': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.104.114.577': [0.793, 5.0], 't2.104.114.577': [0.428, 5.0], 't3.104.114.577': [0.712, 5.0]}), 'newmec-4'], [({'t2.103.114.578': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.578': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.578': [0.475, 5.0], 't4.103.114.578': [0.485, 10.0]}), 'newmec-3'], [({'t5.102.114.579': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.102.114.579': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.102.114.579': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.102.114.579': [0.488, 5.0], 't3.102.114.579': [0.628, 5.0], 't2.102.114.579': [0.751, 5.0]}), 'newmec-2'], [({'t5.103.114.580': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.103.114.580': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.103.114.580': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.103.114.580': [0.745, 5.0], 't4.103.114.580': [0.554, 10.0], 't2.103.114.580': [0.638, 5.0]}), 'newmec-3'], [({'t3.156.114.581': {'wcet': 2, 'period': 10, 'deadline': 8}, 't2.156.114.581': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.156.114.581': [0.573, 5.0], 't2.156.114.581': [0.783, 5.0]}), 'osboxes-0'], [({'t5.105.114.582': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.105.114.582': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.105.114.582': [0.491, 5.0], 't3.105.114.582': [0.777, 5.0]}), 'newmec-5'], [({'t5.104.114.583': {'wcet': 3, 'period': 15, 'deadline': 12}, 't4.104.114.583': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.583': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t5.104.114.583': [0.712, 5.0], 't4.104.114.583': [0.664, 10.0], 't2.104.114.583': [0.47, 5.0]}), 'newmec-4'], [({'t2.104.114.584': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.104.114.584': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.104.114.584': {'wcet': 3, 'period': 15, 'deadline': 12}}, {'t2.104.114.584': [0.754, 5.0], 't4.104.114.584': [0.414, 10.0], 't5.104.114.584': [0.442, 5.0]}), 'newmec-4'], [({'t3.106.114.585': {'wcet': 2, 'period': 10, 'deadline': 8}, 't5.106.114.585': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.106.114.585': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.106.114.585': [0.708, 5.0], 't5.106.114.585': [0.671, 5.0], 't2.106.114.585': [0.476, 5.0]}), 'newmec-6'], [({'t5.102.114.586': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.586': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.102.114.586': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t5.102.114.586': [0.768, 5.0], 't2.102.114.586': [0.582, 5.0], 't3.102.114.586': [0.496, 5.0]}), 'newmec-2'], [({'t2.103.114.587': {'wcet': 1, 'period': 5, 'deadline': 4}, 't4.103.114.587': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t2.103.114.587': [0.476, 5.0], 't4.103.114.587': [0.534, 10.0]}), 'newmec-3'], [({'t4.101.114.588': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.101.114.588': {'wcet': 3, 'period': 15, 'deadline': 12}, 't1.101.114.588': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t4.101.114.588': [0.575, 10.0], 't5.101.114.588': [0.687, 5.0], 't1.101.114.588': [0.437, 6.667]}), 'newmec-1'], [({'t2.106.114.589': {'wcet': 1, 'period': 5, 'deadline': 4}, 't3.106.114.589': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.589': [0.795, 5.0], 't3.106.114.589': [0.552, 5.0]}), 'newmec-6'], [({'t3.102.114.590': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.102.114.590': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t3.102.114.590': [0.466, 5.0], 't4.102.114.590': [0.794, 10.0]}), 'newmec-2'], [({'t4.105.114.591': {'wcet': 1, 'period': 10, 'deadline': 9}, 't5.105.114.591': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.105.114.591': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.105.114.591': [0.624, 10.0], 't5.105.114.591': [0.729, 5.0], 't2.105.114.591': [0.628, 5.0]}), 'newmec-5'], [({'t4.104.114.592': {'wcet': 1, 'period': 10, 'deadline': 9}, 't2.104.114.592': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t4.104.114.592': [0.78, 10.0], 't2.104.114.592': [0.778, 5.0]}), 'newmec-4'], [({'t2.106.114.593': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.106.114.593': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.106.114.593': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.106.114.593': [0.602, 5.0], 't5.106.114.593': [0.548, 5.0], 't3.106.114.593': [0.499, 5.0]}), 'newmec-6'], [({'t1.102.114.594': {'wcet': 3, 'period': 20, 'deadline': 15}, 't5.102.114.594': {'wcet': 3, 'period': 15, 'deadline': 12}, 't2.102.114.594': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t1.102.114.594': [0.617, 6.667], 't5.102.114.594': [0.742, 5.0], 't2.102.114.594': [0.717, 5.0]}), 'newmec-2'], [({'t2.104.114.595': {'wcet': 1, 'period': 5, 'deadline': 4}, 't1.104.114.595': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t2.104.114.595': [0.422, 5.0], 't1.104.114.595': [0.645, 6.667]}), 'newmec-4'], [({'t1.103.114.596': {'wcet': 3, 'period': 20, 'deadline': 15}, 't4.103.114.596': {'wcet': 1, 'period': 10, 'deadline': 9}}, {'t1.103.114.596': [0.577, 6.667], 't4.103.114.596': [0.401, 10.0]}), 'newmec-3'], [({'t2.103.114.597': {'wcet': 1, 'period': 5, 'deadline': 4}, 't5.103.114.597': {'wcet': 3, 'period': 15, 'deadline': 12}, 't3.103.114.597': {'wcet': 2, 'period': 10, 'deadline': 8}}, {'t2.103.114.597': [0.798, 5.0], 't5.103.114.597': [0.497, 5.0], 't3.103.114.597': [0.553, 5.0]}), 'newmec-3'], [({'t3.103.114.598': {'wcet': 2, 'period': 10, 'deadline': 8}, 't1.103.114.598': {'wcet': 3, 'period': 20, 'deadline': 15}, 't2.103.114.598': {'wcet': 1, 'period': 5, 'deadline': 4}}, {'t3.103.114.598': [0.496, 5.0], 't1.103.114.598': [0.483, 6.667], 't2.103.114.598': [0.766, 5.0]}), 'newmec-3'], [({'t3.106.114.599': {'wcet': 2, 'period': 10, 'deadline': 8}, 't4.106.114.599': {'wcet': 1, 'period': 10, 'deadline': 9}, 't1.106.114.599': {'wcet': 3, 'period': 20, 'deadline': 15}}, {'t3.106.114.599': [0.571, 5.0], 't4.106.114.599': [0.647, 10.0], 't1.106.114.599': [0.467, 6.667]}), 'newmec-6']] host_names7 = {'192.168.122.102': 'newmec-2', '192.168.122.103': 'newmec-3', '192.168.122.104': 'newmec-4', '192.168.122.105': 'newmec-5', '192.168.122.106': 'newmec-6', '192.168.122.156': 'osboxes-0', '192.168.122.101': 'newmec-1'}
# Initialize step_end step_end = 10 # Loop for step_end steps for step in range(step_end): # Compute value of t t = step * dt # Compute value of i at this time step i = i_mean * (1 + np.sin((t * 2 * np.pi) / 0.01)) # Print value of t and i print(f'{t:.3f} {i:.4e}')
step_end = 10 for step in range(step_end): t = step * dt i = i_mean * (1 + np.sin(t * 2 * np.pi / 0.01)) print(f'{t:.3f} {i:.4e}')
# OpenWeatherMap API Key weather_api_key = "229c3f533e63b8b69792de2ba65d3645" # Google API Key g_key = "AIzaSyCv1BWR1Jm0cxoY8oqWxYHWU2g6Aq91SvE"
weather_api_key = '229c3f533e63b8b69792de2ba65d3645' g_key = 'AIzaSyCv1BWR1Jm0cxoY8oqWxYHWU2g6Aq91SvE'
# get stem leaf plot in dictionary def stemleaf(data): stem_leaf = {} for x in data: x_str = str(x) if (len(x_str) == 1): x_str = "0" + x_str stem = int(x_str[:-1]) leaf = int(x_str[-1]) if (stem not in stem_leaf): stem_leaf[stem] = [leaf] else: stem_leaf[stem] = stem_leaf[stem] + [leaf] return stem_leaf
def stemleaf(data): stem_leaf = {} for x in data: x_str = str(x) if len(x_str) == 1: x_str = '0' + x_str stem = int(x_str[:-1]) leaf = int(x_str[-1]) if stem not in stem_leaf: stem_leaf[stem] = [leaf] else: stem_leaf[stem] = stem_leaf[stem] + [leaf] return stem_leaf
f1 = 'bully_and_attack_mode' f2 = 'happy_child_mode' f3 = 'punishing_parent_mode' f4 = 'vulnerable_child_mode' f5 = 'demanding_parent_mode' f6 = 'compliand_surrender_mode' f7 = 'self_aggrandizer_mode' f8 = 'impulsive_child_mode' f9 = 'undiscilined_child_mode' f10 = 'engraed_child_mode' f11 = 'healthyy_adult_mode' f12 = 'angry_child_mode' f13 = 'detached_protoctor_mode' f14 = 'detached_self_soother_mode' factors_names = (f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14) factors = { 1 :(f1,) , 2 :(f2,) , 3 :(f3,) , 4 :(f4,) , 5 :(f3,) , 6 :(f4,) , 7:(f5,) , 8 :(f6,) , 9 :(f3,) , 10 :(f7,) , 11 :(f7,) , 12 :(f8,) , 13 :(f9,) , 14 :(f10,) , 15 :(f8,) , 16 :(f2 , f3,) #, 17 :('',)### , 18 :(f6,) , 19 :(f2,) , 20 :(f11,) , 21 :(f9,) , 22 :(f12,) , 23 :(f5,) , 24 :(f1,) , 25 :(f10 ,) , 26 :(f10 ,) , 27 :(f7 ,) , 28:(f13,) , 29 :(f11,) , 30 :(f9,) , 31 :(f7,) , 32 :(f1,) , 33 :(f13,) , 34 :(f13,) , 35 :(f8,) , 36 :(f4,) , 37 :(f6,) , 38 :(f6,) , 39 :(f13,) , 40 :(f8,) , 41 :(f14,) , 42 :(f12,) , 43 :(f13,) , 44 :( f7,) , 45 :(f5 ,) , 46 :(f10,) , 47:(f12,) , 48 :(f2,) , 49 :(f12,) , 50 :(f4,) , 51 :(f5,) , 52 :(f14,) , 53 :(f1,) , 54 :(f10,) , 55 :(f6,) , 56 :(f12,) , 57 :(f14,) , 58 :(f3,) , 59 :(f13,) , 60 :(f10 ,) , 61 :(f8 , f2 )# , 62 :(f11 ,) , 63 :(f12 ,) , 64 :(f13 ,) , 65 :(f9 ,) #, 66 :('' ,) , 67 :(f4 ,) , 68:(f2 ,) , 69 :(f8,) , 70 :(f9,) , 71 :(f4,) , 72 :(f3,) , 73 :(f11,) , 74 :(f7,) , 75 :(f13,) , 76 :(f12,) , 77 :(f1,) , 78 :(f8,) , 79 :(f12,) , 80 :(f11,) , 81 :(f7,) , 82 :(f5,) , 83 :(f5,) , 84 :( f3,) , 85 :(f11,) , 86 :(f14,) , 87:(f3,) , 88 :(f13,) , 89 :(f7,) , 90 :(f5,) , 91 :(f7,) , 92 :(f10,) , 93 :(f1,) , 94 :(f3,) , 95 :(f2,) , 96 :(f2,) , 97 :(f8,) , 98 :(f10 ,) , 99 :(f1,) , 100 :(f6 ,) , 101 :(f10,) , 102 :(f1,) , 103 :(f12,) , 104 :(f5,) , 105 :(f4,) #, 106 :('',) , 107 :(f9,) , 108:(f6,) , 109 :(f12,) , 110 :(f8,) , 111 :(f4,) , 112 :(f1,) , 113 :(f2,) , 114 :(f7,) , 115 :(f5,) , 116 :(f5,) , 117 :(f11,) , 118 :(f3,) , 119 :(f4,) , 120 :(f11,) , 121 :(f11,) , 122 :(f2,) , 123 :(f10,) , 124 :(f11,) }
f1 = 'bully_and_attack_mode' f2 = 'happy_child_mode' f3 = 'punishing_parent_mode' f4 = 'vulnerable_child_mode' f5 = 'demanding_parent_mode' f6 = 'compliand_surrender_mode' f7 = 'self_aggrandizer_mode' f8 = 'impulsive_child_mode' f9 = 'undiscilined_child_mode' f10 = 'engraed_child_mode' f11 = 'healthyy_adult_mode' f12 = 'angry_child_mode' f13 = 'detached_protoctor_mode' f14 = 'detached_self_soother_mode' factors_names = (f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14) factors = {1: (f1,), 2: (f2,), 3: (f3,), 4: (f4,), 5: (f3,), 6: (f4,), 7: (f5,), 8: (f6,), 9: (f3,), 10: (f7,), 11: (f7,), 12: (f8,), 13: (f9,), 14: (f10,), 15: (f8,), 16: (f2, f3), 18: (f6,), 19: (f2,), 20: (f11,), 21: (f9,), 22: (f12,), 23: (f5,), 24: (f1,), 25: (f10,), 26: (f10,), 27: (f7,), 28: (f13,), 29: (f11,), 30: (f9,), 31: (f7,), 32: (f1,), 33: (f13,), 34: (f13,), 35: (f8,), 36: (f4,), 37: (f6,), 38: (f6,), 39: (f13,), 40: (f8,), 41: (f14,), 42: (f12,), 43: (f13,), 44: (f7,), 45: (f5,), 46: (f10,), 47: (f12,), 48: (f2,), 49: (f12,), 50: (f4,), 51: (f5,), 52: (f14,), 53: (f1,), 54: (f10,), 55: (f6,), 56: (f12,), 57: (f14,), 58: (f3,), 59: (f13,), 60: (f10,), 61: (f8, f2), 62: (f11,), 63: (f12,), 64: (f13,), 65: (f9,), 67: (f4,), 68: (f2,), 69: (f8,), 70: (f9,), 71: (f4,), 72: (f3,), 73: (f11,), 74: (f7,), 75: (f13,), 76: (f12,), 77: (f1,), 78: (f8,), 79: (f12,), 80: (f11,), 81: (f7,), 82: (f5,), 83: (f5,), 84: (f3,), 85: (f11,), 86: (f14,), 87: (f3,), 88: (f13,), 89: (f7,), 90: (f5,), 91: (f7,), 92: (f10,), 93: (f1,), 94: (f3,), 95: (f2,), 96: (f2,), 97: (f8,), 98: (f10,), 99: (f1,), 100: (f6,), 101: (f10,), 102: (f1,), 103: (f12,), 104: (f5,), 105: (f4,), 107: (f9,), 108: (f6,), 109: (f12,), 110: (f8,), 111: (f4,), 112: (f1,), 113: (f2,), 114: (f7,), 115: (f5,), 116: (f5,), 117: (f11,), 118: (f3,), 119: (f4,), 120: (f11,), 121: (f11,), 122: (f2,), 123: (f10,), 124: (f11,)}
# Copyright (c) 2012 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. { 'target_defaults': { 'variables': { 'chromium_code': 1, 'enable_wexit_time_destructors': 1, }, 'include_dirs': [ '<(DEPTH)', # To allow including "version.h" '<(SHARED_INTERMEDIATE_DIR)', ], 'defines' : [ 'COMPILE_CONTENT_STATICALLY', 'SECURITY_WIN32', 'STRICT', '_ATL_APARTMENT_THREADED', '_ATL_CSTRING_EXPLICIT_CONSTRUCTORS', '_ATL_NO_COM_SUPPORT', '_ATL_NO_AUTOMATIC_NAMESPACE', '_ATL_NO_EXCEPTIONS', ], }, 'targets': [ { # GN version: //cloud_print/service/win:cloud_print_service 'target_name': 'cloud_print_service', 'type': 'executable', 'sources': [ '<(SHARED_INTERMEDIATE_DIR)/cloud_print/cloud_print_service_exe_version.rc', 'cloud_print_service.cc', ], 'includes': [ 'service_resources.gypi' ], 'dependencies': [ '<(DEPTH)/cloud_print/cloud_print_resources.gyp:cloud_print_version_resources', '<(DEPTH)/cloud_print/service/service.gyp:cloud_print_service_lib', ], 'msvs_settings': { 'VCLinkerTool': { 'SubSystem': '1', # Set /SUBSYSTEM:CONSOLE 'UACExecutionLevel': '2', # /level='requireAdministrator' 'AdditionalDependencies': [ 'secur32.lib', ], }, }, }, { # GN version: //cloud_print/service/win:cloud_print_service_config 'target_name': 'cloud_print_service_config', 'type': 'executable', 'sources': [ '<(SHARED_INTERMEDIATE_DIR)/cloud_print/cloud_print_service_config_exe_version.rc', 'cloud_print_service_config.cc', ], 'includes': [ 'service_resources.gypi' ], 'dependencies': [ '<(DEPTH)/cloud_print/cloud_print_resources.gyp:cloud_print_version_resources', '<(DEPTH)/cloud_print/common/common.gyp:cloud_print_install_lib', '<(DEPTH)/cloud_print/service/service.gyp:cloud_print_service_lib', ], 'msvs_settings': { 'VCManifestTool': { 'AdditionalManifestFiles': [ 'common-controls.manifest', ], }, 'VCLinkerTool': { 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 'UACExecutionLevel': '2', # /level='requireAdministrator' 'AdditionalDependencies': [ 'secur32.lib', ], }, 'conditions': [ ['clang==1', { # TODO: Remove once cloud_print_service_config.cc no longer depends # on atlapp.h, http://crbug.com/5027 'VCCLCompilerTool': { 'AdditionalOptions': [ # atlapp.h contains a global "using namespace WTL;". '-Wno-header-hygiene', # atlgdi.h does an intentional assignment in an if conditional. '-Wno-parentheses', # atlgdi.h fails with -Wreorder enabled. '-Wno-reorder', # atlgdi.h doesn't use braces around subobject initializers. '-Wno-missing-braces', ], }, }], ], }, }, { # GN version: //cloud_print/service/win:cloud_print_service_setup 'target_name': 'cloud_print_service_setup', 'type': 'executable', 'sources': [ '<(SHARED_INTERMEDIATE_DIR)/cloud_print/cloud_print_service_setup_exe_version.rc', 'installer.cc', 'installer.h', ], 'includes': [ 'service_resources.gypi' ], 'dependencies': [ '<(DEPTH)/cloud_print/cloud_print_resources.gyp:cloud_print_version_resources', '<(DEPTH)/cloud_print/common/common.gyp:cloud_print_install_lib', '<(DEPTH)/cloud_print/service/service.gyp:cloud_print_service_lib', ], 'msvs_settings': { 'VCLinkerTool': { 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 'UACExecutionLevel': '2', # /level='requireAdministrator' 'AdditionalDependencies': [ 'secur32.lib', ], }, }, }, ], }
{'target_defaults': {'variables': {'chromium_code': 1, 'enable_wexit_time_destructors': 1}, 'include_dirs': ['<(DEPTH)', '<(SHARED_INTERMEDIATE_DIR)'], 'defines': ['COMPILE_CONTENT_STATICALLY', 'SECURITY_WIN32', 'STRICT', '_ATL_APARTMENT_THREADED', '_ATL_CSTRING_EXPLICIT_CONSTRUCTORS', '_ATL_NO_COM_SUPPORT', '_ATL_NO_AUTOMATIC_NAMESPACE', '_ATL_NO_EXCEPTIONS']}, 'targets': [{'target_name': 'cloud_print_service', 'type': 'executable', 'sources': ['<(SHARED_INTERMEDIATE_DIR)/cloud_print/cloud_print_service_exe_version.rc', 'cloud_print_service.cc'], 'includes': ['service_resources.gypi'], 'dependencies': ['<(DEPTH)/cloud_print/cloud_print_resources.gyp:cloud_print_version_resources', '<(DEPTH)/cloud_print/service/service.gyp:cloud_print_service_lib'], 'msvs_settings': {'VCLinkerTool': {'SubSystem': '1', 'UACExecutionLevel': '2', 'AdditionalDependencies': ['secur32.lib']}}}, {'target_name': 'cloud_print_service_config', 'type': 'executable', 'sources': ['<(SHARED_INTERMEDIATE_DIR)/cloud_print/cloud_print_service_config_exe_version.rc', 'cloud_print_service_config.cc'], 'includes': ['service_resources.gypi'], 'dependencies': ['<(DEPTH)/cloud_print/cloud_print_resources.gyp:cloud_print_version_resources', '<(DEPTH)/cloud_print/common/common.gyp:cloud_print_install_lib', '<(DEPTH)/cloud_print/service/service.gyp:cloud_print_service_lib'], 'msvs_settings': {'VCManifestTool': {'AdditionalManifestFiles': ['common-controls.manifest']}, 'VCLinkerTool': {'SubSystem': '2', 'UACExecutionLevel': '2', 'AdditionalDependencies': ['secur32.lib']}, 'conditions': [['clang==1', {'VCCLCompilerTool': {'AdditionalOptions': ['-Wno-header-hygiene', '-Wno-parentheses', '-Wno-reorder', '-Wno-missing-braces']}}]]}}, {'target_name': 'cloud_print_service_setup', 'type': 'executable', 'sources': ['<(SHARED_INTERMEDIATE_DIR)/cloud_print/cloud_print_service_setup_exe_version.rc', 'installer.cc', 'installer.h'], 'includes': ['service_resources.gypi'], 'dependencies': ['<(DEPTH)/cloud_print/cloud_print_resources.gyp:cloud_print_version_resources', '<(DEPTH)/cloud_print/common/common.gyp:cloud_print_install_lib', '<(DEPTH)/cloud_print/service/service.gyp:cloud_print_service_lib'], 'msvs_settings': {'VCLinkerTool': {'SubSystem': '2', 'UACExecutionLevel': '2', 'AdditionalDependencies': ['secur32.lib']}}}]}
'''all custom exceptions should go here''' class EmptyP2THDirectory(Exception): '''no transactions on this P2TH directory''' class P2THImportFailed(Exception): '''Importing of PeerAssets P2TH privkeys failed.''' class InvalidDeckIssueModeCombo(Exception): '''When verfiying deck issue_mode combinations.''' class UnsupportedNetwork(Exception): '''This network is not suppored by pypeerassets.''' class InvalidDeckSpawn(Exception): '''Invalid deck_spawn, deck is not properly tagged.''' class InvalidDeckMetainfo(Exception): '''Deck metainfo incomplete, deck must have a name.''' class InvalidDeckVersion(Exception): '''Deck version mistmatch.''' class InvalidDeckIssueMode(Exception): '''Deck Issue mode is wrong.''' class DeckP2THImportError(Exception): '''When Deck P2TH import goes wrong.''' class InvalidCardTransferP2TH(Exception): '''card_transfer does not pay to deck p2th in vout[0]''' class CardVersionMismatch(Exception): '''card_transfers version must match deck.version''' class CardNumberOfDecimalsMismatch(Exception): '''card_tranfer number of decimals does not match deck rules.''' class RecieverAmountMismatch(Exception): '''card_transfer list of recievers is not equal to list of amounts''' class InsufficientFunds(Exception): '''this address does not have enough assigned UTXOs''' class InvalidNulldataOutput(Exception): '''mallformed OP_RETURN transaction output.''' class InvalidVoutOrder(Exception): '''mallformed vout sequence''' class OverSizeOPReturn(Exception): '''op_return size is exceeding the maximum size allowed by this network.'''
"""all custom exceptions should go here""" class Emptyp2Thdirectory(Exception): """no transactions on this P2TH directory""" class P2Thimportfailed(Exception): """Importing of PeerAssets P2TH privkeys failed.""" class Invaliddeckissuemodecombo(Exception): """When verfiying deck issue_mode combinations.""" class Unsupportednetwork(Exception): """This network is not suppored by pypeerassets.""" class Invaliddeckspawn(Exception): """Invalid deck_spawn, deck is not properly tagged.""" class Invaliddeckmetainfo(Exception): """Deck metainfo incomplete, deck must have a name.""" class Invaliddeckversion(Exception): """Deck version mistmatch.""" class Invaliddeckissuemode(Exception): """Deck Issue mode is wrong.""" class Deckp2Thimporterror(Exception): """When Deck P2TH import goes wrong.""" class Invalidcardtransferp2Th(Exception): """card_transfer does not pay to deck p2th in vout[0]""" class Cardversionmismatch(Exception): """card_transfers version must match deck.version""" class Cardnumberofdecimalsmismatch(Exception): """card_tranfer number of decimals does not match deck rules.""" class Recieveramountmismatch(Exception): """card_transfer list of recievers is not equal to list of amounts""" class Insufficientfunds(Exception): """this address does not have enough assigned UTXOs""" class Invalidnulldataoutput(Exception): """mallformed OP_RETURN transaction output.""" class Invalidvoutorder(Exception): """mallformed vout sequence""" class Oversizeopreturn(Exception): """op_return size is exceeding the maximum size allowed by this network."""
class Sack: def __init__(self, wt, val): self.wt = wt self.val = val self.cost = val // wt def __lt__(self, other): return self.cost < other.cost def knapsack(wt, val, W): item = [] for i in range(len(wt)): item.append(Sack(wt[i], val[i])) item.sort(reverse=True) totalValue = 0 for i in range(len(item)): curWt = item[i].wt curVal = item[i].val if W - curWt >= 0: W -= curWt totalValue += curVal else: fraction = W / curWt totalValue += curVal * fraction W = int(W - (curWt * fraction)) break return totalValue def main(): wt = [10, 40, 20, 30] val = [60, 40, 100, 120] W = 50 print(knapsack(wt, val, W)) if __name__ == "__main__": main()
class Sack: def __init__(self, wt, val): self.wt = wt self.val = val self.cost = val // wt def __lt__(self, other): return self.cost < other.cost def knapsack(wt, val, W): item = [] for i in range(len(wt)): item.append(sack(wt[i], val[i])) item.sort(reverse=True) total_value = 0 for i in range(len(item)): cur_wt = item[i].wt cur_val = item[i].val if W - curWt >= 0: w -= curWt total_value += curVal else: fraction = W / curWt total_value += curVal * fraction w = int(W - curWt * fraction) break return totalValue def main(): wt = [10, 40, 20, 30] val = [60, 40, 100, 120] w = 50 print(knapsack(wt, val, W)) if __name__ == '__main__': main()
''' It is time now to piece together everything you have learned so far into a pipeline for classification! Your job in this exercise is to build a pipeline that includes scaling and hyperparameter tuning to classify wine quality. You'll return to using the SVM classifier you were briefly introduced to earlier in this chapter. The hyperparameters you will tune are C and gamma. C controls the regularization strength. It is analogous to the C you tuned for logistic regression in Chapter 3, while gamma controls the kernel coefficient: Do not worry about this now as it is beyond the scope of this course. The following modules and functions have been pre-loaded: Pipeline, SVC, train_test_split, GridSearchCV, classification_report, accuracy_score. The feature and target variable arrays X and y have also been pre-loaded. ''' # Setup the pipeline steps = [('scaler', StandardScaler()), ('SVM', SVC())] pipeline = Pipeline(steps) # Specify the hyperparameter space parameters = {'SVM__C':[1, 10, 100], 'SVM__gamma':[0.1, 0.01]} # Create train and test sets X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=21) # Instantiate the GridSearchCV object: cv cv = GridSearchCV(pipeline, parameters, cv=3) # Fit to the training set cv.fit(X_train, y_train) # Predict the labels of the test set: y_pred y_pred = cv.predict(X_test) # Compute and print metrics print("Accuracy: {}".format(cv.score(X_test, y_test))) print(classification_report(y_test, y_pred)) print("Tuned Model Parameters: {}".format(cv.best_params_))
""" It is time now to piece together everything you have learned so far into a pipeline for classification! Your job in this exercise is to build a pipeline that includes scaling and hyperparameter tuning to classify wine quality. You'll return to using the SVM classifier you were briefly introduced to earlier in this chapter. The hyperparameters you will tune are C and gamma. C controls the regularization strength. It is analogous to the C you tuned for logistic regression in Chapter 3, while gamma controls the kernel coefficient: Do not worry about this now as it is beyond the scope of this course. The following modules and functions have been pre-loaded: Pipeline, SVC, train_test_split, GridSearchCV, classification_report, accuracy_score. The feature and target variable arrays X and y have also been pre-loaded. """ steps = [('scaler', standard_scaler()), ('SVM', svc())] pipeline = pipeline(steps) parameters = {'SVM__C': [1, 10, 100], 'SVM__gamma': [0.1, 0.01]} (x_train, x_test, y_train, y_test) = train_test_split(X, y, test_size=0.2, random_state=21) cv = grid_search_cv(pipeline, parameters, cv=3) cv.fit(X_train, y_train) y_pred = cv.predict(X_test) print('Accuracy: {}'.format(cv.score(X_test, y_test))) print(classification_report(y_test, y_pred)) print('Tuned Model Parameters: {}'.format(cv.best_params_))
m: int; n: int m = int(input("Quantas linhas vai ter cada matriz? ")) n = int(input("Quantas colunas vai ter cada matriz? ")) a: [[int]] = [[0 for x in range(n)] for x in range(m)] b: [[int]] = [[0 for x in range(n)] for x in range(m)] c: [[int]] = [[0 for x in range(n)] for x in range(m)] print("Digite os valores da matriz A:") for i in range(m): for j in range(n): a[i][j] = int(input(f"Elemento [{i},{j}]: ")) print("Digite os valores da matriz B:") for i in range(m): for j in range(n): b[i][j] = int(input(f"Elemento [{i},{j}]: ")) for i in range(m): for j in range(n): c[i][j] = a[i][j] + b[i][j] print("MATRIZ SOMA:") for i in range(m): for j in range(n): print(f"{c[i][j]} ", end="") print()
m: int n: int m = int(input('Quantas linhas vai ter cada matriz? ')) n = int(input('Quantas colunas vai ter cada matriz? ')) a: [[int]] = [[0 for x in range(n)] for x in range(m)] b: [[int]] = [[0 for x in range(n)] for x in range(m)] c: [[int]] = [[0 for x in range(n)] for x in range(m)] print('Digite os valores da matriz A:') for i in range(m): for j in range(n): a[i][j] = int(input(f'Elemento [{i},{j}]: ')) print('Digite os valores da matriz B:') for i in range(m): for j in range(n): b[i][j] = int(input(f'Elemento [{i},{j}]: ')) for i in range(m): for j in range(n): c[i][j] = a[i][j] + b[i][j] print('MATRIZ SOMA:') for i in range(m): for j in range(n): print(f'{c[i][j]} ', end='') print()
objetivo = int(input('Escoge un numero: ')) epsilon = 0.0001 paso = epsilon**2 respuesta = 0.0 while abs(respuesta**2 - objetivo) >= epsilon and respuesta <= objetivo: print(abs(respuesta**2 - objetivo), respuesta) respuesta += paso if abs(respuesta**2 - objetivo) >= epsilon: print(f'No se encontro la raiz cuadrada {objetivo}') else: print(f'La raiz cudrada de {objetivo} es {respuesta}')
objetivo = int(input('Escoge un numero: ')) epsilon = 0.0001 paso = epsilon ** 2 respuesta = 0.0 while abs(respuesta ** 2 - objetivo) >= epsilon and respuesta <= objetivo: print(abs(respuesta ** 2 - objetivo), respuesta) respuesta += paso if abs(respuesta ** 2 - objetivo) >= epsilon: print(f'No se encontro la raiz cuadrada {objetivo}') else: print(f'La raiz cudrada de {objetivo} es {respuesta}')
# -*- coding: utf-8 -*- class ImdbScraperPipeline(object): def process_item(self, item, spider): return item
class Imdbscraperpipeline(object): def process_item(self, item, spider): return item
high_income = True low_income = False if high_income == True and low_income == False: print("u little bitch ") #above code is noob kind of code #bettter way if high_income and low_income: print("u little bitch") #high_income and low_income are already boolean so we don't need to compare it with == True and == False # age between 18 and 65 age = 45 if age > 10 and age <65: print("Eligible") #another way of same thing message = "Eligible" if age > 18 and age < 65 else "Not Eligible" print(message) if 18 <= age < 65 : print("Eligible") else : print("Not Eligible")
high_income = True low_income = False if high_income == True and low_income == False: print('u little bitch ') if high_income and low_income: print('u little bitch') age = 45 if age > 10 and age < 65: print('Eligible') message = 'Eligible' if age > 18 and age < 65 else 'Not Eligible' print(message) if 18 <= age < 65: print('Eligible') else: print('Not Eligible')
def print_artist(album): print(album['Artist_Name']) def change_list(list_from_user): list_from_user[2] = 5 def print_name(album): print(album["Album_Title"]) def make_album(name, title, numSongs=10): album = {'Artist_Name': name, 'Album_Title': title} if numSongs: album["Song_Count"] = numSongs return album def main(): albums = [] bsb = make_album("Back Street Boys","I want it that way") print_artist(bsb) print_name(bsb) num_track = [1,3,6,7] print(num_track) change_list(num_track) print(num_track) # bsb = { # Artist_Name: "Back Street Boys" # Album_Title: "I want it that way" # Song_count: 10 # } artist1 = "Joe" title1 = "Buck" albums.append(make_album(artist1,title1)) albums.append(make_album('Marylin Manson', 'Mechanical Animals')) albums.append(make_album('Less Than Jake', 'Borders and Boundaries', 12)) albums.append(make_album("N'Sync", 'No Strings Attached')) print(albums) main()
def print_artist(album): print(album['Artist_Name']) def change_list(list_from_user): list_from_user[2] = 5 def print_name(album): print(album['Album_Title']) def make_album(name, title, numSongs=10): album = {'Artist_Name': name, 'Album_Title': title} if numSongs: album['Song_Count'] = numSongs return album def main(): albums = [] bsb = make_album('Back Street Boys', 'I want it that way') print_artist(bsb) print_name(bsb) num_track = [1, 3, 6, 7] print(num_track) change_list(num_track) print(num_track) artist1 = 'Joe' title1 = 'Buck' albums.append(make_album(artist1, title1)) albums.append(make_album('Marylin Manson', 'Mechanical Animals')) albums.append(make_album('Less Than Jake', 'Borders and Boundaries', 12)) albums.append(make_album("N'Sync", 'No Strings Attached')) print(albums) main()
class Block: def __init__(self, block_id, alignment): self.id = block_id self.alignment = alignment self.toroot = self # parent in find-union tree self.shift = 0 # order relative to parent self.reorder_shift = 0 # modification caused by edges inserted within group self.orient = 1 # orientation relative to parent self.flanks = {-1: 0, 1: 0} # blocks in group with negative/positive order (only in root) def find(self): if self.toroot is self: return self else: root = self.toroot.find() # let's update atributes for flattened tree structure self.orient *= self.toroot.orient self.shift = self.shift*self.toroot.orient+self.toroot.shift self.reorder_shift *= self.toroot.orient self.toroot = root return root def orientation(self): self.find() return self.orient def order(self): self.find() return self.shift+self.reorder_shift def reorder(self, n): self.reorder_shift += n - self.order() def size(self): rootflanks = self.find().flanks return rootflanks[1]+rootflanks[-1]+1 def minimum(self): root = self.find() return -root.flanks[-1] def maximum(self): root = self.find() return root.flanks[1] def unionto(self, other, reverse, flank): # join self to other selfroot = self.find() otheroot = other.find() selfroot.orient = reverse selfroot.reorder_shift *= reverse selfroot.shift = flank*(otheroot.flanks[flank]+selfroot.flanks[-reverse*flank]+1) otheroot.flanks[flank] += selfroot.flanks[-1]+selfroot.flanks[1]+1 selfroot.toroot = otheroot del selfroot.flanks def orient_maf_block(self): # Modify alignment according to block orientation if self.orientation() == -1: for u in self.alignment: u.seq = u.seq.reverse_complement() u.annotations["strand"] *= -1 u.annotations["start"] = u.annotations["srcSize"] - u.annotations["size"] - u.annotations["start"]
class Block: def __init__(self, block_id, alignment): self.id = block_id self.alignment = alignment self.toroot = self self.shift = 0 self.reorder_shift = 0 self.orient = 1 self.flanks = {-1: 0, 1: 0} def find(self): if self.toroot is self: return self else: root = self.toroot.find() self.orient *= self.toroot.orient self.shift = self.shift * self.toroot.orient + self.toroot.shift self.reorder_shift *= self.toroot.orient self.toroot = root return root def orientation(self): self.find() return self.orient def order(self): self.find() return self.shift + self.reorder_shift def reorder(self, n): self.reorder_shift += n - self.order() def size(self): rootflanks = self.find().flanks return rootflanks[1] + rootflanks[-1] + 1 def minimum(self): root = self.find() return -root.flanks[-1] def maximum(self): root = self.find() return root.flanks[1] def unionto(self, other, reverse, flank): selfroot = self.find() otheroot = other.find() selfroot.orient = reverse selfroot.reorder_shift *= reverse selfroot.shift = flank * (otheroot.flanks[flank] + selfroot.flanks[-reverse * flank] + 1) otheroot.flanks[flank] += selfroot.flanks[-1] + selfroot.flanks[1] + 1 selfroot.toroot = otheroot del selfroot.flanks def orient_maf_block(self): if self.orientation() == -1: for u in self.alignment: u.seq = u.seq.reverse_complement() u.annotations['strand'] *= -1 u.annotations['start'] = u.annotations['srcSize'] - u.annotations['size'] - u.annotations['start']
result = [] for line in DATA.splitlines(): d, t, lvl, msg = line.strip().split(', ', maxsplit=3) d = date.fromisoformat(d) t = time.fromisoformat(t) dt = datetime.combine(d, t) result.append({'when': dt, 'level': lvl, 'message': msg})
result = [] for line in DATA.splitlines(): (d, t, lvl, msg) = line.strip().split(', ', maxsplit=3) d = date.fromisoformat(d) t = time.fromisoformat(t) dt = datetime.combine(d, t) result.append({'when': dt, 'level': lvl, 'message': msg})
#!/usr/bin/env python ##################################### # Installation module for ike-scan ##################################### # AUTHOR OF MODULE NAME AUTHOR="Jason Ashton (ninewires)" # DESCRIPTION OF THE MODULE DESCRIPTION="This module will install/update ike-scan - a command-line tool for discovering, fingerprinting and testing IPsec VPN systems" # INSTALL TYPE GIT, SVN, FILE DOWNLOAD # OPTIONS = GIT, SVN, FILE INSTALL_TYPE="GIT" # LOCATION OF THE FILE OR GIT/SVN REPOSITORY REPOSITORY_LOCATION="https://github.com/royhills/ike-scan.git" # WHERE DO YOU WANT TO INSTALL IT INSTALL_LOCATION="ike-scan" # DEPENDS FOR DEBIAN INSTALLS DEBIAN="git,gcc,make" # DEPENDS FOR FEDORA INSTALLS FEDORA="git,gcc,make" # DEPENDS FOR ARCHLINUX INSTALLS ARCHLINUX="git,gcc,make" # COMMANDS TO RUN AFTER AFTER_COMMANDS="cd {INSTALL_LOCATION}, autoreconf --install, ./configure --with-openssl, make, make install" # THIS WILL CREATE AN AUTOMATIC LAUNCHER FOR THE TOOL LAUNCHER="ike-scan"
author = 'Jason Ashton (ninewires)' description = 'This module will install/update ike-scan - a command-line tool for discovering, fingerprinting and testing IPsec VPN systems' install_type = 'GIT' repository_location = 'https://github.com/royhills/ike-scan.git' install_location = 'ike-scan' debian = 'git,gcc,make' fedora = 'git,gcc,make' archlinux = 'git,gcc,make' after_commands = 'cd {INSTALL_LOCATION}, autoreconf --install, ./configure --with-openssl, make, make install' launcher = 'ike-scan'
nr=int(input()) for i in range(1,nr+1): print("*"*i)
nr = int(input()) for i in range(1, nr + 1): print('*' * i)
# Copyright 2018 AT&T Intellectual Property. All other 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. # Subdags ALL_PREFLIGHT_CHECKS_DAG_NAME = 'preflight' ARMADA_BUILD_DAG_NAME = 'armada_build' DESTROY_SERVER_DAG_NAME = 'destroy_server' DRYDOCK_BUILD_DAG_NAME = 'drydock_build' VALIDATE_SITE_DESIGN_DAG_NAME = 'validate_site_design' RELABEL_NODES_DAG_NAME = 'relabel_nodes' # Steps ACTION_XCOM = 'action_xcom' ARMADA_TEST_RELEASES = 'armada_test_releases' CONCURRENCY_CHECK = 'dag_concurrency_check' CREATE_ACTION_TAG = 'create_action_tag' DECIDE_AIRFLOW_UPGRADE = 'decide_airflow_upgrade' DEPLOYMENT_CONFIGURATION = 'deployment_configuration' GET_RENDERED_DOC = 'get_rendered_doc' SKIP_UPGRADE_AIRFLOW = 'skip_upgrade_airflow' UPGRADE_AIRFLOW = 'upgrade_airflow' DESTROY_SERVER = 'destroy_nodes'
all_preflight_checks_dag_name = 'preflight' armada_build_dag_name = 'armada_build' destroy_server_dag_name = 'destroy_server' drydock_build_dag_name = 'drydock_build' validate_site_design_dag_name = 'validate_site_design' relabel_nodes_dag_name = 'relabel_nodes' action_xcom = 'action_xcom' armada_test_releases = 'armada_test_releases' concurrency_check = 'dag_concurrency_check' create_action_tag = 'create_action_tag' decide_airflow_upgrade = 'decide_airflow_upgrade' deployment_configuration = 'deployment_configuration' get_rendered_doc = 'get_rendered_doc' skip_upgrade_airflow = 'skip_upgrade_airflow' upgrade_airflow = 'upgrade_airflow' destroy_server = 'destroy_nodes'
name = 'geo5038801mod' apical_dendriteEnd = 79 total_user5 = 70 f = open(name + '.hoc','r') new_ls = '' for line in f: if 'user5[' in line and 'create' not in line and 'append' not in line: parts = line.split('user5[') #sdfs if '{user5[51] connect user5[52](0), 1}' in line: pass #asdas pass for i in range(len(parts)): if i in range(1,len(parts)): #asdas parts[i] num = int(parts[i][:parts[i].index(']')]) num = num + apical_dendriteEnd new_ls += 'apic[' + str(num) + ']' + parts[i][parts[i].index(']')+1:].replace('apical_dendrite','apic') else: new_ls += parts[i].replace('apical_dendrite','apic') elif 'create user5' in line: new_ls +='\n' elif 'user5al.append()' in line: new_ls +=' for i=' + str(apical_dendriteEnd) + ', ' + \ str(apical_dendriteEnd + total_user5-1) +' apic[i] user5al.append()\n' elif 'user5[i] all.append()' in line: new_ls +='\n' elif 'apical_dendrite[i] all.append()' in line: new_ls += ' for i=0, '+ str(apical_dendriteEnd + total_user5-1) +' apic[i] all.append()' elif 'apical_dendrite' in line and 'create' not in line: new_ls += line.replace('apical_dendrite','apic').replace('apical_dendrite','apic').replace('apical_dendrite','apic') elif 'create apical_dendrite' in line: parts = line.split('apical_dendrite[') new_ls += parts[0] + 'apic[' + str(apical_dendriteEnd+total_user5) + parts[1][parts[1].index(']'):] elif 'template' in line: new_ls += line.replace(name, name + 'Mod') else: new_ls += line f.close() f1 = open(name + 'Mod.hoc', 'w') f1.write(new_ls) f1.close()
name = 'geo5038801mod' apical_dendrite_end = 79 total_user5 = 70 f = open(name + '.hoc', 'r') new_ls = '' for line in f: if 'user5[' in line and 'create' not in line and ('append' not in line): parts = line.split('user5[') if '{user5[51] connect user5[52](0), 1}' in line: pass pass for i in range(len(parts)): if i in range(1, len(parts)): parts[i] num = int(parts[i][:parts[i].index(']')]) num = num + apical_dendriteEnd new_ls += 'apic[' + str(num) + ']' + parts[i][parts[i].index(']') + 1:].replace('apical_dendrite', 'apic') else: new_ls += parts[i].replace('apical_dendrite', 'apic') elif 'create user5' in line: new_ls += '\n' elif 'user5al.append()' in line: new_ls += ' for i=' + str(apical_dendriteEnd) + ', ' + str(apical_dendriteEnd + total_user5 - 1) + ' apic[i] user5al.append()\n' elif 'user5[i] all.append()' in line: new_ls += '\n' elif 'apical_dendrite[i] all.append()' in line: new_ls += ' for i=0, ' + str(apical_dendriteEnd + total_user5 - 1) + ' apic[i] all.append()' elif 'apical_dendrite' in line and 'create' not in line: new_ls += line.replace('apical_dendrite', 'apic').replace('apical_dendrite', 'apic').replace('apical_dendrite', 'apic') elif 'create apical_dendrite' in line: parts = line.split('apical_dendrite[') new_ls += parts[0] + 'apic[' + str(apical_dendriteEnd + total_user5) + parts[1][parts[1].index(']'):] elif 'template' in line: new_ls += line.replace(name, name + 'Mod') else: new_ls += line f.close() f1 = open(name + 'Mod.hoc', 'w') f1.write(new_ls) f1.close()
#!/usr/bin/env python command += maketx("../common/textures/mandrill.tif --wrap clamp -o mandrill.tx") command += testshade("-g 64 64 --center -od uint8 -o Cblack black.tif -o Cclamp clamp.tif -o Cperiodic periodic.tif -o Cmirror mirror.tif -o Cdefault default.tif test") outputs = [ "out.txt", "black.tif", "clamp.tif", "periodic.tif", "mirror.tif", "default.tif" ]
command += maketx('../common/textures/mandrill.tif --wrap clamp -o mandrill.tx') command += testshade('-g 64 64 --center -od uint8 -o Cblack black.tif -o Cclamp clamp.tif -o Cperiodic periodic.tif -o Cmirror mirror.tif -o Cdefault default.tif test') outputs = ['out.txt', 'black.tif', 'clamp.tif', 'periodic.tif', 'mirror.tif', 'default.tif']
# You are given two non-empty linked lists representing two non-negative integers. # The digits are stored in reverse order and each of their nodes contain a single digit. # Add the two numbers and return it as a linked list. # You may assume the two numbers do not contain any leading zero, except the number 0 itself. # Example: # Input: (2 -> 4 -> 3) + (5 -> 6 -> 4) # Output: 7 -> 0 -> 8 # Explanation: 342 + 465 = 807. class ListNode: def __init__(self, x): self.val = x self.next = None class Solution: def addTwoNumbers(self, l1: ListNode, l2: ListNode) -> ListNode: num1, num2 = 0, 0 i, j = 0, 0 while l1: num1 += l1.val * (10 ** i) i += 1 l1 = l1.next while l2: num2 += l2.val * (10 ** j) j += 1 l2 = l2.next num = num1 + num2 head = ListNode(num % 10) num = num // 10 cur = head while num != 0: cur.next = ListNode(num % 10) cur = cur.next num = num // 10 return head
class Listnode: def __init__(self, x): self.val = x self.next = None class Solution: def add_two_numbers(self, l1: ListNode, l2: ListNode) -> ListNode: (num1, num2) = (0, 0) (i, j) = (0, 0) while l1: num1 += l1.val * 10 ** i i += 1 l1 = l1.next while l2: num2 += l2.val * 10 ** j j += 1 l2 = l2.next num = num1 + num2 head = list_node(num % 10) num = num // 10 cur = head while num != 0: cur.next = list_node(num % 10) cur = cur.next num = num // 10 return head
source_data = 'day17/input.txt' with open(source_data, 'r') as f: input = [x.replace('\n', '') for x in f.readlines()] target = [[int(y) for y in x.split('=')[1].split('..')] for x in input[0].split(',')] x = target[0] y = target[1] options = {} testing_velocities = range(-200, 200) for x_test in testing_velocities: for y_test in testing_velocities: current_velocity = [x_test, y_test] current_location = [0, 0] max_y = 0 while current_location[1] >= y[0]: current_location = list(map(sum, zip(current_velocity, current_location))) current_velocity[0] = max(0, current_velocity[0] - 1) current_velocity[1] = current_velocity[1] - 1 max_y = max(max_y, current_location[1]) if (current_location[0] <= x[1]) and \ (current_location[0] >= x[0]) and \ (current_location[1] <= y[1]) and \ (current_location[1] >= y[0]): options[(x_test, y_test)] = max_y break max_x = max([x[0] for x in options.keys()]) max_y = max([x[1] for x in options.keys()]) print(len(options)) # > 394
source_data = 'day17/input.txt' with open(source_data, 'r') as f: input = [x.replace('\n', '') for x in f.readlines()] target = [[int(y) for y in x.split('=')[1].split('..')] for x in input[0].split(',')] x = target[0] y = target[1] options = {} testing_velocities = range(-200, 200) for x_test in testing_velocities: for y_test in testing_velocities: current_velocity = [x_test, y_test] current_location = [0, 0] max_y = 0 while current_location[1] >= y[0]: current_location = list(map(sum, zip(current_velocity, current_location))) current_velocity[0] = max(0, current_velocity[0] - 1) current_velocity[1] = current_velocity[1] - 1 max_y = max(max_y, current_location[1]) if current_location[0] <= x[1] and current_location[0] >= x[0] and (current_location[1] <= y[1]) and (current_location[1] >= y[0]): options[x_test, y_test] = max_y break max_x = max([x[0] for x in options.keys()]) max_y = max([x[1] for x in options.keys()]) print(len(options))
atributes = [ {"name":"color", "value":{'amarillo': 0, 'morado': 1, 'azul': 2, 'verde': 3, 'naranja': 4, 'rojo': 5}}, {"name":"size", "value":{'m': 2, 's': 1, 'xxl': 5, 'xs': 0, 'l': 3, 'xl': 4}}, {"name":"brand", "value":{'blue': 0, 'polo': 1, 'adidas': 2, 'zara': 3, 'nike': 4}}, {"name": "precio", "value": {2333: 0, 11000: 1, 4569: 2, 14000: 3, 4789: 4, 4444: 5, 8889: 6, 1540: 7, 4447: 8, 4558: 9, 9500: 10, 15000: 11, 10000: 12}} ] products = [ { "id": 1, "atrr": { "color": "amarillo", "size": "m", "brand": "blue", "precio": 2333 } }, { "id": 2, "atrr": { "color": "morado", "size": "m", "brand": "polo", "precio": 11000 } }, { "id": 3, "atrr": { "color": "azul", "size": "s", "brand": "adidas", "precio": 4569 } }, { "id": 4, "atrr": { "color": "verde", "size": "xxl", "brand": "blue", "precio": 14000 } }, { "id": 5, "atrr": { "color": "morado", "size": "xs", "brand": "zara", "precio": 4789 } }, { "id": 6, "atrr": { "color": "amarillo", "size": "xxl", "brand": "nike", "precio": 4789 } }, { "id": 7, "atrr": { "color": "morado", "size": "l", "brand": "blue", "precio": 4444 } }, { "id": 8, "atrr": { "color": "naranja", "size": "l", "brand": "adidas", "precio": 14000 } }, { "id": 9, "atrr": { "color": "amarillo", "size": "xs", "brand": "zara", "precio": 8889 } }, { "id": 10, "atrr": { "color": "verde", "size": "s", "brand": "zara", "precio": 4789 } }, { "id": 11, "atrr": { "color": "verde", "size": "s", "brand": "polo", "precio": 4444 } }, { "id": 12, "atrr": { "color": "amarillo", "size": "xs", "brand": "blue", "precio": 1540 } }, { "id": 13, "atrr": { "color": "rojo", "size": "xs", "brand": "nike", "precio": 4447 } }, { "id": 14, "atrr": { "color": "naranja", "size": "m", "brand": "adidas", "precio": 4558 } }, { "id": 15, "atrr": { "color": "morado", "size": "xs", "brand": "polo", "precio": 4447 } }, { "id": 16, "atrr": { "color": "rojo", "size": "xs", "brand": "blue", "precio": 4569 } }, { "id": 17, "atrr": { "color": "morado", "size": "xl", "brand": "blue", "precio": 4558 } }, { "id": 18, "atrr": { "color": "rojo", "size": "xl", "brand": "zara", "precio": 11000 } }, { "id": 19, "atrr": { "color": "verde", "size": "m", "brand": "adidas", "precio": 4789 } }, { "id": 20, "atrr": { "color": "azul", "size": "xs", "brand": "nike", "precio": 8889 } }, { "id": 21, "atrr": { "color": "azul", "size": "xl", "brand": "adidas", "precio": 1540 } }, { "id": 22, "atrr": { "color": "verde", "size": "m", "brand": "zara", "precio": 2333 } }, { "id": 23, "atrr": { "color": "morado", "size": "xs", "brand": "adidas", "precio": 8889 } }, { "id": 24, "atrr": { "color": "amarillo", "size": "m", "brand": "polo", "precio": 9500 } }, { "id": 25, "atrr": { "color": "naranja", "size": "l", "brand": "adidas", "precio": 1540 } }, { "id": 26, "atrr": { "color": "verde", "size": "xxl", "brand": "adidas", "precio": 15000 } }, { "id": 27, "atrr": { "color": "rojo", "size": "xs", "brand": "blue", "precio": 14000 } }, { "id": 28, "atrr": { "color": "morado", "size": "xs", "brand": "blue", "precio": 8889 } }, { "id": 29, "atrr": { "color": "rojo", "size": "xl", "brand": "adidas", "precio": 4447 } }, { "id": 30, "atrr": { "color": "amarillo", "size": "l", "brand": "adidas", "precio": 9500 } }, { "id": 31, "atrr": { "color": "verde", "size": "m", "brand": "blue", "precio": 4558 } }, { "id": 32, "atrr": { "color": "morado", "size": "xs", "brand": "nike", "precio": 4558 } }, { "id": 33, "atrr": { "color": "verde", "size": "xs", "brand": "blue", "precio": 4447 } }, { "id": 34, "atrr": { "color": "azul", "size": "xs", "brand": "polo", "precio": 1540 } }, { "id": 35, "atrr": { "color": "naranja", "size": "xl", "brand": "adidas", "precio": 2333 } }, { "id": 36, "atrr": { "color": "azul", "size": "xs", "brand": "polo", "precio": 4558 } }, { "id": 37, "atrr": { "color": "naranja", "size": "xl", "brand": "zara", "precio": 9500 } }, { "id": 38, "atrr": { "color": "rojo", "size": "s", "brand": "zara", "precio": 2333 } }, { "id": 39, "atrr": { "color": "naranja", "size": "xs", "brand": "polo", "precio": 11000 } }, { "id": 40, "atrr": { "color": "morado", "size": "s", "brand": "adidas", "precio": 2333 } }, { "id": 41, "atrr": { "color": "naranja", "size": "m", "brand": "blue", "precio": 4444 } }, { "id": 42, "atrr": { "color": "verde", "size": "s", "brand": "blue", "precio": 4558 } }, { "id": 43, "atrr": { "color": "naranja", "size": "l", "brand": "nike", "precio": 8889 } }, { "id": 44, "atrr": { "color": "rojo", "size": "xl", "brand": "zara", "precio": 11000 } }, { "id": 45, "atrr": { "color": "verde", "size": "xxl", "brand": "polo", "precio": 14000 } }, { "id": 46, "atrr": { "color": "rojo", "size": "l", "brand": "polo", "precio": 4789 } }, { "id": 47, "atrr": { "color": "verde", "size": "s", "brand": "nike", "precio": 2333 } }, { "id": 48, "atrr": { "color": "morado", "size": "xxl", "brand": "nike", "precio": 1540 } }, { "id": 49, "atrr": { "color": "amarillo", "size": "xxl", "brand": "polo", "precio": 10000 } }, { "id": 50, "atrr": { "color": "azul", "size": "s", "brand": "adidas", "precio": 4558 } }, { "id": 51, "atrr": { "color": "naranja", "size": "xs", "brand": "adidas", "precio": 4789 } }, { "id": 52, "atrr": { "color": "rojo", "size": "s", "brand": "polo", "precio": 4444 } }, { "id": 53, "atrr": { "color": "verde", "size": "xxl", "brand": "nike", "precio": 2333 } }, { "id": 54, "atrr": { "color": "morado", "size": "m", "brand": "nike", "precio": 8889 } }, { "id": 55, "atrr": { "color": "amarillo", "size": "s", "brand": "adidas", "precio": 9500 } }, { "id": 56, "atrr": { "color": "amarillo", "size": "xl", "brand": "adidas", "precio": 10000 } }, { "id": 57, "atrr": { "color": "naranja", "size": "xxl", "brand": "blue", "precio": 4569 } }, { "id": 58, "atrr": { "color": "verde", "size": "s", "brand": "zara", "precio": 4444 } }, { "id": 59, "atrr": { "color": "morado", "size": "xs", "brand": "nike", "precio": 10000 } }, { "id": 60, "atrr": { "color": "naranja", "size": "s", "brand": "blue", "precio": 2333 } }, { "id": 61, "atrr": { "color": "verde", "size": "xs", "brand": "zara", "precio": 2333 } }, { "id": 62, "atrr": { "color": "naranja", "size": "l", "brand": "blue", "precio": 10000 } }, { "id": 63, "atrr": { "color": "naranja", "size": "xs", "brand": "blue", "precio": 4569 } }, { "id": 64, "atrr": { "color": "naranja", "size": "xs", "brand": "nike", "precio": 10000 } }, { "id": 65, "atrr": { "color": "naranja", "size": "s", "brand": "polo", "precio": 4447 } }, { "id": 66, "atrr": { "color": "morado", "size": "s", "brand": "nike", "precio": 4789 } }, { "id": 67, "atrr": { "color": "verde", "size": "xl", "brand": "polo", "precio": 4447 } }, { "id": 68, "atrr": { "color": "naranja", "size": "m", "brand": "adidas", "precio": 15000 } }, { "id": 69, "atrr": { "color": "morado", "size": "xxl", "brand": "zara", "precio": 9500 } }, { "id": 70, "atrr": { "color": "verde", "size": "xs", "brand": "blue", "precio": 1540 } }, { "id": 71, "atrr": { "color": "amarillo", "size": "xl", "brand": "zara", "precio": 15000 } }, { "id": 72, "atrr": { "color": "naranja", "size": "xxl", "brand": "nike", "precio": 8889 } }, { "id": 73, "atrr": { "color": "naranja", "size": "m", "brand": "nike", "precio": 4444 } }, { "id": 74, "atrr": { "color": "morado", "size": "xs", "brand": "nike", "precio": 1540 } }, { "id": 75, "atrr": { "color": "rojo", "size": "xs", "brand": "polo", "precio": 15000 } }, { "id": 76, "atrr": { "color": "morado", "size": "xs", "brand": "adidas", "precio": 8889 } }, { "id": 77, "atrr": { "color": "naranja", "size": "l", "brand": "polo", "precio": 15000 } }, { "id": 78, "atrr": { "color": "morado", "size": "xl", "brand": "nike", "precio": 15000 } }, { "id": 79, "atrr": { "color": "verde", "size": "xs", "brand": "blue", "precio": 4558 } }, { "id": 80, "atrr": { "color": "amarillo", "size": "xl", "brand": "adidas", "precio": 1540 } }, { "id": 81, "atrr": { "color": "amarillo", "size": "xs", "brand": "blue", "precio": 4447 } }, { "id": 82, "atrr": { "color": "morado", "size": "l", "brand": "blue", "precio": 8889 } }, { "id": 83, "atrr": { "color": "naranja", "size": "xxl", "brand": "zara", "precio": 4789 } }, { "id": 84, "atrr": { "color": "azul", "size": "l", "brand": "adidas", "precio": 4447 } }, { "id": 85, "atrr": { "color": "verde", "size": "s", "brand": "zara", "precio": 15000 } }, { "id": 86, "atrr": { "color": "azul", "size": "m", "brand": "nike", "precio": 1540 } }, { "id": 87, "atrr": { "color": "verde", "size": "xs", "brand": "nike", "precio": 8889 } }, { "id": 88, "atrr": { "color": "morado", "size": "s", "brand": "zara", "precio": 10000 } }, { "id": 89, "atrr": { "color": "morado", "size": "xxl", "brand": "adidas", "precio": 8889 } }, { "id": 90, "atrr": { "color": "amarillo", "size": "xxl", "brand": "polo", "precio": 15000 } }, { "id": 91, "atrr": { "color": "rojo", "size": "xs", "brand": "zara", "precio": 8889 } }, { "id": 92, "atrr": { "color": "verde", "size": "s", "brand": "zara", "precio": 4447 } }, { "id": 93, "atrr": { "color": "rojo", "size": "xl", "brand": "adidas", "precio": 11000 } }, { "id": 94, "atrr": { "color": "verde", "size": "l", "brand": "zara", "precio": 11000 } }, { "id": 95, "atrr": { "color": "amarillo", "size": "xl", "brand": "adidas", "precio": 15000 } }, { "id": 96, "atrr": { "color": "amarillo", "size": "l", "brand": "nike", "precio": 4447 } }, { "id": 97, "atrr": { "color": "amarillo", "size": "l", "brand": "adidas", "precio": 4444 } }, { "id": 98, "atrr": { "color": "azul", "size": "s", "brand": "nike", "precio": 9500 } }, { "id": 99, "atrr": { "color": "morado", "size": "s", "brand": "polo", "precio": 8889 } }, { "id": 100, "atrr": { "color": "verde", "size": "l", "brand": "nike", "precio": 2333 } }, { "id": 101, "atrr": { "color": "azul", "size": "xs", "brand": "blue", "precio": 4789 } }, { "id": 102, "atrr": { "color": "morado", "size": "xxl", "brand": "adidas", "precio": 1540 } }, { "id": 103, "atrr": { "color": "amarillo", "size": "l", "brand": "nike", "precio": 15000 } }, { "id": 104, "atrr": { "color": "amarillo", "size": "xs", "brand": "polo", "precio": 4447 } }, { "id": 105, "atrr": { "color": "morado", "size": "xl", "brand": "zara", "precio": 4558 } }, { "id": 106, "atrr": { "color": "azul", "size": "s", "brand": "adidas", "precio": 4447 } }, { "id": 107, "atrr": { "color": "verde", "size": "s", "brand": "blue", "precio": 11000 } }, { "id": 108, "atrr": { "color": "amarillo", "size": "xs", "brand": "zara", "precio": 9500 } }, { "id": 109, "atrr": { "color": "naranja", "size": "m", "brand": "nike", "precio": 15000 } }, { "id": 110, "atrr": { "color": "naranja", "size": "s", "brand": "zara", "precio": 9500 } }, { "id": 111, "atrr": { "color": "morado", "size": "xxl", "brand": "nike", "precio": 8889 } }, { "id": 112, "atrr": { "color": "amarillo", "size": "xl", "brand": "adidas", "precio": 4447 } }, { "id": 113, "atrr": { "color": "verde", "size": "m", "brand": "nike", "precio": 14000 } }, { "id": 114, "atrr": { "color": "azul", "size": "xxl", "brand": "polo", "precio": 11000 } }, { "id": 115, "atrr": { "color": "morado", "size": "s", "brand": "blue", "precio": 2333 } }, { "id": 116, "atrr": { "color": "rojo", "size": "s", "brand": "adidas", "precio": 4789 } }, { "id": 117, "atrr": { "color": "azul", "size": "m", "brand": "adidas", "precio": 8889 } }, { "id": 118, "atrr": { "color": "azul", "size": "xxl", "brand": "zara", "precio": 4558 } }, { "id": 119, "atrr": { "color": "azul", "size": "xxl", "brand": "polo", "precio": 4789 } }, { "id": 120, "atrr": { "color": "verde", "size": "xs", "brand": "adidas", "precio": 4444 } }, { "id": 121, "atrr": { "color": "morado", "size": "s", "brand": "nike", "precio": 14000 } }, { "id": 122, "atrr": { "color": "naranja", "size": "xl", "brand": "zara", "precio": 9500 } }, { "id": 123, "atrr": { "color": "morado", "size": "xs", "brand": "adidas", "precio": 4444 } }, { "id": 124, "atrr": { "color": "amarillo", "size": "m", "brand": "polo", "precio": 4444 } }, { "id": 125, "atrr": { "color": "amarillo", "size": "l", "brand": "adidas", "precio": 14000 } }, { "id": 126, "atrr": { "color": "amarillo", "size": "s", "brand": "zara", "precio": 11000 } }, { "id": 127, "atrr": { "color": "naranja", "size": "xxl", "brand": "zara", "precio": 9500 } }, { "id": 128, "atrr": { "color": "amarillo", "size": "l", "brand": "polo", "precio": 9500 } }, { "id": 129, "atrr": { "color": "amarillo", "size": "xs", "brand": "blue", "precio": 15000 } }, { "id": 130, "atrr": { "color": "naranja", "size": "s", "brand": "adidas", "precio": 1540 } }, { "id": 131, "atrr": { "color": "rojo", "size": "m", "brand": "zara", "precio": 4569 } }, { "id": 132, "atrr": { "color": "rojo", "size": "xxl", "brand": "nike", "precio": 4444 } }, { "id": 133, "atrr": { "color": "rojo", "size": "s", "brand": "adidas", "precio": 1540 } }, { "id": 134, "atrr": { "color": "verde", "size": "xs", "brand": "polo", "precio": 9500 } }, { "id": 135, "atrr": { "color": "amarillo", "size": "xl", "brand": "zara", "precio": 8889 } }, { "id": 136, "atrr": { "color": "verde", "size": "l", "brand": "zara", "precio": 2333 } }, { "id": 137, "atrr": { "color": "rojo", "size": "s", "brand": "adidas", "precio": 4444 } }, { "id": 138, "atrr": { "color": "verde", "size": "s", "brand": "zara", "precio": 4789 } }, { "id": 139, "atrr": { "color": "rojo", "size": "s", "brand": "zara", "precio": 8889 } }, { "id": 140, "atrr": { "color": "rojo", "size": "s", "brand": "polo", "precio": 14000 } }, { "id": 141, "atrr": { "color": "azul", "size": "m", "brand": "nike", "precio": 4569 } }, { "id": 142, "atrr": { "color": "azul", "size": "m", "brand": "blue", "precio": 4569 } }, { "id": 143, "atrr": { "color": "naranja", "size": "xs", "brand": "adidas", "precio": 15000 } }, { "id": 144, "atrr": { "color": "verde", "size": "s", "brand": "polo", "precio": 15000 } }, { "id": 145, "atrr": { "color": "naranja", "size": "xxl", "brand": "polo", "precio": 8889 } }, { "id": 146, "atrr": { "color": "verde", "size": "xxl", "brand": "blue", "precio": 8889 } }, { "id": 147, "atrr": { "color": "rojo", "size": "xs", "brand": "zara", "precio": 4569 } }, { "id": 148, "atrr": { "color": "azul", "size": "xxl", "brand": "polo", "precio": 10000 } }, { "id": 149, "atrr": { "color": "naranja", "size": "xxl", "brand": "zara", "precio": 14000 } }, { "id": 150, "atrr": { "color": "verde", "size": "m", "brand": "polo", "precio": 10000 } }, { "id": 151, "atrr": { "color": "morado", "size": "m", "brand": "adidas", "precio": 11000 } }, { "id": 152, "atrr": { "color": "amarillo", "size": "xxl", "brand": "adidas", "precio": 4558 } }, { "id": 153, "atrr": { "color": "naranja", "size": "xxl", "brand": "polo", "precio": 8889 } }, { "id": 154, "atrr": { "color": "amarillo", "size": "xs", "brand": "blue", "precio": 14000 } }, { "id": 155, "atrr": { "color": "azul", "size": "l", "brand": "blue", "precio": 2333 } }, { "id": 156, "atrr": { "color": "amarillo", "size": "xs", "brand": "zara", "precio": 8889 } }, { "id": 157, "atrr": { "color": "verde", "size": "s", "brand": "adidas", "precio": 15000 } }, { "id": 158, "atrr": { "color": "naranja", "size": "xs", "brand": "nike", "precio": 11000 } }, { "id": 159, "atrr": { "color": "rojo", "size": "xs", "brand": "zara", "precio": 4789 } }, { "id": 160, "atrr": { "color": "morado", "size": "m", "brand": "blue", "precio": 4444 } }, { "id": 161, "atrr": { "color": "amarillo", "size": "s", "brand": "nike", "precio": 11000 } }, { "id": 162, "atrr": { "color": "verde", "size": "m", "brand": "nike", "precio": 14000 } }, { "id": 163, "atrr": { "color": "naranja", "size": "xl", "brand": "adidas", "precio": 2333 } }, { "id": 164, "atrr": { "color": "amarillo", "size": "m", "brand": "blue", "precio": 1540 } }, { "id": 165, "atrr": { "color": "verde", "size": "xxl", "brand": "nike", "precio": 4444 } }, { "id": 166, "atrr": { "color": "amarillo", "size": "xs", "brand": "zara", "precio": 4569 } }, { "id": 167, "atrr": { "color": "verde", "size": "xxl", "brand": "nike", "precio": 1540 } }, { "id": 168, "atrr": { "color": "morado", "size": "xs", "brand": "blue", "precio": 4444 } }, { "id": 169, "atrr": { "color": "morado", "size": "xs", "brand": "polo", "precio": 15000 } }, { "id": 170, "atrr": { "color": "azul", "size": "xl", "brand": "polo", "precio": 14000 } }, { "id": 171, "atrr": { "color": "amarillo", "size": "l", "brand": "blue", "precio": 1540 } }, { "id": 172, "atrr": { "color": "verde", "size": "s", "brand": "nike", "precio": 4558 } }, { "id": 173, "atrr": { "color": "naranja", "size": "m", "brand": "nike", "precio": 14000 } }, { "id": 174, "atrr": { "color": "naranja", "size": "l", "brand": "zara", "precio": 4447 } }, { "id": 175, "atrr": { "color": "azul", "size": "s", "brand": "zara", "precio": 4444 } }, { "id": 176, "atrr": { "color": "naranja", "size": "xs", "brand": "polo", "precio": 9500 } }, { "id": 177, "atrr": { "color": "morado", "size": "s", "brand": "blue", "precio": 8889 } }, { "id": 178, "atrr": { "color": "verde", "size": "xs", "brand": "adidas", "precio": 4558 } }, { "id": 179, "atrr": { "color": "verde", "size": "xxl", "brand": "adidas", "precio": 8889 } }, { "id": 180, "atrr": { "color": "azul", "size": "xxl", "brand": "adidas", "precio": 4569 } }, { "id": 181, "atrr": { "color": "verde", "size": "xl", "brand": "adidas", "precio": 10000 } }, { "id": 182, "atrr": { "color": "verde", "size": "xs", "brand": "zara", "precio": 4444 } }, { "id": 183, "atrr": { "color": "azul", "size": "l", "brand": "nike", "precio": 4789 } }, { "id": 184, "atrr": { "color": "verde", "size": "m", "brand": "polo", "precio": 2333 } }, { "id": 185, "atrr": { "color": "morado", "size": "xxl", "brand": "polo", "precio": 4789 } }, { "id": 186, "atrr": { "color": "amarillo", "size": "xl", "brand": "blue", "precio": 4558 } }, { "id": 187, "atrr": { "color": "naranja", "size": "xxl", "brand": "zara", "precio": 4447 } }, { "id": 188, "atrr": { "color": "azul", "size": "m", "brand": "zara", "precio": 9500 } }, { "id": 189, "atrr": { "color": "naranja", "size": "xs", "brand": "polo", "precio": 4569 } }, { "id": 190, "atrr": { "color": "amarillo", "size": "xl", "brand": "blue", "precio": 4447 } }, { "id": 191, "atrr": { "color": "azul", "size": "xxl", "brand": "nike", "precio": 11000 } }, { "id": 192, "atrr": { "color": "azul", "size": "xxl", "brand": "nike", "precio": 4447 } }, { "id": 193, "atrr": { "color": "amarillo", "size": "xxl", "brand": "polo", "precio": 15000 } }, { "id": 194, "atrr": { "color": "azul", "size": "xl", "brand": "polo", "precio": 9500 } }, { "id": 195, "atrr": { "color": "azul", "size": "xs", "brand": "blue", "precio": 4789 } }, { "id": 196, "atrr": { "color": "naranja", "size": "l", "brand": "zara", "precio": 4444 } }, { "id": 197, "atrr": { "color": "morado", "size": "xl", "brand": "zara", "precio": 4447 } }, { "id": 198, "atrr": { "color": "amarillo", "size": "xs", "brand": "blue", "precio": 4447 } }, { "id": 199, "atrr": { "color": "azul", "size": "xs", "brand": "adidas", "precio": 4789 } }, { "id": 200, "atrr": { "color": "azul", "size": "xs", "brand": "polo", "precio": 8889 } }, { "id": 201, "atrr": { "color": "naranja", "size": "xl", "brand": "blue", "precio": 8889 } }, { "id": 202, "atrr": { "color": "azul", "size": "m", "brand": "zara", "precio": 4569 } }, { "id": 203, "atrr": { "color": "rojo", "size": "xs", "brand": "zara", "precio": 4569 } }, { "id": 204, "atrr": { "color": "amarillo", "size": "m", "brand": "nike", "precio": 1540 } }, { "id": 205, "atrr": { "color": "naranja", "size": "xs", "brand": "nike", "precio": 2333 } }, { "id": 206, "atrr": { "color": "naranja", "size": "xxl", "brand": "adidas", "precio": 4789 } }, { "id": 207, "atrr": { "color": "azul", "size": "l", "brand": "zara", "precio": 10000 } }, { "id": 208, "atrr": { "color": "rojo", "size": "l", "brand": "zara", "precio": 1540 } }, { "id": 209, "atrr": { "color": "rojo", "size": "s", "brand": "zara", "precio": 14000 } }, { "id": 210, "atrr": { "color": "morado", "size": "xl", "brand": "adidas", "precio": 4447 } }, { "id": 211, "atrr": { "color": "amarillo", "size": "s", "brand": "zara", "precio": 4558 } }, { "id": 212, "atrr": { "color": "morado", "size": "xs", "brand": "adidas", "precio": 4789 } }, { "id": 213, "atrr": { "color": "amarillo", "size": "xs", "brand": "zara", "precio": 4444 } }, { "id": 214, "atrr": { "color": "rojo", "size": "xxl", "brand": "nike", "precio": 1540 } }, { "id": 215, "atrr": { "color": "morado", "size": "xxl", "brand": "polo", "precio": 15000 } }, { "id": 216, "atrr": { "color": "azul", "size": "xs", "brand": "adidas", "precio": 4447 } }, { "id": 217, "atrr": { "color": "rojo", "size": "xs", "brand": "polo", "precio": 11000 } }, { "id": 218, "atrr": { "color": "amarillo", "size": "m", "brand": "zara", "precio": 4558 } }, { "id": 219, "atrr": { "color": "amarillo", "size": "xxl", "brand": "nike", "precio": 4558 } }, { "id": 220, "atrr": { "color": "rojo", "size": "xxl", "brand": "blue", "precio": 1540 } }, { "id": 221, "atrr": { "color": "naranja", "size": "xs", "brand": "blue", "precio": 2333 } }, { "id": 222, "atrr": { "color": "amarillo", "size": "xs", "brand": "nike", "precio": 2333 } }, { "id": 223, "atrr": { "color": "verde", "size": "xl", "brand": "polo", "precio": 4558 } }, { "id": 224, "atrr": { "color": "verde", "size": "xs", "brand": "blue", "precio": 14000 } }, { "id": 225, "atrr": { "color": "verde", "size": "xs", "brand": "nike", "precio": 4444 } }, { "id": 226, "atrr": { "color": "verde", "size": "l", "brand": "polo", "precio": 4447 } }, { "id": 227, "atrr": { "color": "verde", "size": "l", "brand": "zara", "precio": 11000 } }, { "id": 228, "atrr": { "color": "azul", "size": "xl", "brand": "blue", "precio": 1540 } }, { "id": 229, "atrr": { "color": "azul", "size": "xs", "brand": "adidas", "precio": 1540 } }, { "id": 230, "atrr": { "color": "azul", "size": "m", "brand": "nike", "precio": 8889 } }, { "id": 231, "atrr": { "color": "naranja", "size": "xxl", "brand": "blue", "precio": 4789 } }, { "id": 232, "atrr": { "color": "naranja", "size": "xs", "brand": "nike", "precio": 4447 } }, { "id": 233, "atrr": { "color": "amarillo", "size": "s", "brand": "zara", "precio": 4447 } }, { "id": 234, "atrr": { "color": "naranja", "size": "m", "brand": "adidas", "precio": 1540 } }, { "id": 235, "atrr": { "color": "azul", "size": "s", "brand": "nike", "precio": 15000 } }, { "id": 236, "atrr": { "color": "naranja", "size": "l", "brand": "zara", "precio": 4569 } }, { "id": 237, "atrr": { "color": "azul", "size": "xs", "brand": "adidas", "precio": 4569 } }, { "id": 238, "atrr": { "color": "naranja", "size": "xl", "brand": "zara", "precio": 14000 } }, { "id": 239, "atrr": { "color": "amarillo", "size": "xs", "brand": "zara", "precio": 14000 } }, { "id": 240, "atrr": { "color": "azul", "size": "s", "brand": "zara", "precio": 4558 } }, { "id": 241, "atrr": { "color": "naranja", "size": "s", "brand": "adidas", "precio": 4569 } }, { "id": 242, "atrr": { "color": "naranja", "size": "xs", "brand": "adidas", "precio": 1540 } }, { "id": 243, "atrr": { "color": "amarillo", "size": "s", "brand": "polo", "precio": 14000 } }, { "id": 244, "atrr": { "color": "azul", "size": "xxl", "brand": "adidas", "precio": 1540 } }, { "id": 245, "atrr": { "color": "verde", "size": "xs", "brand": "polo", "precio": 8889 } }, { "id": 246, "atrr": { "color": "verde", "size": "xs", "brand": "polo", "precio": 8889 } }, { "id": 247, "atrr": { "color": "azul", "size": "xs", "brand": "blue", "precio": 4789 } }, { "id": 248, "atrr": { "color": "azul", "size": "l", "brand": "polo", "precio": 4789 } }, { "id": 249, "atrr": { "color": "naranja", "size": "xxl", "brand": "zara", "precio": 4789 } }, { "id": 250, "atrr": { "color": "rojo", "size": "l", "brand": "adidas", "precio": 4789 } }, { "id": 251, "atrr": { "color": "rojo", "size": "xs", "brand": "adidas", "precio": 4444 } }, { "id": 252, "atrr": { "color": "morado", "size": "m", "brand": "zara", "precio": 4444 } }, { "id": 253, "atrr": { "color": "azul", "size": "xs", "brand": "polo", "precio": 2333 } }, { "id": 254, "atrr": { "color": "morado", "size": "xs", "brand": "nike", "precio": 4447 } }, { "id": 255, "atrr": { "color": "amarillo", "size": "xs", "brand": "blue", "precio": 9500 } }, { "id": 256, "atrr": { "color": "morado", "size": "xl", "brand": "polo", "precio": 4447 } }, { "id": 257, "atrr": { "color": "rojo", "size": "s", "brand": "polo", "precio": 4444 } }, { "id": 258, "atrr": { "color": "azul", "size": "xl", "brand": "blue", "precio": 4569 } }, { "id": 259, "atrr": { "color": "azul", "size": "m", "brand": "blue", "precio": 14000 } }, { "id": 260, "atrr": { "color": "morado", "size": "xs", "brand": "polo", "precio": 10000 } }, { "id": 261, "atrr": { "color": "amarillo", "size": "xs", "brand": "polo", "precio": 2333 } }, { "id": 262, "atrr": { "color": "verde", "size": "s", "brand": "polo", "precio": 4447 } }, { "id": 263, "atrr": { "color": "rojo", "size": "xs", "brand": "blue", "precio": 4558 } }, { "id": 264, "atrr": { "color": "morado", "size": "xxl", "brand": "nike", "precio": 4789 } }, { "id": 265, "atrr": { "color": "azul", "size": "xl", "brand": "blue", "precio": 14000 } }, { "id": 266, "atrr": { "color": "rojo", "size": "xl", "brand": "polo", "precio": 4444 } }, { "id": 267, "atrr": { "color": "verde", "size": "xl", "brand": "zara", "precio": 2333 } }, { "id": 268, "atrr": { "color": "naranja", "size": "xs", "brand": "zara", "precio": 8889 } }, { "id": 269, "atrr": { "color": "rojo", "size": "xs", "brand": "blue", "precio": 8889 } }, { "id": 270, "atrr": { "color": "amarillo", "size": "xs", "brand": "adidas", "precio": 1540 } }, { "id": 271, "atrr": { "color": "verde", "size": "xxl", "brand": "adidas", "precio": 4447 } }, { "id": 272, "atrr": { "color": "morado", "size": "xl", "brand": "blue", "precio": 4447 } }, { "id": 273, "atrr": { "color": "morado", "size": "m", "brand": "zara", "precio": 4569 } }, { "id": 274, "atrr": { "color": "amarillo", "size": "xs", "brand": "zara", "precio": 4558 } }, { "id": 275, "atrr": { "color": "rojo", "size": "xl", "brand": "polo", "precio": 4447 } }, { "id": 276, "atrr": { "color": "morado", "size": "xxl", "brand": "nike", "precio": 15000 } }, { "id": 277, "atrr": { "color": "naranja", "size": "l", "brand": "nike", "precio": 4569 } }, { "id": 278, "atrr": { "color": "morado", "size": "xs", "brand": "nike", "precio": 11000 } }, { "id": 279, "atrr": { "color": "amarillo", "size": "xs", "brand": "polo", "precio": 4569 } }, { "id": 280, "atrr": { "color": "naranja", "size": "xl", "brand": "adidas", "precio": 4447 } }, { "id": 281, "atrr": { "color": "amarillo", "size": "s", "brand": "nike", "precio": 14000 } }, { "id": 282, "atrr": { "color": "azul", "size": "xxl", "brand": "polo", "precio": 4558 } }, { "id": 283, "atrr": { "color": "amarillo", "size": "xs", "brand": "zara", "precio": 9500 } }, { "id": 284, "atrr": { "color": "amarillo", "size": "xl", "brand": "adidas", "precio": 8889 } }, { "id": 285, "atrr": { "color": "naranja", "size": "xs", "brand": "adidas", "precio": 2333 } }, { "id": 286, "atrr": { "color": "naranja", "size": "s", "brand": "adidas", "precio": 4447 } }, { "id": 287, "atrr": { "color": "azul", "size": "xs", "brand": "zara", "precio": 9500 } }, { "id": 288, "atrr": { "color": "morado", "size": "xs", "brand": "nike", "precio": 14000 } }, { "id": 289, "atrr": { "color": "rojo", "size": "xl", "brand": "blue", "precio": 4447 } }, { "id": 290, "atrr": { "color": "morado", "size": "xxl", "brand": "adidas", "precio": 15000 } }, { "id": 291, "atrr": { "color": "azul", "size": "xs", "brand": "polo", "precio": 11000 } }, { "id": 292, "atrr": { "color": "naranja", "size": "xs", "brand": "blue", "precio": 11000 } }, { "id": 293, "atrr": { "color": "verde", "size": "xxl", "brand": "zara", "precio": 8889 } }, { "id": 294, "atrr": { "color": "amarillo", "size": "l", "brand": "polo", "precio": 1540 } }, { "id": 295, "atrr": { "color": "azul", "size": "xl", "brand": "nike", "precio": 1540 } }, { "id": 296, "atrr": { "color": "amarillo", "size": "m", "brand": "polo", "precio": 8889 } }, { "id": 297, "atrr": { "color": "verde", "size": "xs", "brand": "adidas", "precio": 11000 } }, { "id": 298, "atrr": { "color": "verde", "size": "xs", "brand": "adidas", "precio": 4569 } }, { "id": 299, "atrr": { "color": "verde", "size": "l", "brand": "blue", "precio": 8889 } }, { "id": 300, "atrr": { "color": "morado", "size": "xs", "brand": "blue", "precio": 11000 } }, { "id": 301, "atrr": { "color": "morado", "size": "xs", "brand": "nike", "precio": 4447 } }, { "id": 302, "atrr": { "color": "azul", "size": "xl", "brand": "nike", "precio": 4789 } }, { "id": 303, "atrr": { "color": "verde", "size": "xxl", "brand": "blue", "precio": 9500 } }, { "id": 304, "atrr": { "color": "naranja", "size": "xxl", "brand": "zara", "precio": 9500 } }, { "id": 305, "atrr": { "color": "morado", "size": "m", "brand": "zara", "precio": 4569 } }, { "id": 306, "atrr": { "color": "naranja", "size": "s", "brand": "polo", "precio": 4569 } }, { "id": 307, "atrr": { "color": "rojo", "size": "xxl", "brand": "polo", "precio": 4789 } }, { "id": 308, "atrr": { "color": "azul", "size": "xs", "brand": "zara", "precio": 10000 } }, { "id": 309, "atrr": { "color": "morado", "size": "xs", "brand": "polo", "precio": 8889 } }, { "id": 310, "atrr": { "color": "rojo", "size": "m", "brand": "zara", "precio": 4444 } }, { "id": 311, "atrr": { "color": "amarillo", "size": "l", "brand": "adidas", "precio": 11000 } }, { "id": 312, "atrr": { "color": "amarillo", "size": "xs", "brand": "polo", "precio": 4569 } }, { "id": 313, "atrr": { "color": "verde", "size": "xs", "brand": "blue", "precio": 10000 } }, { "id": 314, "atrr": { "color": "rojo", "size": "xl", "brand": "adidas", "precio": 11000 } }, { "id": 315, "atrr": { "color": "azul", "size": "xl", "brand": "zara", "precio": 11000 } }, { "id": 316, "atrr": { "color": "amarillo", "size": "xs", "brand": "zara", "precio": 15000 } }, { "id": 317, "atrr": { "color": "amarillo", "size": "l", "brand": "adidas", "precio": 8889 } }, { "id": 318, "atrr": { "color": "morado", "size": "m", "brand": "nike", "precio": 11000 } }, { "id": 319, "atrr": { "color": "amarillo", "size": "l", "brand": "nike", "precio": 4569 } }, { "id": 320, "atrr": { "color": "morado", "size": "xs", "brand": "nike", "precio": 2333 } }, { "id": 321, "atrr": { "color": "morado", "size": "xl", "brand": "zara", "precio": 4789 } }, { "id": 322, "atrr": { "color": "rojo", "size": "l", "brand": "nike", "precio": 4789 } }, { "id": 323, "atrr": { "color": "azul", "size": "xs", "brand": "polo", "precio": 10000 } }, { "id": 324, "atrr": { "color": "morado", "size": "s", "brand": "blue", "precio": 4447 } }, { "id": 325, "atrr": { "color": "rojo", "size": "xl", "brand": "adidas", "precio": 4447 } }, { "id": 326, "atrr": { "color": "verde", "size": "xs", "brand": "zara", "precio": 4569 } }, { "id": 327, "atrr": { "color": "azul", "size": "xxl", "brand": "adidas", "precio": 9500 } }, { "id": 328, "atrr": { "color": "naranja", "size": "xs", "brand": "zara", "precio": 14000 } }, { "id": 329, "atrr": { "color": "morado", "size": "xs", "brand": "adidas", "precio": 4569 } }, { "id": 330, "atrr": { "color": "morado", "size": "xxl", "brand": "polo", "precio": 4447 } }, { "id": 331, "atrr": { "color": "naranja", "size": "xs", "brand": "blue", "precio": 2333 } }, { "id": 332, "atrr": { "color": "amarillo", "size": "xl", "brand": "blue", "precio": 8889 } }, { "id": 333, "atrr": { "color": "verde", "size": "xl", "brand": "blue", "precio": 4444 } }, { "id": 334, "atrr": { "color": "rojo", "size": "xxl", "brand": "nike", "precio": 4447 } }, { "id": 335, "atrr": { "color": "naranja", "size": "l", "brand": "blue", "precio": 10000 } }, { "id": 336, "atrr": { "color": "rojo", "size": "xs", "brand": "blue", "precio": 10000 } }, { "id": 337, "atrr": { "color": "rojo", "size": "xs", "brand": "polo", "precio": 2333 } }, { "id": 338, "atrr": { "color": "rojo", "size": "xs", "brand": "polo", "precio": 1540 } }, { "id": 339, "atrr": { "color": "amarillo", "size": "xxl", "brand": "nike", "precio": 8889 } }, { "id": 340, "atrr": { "color": "amarillo", "size": "l", "brand": "blue", "precio": 11000 } }, { "id": 341, "atrr": { "color": "morado", "size": "l", "brand": "blue", "precio": 8889 } }, { "id": 342, "atrr": { "color": "azul", "size": "xl", "brand": "polo", "precio": 4447 } }, { "id": 343, "atrr": { "color": "morado", "size": "m", "brand": "polo", "precio": 15000 } }, { "id": 344, "atrr": { "color": "amarillo", "size": "xl", "brand": "nike", "precio": 9500 } }, { "id": 345, "atrr": { "color": "azul", "size": "xs", "brand": "polo", "precio": 4444 } }, { "id": 346, "atrr": { "color": "azul", "size": "xs", "brand": "adidas", "precio": 4558 } }, { "id": 347, "atrr": { "color": "morado", "size": "m", "brand": "adidas", "precio": 11000 } }, { "id": 348, "atrr": { "color": "azul", "size": "xl", "brand": "adidas", "precio": 4569 } }, { "id": 349, "atrr": { "color": "rojo", "size": "s", "brand": "blue", "precio": 1540 } }, { "id": 350, "atrr": { "color": "verde", "size": "xxl", "brand": "blue", "precio": 4789 } }, { "id": 351, "atrr": { "color": "verde", "size": "xs", "brand": "polo", "precio": 11000 } }, { "id": 352, "atrr": { "color": "azul", "size": "m", "brand": "polo", "precio": 4444 } }, { "id": 353, "atrr": { "color": "morado", "size": "xl", "brand": "nike", "precio": 4558 } }, { "id": 354, "atrr": { "color": "azul", "size": "s", "brand": "polo", "precio": 4569 } }, { "id": 355, "atrr": { "color": "azul", "size": "xs", "brand": "nike", "precio": 4558 } }, { "id": 356, "atrr": { "color": "amarillo", "size": "xl", "brand": "blue", "precio": 14000 } }, { "id": 357, "atrr": { "color": "naranja", "size": "s", "brand": "nike", "precio": 4789 } }, { "id": 358, "atrr": { "color": "morado", "size": "xs", "brand": "polo", "precio": 15000 } }, { "id": 359, "atrr": { "color": "amarillo", "size": "m", "brand": "blue", "precio": 8889 } }, { "id": 360, "atrr": { "color": "naranja", "size": "xs", "brand": "polo", "precio": 1540 } }, { "id": 361, "atrr": { "color": "azul", "size": "xs", "brand": "nike", "precio": 2333 } }, { "id": 362, "atrr": { "color": "azul", "size": "s", "brand": "nike", "precio": 11000 } }, { "id": 363, "atrr": { "color": "azul", "size": "xs", "brand": "zara", "precio": 1540 } }, { "id": 364, "atrr": { "color": "verde", "size": "l", "brand": "zara", "precio": 10000 } }, { "id": 365, "atrr": { "color": "amarillo", "size": "xs", "brand": "zara", "precio": 4444 } }, { "id": 366, "atrr": { "color": "morado", "size": "xxl", "brand": "zara", "precio": 1540 } }, { "id": 367, "atrr": { "color": "rojo", "size": "xs", "brand": "zara", "precio": 8889 } }, { "id": 368, "atrr": { "color": "naranja", "size": "l", "brand": "adidas", "precio": 4447 } }, { "id": 369, "atrr": { "color": "rojo", "size": "xs", "brand": "adidas", "precio": 1540 } }, { "id": 370, "atrr": { "color": "naranja", "size": "xl", "brand": "blue", "precio": 4569 } }, { "id": 371, "atrr": { "color": "verde", "size": "xl", "brand": "blue", "precio": 1540 } }, { "id": 372, "atrr": { "color": "rojo", "size": "xl", "brand": "zara", "precio": 1540 } }, { "id": 373, "atrr": { "color": "rojo", "size": "l", "brand": "zara", "precio": 4789 } }, { "id": 374, "atrr": { "color": "amarillo", "size": "xxl", "brand": "blue", "precio": 2333 } }, { "id": 375, "atrr": { "color": "verde", "size": "xs", "brand": "nike", "precio": 11000 } }, { "id": 376, "atrr": { "color": "morado", "size": "l", "brand": "adidas", "precio": 14000 } }, { "id": 377, "atrr": { "color": "azul", "size": "l", "brand": "adidas", "precio": 10000 } }, { "id": 378, "atrr": { "color": "azul", "size": "xs", "brand": "zara", "precio": 15000 } }, { "id": 379, "atrr": { "color": "morado", "size": "xs", "brand": "adidas", "precio": 9500 } }, { "id": 380, "atrr": { "color": "amarillo", "size": "xs", "brand": "adidas", "precio": 4569 } }, { "id": 381, "atrr": { "color": "naranja", "size": "xl", "brand": "blue", "precio": 14000 } }, { "id": 382, "atrr": { "color": "verde", "size": "xl", "brand": "zara", "precio": 4444 } }, { "id": 383, "atrr": { "color": "azul", "size": "m", "brand": "polo", "precio": 4447 } }, { "id": 384, "atrr": { "color": "morado", "size": "xl", "brand": "polo", "precio": 8889 } }, { "id": 385, "atrr": { "color": "morado", "size": "xs", "brand": "polo", "precio": 10000 } }, { "id": 386, "atrr": { "color": "verde", "size": "l", "brand": "nike", "precio": 4558 } }, { "id": 387, "atrr": { "color": "azul", "size": "s", "brand": "blue", "precio": 1540 } }, { "id": 388, "atrr": { "color": "rojo", "size": "l", "brand": "blue", "precio": 1540 } }, { "id": 389, "atrr": { "color": "morado", "size": "m", "brand": "adidas", "precio": 4789 } }, { "id": 390, "atrr": { "color": "amarillo", "size": "xs", "brand": "blue", "precio": 8889 } }, { "id": 391, "atrr": { "color": "amarillo", "size": "xs", "brand": "polo", "precio": 10000 } }, { "id": 392, "atrr": { "color": "verde", "size": "xs", "brand": "adidas", "precio": 8889 } }, { "id": 393, "atrr": { "color": "azul", "size": "l", "brand": "polo", "precio": 14000 } }, { "id": 394, "atrr": { "color": "azul", "size": "xs", "brand": "blue", "precio": 4447 } }, { "id": 395, "atrr": { "color": "azul", "size": "m", "brand": "zara", "precio": 8889 } }, { "id": 396, "atrr": { "color": "morado", "size": "s", "brand": "nike", "precio": 10000 } }, { "id": 397, "atrr": { "color": "azul", "size": "s", "brand": "polo", "precio": 9500 } }, { "id": 398, "atrr": { "color": "verde", "size": "xs", "brand": "polo", "precio": 14000 } }, { "id": 399, "atrr": { "color": "verde", "size": "xl", "brand": "adidas", "precio": 15000 } }, { "id": 400, "atrr": { "color": "azul", "size": "xs", "brand": "blue", "precio": 4558 } }, { "id": 401, "atrr": { "color": "morado", "size": "xxl", "brand": "adidas", "precio": 10000 } }, { "id": 402, "atrr": { "color": "amarillo", "size": "m", "brand": "polo", "precio": 11000 } }, { "id": 403, "atrr": { "color": "morado", "size": "xs", "brand": "nike", "precio": 2333 } }, { "id": 404, "atrr": { "color": "azul", "size": "xs", "brand": "blue", "precio": 11000 } }, { "id": 405, "atrr": { "color": "verde", "size": "m", "brand": "zara", "precio": 10000 } }, { "id": 406, "atrr": { "color": "azul", "size": "xs", "brand": "zara", "precio": 4789 } }, { "id": 407, "atrr": { "color": "azul", "size": "xs", "brand": "adidas", "precio": 4789 } }, { "id": 408, "atrr": { "color": "verde", "size": "s", "brand": "polo", "precio": 4558 } }, { "id": 409, "atrr": { "color": "naranja", "size": "m", "brand": "zara", "precio": 4569 } }, { "id": 410, "atrr": { "color": "amarillo", "size": "xxl", "brand": "adidas", "precio": 10000 } }, { "id": 411, "atrr": { "color": "naranja", "size": "m", "brand": "adidas", "precio": 8889 } }, { "id": 412, "atrr": { "color": "azul", "size": "l", "brand": "adidas", "precio": 4444 } }, { "id": 413, "atrr": { "color": "naranja", "size": "l", "brand": "polo", "precio": 4558 } }, { "id": 414, "atrr": { "color": "naranja", "size": "xs", "brand": "adidas", "precio": 11000 } }, { "id": 415, "atrr": { "color": "amarillo", "size": "m", "brand": "nike", "precio": 4558 } }, { "id": 416, "atrr": { "color": "rojo", "size": "l", "brand": "adidas", "precio": 2333 } }, { "id": 417, "atrr": { "color": "amarillo", "size": "xxl", "brand": "polo", "precio": 4789 } }, { "id": 418, "atrr": { "color": "morado", "size": "xs", "brand": "polo", "precio": 15000 } }, { "id": 419, "atrr": { "color": "azul", "size": "xl", "brand": "zara", "precio": 4447 } }, { "id": 420, "atrr": { "color": "verde", "size": "xxl", "brand": "adidas", "precio": 4569 } }, { "id": 421, "atrr": { "color": "verde", "size": "s", "brand": "polo", "precio": 15000 } }, { "id": 422, "atrr": { "color": "naranja", "size": "l", "brand": "nike", "precio": 4569 } }, { "id": 423, "atrr": { "color": "amarillo", "size": "xs", "brand": "zara", "precio": 4789 } }, { "id": 424, "atrr": { "color": "morado", "size": "m", "brand": "nike", "precio": 8889 } }, { "id": 425, "atrr": { "color": "amarillo", "size": "xl", "brand": "blue", "precio": 15000 } }, { "id": 426, "atrr": { "color": "rojo", "size": "m", "brand": "zara", "precio": 15000 } }, { "id": 427, "atrr": { "color": "rojo", "size": "xs", "brand": "adidas", "precio": 4558 } }, { "id": 428, "atrr": { "color": "naranja", "size": "xl", "brand": "blue", "precio": 9500 } }, { "id": 429, "atrr": { "color": "morado", "size": "xs", "brand": "polo", "precio": 4447 } }, { "id": 430, "atrr": { "color": "azul", "size": "m", "brand": "blue", "precio": 10000 } }, { "id": 431, "atrr": { "color": "naranja", "size": "xs", "brand": "adidas", "precio": 4789 } }, { "id": 432, "atrr": { "color": "morado", "size": "xxl", "brand": "polo", "precio": 2333 } }, { "id": 433, "atrr": { "color": "verde", "size": "xs", "brand": "zara", "precio": 4447 } }, { "id": 434, "atrr": { "color": "morado", "size": "xxl", "brand": "blue", "precio": 11000 } }, { "id": 435, "atrr": { "color": "azul", "size": "xxl", "brand": "nike", "precio": 4789 } }, { "id": 436, "atrr": { "color": "amarillo", "size": "xs", "brand": "polo", "precio": 4558 } }, { "id": 437, "atrr": { "color": "naranja", "size": "xs", "brand": "nike", "precio": 14000 } }, { "id": 438, "atrr": { "color": "morado", "size": "xl", "brand": "blue", "precio": 4444 } }, { "id": 439, "atrr": { "color": "morado", "size": "xxl", "brand": "adidas", "precio": 1540 } }, { "id": 440, "atrr": { "color": "verde", "size": "xs", "brand": "blue", "precio": 8889 } }, { "id": 441, "atrr": { "color": "verde", "size": "s", "brand": "polo", "precio": 14000 } }, { "id": 442, "atrr": { "color": "morado", "size": "l", "brand": "adidas", "precio": 11000 } }, { "id": 443, "atrr": { "color": "amarillo", "size": "xs", "brand": "nike", "precio": 4444 } }, { "id": 444, "atrr": { "color": "amarillo", "size": "xl", "brand": "zara", "precio": 4789 } }, { "id": 445, "atrr": { "color": "rojo", "size": "l", "brand": "blue", "precio": 4447 } }, { "id": 446, "atrr": { "color": "rojo", "size": "xl", "brand": "blue", "precio": 4569 } }, { "id": 447, "atrr": { "color": "verde", "size": "l", "brand": "blue", "precio": 11000 } }, { "id": 448, "atrr": { "color": "naranja", "size": "s", "brand": "adidas", "precio": 4447 } }, { "id": 449, "atrr": { "color": "azul", "size": "l", "brand": "adidas", "precio": 2333 } }, { "id": 450, "atrr": { "color": "rojo", "size": "xs", "brand": "blue", "precio": 4447 } }, { "id": 451, "atrr": { "color": "amarillo", "size": "xs", "brand": "adidas", "precio": 4447 } }, { "id": 452, "atrr": { "color": "rojo", "size": "s", "brand": "blue", "precio": 4447 } }, { "id": 453, "atrr": { "color": "amarillo", "size": "xl", "brand": "adidas", "precio": 10000 } }, { "id": 454, "atrr": { "color": "verde", "size": "xs", "brand": "adidas", "precio": 1540 } }, { "id": 455, "atrr": { "color": "naranja", "size": "xs", "brand": "nike", "precio": 4789 } }, { "id": 456, "atrr": { "color": "verde", "size": "s", "brand": "blue", "precio": 4789 } }, { "id": 457, "atrr": { "color": "rojo", "size": "xs", "brand": "blue", "precio": 4447 } }, { "id": 458, "atrr": { "color": "amarillo", "size": "xs", "brand": "blue", "precio": 4569 } }, { "id": 459, "atrr": { "color": "azul", "size": "l", "brand": "polo", "precio": 14000 } }, { "id": 460, "atrr": { "color": "naranja", "size": "xl", "brand": "zara", "precio": 4558 } }, { "id": 461, "atrr": { "color": "rojo", "size": "xs", "brand": "adidas", "precio": 11000 } }, { "id": 462, "atrr": { "color": "azul", "size": "s", "brand": "adidas", "precio": 10000 } }, { "id": 463, "atrr": { "color": "azul", "size": "xl", "brand": "blue", "precio": 2333 } }, { "id": 464, "atrr": { "color": "rojo", "size": "s", "brand": "polo", "precio": 4558 } }, { "id": 465, "atrr": { "color": "azul", "size": "xxl", "brand": "blue", "precio": 4558 } }, { "id": 466, "atrr": { "color": "naranja", "size": "xs", "brand": "zara", "precio": 4569 } }, { "id": 467, "atrr": { "color": "morado", "size": "xxl", "brand": "adidas", "precio": 8889 } }, { "id": 468, "atrr": { "color": "amarillo", "size": "m", "brand": "zara", "precio": 4569 } }, { "id": 469, "atrr": { "color": "morado", "size": "s", "brand": "blue", "precio": 10000 } }, { "id": 470, "atrr": { "color": "morado", "size": "xs", "brand": "adidas", "precio": 1540 } }, { "id": 471, "atrr": { "color": "azul", "size": "m", "brand": "polo", "precio": 1540 } }, { "id": 472, "atrr": { "color": "amarillo", "size": "xs", "brand": "zara", "precio": 14000 } }, { "id": 473, "atrr": { "color": "verde", "size": "s", "brand": "zara", "precio": 4444 } }, { "id": 474, "atrr": { "color": "verde", "size": "xs", "brand": "nike", "precio": 1540 } }, { "id": 475, "atrr": { "color": "verde", "size": "xl", "brand": "nike", "precio": 4447 } }, { "id": 476, "atrr": { "color": "naranja", "size": "xs", "brand": "blue", "precio": 4558 } }, { "id": 477, "atrr": { "color": "verde", "size": "xs", "brand": "adidas", "precio": 9500 } }, { "id": 478, "atrr": { "color": "azul", "size": "l", "brand": "nike", "precio": 10000 } }, { "id": 479, "atrr": { "color": "azul", "size": "l", "brand": "zara", "precio": 4569 } }, { "id": 480, "atrr": { "color": "azul", "size": "xs", "brand": "adidas", "precio": 10000 } }, { "id": 481, "atrr": { "color": "morado", "size": "xs", "brand": "polo", "precio": 4569 } }, { "id": 482, "atrr": { "color": "amarillo", "size": "m", "brand": "adidas", "precio": 8889 } }, { "id": 483, "atrr": { "color": "azul", "size": "xs", "brand": "polo", "precio": 4569 } }, { "id": 484, "atrr": { "color": "azul", "size": "xs", "brand": "adidas", "precio": 1540 } }, { "id": 485, "atrr": { "color": "rojo", "size": "xxl", "brand": "zara", "precio": 2333 } }, { "id": 486, "atrr": { "color": "azul", "size": "xs", "brand": "polo", "precio": 11000 } }, { "id": 487, "atrr": { "color": "morado", "size": "l", "brand": "blue", "precio": 8889 } }, { "id": 488, "atrr": { "color": "verde", "size": "s", "brand": "zara", "precio": 8889 } }, { "id": 489, "atrr": { "color": "naranja", "size": "xs", "brand": "blue", "precio": 4444 } }, { "id": 490, "atrr": { "color": "naranja", "size": "xs", "brand": "zara", "precio": 4789 } }, { "id": 491, "atrr": { "color": "morado", "size": "xxl", "brand": "polo", "precio": 4569 } }, { "id": 492, "atrr": { "color": "azul", "size": "xl", "brand": "blue", "precio": 9500 } }, { "id": 493, "atrr": { "color": "amarillo", "size": "xs", "brand": "adidas", "precio": 4569 } }, { "id": 494, "atrr": { "color": "rojo", "size": "m", "brand": "zara", "precio": 1540 } }, { "id": 495, "atrr": { "color": "amarillo", "size": "m", "brand": "zara", "precio": 8889 } }, { "id": 496, "atrr": { "color": "naranja", "size": "xxl", "brand": "blue", "precio": 4789 } }, { "id": 497, "atrr": { "color": "amarillo", "size": "xs", "brand": "polo", "precio": 4444 } }, { "id": 498, "atrr": { "color": "naranja", "size": "xl", "brand": "adidas", "precio": 4444 } }, { "id": 499, "atrr": { "color": "rojo", "size": "xs", "brand": "zara", "precio": 11000 } }, { "id": 500, "atrr": { "color": "azul", "size": "s", "brand": "zara", "precio": 14000 } }, { "id": 501, "atrr": { "color": "naranja", "size": "m", "brand": "adidas", "precio": 1540 } }, { "id": 502, "atrr": { "color": "rojo", "size": "s", "brand": "nike", "precio": 11000 } }, { "id": 503, "atrr": { "color": "verde", "size": "m", "brand": "blue", "precio": 9500 } }, { "id": 504, "atrr": { "color": "morado", "size": "xs", "brand": "adidas", "precio": 2333 } }, { "id": 505, "atrr": { "color": "azul", "size": "xxl", "brand": "polo", "precio": 4789 } }, { "id": 506, "atrr": { "color": "naranja", "size": "xs", "brand": "nike", "precio": 4558 } }, { "id": 507, "atrr": { "color": "azul", "size": "xxl", "brand": "polo", "precio": 4569 } }, { "id": 508, "atrr": { "color": "verde", "size": "xs", "brand": "zara", "precio": 4444 } }, { "id": 509, "atrr": { "color": "azul", "size": "s", "brand": "nike", "precio": 4569 } }, { "id": 510, "atrr": { "color": "rojo", "size": "s", "brand": "zara", "precio": 4569 } }, { "id": 511, "atrr": { "color": "amarillo", "size": "xs", "brand": "nike", "precio": 10000 } }, { "id": 512, "atrr": { "color": "rojo", "size": "xl", "brand": "blue", "precio": 10000 } }, { "id": 513, "atrr": { "color": "azul", "size": "xxl", "brand": "zara", "precio": 10000 } }, { "id": 514, "atrr": { "color": "azul", "size": "xxl", "brand": "polo", "precio": 14000 } }, { "id": 515, "atrr": { "color": "amarillo", "size": "xxl", "brand": "nike", "precio": 2333 } }, { "id": 516, "atrr": { "color": "verde", "size": "xl", "brand": "blue", "precio": 8889 } }, { "id": 517, "atrr": { "color": "rojo", "size": "l", "brand": "adidas", "precio": 14000 } }, { "id": 518, "atrr": { "color": "amarillo", "size": "m", "brand": "polo", "precio": 4444 } }, { "id": 519, "atrr": { "color": "naranja", "size": "xl", "brand": "polo", "precio": 14000 } }, { "id": 520, "atrr": { "color": "rojo", "size": "m", "brand": "zara", "precio": 2333 } }, { "id": 521, "atrr": { "color": "amarillo", "size": "l", "brand": "zara", "precio": 8889 } }, { "id": 522, "atrr": { "color": "rojo", "size": "xxl", "brand": "zara", "precio": 14000 } }, { "id": 523, "atrr": { "color": "morado", "size": "m", "brand": "zara", "precio": 4444 } }, { "id": 524, "atrr": { "color": "amarillo", "size": "xl", "brand": "blue", "precio": 1540 } }, { "id": 525, "atrr": { "color": "morado", "size": "xl", "brand": "nike", "precio": 11000 } }, { "id": 526, "atrr": { "color": "verde", "size": "m", "brand": "nike", "precio": 8889 } }, { "id": 527, "atrr": { "color": "morado", "size": "xxl", "brand": "polo", "precio": 11000 } }, { "id": 528, "atrr": { "color": "naranja", "size": "xs", "brand": "nike", "precio": 9500 } }, { "id": 529, "atrr": { "color": "naranja", "size": "s", "brand": "nike", "precio": 15000 } }, { "id": 530, "atrr": { "color": "verde", "size": "s", "brand": "blue", "precio": 9500 } }, { "id": 531, "atrr": { "color": "azul", "size": "l", "brand": "nike", "precio": 4789 } }, { "id": 532, "atrr": { "color": "azul", "size": "m", "brand": "adidas", "precio": 14000 } }, { "id": 533, "atrr": { "color": "amarillo", "size": "m", "brand": "nike", "precio": 1540 } }, { "id": 534, "atrr": { "color": "rojo", "size": "xs", "brand": "blue", "precio": 4558 } }, { "id": 535, "atrr": { "color": "rojo", "size": "xl", "brand": "polo", "precio": 11000 } }, { "id": 536, "atrr": { "color": "morado", "size": "xs", "brand": "zara", "precio": 4444 } }, { "id": 537, "atrr": { "color": "naranja", "size": "xs", "brand": "adidas", "precio": 4789 } }, { "id": 538, "atrr": { "color": "azul", "size": "xs", "brand": "blue", "precio": 9500 } }, { "id": 539, "atrr": { "color": "naranja", "size": "xxl", "brand": "adidas", "precio": 1540 } }, { "id": 540, "atrr": { "color": "amarillo", "size": "l", "brand": "nike", "precio": 10000 } }, { "id": 541, "atrr": { "color": "amarillo", "size": "xs", "brand": "adidas", "precio": 11000 } }, { "id": 542, "atrr": { "color": "rojo", "size": "xs", "brand": "adidas", "precio": 14000 } }, { "id": 543, "atrr": { "color": "amarillo", "size": "xs", "brand": "zara", "precio": 11000 } }, { "id": 544, "atrr": { "color": "morado", "size": "s", "brand": "blue", "precio": 4447 } }, { "id": 545, "atrr": { "color": "amarillo", "size": "xs", "brand": "blue", "precio": 4569 } }, { "id": 546, "atrr": { "color": "amarillo", "size": "xxl", "brand": "zara", "precio": 15000 } }, { "id": 547, "atrr": { "color": "verde", "size": "xs", "brand": "adidas", "precio": 4444 } }, { "id": 548, "atrr": { "color": "verde", "size": "xs", "brand": "polo", "precio": 9500 } }, { "id": 549, "atrr": { "color": "rojo", "size": "s", "brand": "blue", "precio": 11000 } }, { "id": 550, "atrr": { "color": "azul", "size": "s", "brand": "blue", "precio": 4789 } }, { "id": 551, "atrr": { "color": "verde", "size": "m", "brand": "adidas", "precio": 10000 } }, { "id": 552, "atrr": { "color": "azul", "size": "xs", "brand": "zara", "precio": 14000 } }, { "id": 553, "atrr": { "color": "naranja", "size": "xl", "brand": "zara", "precio": 8889 } }, { "id": 554, "atrr": { "color": "morado", "size": "s", "brand": "polo", "precio": 4789 } }, { "id": 555, "atrr": { "color": "azul", "size": "l", "brand": "adidas", "precio": 4569 } }, { "id": 556, "atrr": { "color": "amarillo", "size": "m", "brand": "zara", "precio": 15000 } }, { "id": 557, "atrr": { "color": "amarillo", "size": "xs", "brand": "blue", "precio": 15000 } }, { "id": 558, "atrr": { "color": "verde", "size": "l", "brand": "zara", "precio": 4569 } }, { "id": 559, "atrr": { "color": "verde", "size": "xxl", "brand": "zara", "precio": 14000 } }, { "id": 560, "atrr": { "color": "verde", "size": "xs", "brand": "blue", "precio": 9500 } }, { "id": 561, "atrr": { "color": "amarillo", "size": "xxl", "brand": "blue", "precio": 14000 } }, { "id": 562, "atrr": { "color": "azul", "size": "xs", "brand": "nike", "precio": 4789 } }, { "id": 563, "atrr": { "color": "verde", "size": "s", "brand": "zara", "precio": 4789 } }, { "id": 564, "atrr": { "color": "naranja", "size": "xxl", "brand": "polo", "precio": 14000 } }, { "id": 565, "atrr": { "color": "azul", "size": "s", "brand": "nike", "precio": 10000 } }, { "id": 566, "atrr": { "color": "rojo", "size": "xs", "brand": "blue", "precio": 4447 } }, { "id": 567, "atrr": { "color": "morado", "size": "l", "brand": "polo", "precio": 4558 } }, { "id": 568, "atrr": { "color": "morado", "size": "xxl", "brand": "blue", "precio": 8889 } }, { "id": 569, "atrr": { "color": "amarillo", "size": "s", "brand": "zara", "precio": 10000 } }, { "id": 570, "atrr": { "color": "amarillo", "size": "xs", "brand": "nike", "precio": 15000 } }, { "id": 571, "atrr": { "color": "amarillo", "size": "xl", "brand": "blue", "precio": 4569 } }, { "id": 572, "atrr": { "color": "verde", "size": "xl", "brand": "zara", "precio": 4569 } }, { "id": 573, "atrr": { "color": "naranja", "size": "xs", "brand": "adidas", "precio": 9500 } }, { "id": 574, "atrr": { "color": "rojo", "size": "xs", "brand": "adidas", "precio": 8889 } }, { "id": 575, "atrr": { "color": "azul", "size": "xxl", "brand": "blue", "precio": 11000 } }, { "id": 576, "atrr": { "color": "naranja", "size": "m", "brand": "blue", "precio": 4789 } }, { "id": 577, "atrr": { "color": "morado", "size": "s", "brand": "adidas", "precio": 1540 } }, { "id": 578, "atrr": { "color": "rojo", "size": "xxl", "brand": "nike", "precio": 15000 } }, { "id": 579, "atrr": { "color": "rojo", "size": "xl", "brand": "blue", "precio": 4444 } }, { "id": 580, "atrr": { "color": "amarillo", "size": "m", "brand": "zara", "precio": 15000 } }, { "id": 581, "atrr": { "color": "verde", "size": "xl", "brand": "polo", "precio": 4569 } }, { "id": 582, "atrr": { "color": "amarillo", "size": "xs", "brand": "nike", "precio": 11000 } }, { "id": 583, "atrr": { "color": "verde", "size": "xxl", "brand": "polo", "precio": 11000 } }, { "id": 584, "atrr": { "color": "azul", "size": "xxl", "brand": "nike", "precio": 10000 } }, { "id": 585, "atrr": { "color": "naranja", "size": "xl", "brand": "adidas", "precio": 4447 } }, { "id": 586, "atrr": { "color": "amarillo", "size": "xs", "brand": "zara", "precio": 4569 } }, { "id": 587, "atrr": { "color": "verde", "size": "xs", "brand": "adidas", "precio": 4558 } }, { "id": 588, "atrr": { "color": "morado", "size": "xxl", "brand": "nike", "precio": 15000 } }, { "id": 589, "atrr": { "color": "morado", "size": "s", "brand": "nike", "precio": 4569 } }, { "id": 590, "atrr": { "color": "morado", "size": "xs", "brand": "polo", "precio": 2333 } }, { "id": 591, "atrr": { "color": "verde", "size": "l", "brand": "zara", "precio": 4789 } }, { "id": 592, "atrr": { "color": "morado", "size": "xxl", "brand": "adidas", "precio": 4789 } }, { "id": 593, "atrr": { "color": "naranja", "size": "s", "brand": "zara", "precio": 4569 } }, { "id": 594, "atrr": { "color": "verde", "size": "m", "brand": "blue", "precio": 4444 } }, { "id": 595, "atrr": { "color": "amarillo", "size": "m", "brand": "zara", "precio": 8889 } }, { "id": 596, "atrr": { "color": "amarillo", "size": "xxl", "brand": "nike", "precio": 2333 } }, { "id": 597, "atrr": { "color": "azul", "size": "xl", "brand": "polo", "precio": 4447 } }, { "id": 598, "atrr": { "color": "amarillo", "size": "xl", "brand": "zara", "precio": 4444 } }, { "id": 599, "atrr": { "color": "naranja", "size": "l", "brand": "nike", "precio": 4558 } }, { "id": 600, "atrr": { "color": "azul", "size": "l", "brand": "blue", "precio": 4447 } }, { "id": 601, "atrr": { "color": "rojo", "size": "xs", "brand": "nike", "precio": 4569 } }, { "id": 602, "atrr": { "color": "verde", "size": "xs", "brand": "adidas", "precio": 14000 } }, { "id": 603, "atrr": { "color": "naranja", "size": "m", "brand": "nike", "precio": 2333 } }, { "id": 604, "atrr": { "color": "amarillo", "size": "s", "brand": "zara", "precio": 15000 } }, { "id": 605, "atrr": { "color": "amarillo", "size": "xs", "brand": "polo", "precio": 10000 } }, { "id": 606, "atrr": { "color": "amarillo", "size": "xs", "brand": "adidas", "precio": 14000 } }, { "id": 607, "atrr": { "color": "naranja", "size": "xs", "brand": "nike", "precio": 15000 } }, { "id": 608, "atrr": { "color": "morado", "size": "l", "brand": "nike", "precio": 4447 } }, { "id": 609, "atrr": { "color": "azul", "size": "l", "brand": "nike", "precio": 11000 } }, { "id": 610, "atrr": { "color": "verde", "size": "xl", "brand": "nike", "precio": 10000 } }, { "id": 611, "atrr": { "color": "verde", "size": "xl", "brand": "adidas", "precio": 8889 } }, { "id": 612, "atrr": { "color": "azul", "size": "s", "brand": "nike", "precio": 4558 } }, { "id": 613, "atrr": { "color": "rojo", "size": "xl", "brand": "blue", "precio": 8889 } }, { "id": 614, "atrr": { "color": "azul", "size": "m", "brand": "polo", "precio": 2333 } }, { "id": 615, "atrr": { "color": "verde", "size": "l", "brand": "blue", "precio": 4558 } }, { "id": 616, "atrr": { "color": "morado", "size": "xs", "brand": "nike", "precio": 15000 } }, { "id": 617, "atrr": { "color": "rojo", "size": "s", "brand": "zara", "precio": 4569 } }, { "id": 618, "atrr": { "color": "amarillo", "size": "xxl", "brand": "zara", "precio": 9500 } }, { "id": 619, "atrr": { "color": "rojo", "size": "xs", "brand": "nike", "precio": 8889 } }, { "id": 620, "atrr": { "color": "azul", "size": "xs", "brand": "adidas", "precio": 9500 } }, { "id": 621, "atrr": { "color": "amarillo", "size": "xxl", "brand": "nike", "precio": 4569 } }, { "id": 622, "atrr": { "color": "verde", "size": "xl", "brand": "zara", "precio": 4569 } }, { "id": 623, "atrr": { "color": "verde", "size": "xl", "brand": "zara", "precio": 4569 } }, { "id": 624, "atrr": { "color": "verde", "size": "xxl", "brand": "zara", "precio": 4444 } }, { "id": 625, "atrr": { "color": "azul", "size": "l", "brand": "zara", "precio": 15000 } }, { "id": 626, "atrr": { "color": "verde", "size": "s", "brand": "zara", "precio": 4569 } }, { "id": 627, "atrr": { "color": "rojo", "size": "xl", "brand": "blue", "precio": 11000 } }, { "id": 628, "atrr": { "color": "amarillo", "size": "xs", "brand": "blue", "precio": 9500 } }, { "id": 629, "atrr": { "color": "verde", "size": "xl", "brand": "adidas", "precio": 11000 } }, { "id": 630, "atrr": { "color": "naranja", "size": "xxl", "brand": "adidas", "precio": 10000 } }, { "id": 631, "atrr": { "color": "verde", "size": "xs", "brand": "blue", "precio": 4447 } }, { "id": 632, "atrr": { "color": "naranja", "size": "xl", "brand": "nike", "precio": 4569 } }, { "id": 633, "atrr": { "color": "verde", "size": "l", "brand": "zara", "precio": 4447 } }, { "id": 634, "atrr": { "color": "verde", "size": "xxl", "brand": "blue", "precio": 4444 } }, { "id": 635, "atrr": { "color": "morado", "size": "xs", "brand": "polo", "precio": 4558 } }, { "id": 636, "atrr": { "color": "azul", "size": "xs", "brand": "zara", "precio": 14000 } }, { "id": 637, "atrr": { "color": "naranja", "size": "xs", "brand": "nike", "precio": 9500 } }, { "id": 638, "atrr": { "color": "naranja", "size": "l", "brand": "adidas", "precio": 4444 } }, { "id": 639, "atrr": { "color": "naranja", "size": "xs", "brand": "zara", "precio": 9500 } }, { "id": 640, "atrr": { "color": "verde", "size": "m", "brand": "polo", "precio": 4444 } }, { "id": 641, "atrr": { "color": "rojo", "size": "m", "brand": "adidas", "precio": 4444 } }, { "id": 642, "atrr": { "color": "azul", "size": "m", "brand": "zara", "precio": 8889 } }, { "id": 643, "atrr": { "color": "azul", "size": "m", "brand": "blue", "precio": 1540 } }, { "id": 644, "atrr": { "color": "rojo", "size": "l", "brand": "nike", "precio": 15000 } }, { "id": 645, "atrr": { "color": "naranja", "size": "m", "brand": "blue", "precio": 14000 } }, { "id": 646, "atrr": { "color": "verde", "size": "m", "brand": "zara", "precio": 14000 } }, { "id": 647, "atrr": { "color": "morado", "size": "xxl", "brand": "polo", "precio": 4558 } }, { "id": 648, "atrr": { "color": "amarillo", "size": "xs", "brand": "blue", "precio": 4444 } }, { "id": 649, "atrr": { "color": "verde", "size": "xl", "brand": "adidas", "precio": 4444 } }, { "id": 650, "atrr": { "color": "rojo", "size": "xxl", "brand": "zara", "precio": 9500 } }, { "id": 651, "atrr": { "color": "verde", "size": "xxl", "brand": "polo", "precio": 9500 } }, { "id": 652, "atrr": { "color": "morado", "size": "m", "brand": "polo", "precio": 4569 } }, { "id": 653, "atrr": { "color": "naranja", "size": "xs", "brand": "nike", "precio": 4444 } }, { "id": 654, "atrr": { "color": "azul", "size": "m", "brand": "polo", "precio": 8889 } }, { "id": 655, "atrr": { "color": "azul", "size": "xs", "brand": "adidas", "precio": 4447 } }, { "id": 656, "atrr": { "color": "azul", "size": "xs", "brand": "polo", "precio": 2333 } }, { "id": 657, "atrr": { "color": "morado", "size": "l", "brand": "blue", "precio": 14000 } }, { "id": 658, "atrr": { "color": "morado", "size": "xl", "brand": "zara", "precio": 4789 } }, { "id": 659, "atrr": { "color": "morado", "size": "m", "brand": "zara", "precio": 4447 } }, { "id": 660, "atrr": { "color": "rojo", "size": "xl", "brand": "polo", "precio": 10000 } }, { "id": 661, "atrr": { "color": "naranja", "size": "m", "brand": "nike", "precio": 15000 } }, { "id": 662, "atrr": { "color": "rojo", "size": "m", "brand": "nike", "precio": 11000 } }, { "id": 663, "atrr": { "color": "morado", "size": "xl", "brand": "blue", "precio": 1540 } }, { "id": 664, "atrr": { "color": "naranja", "size": "l", "brand": "adidas", "precio": 2333 } }, { "id": 665, "atrr": { "color": "amarillo", "size": "xs", "brand": "zara", "precio": 4789 } }, { "id": 666, "atrr": { "color": "rojo", "size": "l", "brand": "blue", "precio": 4447 } }, { "id": 667, "atrr": { "color": "azul", "size": "xs", "brand": "blue", "precio": 4447 } }, { "id": 668, "atrr": { "color": "amarillo", "size": "l", "brand": "blue", "precio": 15000 } }, { "id": 669, "atrr": { "color": "azul", "size": "xs", "brand": "adidas", "precio": 4444 } }, { "id": 670, "atrr": { "color": "morado", "size": "m", "brand": "blue", "precio": 4444 } }, { "id": 671, "atrr": { "color": "azul", "size": "l", "brand": "nike", "precio": 15000 } }, { "id": 672, "atrr": { "color": "amarillo", "size": "xs", "brand": "blue", "precio": 9500 } }, { "id": 673, "atrr": { "color": "morado", "size": "xs", "brand": "adidas", "precio": 4569 } }, { "id": 674, "atrr": { "color": "rojo", "size": "xxl", "brand": "zara", "precio": 2333 } }, { "id": 675, "atrr": { "color": "rojo", "size": "s", "brand": "polo", "precio": 1540 } }, { "id": 676, "atrr": { "color": "amarillo", "size": "xl", "brand": "zara", "precio": 11000 } }, { "id": 677, "atrr": { "color": "rojo", "size": "xl", "brand": "blue", "precio": 9500 } }, { "id": 678, "atrr": { "color": "morado", "size": "xxl", "brand": "zara", "precio": 4447 } }, { "id": 679, "atrr": { "color": "verde", "size": "xl", "brand": "zara", "precio": 4569 } }, { "id": 680, "atrr": { "color": "verde", "size": "l", "brand": "blue", "precio": 4558 } }, { "id": 681, "atrr": { "color": "azul", "size": "l", "brand": "nike", "precio": 4447 } }, { "id": 682, "atrr": { "color": "naranja", "size": "s", "brand": "adidas", "precio": 4558 } }, { "id": 683, "atrr": { "color": "amarillo", "size": "xs", "brand": "polo", "precio": 4444 } }, { "id": 684, "atrr": { "color": "naranja", "size": "l", "brand": "zara", "precio": 14000 } }, { "id": 685, "atrr": { "color": "amarillo", "size": "xs", "brand": "nike", "precio": 9500 } }, { "id": 686, "atrr": { "color": "verde", "size": "xl", "brand": "zara", "precio": 15000 } }, { "id": 687, "atrr": { "color": "morado", "size": "xxl", "brand": "nike", "precio": 8889 } }, { "id": 688, "atrr": { "color": "morado", "size": "xs", "brand": "polo", "precio": 4558 } }, { "id": 689, "atrr": { "color": "rojo", "size": "s", "brand": "zara", "precio": 1540 } }, { "id": 690, "atrr": { "color": "amarillo", "size": "xs", "brand": "blue", "precio": 10000 } }, { "id": 691, "atrr": { "color": "amarillo", "size": "xl", "brand": "nike", "precio": 4569 } }, { "id": 692, "atrr": { "color": "amarillo", "size": "xs", "brand": "adidas", "precio": 8889 } }, { "id": 693, "atrr": { "color": "morado", "size": "xl", "brand": "polo", "precio": 4789 } }, { "id": 694, "atrr": { "color": "naranja", "size": "m", "brand": "blue", "precio": 9500 } }, { "id": 695, "atrr": { "color": "verde", "size": "xxl", "brand": "polo", "precio": 4558 } }, { "id": 696, "atrr": { "color": "naranja", "size": "m", "brand": "blue", "precio": 15000 } }, { "id": 697, "atrr": { "color": "morado", "size": "xs", "brand": "polo", "precio": 9500 } }, { "id": 698, "atrr": { "color": "verde", "size": "xl", "brand": "blue", "precio": 1540 } }, { "id": 699, "atrr": { "color": "azul", "size": "l", "brand": "polo", "precio": 4569 } }, { "id": 700, "atrr": { "color": "amarillo", "size": "m", "brand": "nike", "precio": 4789 } }, { "id": 701, "atrr": { "color": "verde", "size": "xs", "brand": "nike", "precio": 10000 } }, { "id": 702, "atrr": { "color": "morado", "size": "xxl", "brand": "polo", "precio": 4789 } }, { "id": 703, "atrr": { "color": "naranja", "size": "l", "brand": "zara", "precio": 15000 } }, { "id": 704, "atrr": { "color": "verde", "size": "xs", "brand": "adidas", "precio": 15000 } }, { "id": 705, "atrr": { "color": "rojo", "size": "xs", "brand": "adidas", "precio": 11000 } }, { "id": 706, "atrr": { "color": "amarillo", "size": "xl", "brand": "polo", "precio": 4447 } }, { "id": 707, "atrr": { "color": "rojo", "size": "l", "brand": "zara", "precio": 8889 } }, { "id": 708, "atrr": { "color": "verde", "size": "xl", "brand": "nike", "precio": 1540 } }, { "id": 709, "atrr": { "color": "rojo", "size": "m", "brand": "zara", "precio": 14000 } }, { "id": 710, "atrr": { "color": "naranja", "size": "xxl", "brand": "nike", "precio": 11000 } }, { "id": 711, "atrr": { "color": "amarillo", "size": "m", "brand": "nike", "precio": 8889 } }, { "id": 712, "atrr": { "color": "naranja", "size": "m", "brand": "polo", "precio": 4447 } }, { "id": 713, "atrr": { "color": "amarillo", "size": "l", "brand": "nike", "precio": 9500 } }, { "id": 714, "atrr": { "color": "amarillo", "size": "s", "brand": "blue", "precio": 10000 } }, { "id": 715, "atrr": { "color": "azul", "size": "xs", "brand": "zara", "precio": 15000 } }, { "id": 716, "atrr": { "color": "verde", "size": "m", "brand": "adidas", "precio": 4789 } }, { "id": 717, "atrr": { "color": "azul", "size": "m", "brand": "zara", "precio": 4558 } }, { "id": 718, "atrr": { "color": "amarillo", "size": "xs", "brand": "nike", "precio": 4558 } }, { "id": 719, "atrr": { "color": "morado", "size": "l", "brand": "polo", "precio": 2333 } }, { "id": 720, "atrr": { "color": "verde", "size": "s", "brand": "zara", "precio": 4444 } }, { "id": 721, "atrr": { "color": "naranja", "size": "xs", "brand": "blue", "precio": 9500 } }, { "id": 722, "atrr": { "color": "morado", "size": "xxl", "brand": "nike", "precio": 11000 } }, { "id": 723, "atrr": { "color": "naranja", "size": "xxl", "brand": "polo", "precio": 4447 } }, { "id": 724, "atrr": { "color": "azul", "size": "s", "brand": "polo", "precio": 4444 } }, { "id": 725, "atrr": { "color": "morado", "size": "l", "brand": "nike", "precio": 1540 } }, { "id": 726, "atrr": { "color": "verde", "size": "m", "brand": "adidas", "precio": 4444 } }, { "id": 727, "atrr": { "color": "morado", "size": "m", "brand": "zara", "precio": 11000 } }, { "id": 728, "atrr": { "color": "rojo", "size": "xxl", "brand": "nike", "precio": 4447 } }, { "id": 729, "atrr": { "color": "rojo", "size": "s", "brand": "adidas", "precio": 4447 } }, { "id": 730, "atrr": { "color": "morado", "size": "l", "brand": "nike", "precio": 14000 } }, { "id": 731, "atrr": { "color": "azul", "size": "m", "brand": "blue", "precio": 4558 } }, { "id": 732, "atrr": { "color": "rojo", "size": "xl", "brand": "zara", "precio": 2333 } }, { "id": 733, "atrr": { "color": "morado", "size": "xs", "brand": "zara", "precio": 4447 } }, { "id": 734, "atrr": { "color": "naranja", "size": "xl", "brand": "zara", "precio": 4569 } }, { "id": 735, "atrr": { "color": "rojo", "size": "xs", "brand": "adidas", "precio": 11000 } }, { "id": 736, "atrr": { "color": "azul", "size": "xs", "brand": "zara", "precio": 4789 } }, { "id": 737, "atrr": { "color": "naranja", "size": "xl", "brand": "adidas", "precio": 4447 } }, { "id": 738, "atrr": { "color": "azul", "size": "xxl", "brand": "nike", "precio": 15000 } }, { "id": 739, "atrr": { "color": "verde", "size": "s", "brand": "nike", "precio": 15000 } }, { "id": 740, "atrr": { "color": "naranja", "size": "xs", "brand": "adidas", "precio": 4789 } }, { "id": 741, "atrr": { "color": "naranja", "size": "xxl", "brand": "blue", "precio": 1540 } }, { "id": 742, "atrr": { "color": "azul", "size": "xs", "brand": "nike", "precio": 4447 } }, { "id": 743, "atrr": { "color": "verde", "size": "l", "brand": "zara", "precio": 4447 } }, { "id": 744, "atrr": { "color": "verde", "size": "l", "brand": "nike", "precio": 4447 } }, { "id": 745, "atrr": { "color": "rojo", "size": "xs", "brand": "blue", "precio": 4447 } }, { "id": 746, "atrr": { "color": "azul", "size": "xxl", "brand": "polo", "precio": 4444 } }, { "id": 747, "atrr": { "color": "rojo", "size": "xs", "brand": "nike", "precio": 8889 } }, { "id": 748, "atrr": { "color": "azul", "size": "m", "brand": "nike", "precio": 10000 } }, { "id": 749, "atrr": { "color": "amarillo", "size": "m", "brand": "nike", "precio": 11000 } }, { "id": 750, "atrr": { "color": "verde", "size": "xl", "brand": "zara", "precio": 4569 } }, { "id": 751, "atrr": { "color": "rojo", "size": "s", "brand": "nike", "precio": 4558 } }, { "id": 752, "atrr": { "color": "morado", "size": "xl", "brand": "polo", "precio": 4569 } }, { "id": 753, "atrr": { "color": "rojo", "size": "xxl", "brand": "blue", "precio": 8889 } }, { "id": 754, "atrr": { "color": "morado", "size": "l", "brand": "nike", "precio": 4789 } }, { "id": 755, "atrr": { "color": "azul", "size": "l", "brand": "nike", "precio": 10000 } }, { "id": 756, "atrr": { "color": "azul", "size": "xs", "brand": "zara", "precio": 14000 } }, { "id": 757, "atrr": { "color": "rojo", "size": "xs", "brand": "adidas", "precio": 9500 } }, { "id": 758, "atrr": { "color": "verde", "size": "xl", "brand": "blue", "precio": 4444 } }, { "id": 759, "atrr": { "color": "morado", "size": "xxl", "brand": "blue", "precio": 8889 } }, { "id": 760, "atrr": { "color": "verde", "size": "xs", "brand": "polo", "precio": 4558 } }, { "id": 761, "atrr": { "color": "verde", "size": "m", "brand": "polo", "precio": 10000 } }, { "id": 762, "atrr": { "color": "rojo", "size": "l", "brand": "blue", "precio": 1540 } }, { "id": 763, "atrr": { "color": "verde", "size": "xxl", "brand": "blue", "precio": 1540 } }, { "id": 764, "atrr": { "color": "rojo", "size": "xl", "brand": "adidas", "precio": 2333 } }, { "id": 765, "atrr": { "color": "morado", "size": "xl", "brand": "zara", "precio": 1540 } }, { "id": 766, "atrr": { "color": "azul", "size": "xl", "brand": "zara", "precio": 4444 } }, { "id": 767, "atrr": { "color": "morado", "size": "m", "brand": "blue", "precio": 4789 } }, { "id": 768, "atrr": { "color": "azul", "size": "xl", "brand": "nike", "precio": 4447 } }, { "id": 769, "atrr": { "color": "rojo", "size": "xxl", "brand": "adidas", "precio": 9500 } }, { "id": 770, "atrr": { "color": "verde", "size": "xl", "brand": "zara", "precio": 2333 } }, { "id": 771, "atrr": { "color": "amarillo", "size": "xxl", "brand": "zara", "precio": 2333 } }, { "id": 772, "atrr": { "color": "morado", "size": "xs", "brand": "zara", "precio": 2333 } }, { "id": 773, "atrr": { "color": "naranja", "size": "xl", "brand": "zara", "precio": 2333 } }, { "id": 774, "atrr": { "color": "morado", "size": "xs", "brand": "polo", "precio": 9500 } }, { "id": 775, "atrr": { "color": "morado", "size": "s", "brand": "blue", "precio": 4558 } }, { "id": 776, "atrr": { "color": "verde", "size": "xs", "brand": "adidas", "precio": 10000 } }, { "id": 777, "atrr": { "color": "azul", "size": "xxl", "brand": "adidas", "precio": 4558 } }, { "id": 778, "atrr": { "color": "morado", "size": "s", "brand": "polo", "precio": 4447 } }, { "id": 779, "atrr": { "color": "naranja", "size": "l", "brand": "blue", "precio": 4447 } }, { "id": 780, "atrr": { "color": "azul", "size": "xxl", "brand": "blue", "precio": 1540 } }, { "id": 781, "atrr": { "color": "azul", "size": "xxl", "brand": "polo", "precio": 10000 } }, { "id": 782, "atrr": { "color": "naranja", "size": "l", "brand": "blue", "precio": 11000 } }, { "id": 783, "atrr": { "color": "amarillo", "size": "s", "brand": "blue", "precio": 8889 } }, { "id": 784, "atrr": { "color": "verde", "size": "l", "brand": "blue", "precio": 15000 } }, { "id": 785, "atrr": { "color": "verde", "size": "l", "brand": "polo", "precio": 4789 } }, { "id": 786, "atrr": { "color": "azul", "size": "xs", "brand": "adidas", "precio": 2333 } }, { "id": 787, "atrr": { "color": "morado", "size": "xs", "brand": "adidas", "precio": 15000 } }, { "id": 788, "atrr": { "color": "naranja", "size": "xs", "brand": "adidas", "precio": 8889 } }, { "id": 789, "atrr": { "color": "rojo", "size": "xs", "brand": "blue", "precio": 14000 } }, { "id": 790, "atrr": { "color": "naranja", "size": "xl", "brand": "blue", "precio": 4569 } }, { "id": 791, "atrr": { "color": "naranja", "size": "l", "brand": "blue", "precio": 10000 } }, { "id": 792, "atrr": { "color": "azul", "size": "xxl", "brand": "zara", "precio": 11000 } }, { "id": 793, "atrr": { "color": "rojo", "size": "s", "brand": "polo", "precio": 1540 } }, { "id": 794, "atrr": { "color": "verde", "size": "xs", "brand": "polo", "precio": 4444 } }, { "id": 795, "atrr": { "color": "amarillo", "size": "xs", "brand": "nike", "precio": 9500 } }, { "id": 796, "atrr": { "color": "naranja", "size": "l", "brand": "polo", "precio": 8889 } }, { "id": 797, "atrr": { "color": "amarillo", "size": "xxl", "brand": "zara", "precio": 11000 } }, { "id": 798, "atrr": { "color": "naranja", "size": "xs", "brand": "nike", "precio": 9500 } }, { "id": 799, "atrr": { "color": "amarillo", "size": "xxl", "brand": "zara", "precio": 14000 } }, { "id": 800, "atrr": { "color": "amarillo", "size": "m", "brand": "nike", "precio": 4444 } }, { "id": 801, "atrr": { "color": "morado", "size": "s", "brand": "polo", "precio": 11000 } }, { "id": 802, "atrr": { "color": "azul", "size": "xl", "brand": "zara", "precio": 4789 } }, { "id": 803, "atrr": { "color": "naranja", "size": "l", "brand": "polo", "precio": 4444 } }, { "id": 804, "atrr": { "color": "amarillo", "size": "xs", "brand": "blue", "precio": 4447 } }, { "id": 805, "atrr": { "color": "amarillo", "size": "m", "brand": "polo", "precio": 8889 } }, { "id": 806, "atrr": { "color": "rojo", "size": "xs", "brand": "zara", "precio": 15000 } }, { "id": 807, "atrr": { "color": "verde", "size": "xl", "brand": "adidas", "precio": 4558 } }, { "id": 808, "atrr": { "color": "naranja", "size": "xs", "brand": "blue", "precio": 9500 } }, { "id": 809, "atrr": { "color": "morado", "size": "xs", "brand": "polo", "precio": 2333 } }, { "id": 810, "atrr": { "color": "rojo", "size": "xxl", "brand": "nike", "precio": 11000 } }, { "id": 811, "atrr": { "color": "naranja", "size": "s", "brand": "nike", "precio": 4447 } }, { "id": 812, "atrr": { "color": "azul", "size": "xs", "brand": "zara", "precio": 4789 } }, { "id": 813, "atrr": { "color": "naranja", "size": "s", "brand": "adidas", "precio": 4558 } }, { "id": 814, "atrr": { "color": "rojo", "size": "xs", "brand": "polo", "precio": 11000 } }, { "id": 815, "atrr": { "color": "verde", "size": "xs", "brand": "polo", "precio": 10000 } }, { "id": 816, "atrr": { "color": "verde", "size": "xs", "brand": "blue", "precio": 4447 } }, { "id": 817, "atrr": { "color": "naranja", "size": "l", "brand": "polo", "precio": 15000 } }, { "id": 818, "atrr": { "color": "verde", "size": "l", "brand": "zara", "precio": 11000 } }, { "id": 819, "atrr": { "color": "morado", "size": "s", "brand": "zara", "precio": 2333 } }, { "id": 820, "atrr": { "color": "naranja", "size": "xs", "brand": "polo", "precio": 4569 } }, { "id": 821, "atrr": { "color": "amarillo", "size": "xs", "brand": "adidas", "precio": 4447 } }, { "id": 822, "atrr": { "color": "rojo", "size": "l", "brand": "zara", "precio": 2333 } }, { "id": 823, "atrr": { "color": "naranja", "size": "l", "brand": "nike", "precio": 9500 } }, { "id": 824, "atrr": { "color": "azul", "size": "m", "brand": "polo", "precio": 11000 } }, { "id": 825, "atrr": { "color": "amarillo", "size": "s", "brand": "polo", "precio": 10000 } }, { "id": 826, "atrr": { "color": "morado", "size": "xl", "brand": "zara", "precio": 2333 } }, { "id": 827, "atrr": { "color": "amarillo", "size": "xl", "brand": "polo", "precio": 8889 } }, { "id": 828, "atrr": { "color": "amarillo", "size": "l", "brand": "blue", "precio": 11000 } }, { "id": 829, "atrr": { "color": "naranja", "size": "xs", "brand": "polo", "precio": 14000 } }, { "id": 830, "atrr": { "color": "morado", "size": "m", "brand": "nike", "precio": 4569 } }, { "id": 831, "atrr": { "color": "morado", "size": "s", "brand": "blue", "precio": 4447 } }, { "id": 832, "atrr": { "color": "azul", "size": "xxl", "brand": "blue", "precio": 2333 } }, { "id": 833, "atrr": { "color": "amarillo", "size": "m", "brand": "nike", "precio": 4447 } }, { "id": 834, "atrr": { "color": "azul", "size": "xs", "brand": "adidas", "precio": 10000 } }, { "id": 835, "atrr": { "color": "rojo", "size": "l", "brand": "zara", "precio": 2333 } }, { "id": 836, "atrr": { "color": "verde", "size": "xxl", "brand": "polo", "precio": 1540 } }, { "id": 837, "atrr": { "color": "rojo", "size": "s", "brand": "adidas", "precio": 4558 } }, { "id": 838, "atrr": { "color": "naranja", "size": "xxl", "brand": "zara", "precio": 11000 } }, { "id": 839, "atrr": { "color": "azul", "size": "xs", "brand": "zara", "precio": 4447 } }, { "id": 840, "atrr": { "color": "naranja", "size": "xl", "brand": "nike", "precio": 10000 } }, { "id": 841, "atrr": { "color": "morado", "size": "s", "brand": "adidas", "precio": 15000 } }, { "id": 842, "atrr": { "color": "amarillo", "size": "xs", "brand": "zara", "precio": 4569 } }, { "id": 843, "atrr": { "color": "morado", "size": "xs", "brand": "blue", "precio": 2333 } }, { "id": 844, "atrr": { "color": "rojo", "size": "s", "brand": "polo", "precio": 10000 } }, { "id": 845, "atrr": { "color": "morado", "size": "xxl", "brand": "polo", "precio": 14000 } }, { "id": 846, "atrr": { "color": "rojo", "size": "xs", "brand": "adidas", "precio": 15000 } }, { "id": 847, "atrr": { "color": "verde", "size": "xs", "brand": "adidas", "precio": 15000 } }, { "id": 848, "atrr": { "color": "rojo", "size": "s", "brand": "blue", "precio": 4789 } }, { "id": 849, "atrr": { "color": "verde", "size": "xl", "brand": "zara", "precio": 1540 } }, { "id": 850, "atrr": { "color": "amarillo", "size": "xxl", "brand": "nike", "precio": 4447 } }, { "id": 851, "atrr": { "color": "rojo", "size": "l", "brand": "adidas", "precio": 1540 } }, { "id": 852, "atrr": { "color": "rojo", "size": "xs", "brand": "polo", "precio": 1540 } }, { "id": 853, "atrr": { "color": "naranja", "size": "xs", "brand": "blue", "precio": 14000 } }, { "id": 854, "atrr": { "color": "amarillo", "size": "xs", "brand": "adidas", "precio": 15000 } }, { "id": 855, "atrr": { "color": "rojo", "size": "xs", "brand": "polo", "precio": 4789 } }, { "id": 856, "atrr": { "color": "naranja", "size": "l", "brand": "blue", "precio": 4569 } }, { "id": 857, "atrr": { "color": "naranja", "size": "m", "brand": "zara", "precio": 4444 } }, { "id": 858, "atrr": { "color": "naranja", "size": "s", "brand": "zara", "precio": 9500 } }, { "id": 859, "atrr": { "color": "morado", "size": "l", "brand": "polo", "precio": 10000 } }, { "id": 860, "atrr": { "color": "rojo", "size": "xs", "brand": "polo", "precio": 14000 } }, { "id": 861, "atrr": { "color": "morado", "size": "l", "brand": "adidas", "precio": 4789 } }, { "id": 862, "atrr": { "color": "verde", "size": "xs", "brand": "polo", "precio": 4789 } }, { "id": 863, "atrr": { "color": "morado", "size": "xs", "brand": "adidas", "precio": 4789 } }, { "id": 864, "atrr": { "color": "verde", "size": "s", "brand": "polo", "precio": 4558 } }, { "id": 865, "atrr": { "color": "amarillo", "size": "l", "brand": "adidas", "precio": 14000 } }, { "id": 866, "atrr": { "color": "verde", "size": "xs", "brand": "adidas", "precio": 8889 } }, { "id": 867, "atrr": { "color": "azul", "size": "m", "brand": "zara", "precio": 8889 } }, { "id": 868, "atrr": { "color": "naranja", "size": "s", "brand": "adidas", "precio": 10000 } }, { "id": 869, "atrr": { "color": "morado", "size": "s", "brand": "polo", "precio": 11000 } }, { "id": 870, "atrr": { "color": "azul", "size": "m", "brand": "polo", "precio": 9500 } }, { "id": 871, "atrr": { "color": "verde", "size": "m", "brand": "polo", "precio": 4447 } }, { "id": 872, "atrr": { "color": "rojo", "size": "s", "brand": "polo", "precio": 4789 } }, { "id": 873, "atrr": { "color": "morado", "size": "xs", "brand": "zara", "precio": 4569 } }, { "id": 874, "atrr": { "color": "rojo", "size": "l", "brand": "zara", "precio": 4569 } }, { "id": 875, "atrr": { "color": "morado", "size": "s", "brand": "blue", "precio": 9500 } }, { "id": 876, "atrr": { "color": "amarillo", "size": "xs", "brand": "nike", "precio": 2333 } }, { "id": 877, "atrr": { "color": "rojo", "size": "xs", "brand": "polo", "precio": 1540 } }, { "id": 878, "atrr": { "color": "naranja", "size": "xxl", "brand": "blue", "precio": 4558 } }, { "id": 879, "atrr": { "color": "amarillo", "size": "xl", "brand": "polo", "precio": 4444 } }, { "id": 880, "atrr": { "color": "rojo", "size": "l", "brand": "zara", "precio": 15000 } }, { "id": 881, "atrr": { "color": "azul", "size": "s", "brand": "blue", "precio": 10000 } }, { "id": 882, "atrr": { "color": "amarillo", "size": "xs", "brand": "adidas", "precio": 4569 } }, { "id": 883, "atrr": { "color": "verde", "size": "s", "brand": "adidas", "precio": 4444 } }, { "id": 884, "atrr": { "color": "morado", "size": "xs", "brand": "adidas", "precio": 10000 } }, { "id": 885, "atrr": { "color": "morado", "size": "l", "brand": "polo", "precio": 10000 } }, { "id": 886, "atrr": { "color": "morado", "size": "m", "brand": "zara", "precio": 9500 } }, { "id": 887, "atrr": { "color": "azul", "size": "xl", "brand": "zara", "precio": 1540 } }, { "id": 888, "atrr": { "color": "verde", "size": "xs", "brand": "adidas", "precio": 14000 } }, { "id": 889, "atrr": { "color": "verde", "size": "xs", "brand": "adidas", "precio": 10000 } }, { "id": 890, "atrr": { "color": "naranja", "size": "s", "brand": "zara", "precio": 2333 } }, { "id": 891, "atrr": { "color": "rojo", "size": "xxl", "brand": "zara", "precio": 10000 } }, { "id": 892, "atrr": { "color": "amarillo", "size": "m", "brand": "nike", "precio": 9500 } }, { "id": 893, "atrr": { "color": "verde", "size": "s", "brand": "zara", "precio": 4569 } }, { "id": 894, "atrr": { "color": "rojo", "size": "m", "brand": "nike", "precio": 4789 } }, { "id": 895, "atrr": { "color": "morado", "size": "xxl", "brand": "adidas", "precio": 4558 } }, { "id": 896, "atrr": { "color": "amarillo", "size": "xxl", "brand": "adidas", "precio": 4447 } }, { "id": 897, "atrr": { "color": "verde", "size": "m", "brand": "nike", "precio": 15000 } }, { "id": 898, "atrr": { "color": "verde", "size": "m", "brand": "zara", "precio": 4558 } }, { "id": 899, "atrr": { "color": "amarillo", "size": "xs", "brand": "nike", "precio": 15000 } }, { "id": 900, "atrr": { "color": "rojo", "size": "l", "brand": "zara", "precio": 9500 } }, { "id": 901, "atrr": { "color": "morado", "size": "xl", "brand": "zara", "precio": 2333 } }, { "id": 902, "atrr": { "color": "verde", "size": "xl", "brand": "zara", "precio": 4558 } }, { "id": 903, "atrr": { "color": "azul", "size": "xs", "brand": "adidas", "precio": 14000 } }, { "id": 904, "atrr": { "color": "azul", "size": "l", "brand": "nike", "precio": 10000 } }, { "id": 905, "atrr": { "color": "morado", "size": "xs", "brand": "polo", "precio": 11000 } }, { "id": 906, "atrr": { "color": "rojo", "size": "m", "brand": "nike", "precio": 15000 } }, { "id": 907, "atrr": { "color": "morado", "size": "s", "brand": "polo", "precio": 15000 } }, { "id": 908, "atrr": { "color": "azul", "size": "xs", "brand": "adidas", "precio": 2333 } }, { "id": 909, "atrr": { "color": "morado", "size": "m", "brand": "adidas", "precio": 4789 } }, { "id": 910, "atrr": { "color": "naranja", "size": "xs", "brand": "adidas", "precio": 15000 } }, { "id": 911, "atrr": { "color": "verde", "size": "l", "brand": "zara", "precio": 4558 } }, { "id": 912, "atrr": { "color": "rojo", "size": "l", "brand": "nike", "precio": 10000 } }, { "id": 913, "atrr": { "color": "naranja", "size": "xs", "brand": "blue", "precio": 8889 } }, { "id": 914, "atrr": { "color": "azul", "size": "m", "brand": "adidas", "precio": 10000 } }, { "id": 915, "atrr": { "color": "amarillo", "size": "xl", "brand": "blue", "precio": 2333 } }, { "id": 916, "atrr": { "color": "amarillo", "size": "xl", "brand": "adidas", "precio": 2333 } }, { "id": 917, "atrr": { "color": "amarillo", "size": "xs", "brand": "nike", "precio": 9500 } }, { "id": 918, "atrr": { "color": "verde", "size": "xs", "brand": "blue", "precio": 4789 } }, { "id": 919, "atrr": { "color": "naranja", "size": "xxl", "brand": "nike", "precio": 2333 } }, { "id": 920, "atrr": { "color": "amarillo", "size": "xl", "brand": "blue", "precio": 1540 } }, { "id": 921, "atrr": { "color": "amarillo", "size": "xs", "brand": "polo", "precio": 4569 } }, { "id": 922, "atrr": { "color": "azul", "size": "xl", "brand": "nike", "precio": 4569 } }, { "id": 923, "atrr": { "color": "azul", "size": "xs", "brand": "polo", "precio": 14000 } }, { "id": 924, "atrr": { "color": "azul", "size": "s", "brand": "zara", "precio": 9500 } }, { "id": 925, "atrr": { "color": "azul", "size": "xs", "brand": "nike", "precio": 4558 } }, { "id": 926, "atrr": { "color": "azul", "size": "m", "brand": "blue", "precio": 10000 } }, { "id": 927, "atrr": { "color": "naranja", "size": "xs", "brand": "zara", "precio": 10000 } }, { "id": 928, "atrr": { "color": "azul", "size": "xs", "brand": "polo", "precio": 9500 } }, { "id": 929, "atrr": { "color": "naranja", "size": "xl", "brand": "adidas", "precio": 10000 } }, { "id": 930, "atrr": { "color": "naranja", "size": "s", "brand": "polo", "precio": 4569 } }, { "id": 931, "atrr": { "color": "morado", "size": "xs", "brand": "blue", "precio": 2333 } }, { "id": 932, "atrr": { "color": "naranja", "size": "xs", "brand": "blue", "precio": 14000 } }, { "id": 933, "atrr": { "color": "azul", "size": "l", "brand": "adidas", "precio": 10000 } }, { "id": 934, "atrr": { "color": "morado", "size": "m", "brand": "zara", "precio": 14000 } }, { "id": 935, "atrr": { "color": "azul", "size": "l", "brand": "polo", "precio": 4444 } }, { "id": 936, "atrr": { "color": "azul", "size": "xl", "brand": "blue", "precio": 4789 } }, { "id": 937, "atrr": { "color": "amarillo", "size": "xs", "brand": "blue", "precio": 8889 } }, { "id": 938, "atrr": { "color": "rojo", "size": "m", "brand": "adidas", "precio": 4789 } }, { "id": 939, "atrr": { "color": "amarillo", "size": "l", "brand": "nike", "precio": 11000 } }, { "id": 940, "atrr": { "color": "amarillo", "size": "xs", "brand": "nike", "precio": 4569 } }, { "id": 941, "atrr": { "color": "azul", "size": "m", "brand": "blue", "precio": 4569 } }, { "id": 942, "atrr": { "color": "morado", "size": "xs", "brand": "polo", "precio": 15000 } }, { "id": 943, "atrr": { "color": "naranja", "size": "s", "brand": "polo", "precio": 10000 } }, { "id": 944, "atrr": { "color": "morado", "size": "xxl", "brand": "adidas", "precio": 11000 } }, { "id": 945, "atrr": { "color": "rojo", "size": "xs", "brand": "zara", "precio": 15000 } }, { "id": 946, "atrr": { "color": "amarillo", "size": "xl", "brand": "blue", "precio": 4558 } }, { "id": 947, "atrr": { "color": "naranja", "size": "m", "brand": "zara", "precio": 8889 } }, { "id": 948, "atrr": { "color": "morado", "size": "m", "brand": "nike", "precio": 4569 } }, { "id": 949, "atrr": { "color": "azul", "size": "xl", "brand": "nike", "precio": 10000 } }, { "id": 950, "atrr": { "color": "naranja", "size": "xl", "brand": "zara", "precio": 15000 } }, { "id": 951, "atrr": { "color": "naranja", "size": "l", "brand": "nike", "precio": 2333 } }, { "id": 952, "atrr": { "color": "amarillo", "size": "xl", "brand": "zara", "precio": 4789 } }, { "id": 953, "atrr": { "color": "azul", "size": "xs", "brand": "zara", "precio": 10000 } }, { "id": 954, "atrr": { "color": "verde", "size": "xl", "brand": "polo", "precio": 8889 } }, { "id": 955, "atrr": { "color": "morado", "size": "s", "brand": "zara", "precio": 14000 } }, { "id": 956, "atrr": { "color": "verde", "size": "xs", "brand": "blue", "precio": 15000 } }, { "id": 957, "atrr": { "color": "morado", "size": "s", "brand": "adidas", "precio": 8889 } }, { "id": 958, "atrr": { "color": "rojo", "size": "s", "brand": "polo", "precio": 2333 } }, { "id": 959, "atrr": { "color": "azul", "size": "xl", "brand": "zara", "precio": 10000 } }, { "id": 960, "atrr": { "color": "amarillo", "size": "xxl", "brand": "adidas", "precio": 4444 } }, { "id": 961, "atrr": { "color": "verde", "size": "xs", "brand": "polo", "precio": 4447 } }, { "id": 962, "atrr": { "color": "rojo", "size": "m", "brand": "adidas", "precio": 15000 } }, { "id": 963, "atrr": { "color": "azul", "size": "l", "brand": "adidas", "precio": 2333 } }, { "id": 964, "atrr": { "color": "morado", "size": "s", "brand": "zara", "precio": 9500 } }, { "id": 965, "atrr": { "color": "naranja", "size": "xxl", "brand": "polo", "precio": 10000 } }, { "id": 966, "atrr": { "color": "morado", "size": "s", "brand": "polo", "precio": 2333 } }, { "id": 967, "atrr": { "color": "naranja", "size": "xs", "brand": "adidas", "precio": 4447 } }, { "id": 968, "atrr": { "color": "verde", "size": "s", "brand": "zara", "precio": 14000 } }, { "id": 969, "atrr": { "color": "azul", "size": "xxl", "brand": "blue", "precio": 15000 } }, { "id": 970, "atrr": { "color": "rojo", "size": "xs", "brand": "adidas", "precio": 10000 } }, { "id": 971, "atrr": { "color": "rojo", "size": "xs", "brand": "blue", "precio": 4558 } }, { "id": 972, "atrr": { "color": "morado", "size": "s", "brand": "nike", "precio": 9500 } }, { "id": 973, "atrr": { "color": "rojo", "size": "xs", "brand": "polo", "precio": 4569 } }, { "id": 974, "atrr": { "color": "morado", "size": "xs", "brand": "polo", "precio": 10000 } }, { "id": 975, "atrr": { "color": "azul", "size": "l", "brand": "polo", "precio": 4447 } }, { "id": 976, "atrr": { "color": "amarillo", "size": "xs", "brand": "blue", "precio": 15000 } }, { "id": 977, "atrr": { "color": "rojo", "size": "s", "brand": "adidas", "precio": 4789 } }, { "id": 978, "atrr": { "color": "naranja", "size": "l", "brand": "adidas", "precio": 4447 } }, { "id": 979, "atrr": { "color": "amarillo", "size": "s", "brand": "blue", "precio": 14000 } }, { "id": 980, "atrr": { "color": "verde", "size": "s", "brand": "nike", "precio": 11000 } }, { "id": 981, "atrr": { "color": "naranja", "size": "xs", "brand": "adidas", "precio": 10000 } }, { "id": 982, "atrr": { "color": "rojo", "size": "s", "brand": "zara", "precio": 4558 } }, { "id": 983, "atrr": { "color": "azul", "size": "xs", "brand": "polo", "precio": 4569 } }, { "id": 984, "atrr": { "color": "azul", "size": "s", "brand": "adidas", "precio": 4558 } }, { "id": 985, "atrr": { "color": "morado", "size": "l", "brand": "polo", "precio": 4444 } }, { "id": 986, "atrr": { "color": "amarillo", "size": "s", "brand": "zara", "precio": 4447 } }, { "id": 987, "atrr": { "color": "verde", "size": "s", "brand": "zara", "precio": 4444 } }, { "id": 988, "atrr": { "color": "amarillo", "size": "l", "brand": "blue", "precio": 4444 } }, { "id": 989, "atrr": { "color": "morado", "size": "xs", "brand": "zara", "precio": 8889 } }, { "id": 990, "atrr": { "color": "azul", "size": "xs", "brand": "adidas", "precio": 4447 } }, { "id": 991, "atrr": { "color": "rojo", "size": "xl", "brand": "blue", "precio": 10000 } }, { "id": 992, "atrr": { "color": "morado", "size": "xxl", "brand": "adidas", "precio": 9500 } }, { "id": 993, "atrr": { "color": "rojo", "size": "xs", "brand": "zara", "precio": 2333 } }, { "id": 994, "atrr": { "color": "naranja", "size": "xxl", "brand": "zara", "precio": 9500 } }, { "id": 995, "atrr": { "color": "verde", "size": "xs", "brand": "nike", "precio": 11000 } }, { "id": 996, "atrr": { "color": "azul", "size": "xs", "brand": "blue", "precio": 4789 } }, { "id": 997, "atrr": { "color": "azul", "size": "xxl", "brand": "nike", "precio": 4558 } }, { "id": 998, "atrr": { "color": "naranja", "size": "l", "brand": "zara", "precio": 15000 } }, { "id": 999, "atrr": { "color": "azul", "size": "xs", "brand": "nike", "precio": 1540 } }, { "id": 1000, "atrr": { "color": "morado", "size": "xl", "brand": "nike", "precio": 15000 } } ]
atributes = [{'name': 'color', 'value': {'amarillo': 0, 'morado': 1, 'azul': 2, 'verde': 3, 'naranja': 4, 'rojo': 5}}, {'name': 'size', 'value': {'m': 2, 's': 1, 'xxl': 5, 'xs': 0, 'l': 3, 'xl': 4}}, {'name': 'brand', 'value': {'blue': 0, 'polo': 1, 'adidas': 2, 'zara': 3, 'nike': 4}}, {'name': 'precio', 'value': {2333: 0, 11000: 1, 4569: 2, 14000: 3, 4789: 4, 4444: 5, 8889: 6, 1540: 7, 4447: 8, 4558: 9, 9500: 10, 15000: 11, 10000: 12}}] products = [{'id': 1, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'blue', 'precio': 2333}}, {'id': 2, 'atrr': {'color': 'morado', 'size': 'm', 'brand': 'polo', 'precio': 11000}}, {'id': 3, 'atrr': {'color': 'azul', 'size': 's', 'brand': 'adidas', 'precio': 4569}}, {'id': 4, 'atrr': {'color': 'verde', 'size': 'xxl', 'brand': 'blue', 'precio': 14000}}, {'id': 5, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'zara', 'precio': 4789}}, {'id': 6, 'atrr': {'color': 'amarillo', 'size': 'xxl', 'brand': 'nike', 'precio': 4789}}, {'id': 7, 'atrr': {'color': 'morado', 'size': 'l', 'brand': 'blue', 'precio': 4444}}, {'id': 8, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'adidas', 'precio': 14000}}, {'id': 9, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'zara', 'precio': 8889}}, {'id': 10, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'zara', 'precio': 4789}}, {'id': 11, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'polo', 'precio': 4444}}, {'id': 12, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'blue', 'precio': 1540}}, {'id': 13, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'nike', 'precio': 4447}}, {'id': 14, 'atrr': {'color': 'naranja', 'size': 'm', 'brand': 'adidas', 'precio': 4558}}, {'id': 15, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'polo', 'precio': 4447}}, {'id': 16, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'blue', 'precio': 4569}}, {'id': 17, 'atrr': {'color': 'morado', 'size': 'xl', 'brand': 'blue', 'precio': 4558}}, {'id': 18, 'atrr': {'color': 'rojo', 'size': 'xl', 'brand': 'zara', 'precio': 11000}}, {'id': 19, 'atrr': {'color': 'verde', 'size': 'm', 'brand': 'adidas', 'precio': 4789}}, {'id': 20, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'nike', 'precio': 8889}}, {'id': 21, 'atrr': {'color': 'azul', 'size': 'xl', 'brand': 'adidas', 'precio': 1540}}, {'id': 22, 'atrr': {'color': 'verde', 'size': 'm', 'brand': 'zara', 'precio': 2333}}, {'id': 23, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'adidas', 'precio': 8889}}, {'id': 24, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'polo', 'precio': 9500}}, {'id': 25, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'adidas', 'precio': 1540}}, {'id': 26, 'atrr': {'color': 'verde', 'size': 'xxl', 'brand': 'adidas', 'precio': 15000}}, {'id': 27, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'blue', 'precio': 14000}}, {'id': 28, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'blue', 'precio': 8889}}, {'id': 29, 'atrr': {'color': 'rojo', 'size': 'xl', 'brand': 'adidas', 'precio': 4447}}, {'id': 30, 'atrr': {'color': 'amarillo', 'size': 'l', 'brand': 'adidas', 'precio': 9500}}, {'id': 31, 'atrr': {'color': 'verde', 'size': 'm', 'brand': 'blue', 'precio': 4558}}, {'id': 32, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'nike', 'precio': 4558}}, {'id': 33, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'blue', 'precio': 4447}}, {'id': 34, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'polo', 'precio': 1540}}, {'id': 35, 'atrr': {'color': 'naranja', 'size': 'xl', 'brand': 'adidas', 'precio': 2333}}, {'id': 36, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'polo', 'precio': 4558}}, {'id': 37, 'atrr': {'color': 'naranja', 'size': 'xl', 'brand': 'zara', 'precio': 9500}}, {'id': 38, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'zara', 'precio': 2333}}, {'id': 39, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'polo', 'precio': 11000}}, {'id': 40, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'adidas', 'precio': 2333}}, {'id': 41, 'atrr': {'color': 'naranja', 'size': 'm', 'brand': 'blue', 'precio': 4444}}, {'id': 42, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'blue', 'precio': 4558}}, {'id': 43, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'nike', 'precio': 8889}}, {'id': 44, 'atrr': {'color': 'rojo', 'size': 'xl', 'brand': 'zara', 'precio': 11000}}, {'id': 45, 'atrr': {'color': 'verde', 'size': 'xxl', 'brand': 'polo', 'precio': 14000}}, {'id': 46, 'atrr': {'color': 'rojo', 'size': 'l', 'brand': 'polo', 'precio': 4789}}, {'id': 47, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'nike', 'precio': 2333}}, {'id': 48, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'nike', 'precio': 1540}}, {'id': 49, 'atrr': {'color': 'amarillo', 'size': 'xxl', 'brand': 'polo', 'precio': 10000}}, {'id': 50, 'atrr': {'color': 'azul', 'size': 's', 'brand': 'adidas', 'precio': 4558}}, {'id': 51, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'adidas', 'precio': 4789}}, {'id': 52, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'polo', 'precio': 4444}}, {'id': 53, 'atrr': {'color': 'verde', 'size': 'xxl', 'brand': 'nike', 'precio': 2333}}, {'id': 54, 'atrr': {'color': 'morado', 'size': 'm', 'brand': 'nike', 'precio': 8889}}, {'id': 55, 'atrr': {'color': 'amarillo', 'size': 's', 'brand': 'adidas', 'precio': 9500}}, {'id': 56, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'adidas', 'precio': 10000}}, {'id': 57, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'blue', 'precio': 4569}}, {'id': 58, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'zara', 'precio': 4444}}, {'id': 59, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'nike', 'precio': 10000}}, {'id': 60, 'atrr': {'color': 'naranja', 'size': 's', 'brand': 'blue', 'precio': 2333}}, {'id': 61, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'zara', 'precio': 2333}}, {'id': 62, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'blue', 'precio': 10000}}, {'id': 63, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'blue', 'precio': 4569}}, {'id': 64, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'nike', 'precio': 10000}}, {'id': 65, 'atrr': {'color': 'naranja', 'size': 's', 'brand': 'polo', 'precio': 4447}}, {'id': 66, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'nike', 'precio': 4789}}, {'id': 67, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'polo', 'precio': 4447}}, {'id': 68, 'atrr': {'color': 'naranja', 'size': 'm', 'brand': 'adidas', 'precio': 15000}}, {'id': 69, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'zara', 'precio': 9500}}, {'id': 70, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'blue', 'precio': 1540}}, {'id': 71, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'zara', 'precio': 15000}}, {'id': 72, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'nike', 'precio': 8889}}, {'id': 73, 'atrr': {'color': 'naranja', 'size': 'm', 'brand': 'nike', 'precio': 4444}}, {'id': 74, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'nike', 'precio': 1540}}, {'id': 75, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'polo', 'precio': 15000}}, {'id': 76, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'adidas', 'precio': 8889}}, {'id': 77, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'polo', 'precio': 15000}}, {'id': 78, 'atrr': {'color': 'morado', 'size': 'xl', 'brand': 'nike', 'precio': 15000}}, {'id': 79, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'blue', 'precio': 4558}}, {'id': 80, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'adidas', 'precio': 1540}}, {'id': 81, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'blue', 'precio': 4447}}, {'id': 82, 'atrr': {'color': 'morado', 'size': 'l', 'brand': 'blue', 'precio': 8889}}, {'id': 83, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'zara', 'precio': 4789}}, {'id': 84, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'adidas', 'precio': 4447}}, {'id': 85, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'zara', 'precio': 15000}}, {'id': 86, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'nike', 'precio': 1540}}, {'id': 87, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'nike', 'precio': 8889}}, {'id': 88, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'zara', 'precio': 10000}}, {'id': 89, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'adidas', 'precio': 8889}}, {'id': 90, 'atrr': {'color': 'amarillo', 'size': 'xxl', 'brand': 'polo', 'precio': 15000}}, {'id': 91, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'zara', 'precio': 8889}}, {'id': 92, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'zara', 'precio': 4447}}, {'id': 93, 'atrr': {'color': 'rojo', 'size': 'xl', 'brand': 'adidas', 'precio': 11000}}, {'id': 94, 'atrr': {'color': 'verde', 'size': 'l', 'brand': 'zara', 'precio': 11000}}, {'id': 95, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'adidas', 'precio': 15000}}, {'id': 96, 'atrr': {'color': 'amarillo', 'size': 'l', 'brand': 'nike', 'precio': 4447}}, {'id': 97, 'atrr': {'color': 'amarillo', 'size': 'l', 'brand': 'adidas', 'precio': 4444}}, {'id': 98, 'atrr': {'color': 'azul', 'size': 's', 'brand': 'nike', 'precio': 9500}}, {'id': 99, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'polo', 'precio': 8889}}, {'id': 100, 'atrr': {'color': 'verde', 'size': 'l', 'brand': 'nike', 'precio': 2333}}, {'id': 101, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'blue', 'precio': 4789}}, {'id': 102, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'adidas', 'precio': 1540}}, {'id': 103, 'atrr': {'color': 'amarillo', 'size': 'l', 'brand': 'nike', 'precio': 15000}}, {'id': 104, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'polo', 'precio': 4447}}, {'id': 105, 'atrr': {'color': 'morado', 'size': 'xl', 'brand': 'zara', 'precio': 4558}}, {'id': 106, 'atrr': {'color': 'azul', 'size': 's', 'brand': 'adidas', 'precio': 4447}}, {'id': 107, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'blue', 'precio': 11000}}, {'id': 108, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'zara', 'precio': 9500}}, {'id': 109, 'atrr': {'color': 'naranja', 'size': 'm', 'brand': 'nike', 'precio': 15000}}, {'id': 110, 'atrr': {'color': 'naranja', 'size': 's', 'brand': 'zara', 'precio': 9500}}, {'id': 111, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'nike', 'precio': 8889}}, {'id': 112, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'adidas', 'precio': 4447}}, {'id': 113, 'atrr': {'color': 'verde', 'size': 'm', 'brand': 'nike', 'precio': 14000}}, {'id': 114, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'polo', 'precio': 11000}}, {'id': 115, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'blue', 'precio': 2333}}, {'id': 116, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'adidas', 'precio': 4789}}, {'id': 117, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'adidas', 'precio': 8889}}, {'id': 118, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'zara', 'precio': 4558}}, {'id': 119, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'polo', 'precio': 4789}}, {'id': 120, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'adidas', 'precio': 4444}}, {'id': 121, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'nike', 'precio': 14000}}, {'id': 122, 'atrr': {'color': 'naranja', 'size': 'xl', 'brand': 'zara', 'precio': 9500}}, {'id': 123, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'adidas', 'precio': 4444}}, {'id': 124, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'polo', 'precio': 4444}}, {'id': 125, 'atrr': {'color': 'amarillo', 'size': 'l', 'brand': 'adidas', 'precio': 14000}}, {'id': 126, 'atrr': {'color': 'amarillo', 'size': 's', 'brand': 'zara', 'precio': 11000}}, {'id': 127, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'zara', 'precio': 9500}}, {'id': 128, 'atrr': {'color': 'amarillo', 'size': 'l', 'brand': 'polo', 'precio': 9500}}, {'id': 129, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'blue', 'precio': 15000}}, {'id': 130, 'atrr': {'color': 'naranja', 'size': 's', 'brand': 'adidas', 'precio': 1540}}, {'id': 131, 'atrr': {'color': 'rojo', 'size': 'm', 'brand': 'zara', 'precio': 4569}}, {'id': 132, 'atrr': {'color': 'rojo', 'size': 'xxl', 'brand': 'nike', 'precio': 4444}}, {'id': 133, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'adidas', 'precio': 1540}}, {'id': 134, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'polo', 'precio': 9500}}, {'id': 135, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'zara', 'precio': 8889}}, {'id': 136, 'atrr': {'color': 'verde', 'size': 'l', 'brand': 'zara', 'precio': 2333}}, {'id': 137, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'adidas', 'precio': 4444}}, {'id': 138, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'zara', 'precio': 4789}}, {'id': 139, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'zara', 'precio': 8889}}, {'id': 140, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'polo', 'precio': 14000}}, {'id': 141, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'nike', 'precio': 4569}}, {'id': 142, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'blue', 'precio': 4569}}, {'id': 143, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'adidas', 'precio': 15000}}, {'id': 144, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'polo', 'precio': 15000}}, {'id': 145, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'polo', 'precio': 8889}}, {'id': 146, 'atrr': {'color': 'verde', 'size': 'xxl', 'brand': 'blue', 'precio': 8889}}, {'id': 147, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'zara', 'precio': 4569}}, {'id': 148, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'polo', 'precio': 10000}}, {'id': 149, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'zara', 'precio': 14000}}, {'id': 150, 'atrr': {'color': 'verde', 'size': 'm', 'brand': 'polo', 'precio': 10000}}, {'id': 151, 'atrr': {'color': 'morado', 'size': 'm', 'brand': 'adidas', 'precio': 11000}}, {'id': 152, 'atrr': {'color': 'amarillo', 'size': 'xxl', 'brand': 'adidas', 'precio': 4558}}, {'id': 153, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'polo', 'precio': 8889}}, {'id': 154, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'blue', 'precio': 14000}}, {'id': 155, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'blue', 'precio': 2333}}, {'id': 156, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'zara', 'precio': 8889}}, {'id': 157, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'adidas', 'precio': 15000}}, {'id': 158, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'nike', 'precio': 11000}}, {'id': 159, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'zara', 'precio': 4789}}, {'id': 160, 'atrr': {'color': 'morado', 'size': 'm', 'brand': 'blue', 'precio': 4444}}, {'id': 161, 'atrr': {'color': 'amarillo', 'size': 's', 'brand': 'nike', 'precio': 11000}}, {'id': 162, 'atrr': {'color': 'verde', 'size': 'm', 'brand': 'nike', 'precio': 14000}}, {'id': 163, 'atrr': {'color': 'naranja', 'size': 'xl', 'brand': 'adidas', 'precio': 2333}}, {'id': 164, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'blue', 'precio': 1540}}, {'id': 165, 'atrr': {'color': 'verde', 'size': 'xxl', 'brand': 'nike', 'precio': 4444}}, {'id': 166, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'zara', 'precio': 4569}}, {'id': 167, 'atrr': {'color': 'verde', 'size': 'xxl', 'brand': 'nike', 'precio': 1540}}, {'id': 168, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'blue', 'precio': 4444}}, {'id': 169, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'polo', 'precio': 15000}}, {'id': 170, 'atrr': {'color': 'azul', 'size': 'xl', 'brand': 'polo', 'precio': 14000}}, {'id': 171, 'atrr': {'color': 'amarillo', 'size': 'l', 'brand': 'blue', 'precio': 1540}}, {'id': 172, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'nike', 'precio': 4558}}, {'id': 173, 'atrr': {'color': 'naranja', 'size': 'm', 'brand': 'nike', 'precio': 14000}}, {'id': 174, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'zara', 'precio': 4447}}, {'id': 175, 'atrr': {'color': 'azul', 'size': 's', 'brand': 'zara', 'precio': 4444}}, {'id': 176, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'polo', 'precio': 9500}}, {'id': 177, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'blue', 'precio': 8889}}, {'id': 178, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'adidas', 'precio': 4558}}, {'id': 179, 'atrr': {'color': 'verde', 'size': 'xxl', 'brand': 'adidas', 'precio': 8889}}, {'id': 180, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'adidas', 'precio': 4569}}, {'id': 181, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'adidas', 'precio': 10000}}, {'id': 182, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'zara', 'precio': 4444}}, {'id': 183, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'nike', 'precio': 4789}}, {'id': 184, 'atrr': {'color': 'verde', 'size': 'm', 'brand': 'polo', 'precio': 2333}}, {'id': 185, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'polo', 'precio': 4789}}, {'id': 186, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'blue', 'precio': 4558}}, {'id': 187, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'zara', 'precio': 4447}}, {'id': 188, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'zara', 'precio': 9500}}, {'id': 189, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'polo', 'precio': 4569}}, {'id': 190, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'blue', 'precio': 4447}}, {'id': 191, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'nike', 'precio': 11000}}, {'id': 192, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'nike', 'precio': 4447}}, {'id': 193, 'atrr': {'color': 'amarillo', 'size': 'xxl', 'brand': 'polo', 'precio': 15000}}, {'id': 194, 'atrr': {'color': 'azul', 'size': 'xl', 'brand': 'polo', 'precio': 9500}}, {'id': 195, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'blue', 'precio': 4789}}, {'id': 196, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'zara', 'precio': 4444}}, {'id': 197, 'atrr': {'color': 'morado', 'size': 'xl', 'brand': 'zara', 'precio': 4447}}, {'id': 198, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'blue', 'precio': 4447}}, {'id': 199, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'adidas', 'precio': 4789}}, {'id': 200, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'polo', 'precio': 8889}}, {'id': 201, 'atrr': {'color': 'naranja', 'size': 'xl', 'brand': 'blue', 'precio': 8889}}, {'id': 202, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'zara', 'precio': 4569}}, {'id': 203, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'zara', 'precio': 4569}}, {'id': 204, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'nike', 'precio': 1540}}, {'id': 205, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'nike', 'precio': 2333}}, {'id': 206, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'adidas', 'precio': 4789}}, {'id': 207, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'zara', 'precio': 10000}}, {'id': 208, 'atrr': {'color': 'rojo', 'size': 'l', 'brand': 'zara', 'precio': 1540}}, {'id': 209, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'zara', 'precio': 14000}}, {'id': 210, 'atrr': {'color': 'morado', 'size': 'xl', 'brand': 'adidas', 'precio': 4447}}, {'id': 211, 'atrr': {'color': 'amarillo', 'size': 's', 'brand': 'zara', 'precio': 4558}}, {'id': 212, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'adidas', 'precio': 4789}}, {'id': 213, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'zara', 'precio': 4444}}, {'id': 214, 'atrr': {'color': 'rojo', 'size': 'xxl', 'brand': 'nike', 'precio': 1540}}, {'id': 215, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'polo', 'precio': 15000}}, {'id': 216, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'adidas', 'precio': 4447}}, {'id': 217, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'polo', 'precio': 11000}}, {'id': 218, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'zara', 'precio': 4558}}, {'id': 219, 'atrr': {'color': 'amarillo', 'size': 'xxl', 'brand': 'nike', 'precio': 4558}}, {'id': 220, 'atrr': {'color': 'rojo', 'size': 'xxl', 'brand': 'blue', 'precio': 1540}}, {'id': 221, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'blue', 'precio': 2333}}, {'id': 222, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'nike', 'precio': 2333}}, {'id': 223, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'polo', 'precio': 4558}}, {'id': 224, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'blue', 'precio': 14000}}, {'id': 225, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'nike', 'precio': 4444}}, {'id': 226, 'atrr': {'color': 'verde', 'size': 'l', 'brand': 'polo', 'precio': 4447}}, {'id': 227, 'atrr': {'color': 'verde', 'size': 'l', 'brand': 'zara', 'precio': 11000}}, {'id': 228, 'atrr': {'color': 'azul', 'size': 'xl', 'brand': 'blue', 'precio': 1540}}, {'id': 229, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'adidas', 'precio': 1540}}, {'id': 230, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'nike', 'precio': 8889}}, {'id': 231, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'blue', 'precio': 4789}}, {'id': 232, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'nike', 'precio': 4447}}, {'id': 233, 'atrr': {'color': 'amarillo', 'size': 's', 'brand': 'zara', 'precio': 4447}}, {'id': 234, 'atrr': {'color': 'naranja', 'size': 'm', 'brand': 'adidas', 'precio': 1540}}, {'id': 235, 'atrr': {'color': 'azul', 'size': 's', 'brand': 'nike', 'precio': 15000}}, {'id': 236, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'zara', 'precio': 4569}}, {'id': 237, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'adidas', 'precio': 4569}}, {'id': 238, 'atrr': {'color': 'naranja', 'size': 'xl', 'brand': 'zara', 'precio': 14000}}, {'id': 239, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'zara', 'precio': 14000}}, {'id': 240, 'atrr': {'color': 'azul', 'size': 's', 'brand': 'zara', 'precio': 4558}}, {'id': 241, 'atrr': {'color': 'naranja', 'size': 's', 'brand': 'adidas', 'precio': 4569}}, {'id': 242, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'adidas', 'precio': 1540}}, {'id': 243, 'atrr': {'color': 'amarillo', 'size': 's', 'brand': 'polo', 'precio': 14000}}, {'id': 244, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'adidas', 'precio': 1540}}, {'id': 245, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'polo', 'precio': 8889}}, {'id': 246, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'polo', 'precio': 8889}}, {'id': 247, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'blue', 'precio': 4789}}, {'id': 248, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'polo', 'precio': 4789}}, {'id': 249, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'zara', 'precio': 4789}}, {'id': 250, 'atrr': {'color': 'rojo', 'size': 'l', 'brand': 'adidas', 'precio': 4789}}, {'id': 251, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'adidas', 'precio': 4444}}, {'id': 252, 'atrr': {'color': 'morado', 'size': 'm', 'brand': 'zara', 'precio': 4444}}, {'id': 253, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'polo', 'precio': 2333}}, {'id': 254, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'nike', 'precio': 4447}}, {'id': 255, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'blue', 'precio': 9500}}, {'id': 256, 'atrr': {'color': 'morado', 'size': 'xl', 'brand': 'polo', 'precio': 4447}}, {'id': 257, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'polo', 'precio': 4444}}, {'id': 258, 'atrr': {'color': 'azul', 'size': 'xl', 'brand': 'blue', 'precio': 4569}}, {'id': 259, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'blue', 'precio': 14000}}, {'id': 260, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'polo', 'precio': 10000}}, {'id': 261, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'polo', 'precio': 2333}}, {'id': 262, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'polo', 'precio': 4447}}, {'id': 263, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'blue', 'precio': 4558}}, {'id': 264, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'nike', 'precio': 4789}}, {'id': 265, 'atrr': {'color': 'azul', 'size': 'xl', 'brand': 'blue', 'precio': 14000}}, {'id': 266, 'atrr': {'color': 'rojo', 'size': 'xl', 'brand': 'polo', 'precio': 4444}}, {'id': 267, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'zara', 'precio': 2333}}, {'id': 268, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'zara', 'precio': 8889}}, {'id': 269, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'blue', 'precio': 8889}}, {'id': 270, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'adidas', 'precio': 1540}}, {'id': 271, 'atrr': {'color': 'verde', 'size': 'xxl', 'brand': 'adidas', 'precio': 4447}}, {'id': 272, 'atrr': {'color': 'morado', 'size': 'xl', 'brand': 'blue', 'precio': 4447}}, {'id': 273, 'atrr': {'color': 'morado', 'size': 'm', 'brand': 'zara', 'precio': 4569}}, {'id': 274, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'zara', 'precio': 4558}}, {'id': 275, 'atrr': {'color': 'rojo', 'size': 'xl', 'brand': 'polo', 'precio': 4447}}, {'id': 276, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'nike', 'precio': 15000}}, {'id': 277, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'nike', 'precio': 4569}}, {'id': 278, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'nike', 'precio': 11000}}, {'id': 279, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'polo', 'precio': 4569}}, {'id': 280, 'atrr': {'color': 'naranja', 'size': 'xl', 'brand': 'adidas', 'precio': 4447}}, {'id': 281, 'atrr': {'color': 'amarillo', 'size': 's', 'brand': 'nike', 'precio': 14000}}, {'id': 282, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'polo', 'precio': 4558}}, {'id': 283, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'zara', 'precio': 9500}}, {'id': 284, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'adidas', 'precio': 8889}}, {'id': 285, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'adidas', 'precio': 2333}}, {'id': 286, 'atrr': {'color': 'naranja', 'size': 's', 'brand': 'adidas', 'precio': 4447}}, {'id': 287, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'zara', 'precio': 9500}}, {'id': 288, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'nike', 'precio': 14000}}, {'id': 289, 'atrr': {'color': 'rojo', 'size': 'xl', 'brand': 'blue', 'precio': 4447}}, {'id': 290, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'adidas', 'precio': 15000}}, {'id': 291, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'polo', 'precio': 11000}}, {'id': 292, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'blue', 'precio': 11000}}, {'id': 293, 'atrr': {'color': 'verde', 'size': 'xxl', 'brand': 'zara', 'precio': 8889}}, {'id': 294, 'atrr': {'color': 'amarillo', 'size': 'l', 'brand': 'polo', 'precio': 1540}}, {'id': 295, 'atrr': {'color': 'azul', 'size': 'xl', 'brand': 'nike', 'precio': 1540}}, {'id': 296, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'polo', 'precio': 8889}}, {'id': 297, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'adidas', 'precio': 11000}}, {'id': 298, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'adidas', 'precio': 4569}}, {'id': 299, 'atrr': {'color': 'verde', 'size': 'l', 'brand': 'blue', 'precio': 8889}}, {'id': 300, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'blue', 'precio': 11000}}, {'id': 301, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'nike', 'precio': 4447}}, {'id': 302, 'atrr': {'color': 'azul', 'size': 'xl', 'brand': 'nike', 'precio': 4789}}, {'id': 303, 'atrr': {'color': 'verde', 'size': 'xxl', 'brand': 'blue', 'precio': 9500}}, {'id': 304, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'zara', 'precio': 9500}}, {'id': 305, 'atrr': {'color': 'morado', 'size': 'm', 'brand': 'zara', 'precio': 4569}}, {'id': 306, 'atrr': {'color': 'naranja', 'size': 's', 'brand': 'polo', 'precio': 4569}}, {'id': 307, 'atrr': {'color': 'rojo', 'size': 'xxl', 'brand': 'polo', 'precio': 4789}}, {'id': 308, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'zara', 'precio': 10000}}, {'id': 309, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'polo', 'precio': 8889}}, {'id': 310, 'atrr': {'color': 'rojo', 'size': 'm', 'brand': 'zara', 'precio': 4444}}, {'id': 311, 'atrr': {'color': 'amarillo', 'size': 'l', 'brand': 'adidas', 'precio': 11000}}, {'id': 312, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'polo', 'precio': 4569}}, {'id': 313, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'blue', 'precio': 10000}}, {'id': 314, 'atrr': {'color': 'rojo', 'size': 'xl', 'brand': 'adidas', 'precio': 11000}}, {'id': 315, 'atrr': {'color': 'azul', 'size': 'xl', 'brand': 'zara', 'precio': 11000}}, {'id': 316, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'zara', 'precio': 15000}}, {'id': 317, 'atrr': {'color': 'amarillo', 'size': 'l', 'brand': 'adidas', 'precio': 8889}}, {'id': 318, 'atrr': {'color': 'morado', 'size': 'm', 'brand': 'nike', 'precio': 11000}}, {'id': 319, 'atrr': {'color': 'amarillo', 'size': 'l', 'brand': 'nike', 'precio': 4569}}, {'id': 320, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'nike', 'precio': 2333}}, {'id': 321, 'atrr': {'color': 'morado', 'size': 'xl', 'brand': 'zara', 'precio': 4789}}, {'id': 322, 'atrr': {'color': 'rojo', 'size': 'l', 'brand': 'nike', 'precio': 4789}}, {'id': 323, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'polo', 'precio': 10000}}, {'id': 324, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'blue', 'precio': 4447}}, {'id': 325, 'atrr': {'color': 'rojo', 'size': 'xl', 'brand': 'adidas', 'precio': 4447}}, {'id': 326, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'zara', 'precio': 4569}}, {'id': 327, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'adidas', 'precio': 9500}}, {'id': 328, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'zara', 'precio': 14000}}, {'id': 329, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'adidas', 'precio': 4569}}, {'id': 330, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'polo', 'precio': 4447}}, {'id': 331, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'blue', 'precio': 2333}}, {'id': 332, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'blue', 'precio': 8889}}, {'id': 333, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'blue', 'precio': 4444}}, {'id': 334, 'atrr': {'color': 'rojo', 'size': 'xxl', 'brand': 'nike', 'precio': 4447}}, {'id': 335, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'blue', 'precio': 10000}}, {'id': 336, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'blue', 'precio': 10000}}, {'id': 337, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'polo', 'precio': 2333}}, {'id': 338, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'polo', 'precio': 1540}}, {'id': 339, 'atrr': {'color': 'amarillo', 'size': 'xxl', 'brand': 'nike', 'precio': 8889}}, {'id': 340, 'atrr': {'color': 'amarillo', 'size': 'l', 'brand': 'blue', 'precio': 11000}}, {'id': 341, 'atrr': {'color': 'morado', 'size': 'l', 'brand': 'blue', 'precio': 8889}}, {'id': 342, 'atrr': {'color': 'azul', 'size': 'xl', 'brand': 'polo', 'precio': 4447}}, {'id': 343, 'atrr': {'color': 'morado', 'size': 'm', 'brand': 'polo', 'precio': 15000}}, {'id': 344, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'nike', 'precio': 9500}}, {'id': 345, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'polo', 'precio': 4444}}, {'id': 346, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'adidas', 'precio': 4558}}, {'id': 347, 'atrr': {'color': 'morado', 'size': 'm', 'brand': 'adidas', 'precio': 11000}}, {'id': 348, 'atrr': {'color': 'azul', 'size': 'xl', 'brand': 'adidas', 'precio': 4569}}, {'id': 349, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'blue', 'precio': 1540}}, {'id': 350, 'atrr': {'color': 'verde', 'size': 'xxl', 'brand': 'blue', 'precio': 4789}}, {'id': 351, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'polo', 'precio': 11000}}, {'id': 352, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'polo', 'precio': 4444}}, {'id': 353, 'atrr': {'color': 'morado', 'size': 'xl', 'brand': 'nike', 'precio': 4558}}, {'id': 354, 'atrr': {'color': 'azul', 'size': 's', 'brand': 'polo', 'precio': 4569}}, {'id': 355, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'nike', 'precio': 4558}}, {'id': 356, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'blue', 'precio': 14000}}, {'id': 357, 'atrr': {'color': 'naranja', 'size': 's', 'brand': 'nike', 'precio': 4789}}, {'id': 358, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'polo', 'precio': 15000}}, {'id': 359, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'blue', 'precio': 8889}}, {'id': 360, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'polo', 'precio': 1540}}, {'id': 361, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'nike', 'precio': 2333}}, {'id': 362, 'atrr': {'color': 'azul', 'size': 's', 'brand': 'nike', 'precio': 11000}}, {'id': 363, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'zara', 'precio': 1540}}, {'id': 364, 'atrr': {'color': 'verde', 'size': 'l', 'brand': 'zara', 'precio': 10000}}, {'id': 365, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'zara', 'precio': 4444}}, {'id': 366, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'zara', 'precio': 1540}}, {'id': 367, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'zara', 'precio': 8889}}, {'id': 368, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'adidas', 'precio': 4447}}, {'id': 369, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'adidas', 'precio': 1540}}, {'id': 370, 'atrr': {'color': 'naranja', 'size': 'xl', 'brand': 'blue', 'precio': 4569}}, {'id': 371, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'blue', 'precio': 1540}}, {'id': 372, 'atrr': {'color': 'rojo', 'size': 'xl', 'brand': 'zara', 'precio': 1540}}, {'id': 373, 'atrr': {'color': 'rojo', 'size': 'l', 'brand': 'zara', 'precio': 4789}}, {'id': 374, 'atrr': {'color': 'amarillo', 'size': 'xxl', 'brand': 'blue', 'precio': 2333}}, {'id': 375, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'nike', 'precio': 11000}}, {'id': 376, 'atrr': {'color': 'morado', 'size': 'l', 'brand': 'adidas', 'precio': 14000}}, {'id': 377, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'adidas', 'precio': 10000}}, {'id': 378, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'zara', 'precio': 15000}}, {'id': 379, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'adidas', 'precio': 9500}}, {'id': 380, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'adidas', 'precio': 4569}}, {'id': 381, 'atrr': {'color': 'naranja', 'size': 'xl', 'brand': 'blue', 'precio': 14000}}, {'id': 382, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'zara', 'precio': 4444}}, {'id': 383, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'polo', 'precio': 4447}}, {'id': 384, 'atrr': {'color': 'morado', 'size': 'xl', 'brand': 'polo', 'precio': 8889}}, {'id': 385, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'polo', 'precio': 10000}}, {'id': 386, 'atrr': {'color': 'verde', 'size': 'l', 'brand': 'nike', 'precio': 4558}}, {'id': 387, 'atrr': {'color': 'azul', 'size': 's', 'brand': 'blue', 'precio': 1540}}, {'id': 388, 'atrr': {'color': 'rojo', 'size': 'l', 'brand': 'blue', 'precio': 1540}}, {'id': 389, 'atrr': {'color': 'morado', 'size': 'm', 'brand': 'adidas', 'precio': 4789}}, {'id': 390, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'blue', 'precio': 8889}}, {'id': 391, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'polo', 'precio': 10000}}, {'id': 392, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'adidas', 'precio': 8889}}, {'id': 393, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'polo', 'precio': 14000}}, {'id': 394, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'blue', 'precio': 4447}}, {'id': 395, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'zara', 'precio': 8889}}, {'id': 396, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'nike', 'precio': 10000}}, {'id': 397, 'atrr': {'color': 'azul', 'size': 's', 'brand': 'polo', 'precio': 9500}}, {'id': 398, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'polo', 'precio': 14000}}, {'id': 399, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'adidas', 'precio': 15000}}, {'id': 400, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'blue', 'precio': 4558}}, {'id': 401, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'adidas', 'precio': 10000}}, {'id': 402, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'polo', 'precio': 11000}}, {'id': 403, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'nike', 'precio': 2333}}, {'id': 404, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'blue', 'precio': 11000}}, {'id': 405, 'atrr': {'color': 'verde', 'size': 'm', 'brand': 'zara', 'precio': 10000}}, {'id': 406, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'zara', 'precio': 4789}}, {'id': 407, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'adidas', 'precio': 4789}}, {'id': 408, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'polo', 'precio': 4558}}, {'id': 409, 'atrr': {'color': 'naranja', 'size': 'm', 'brand': 'zara', 'precio': 4569}}, {'id': 410, 'atrr': {'color': 'amarillo', 'size': 'xxl', 'brand': 'adidas', 'precio': 10000}}, {'id': 411, 'atrr': {'color': 'naranja', 'size': 'm', 'brand': 'adidas', 'precio': 8889}}, {'id': 412, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'adidas', 'precio': 4444}}, {'id': 413, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'polo', 'precio': 4558}}, {'id': 414, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'adidas', 'precio': 11000}}, {'id': 415, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'nike', 'precio': 4558}}, {'id': 416, 'atrr': {'color': 'rojo', 'size': 'l', 'brand': 'adidas', 'precio': 2333}}, {'id': 417, 'atrr': {'color': 'amarillo', 'size': 'xxl', 'brand': 'polo', 'precio': 4789}}, {'id': 418, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'polo', 'precio': 15000}}, {'id': 419, 'atrr': {'color': 'azul', 'size': 'xl', 'brand': 'zara', 'precio': 4447}}, {'id': 420, 'atrr': {'color': 'verde', 'size': 'xxl', 'brand': 'adidas', 'precio': 4569}}, {'id': 421, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'polo', 'precio': 15000}}, {'id': 422, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'nike', 'precio': 4569}}, {'id': 423, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'zara', 'precio': 4789}}, {'id': 424, 'atrr': {'color': 'morado', 'size': 'm', 'brand': 'nike', 'precio': 8889}}, {'id': 425, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'blue', 'precio': 15000}}, {'id': 426, 'atrr': {'color': 'rojo', 'size': 'm', 'brand': 'zara', 'precio': 15000}}, {'id': 427, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'adidas', 'precio': 4558}}, {'id': 428, 'atrr': {'color': 'naranja', 'size': 'xl', 'brand': 'blue', 'precio': 9500}}, {'id': 429, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'polo', 'precio': 4447}}, {'id': 430, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'blue', 'precio': 10000}}, {'id': 431, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'adidas', 'precio': 4789}}, {'id': 432, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'polo', 'precio': 2333}}, {'id': 433, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'zara', 'precio': 4447}}, {'id': 434, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'blue', 'precio': 11000}}, {'id': 435, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'nike', 'precio': 4789}}, {'id': 436, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'polo', 'precio': 4558}}, {'id': 437, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'nike', 'precio': 14000}}, {'id': 438, 'atrr': {'color': 'morado', 'size': 'xl', 'brand': 'blue', 'precio': 4444}}, {'id': 439, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'adidas', 'precio': 1540}}, {'id': 440, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'blue', 'precio': 8889}}, {'id': 441, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'polo', 'precio': 14000}}, {'id': 442, 'atrr': {'color': 'morado', 'size': 'l', 'brand': 'adidas', 'precio': 11000}}, {'id': 443, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'nike', 'precio': 4444}}, {'id': 444, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'zara', 'precio': 4789}}, {'id': 445, 'atrr': {'color': 'rojo', 'size': 'l', 'brand': 'blue', 'precio': 4447}}, {'id': 446, 'atrr': {'color': 'rojo', 'size': 'xl', 'brand': 'blue', 'precio': 4569}}, {'id': 447, 'atrr': {'color': 'verde', 'size': 'l', 'brand': 'blue', 'precio': 11000}}, {'id': 448, 'atrr': {'color': 'naranja', 'size': 's', 'brand': 'adidas', 'precio': 4447}}, {'id': 449, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'adidas', 'precio': 2333}}, {'id': 450, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'blue', 'precio': 4447}}, {'id': 451, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'adidas', 'precio': 4447}}, {'id': 452, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'blue', 'precio': 4447}}, {'id': 453, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'adidas', 'precio': 10000}}, {'id': 454, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'adidas', 'precio': 1540}}, {'id': 455, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'nike', 'precio': 4789}}, {'id': 456, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'blue', 'precio': 4789}}, {'id': 457, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'blue', 'precio': 4447}}, {'id': 458, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'blue', 'precio': 4569}}, {'id': 459, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'polo', 'precio': 14000}}, {'id': 460, 'atrr': {'color': 'naranja', 'size': 'xl', 'brand': 'zara', 'precio': 4558}}, {'id': 461, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'adidas', 'precio': 11000}}, {'id': 462, 'atrr': {'color': 'azul', 'size': 's', 'brand': 'adidas', 'precio': 10000}}, {'id': 463, 'atrr': {'color': 'azul', 'size': 'xl', 'brand': 'blue', 'precio': 2333}}, {'id': 464, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'polo', 'precio': 4558}}, {'id': 465, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'blue', 'precio': 4558}}, {'id': 466, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'zara', 'precio': 4569}}, {'id': 467, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'adidas', 'precio': 8889}}, {'id': 468, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'zara', 'precio': 4569}}, {'id': 469, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'blue', 'precio': 10000}}, {'id': 470, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'adidas', 'precio': 1540}}, {'id': 471, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'polo', 'precio': 1540}}, {'id': 472, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'zara', 'precio': 14000}}, {'id': 473, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'zara', 'precio': 4444}}, {'id': 474, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'nike', 'precio': 1540}}, {'id': 475, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'nike', 'precio': 4447}}, {'id': 476, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'blue', 'precio': 4558}}, {'id': 477, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'adidas', 'precio': 9500}}, {'id': 478, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'nike', 'precio': 10000}}, {'id': 479, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'zara', 'precio': 4569}}, {'id': 480, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'adidas', 'precio': 10000}}, {'id': 481, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'polo', 'precio': 4569}}, {'id': 482, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'adidas', 'precio': 8889}}, {'id': 483, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'polo', 'precio': 4569}}, {'id': 484, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'adidas', 'precio': 1540}}, {'id': 485, 'atrr': {'color': 'rojo', 'size': 'xxl', 'brand': 'zara', 'precio': 2333}}, {'id': 486, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'polo', 'precio': 11000}}, {'id': 487, 'atrr': {'color': 'morado', 'size': 'l', 'brand': 'blue', 'precio': 8889}}, {'id': 488, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'zara', 'precio': 8889}}, {'id': 489, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'blue', 'precio': 4444}}, {'id': 490, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'zara', 'precio': 4789}}, {'id': 491, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'polo', 'precio': 4569}}, {'id': 492, 'atrr': {'color': 'azul', 'size': 'xl', 'brand': 'blue', 'precio': 9500}}, {'id': 493, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'adidas', 'precio': 4569}}, {'id': 494, 'atrr': {'color': 'rojo', 'size': 'm', 'brand': 'zara', 'precio': 1540}}, {'id': 495, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'zara', 'precio': 8889}}, {'id': 496, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'blue', 'precio': 4789}}, {'id': 497, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'polo', 'precio': 4444}}, {'id': 498, 'atrr': {'color': 'naranja', 'size': 'xl', 'brand': 'adidas', 'precio': 4444}}, {'id': 499, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'zara', 'precio': 11000}}, {'id': 500, 'atrr': {'color': 'azul', 'size': 's', 'brand': 'zara', 'precio': 14000}}, {'id': 501, 'atrr': {'color': 'naranja', 'size': 'm', 'brand': 'adidas', 'precio': 1540}}, {'id': 502, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'nike', 'precio': 11000}}, {'id': 503, 'atrr': {'color': 'verde', 'size': 'm', 'brand': 'blue', 'precio': 9500}}, {'id': 504, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'adidas', 'precio': 2333}}, {'id': 505, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'polo', 'precio': 4789}}, {'id': 506, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'nike', 'precio': 4558}}, {'id': 507, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'polo', 'precio': 4569}}, {'id': 508, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'zara', 'precio': 4444}}, {'id': 509, 'atrr': {'color': 'azul', 'size': 's', 'brand': 'nike', 'precio': 4569}}, {'id': 510, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'zara', 'precio': 4569}}, {'id': 511, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'nike', 'precio': 10000}}, {'id': 512, 'atrr': {'color': 'rojo', 'size': 'xl', 'brand': 'blue', 'precio': 10000}}, {'id': 513, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'zara', 'precio': 10000}}, {'id': 514, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'polo', 'precio': 14000}}, {'id': 515, 'atrr': {'color': 'amarillo', 'size': 'xxl', 'brand': 'nike', 'precio': 2333}}, {'id': 516, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'blue', 'precio': 8889}}, {'id': 517, 'atrr': {'color': 'rojo', 'size': 'l', 'brand': 'adidas', 'precio': 14000}}, {'id': 518, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'polo', 'precio': 4444}}, {'id': 519, 'atrr': {'color': 'naranja', 'size': 'xl', 'brand': 'polo', 'precio': 14000}}, {'id': 520, 'atrr': {'color': 'rojo', 'size': 'm', 'brand': 'zara', 'precio': 2333}}, {'id': 521, 'atrr': {'color': 'amarillo', 'size': 'l', 'brand': 'zara', 'precio': 8889}}, {'id': 522, 'atrr': {'color': 'rojo', 'size': 'xxl', 'brand': 'zara', 'precio': 14000}}, {'id': 523, 'atrr': {'color': 'morado', 'size': 'm', 'brand': 'zara', 'precio': 4444}}, {'id': 524, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'blue', 'precio': 1540}}, {'id': 525, 'atrr': {'color': 'morado', 'size': 'xl', 'brand': 'nike', 'precio': 11000}}, {'id': 526, 'atrr': {'color': 'verde', 'size': 'm', 'brand': 'nike', 'precio': 8889}}, {'id': 527, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'polo', 'precio': 11000}}, {'id': 528, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'nike', 'precio': 9500}}, {'id': 529, 'atrr': {'color': 'naranja', 'size': 's', 'brand': 'nike', 'precio': 15000}}, {'id': 530, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'blue', 'precio': 9500}}, {'id': 531, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'nike', 'precio': 4789}}, {'id': 532, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'adidas', 'precio': 14000}}, {'id': 533, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'nike', 'precio': 1540}}, {'id': 534, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'blue', 'precio': 4558}}, {'id': 535, 'atrr': {'color': 'rojo', 'size': 'xl', 'brand': 'polo', 'precio': 11000}}, {'id': 536, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'zara', 'precio': 4444}}, {'id': 537, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'adidas', 'precio': 4789}}, {'id': 538, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'blue', 'precio': 9500}}, {'id': 539, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'adidas', 'precio': 1540}}, {'id': 540, 'atrr': {'color': 'amarillo', 'size': 'l', 'brand': 'nike', 'precio': 10000}}, {'id': 541, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'adidas', 'precio': 11000}}, {'id': 542, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'adidas', 'precio': 14000}}, {'id': 543, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'zara', 'precio': 11000}}, {'id': 544, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'blue', 'precio': 4447}}, {'id': 545, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'blue', 'precio': 4569}}, {'id': 546, 'atrr': {'color': 'amarillo', 'size': 'xxl', 'brand': 'zara', 'precio': 15000}}, {'id': 547, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'adidas', 'precio': 4444}}, {'id': 548, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'polo', 'precio': 9500}}, {'id': 549, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'blue', 'precio': 11000}}, {'id': 550, 'atrr': {'color': 'azul', 'size': 's', 'brand': 'blue', 'precio': 4789}}, {'id': 551, 'atrr': {'color': 'verde', 'size': 'm', 'brand': 'adidas', 'precio': 10000}}, {'id': 552, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'zara', 'precio': 14000}}, {'id': 553, 'atrr': {'color': 'naranja', 'size': 'xl', 'brand': 'zara', 'precio': 8889}}, {'id': 554, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'polo', 'precio': 4789}}, {'id': 555, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'adidas', 'precio': 4569}}, {'id': 556, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'zara', 'precio': 15000}}, {'id': 557, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'blue', 'precio': 15000}}, {'id': 558, 'atrr': {'color': 'verde', 'size': 'l', 'brand': 'zara', 'precio': 4569}}, {'id': 559, 'atrr': {'color': 'verde', 'size': 'xxl', 'brand': 'zara', 'precio': 14000}}, {'id': 560, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'blue', 'precio': 9500}}, {'id': 561, 'atrr': {'color': 'amarillo', 'size': 'xxl', 'brand': 'blue', 'precio': 14000}}, {'id': 562, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'nike', 'precio': 4789}}, {'id': 563, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'zara', 'precio': 4789}}, {'id': 564, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'polo', 'precio': 14000}}, {'id': 565, 'atrr': {'color': 'azul', 'size': 's', 'brand': 'nike', 'precio': 10000}}, {'id': 566, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'blue', 'precio': 4447}}, {'id': 567, 'atrr': {'color': 'morado', 'size': 'l', 'brand': 'polo', 'precio': 4558}}, {'id': 568, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'blue', 'precio': 8889}}, {'id': 569, 'atrr': {'color': 'amarillo', 'size': 's', 'brand': 'zara', 'precio': 10000}}, {'id': 570, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'nike', 'precio': 15000}}, {'id': 571, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'blue', 'precio': 4569}}, {'id': 572, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'zara', 'precio': 4569}}, {'id': 573, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'adidas', 'precio': 9500}}, {'id': 574, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'adidas', 'precio': 8889}}, {'id': 575, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'blue', 'precio': 11000}}, {'id': 576, 'atrr': {'color': 'naranja', 'size': 'm', 'brand': 'blue', 'precio': 4789}}, {'id': 577, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'adidas', 'precio': 1540}}, {'id': 578, 'atrr': {'color': 'rojo', 'size': 'xxl', 'brand': 'nike', 'precio': 15000}}, {'id': 579, 'atrr': {'color': 'rojo', 'size': 'xl', 'brand': 'blue', 'precio': 4444}}, {'id': 580, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'zara', 'precio': 15000}}, {'id': 581, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'polo', 'precio': 4569}}, {'id': 582, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'nike', 'precio': 11000}}, {'id': 583, 'atrr': {'color': 'verde', 'size': 'xxl', 'brand': 'polo', 'precio': 11000}}, {'id': 584, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'nike', 'precio': 10000}}, {'id': 585, 'atrr': {'color': 'naranja', 'size': 'xl', 'brand': 'adidas', 'precio': 4447}}, {'id': 586, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'zara', 'precio': 4569}}, {'id': 587, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'adidas', 'precio': 4558}}, {'id': 588, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'nike', 'precio': 15000}}, {'id': 589, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'nike', 'precio': 4569}}, {'id': 590, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'polo', 'precio': 2333}}, {'id': 591, 'atrr': {'color': 'verde', 'size': 'l', 'brand': 'zara', 'precio': 4789}}, {'id': 592, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'adidas', 'precio': 4789}}, {'id': 593, 'atrr': {'color': 'naranja', 'size': 's', 'brand': 'zara', 'precio': 4569}}, {'id': 594, 'atrr': {'color': 'verde', 'size': 'm', 'brand': 'blue', 'precio': 4444}}, {'id': 595, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'zara', 'precio': 8889}}, {'id': 596, 'atrr': {'color': 'amarillo', 'size': 'xxl', 'brand': 'nike', 'precio': 2333}}, {'id': 597, 'atrr': {'color': 'azul', 'size': 'xl', 'brand': 'polo', 'precio': 4447}}, {'id': 598, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'zara', 'precio': 4444}}, {'id': 599, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'nike', 'precio': 4558}}, {'id': 600, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'blue', 'precio': 4447}}, {'id': 601, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'nike', 'precio': 4569}}, {'id': 602, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'adidas', 'precio': 14000}}, {'id': 603, 'atrr': {'color': 'naranja', 'size': 'm', 'brand': 'nike', 'precio': 2333}}, {'id': 604, 'atrr': {'color': 'amarillo', 'size': 's', 'brand': 'zara', 'precio': 15000}}, {'id': 605, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'polo', 'precio': 10000}}, {'id': 606, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'adidas', 'precio': 14000}}, {'id': 607, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'nike', 'precio': 15000}}, {'id': 608, 'atrr': {'color': 'morado', 'size': 'l', 'brand': 'nike', 'precio': 4447}}, {'id': 609, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'nike', 'precio': 11000}}, {'id': 610, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'nike', 'precio': 10000}}, {'id': 611, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'adidas', 'precio': 8889}}, {'id': 612, 'atrr': {'color': 'azul', 'size': 's', 'brand': 'nike', 'precio': 4558}}, {'id': 613, 'atrr': {'color': 'rojo', 'size': 'xl', 'brand': 'blue', 'precio': 8889}}, {'id': 614, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'polo', 'precio': 2333}}, {'id': 615, 'atrr': {'color': 'verde', 'size': 'l', 'brand': 'blue', 'precio': 4558}}, {'id': 616, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'nike', 'precio': 15000}}, {'id': 617, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'zara', 'precio': 4569}}, {'id': 618, 'atrr': {'color': 'amarillo', 'size': 'xxl', 'brand': 'zara', 'precio': 9500}}, {'id': 619, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'nike', 'precio': 8889}}, {'id': 620, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'adidas', 'precio': 9500}}, {'id': 621, 'atrr': {'color': 'amarillo', 'size': 'xxl', 'brand': 'nike', 'precio': 4569}}, {'id': 622, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'zara', 'precio': 4569}}, {'id': 623, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'zara', 'precio': 4569}}, {'id': 624, 'atrr': {'color': 'verde', 'size': 'xxl', 'brand': 'zara', 'precio': 4444}}, {'id': 625, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'zara', 'precio': 15000}}, {'id': 626, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'zara', 'precio': 4569}}, {'id': 627, 'atrr': {'color': 'rojo', 'size': 'xl', 'brand': 'blue', 'precio': 11000}}, {'id': 628, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'blue', 'precio': 9500}}, {'id': 629, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'adidas', 'precio': 11000}}, {'id': 630, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'adidas', 'precio': 10000}}, {'id': 631, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'blue', 'precio': 4447}}, {'id': 632, 'atrr': {'color': 'naranja', 'size': 'xl', 'brand': 'nike', 'precio': 4569}}, {'id': 633, 'atrr': {'color': 'verde', 'size': 'l', 'brand': 'zara', 'precio': 4447}}, {'id': 634, 'atrr': {'color': 'verde', 'size': 'xxl', 'brand': 'blue', 'precio': 4444}}, {'id': 635, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'polo', 'precio': 4558}}, {'id': 636, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'zara', 'precio': 14000}}, {'id': 637, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'nike', 'precio': 9500}}, {'id': 638, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'adidas', 'precio': 4444}}, {'id': 639, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'zara', 'precio': 9500}}, {'id': 640, 'atrr': {'color': 'verde', 'size': 'm', 'brand': 'polo', 'precio': 4444}}, {'id': 641, 'atrr': {'color': 'rojo', 'size': 'm', 'brand': 'adidas', 'precio': 4444}}, {'id': 642, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'zara', 'precio': 8889}}, {'id': 643, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'blue', 'precio': 1540}}, {'id': 644, 'atrr': {'color': 'rojo', 'size': 'l', 'brand': 'nike', 'precio': 15000}}, {'id': 645, 'atrr': {'color': 'naranja', 'size': 'm', 'brand': 'blue', 'precio': 14000}}, {'id': 646, 'atrr': {'color': 'verde', 'size': 'm', 'brand': 'zara', 'precio': 14000}}, {'id': 647, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'polo', 'precio': 4558}}, {'id': 648, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'blue', 'precio': 4444}}, {'id': 649, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'adidas', 'precio': 4444}}, {'id': 650, 'atrr': {'color': 'rojo', 'size': 'xxl', 'brand': 'zara', 'precio': 9500}}, {'id': 651, 'atrr': {'color': 'verde', 'size': 'xxl', 'brand': 'polo', 'precio': 9500}}, {'id': 652, 'atrr': {'color': 'morado', 'size': 'm', 'brand': 'polo', 'precio': 4569}}, {'id': 653, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'nike', 'precio': 4444}}, {'id': 654, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'polo', 'precio': 8889}}, {'id': 655, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'adidas', 'precio': 4447}}, {'id': 656, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'polo', 'precio': 2333}}, {'id': 657, 'atrr': {'color': 'morado', 'size': 'l', 'brand': 'blue', 'precio': 14000}}, {'id': 658, 'atrr': {'color': 'morado', 'size': 'xl', 'brand': 'zara', 'precio': 4789}}, {'id': 659, 'atrr': {'color': 'morado', 'size': 'm', 'brand': 'zara', 'precio': 4447}}, {'id': 660, 'atrr': {'color': 'rojo', 'size': 'xl', 'brand': 'polo', 'precio': 10000}}, {'id': 661, 'atrr': {'color': 'naranja', 'size': 'm', 'brand': 'nike', 'precio': 15000}}, {'id': 662, 'atrr': {'color': 'rojo', 'size': 'm', 'brand': 'nike', 'precio': 11000}}, {'id': 663, 'atrr': {'color': 'morado', 'size': 'xl', 'brand': 'blue', 'precio': 1540}}, {'id': 664, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'adidas', 'precio': 2333}}, {'id': 665, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'zara', 'precio': 4789}}, {'id': 666, 'atrr': {'color': 'rojo', 'size': 'l', 'brand': 'blue', 'precio': 4447}}, {'id': 667, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'blue', 'precio': 4447}}, {'id': 668, 'atrr': {'color': 'amarillo', 'size': 'l', 'brand': 'blue', 'precio': 15000}}, {'id': 669, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'adidas', 'precio': 4444}}, {'id': 670, 'atrr': {'color': 'morado', 'size': 'm', 'brand': 'blue', 'precio': 4444}}, {'id': 671, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'nike', 'precio': 15000}}, {'id': 672, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'blue', 'precio': 9500}}, {'id': 673, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'adidas', 'precio': 4569}}, {'id': 674, 'atrr': {'color': 'rojo', 'size': 'xxl', 'brand': 'zara', 'precio': 2333}}, {'id': 675, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'polo', 'precio': 1540}}, {'id': 676, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'zara', 'precio': 11000}}, {'id': 677, 'atrr': {'color': 'rojo', 'size': 'xl', 'brand': 'blue', 'precio': 9500}}, {'id': 678, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'zara', 'precio': 4447}}, {'id': 679, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'zara', 'precio': 4569}}, {'id': 680, 'atrr': {'color': 'verde', 'size': 'l', 'brand': 'blue', 'precio': 4558}}, {'id': 681, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'nike', 'precio': 4447}}, {'id': 682, 'atrr': {'color': 'naranja', 'size': 's', 'brand': 'adidas', 'precio': 4558}}, {'id': 683, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'polo', 'precio': 4444}}, {'id': 684, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'zara', 'precio': 14000}}, {'id': 685, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'nike', 'precio': 9500}}, {'id': 686, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'zara', 'precio': 15000}}, {'id': 687, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'nike', 'precio': 8889}}, {'id': 688, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'polo', 'precio': 4558}}, {'id': 689, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'zara', 'precio': 1540}}, {'id': 690, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'blue', 'precio': 10000}}, {'id': 691, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'nike', 'precio': 4569}}, {'id': 692, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'adidas', 'precio': 8889}}, {'id': 693, 'atrr': {'color': 'morado', 'size': 'xl', 'brand': 'polo', 'precio': 4789}}, {'id': 694, 'atrr': {'color': 'naranja', 'size': 'm', 'brand': 'blue', 'precio': 9500}}, {'id': 695, 'atrr': {'color': 'verde', 'size': 'xxl', 'brand': 'polo', 'precio': 4558}}, {'id': 696, 'atrr': {'color': 'naranja', 'size': 'm', 'brand': 'blue', 'precio': 15000}}, {'id': 697, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'polo', 'precio': 9500}}, {'id': 698, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'blue', 'precio': 1540}}, {'id': 699, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'polo', 'precio': 4569}}, {'id': 700, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'nike', 'precio': 4789}}, {'id': 701, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'nike', 'precio': 10000}}, {'id': 702, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'polo', 'precio': 4789}}, {'id': 703, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'zara', 'precio': 15000}}, {'id': 704, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'adidas', 'precio': 15000}}, {'id': 705, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'adidas', 'precio': 11000}}, {'id': 706, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'polo', 'precio': 4447}}, {'id': 707, 'atrr': {'color': 'rojo', 'size': 'l', 'brand': 'zara', 'precio': 8889}}, {'id': 708, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'nike', 'precio': 1540}}, {'id': 709, 'atrr': {'color': 'rojo', 'size': 'm', 'brand': 'zara', 'precio': 14000}}, {'id': 710, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'nike', 'precio': 11000}}, {'id': 711, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'nike', 'precio': 8889}}, {'id': 712, 'atrr': {'color': 'naranja', 'size': 'm', 'brand': 'polo', 'precio': 4447}}, {'id': 713, 'atrr': {'color': 'amarillo', 'size': 'l', 'brand': 'nike', 'precio': 9500}}, {'id': 714, 'atrr': {'color': 'amarillo', 'size': 's', 'brand': 'blue', 'precio': 10000}}, {'id': 715, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'zara', 'precio': 15000}}, {'id': 716, 'atrr': {'color': 'verde', 'size': 'm', 'brand': 'adidas', 'precio': 4789}}, {'id': 717, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'zara', 'precio': 4558}}, {'id': 718, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'nike', 'precio': 4558}}, {'id': 719, 'atrr': {'color': 'morado', 'size': 'l', 'brand': 'polo', 'precio': 2333}}, {'id': 720, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'zara', 'precio': 4444}}, {'id': 721, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'blue', 'precio': 9500}}, {'id': 722, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'nike', 'precio': 11000}}, {'id': 723, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'polo', 'precio': 4447}}, {'id': 724, 'atrr': {'color': 'azul', 'size': 's', 'brand': 'polo', 'precio': 4444}}, {'id': 725, 'atrr': {'color': 'morado', 'size': 'l', 'brand': 'nike', 'precio': 1540}}, {'id': 726, 'atrr': {'color': 'verde', 'size': 'm', 'brand': 'adidas', 'precio': 4444}}, {'id': 727, 'atrr': {'color': 'morado', 'size': 'm', 'brand': 'zara', 'precio': 11000}}, {'id': 728, 'atrr': {'color': 'rojo', 'size': 'xxl', 'brand': 'nike', 'precio': 4447}}, {'id': 729, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'adidas', 'precio': 4447}}, {'id': 730, 'atrr': {'color': 'morado', 'size': 'l', 'brand': 'nike', 'precio': 14000}}, {'id': 731, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'blue', 'precio': 4558}}, {'id': 732, 'atrr': {'color': 'rojo', 'size': 'xl', 'brand': 'zara', 'precio': 2333}}, {'id': 733, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'zara', 'precio': 4447}}, {'id': 734, 'atrr': {'color': 'naranja', 'size': 'xl', 'brand': 'zara', 'precio': 4569}}, {'id': 735, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'adidas', 'precio': 11000}}, {'id': 736, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'zara', 'precio': 4789}}, {'id': 737, 'atrr': {'color': 'naranja', 'size': 'xl', 'brand': 'adidas', 'precio': 4447}}, {'id': 738, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'nike', 'precio': 15000}}, {'id': 739, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'nike', 'precio': 15000}}, {'id': 740, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'adidas', 'precio': 4789}}, {'id': 741, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'blue', 'precio': 1540}}, {'id': 742, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'nike', 'precio': 4447}}, {'id': 743, 'atrr': {'color': 'verde', 'size': 'l', 'brand': 'zara', 'precio': 4447}}, {'id': 744, 'atrr': {'color': 'verde', 'size': 'l', 'brand': 'nike', 'precio': 4447}}, {'id': 745, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'blue', 'precio': 4447}}, {'id': 746, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'polo', 'precio': 4444}}, {'id': 747, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'nike', 'precio': 8889}}, {'id': 748, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'nike', 'precio': 10000}}, {'id': 749, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'nike', 'precio': 11000}}, {'id': 750, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'zara', 'precio': 4569}}, {'id': 751, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'nike', 'precio': 4558}}, {'id': 752, 'atrr': {'color': 'morado', 'size': 'xl', 'brand': 'polo', 'precio': 4569}}, {'id': 753, 'atrr': {'color': 'rojo', 'size': 'xxl', 'brand': 'blue', 'precio': 8889}}, {'id': 754, 'atrr': {'color': 'morado', 'size': 'l', 'brand': 'nike', 'precio': 4789}}, {'id': 755, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'nike', 'precio': 10000}}, {'id': 756, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'zara', 'precio': 14000}}, {'id': 757, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'adidas', 'precio': 9500}}, {'id': 758, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'blue', 'precio': 4444}}, {'id': 759, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'blue', 'precio': 8889}}, {'id': 760, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'polo', 'precio': 4558}}, {'id': 761, 'atrr': {'color': 'verde', 'size': 'm', 'brand': 'polo', 'precio': 10000}}, {'id': 762, 'atrr': {'color': 'rojo', 'size': 'l', 'brand': 'blue', 'precio': 1540}}, {'id': 763, 'atrr': {'color': 'verde', 'size': 'xxl', 'brand': 'blue', 'precio': 1540}}, {'id': 764, 'atrr': {'color': 'rojo', 'size': 'xl', 'brand': 'adidas', 'precio': 2333}}, {'id': 765, 'atrr': {'color': 'morado', 'size': 'xl', 'brand': 'zara', 'precio': 1540}}, {'id': 766, 'atrr': {'color': 'azul', 'size': 'xl', 'brand': 'zara', 'precio': 4444}}, {'id': 767, 'atrr': {'color': 'morado', 'size': 'm', 'brand': 'blue', 'precio': 4789}}, {'id': 768, 'atrr': {'color': 'azul', 'size': 'xl', 'brand': 'nike', 'precio': 4447}}, {'id': 769, 'atrr': {'color': 'rojo', 'size': 'xxl', 'brand': 'adidas', 'precio': 9500}}, {'id': 770, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'zara', 'precio': 2333}}, {'id': 771, 'atrr': {'color': 'amarillo', 'size': 'xxl', 'brand': 'zara', 'precio': 2333}}, {'id': 772, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'zara', 'precio': 2333}}, {'id': 773, 'atrr': {'color': 'naranja', 'size': 'xl', 'brand': 'zara', 'precio': 2333}}, {'id': 774, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'polo', 'precio': 9500}}, {'id': 775, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'blue', 'precio': 4558}}, {'id': 776, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'adidas', 'precio': 10000}}, {'id': 777, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'adidas', 'precio': 4558}}, {'id': 778, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'polo', 'precio': 4447}}, {'id': 779, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'blue', 'precio': 4447}}, {'id': 780, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'blue', 'precio': 1540}}, {'id': 781, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'polo', 'precio': 10000}}, {'id': 782, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'blue', 'precio': 11000}}, {'id': 783, 'atrr': {'color': 'amarillo', 'size': 's', 'brand': 'blue', 'precio': 8889}}, {'id': 784, 'atrr': {'color': 'verde', 'size': 'l', 'brand': 'blue', 'precio': 15000}}, {'id': 785, 'atrr': {'color': 'verde', 'size': 'l', 'brand': 'polo', 'precio': 4789}}, {'id': 786, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'adidas', 'precio': 2333}}, {'id': 787, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'adidas', 'precio': 15000}}, {'id': 788, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'adidas', 'precio': 8889}}, {'id': 789, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'blue', 'precio': 14000}}, {'id': 790, 'atrr': {'color': 'naranja', 'size': 'xl', 'brand': 'blue', 'precio': 4569}}, {'id': 791, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'blue', 'precio': 10000}}, {'id': 792, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'zara', 'precio': 11000}}, {'id': 793, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'polo', 'precio': 1540}}, {'id': 794, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'polo', 'precio': 4444}}, {'id': 795, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'nike', 'precio': 9500}}, {'id': 796, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'polo', 'precio': 8889}}, {'id': 797, 'atrr': {'color': 'amarillo', 'size': 'xxl', 'brand': 'zara', 'precio': 11000}}, {'id': 798, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'nike', 'precio': 9500}}, {'id': 799, 'atrr': {'color': 'amarillo', 'size': 'xxl', 'brand': 'zara', 'precio': 14000}}, {'id': 800, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'nike', 'precio': 4444}}, {'id': 801, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'polo', 'precio': 11000}}, {'id': 802, 'atrr': {'color': 'azul', 'size': 'xl', 'brand': 'zara', 'precio': 4789}}, {'id': 803, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'polo', 'precio': 4444}}, {'id': 804, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'blue', 'precio': 4447}}, {'id': 805, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'polo', 'precio': 8889}}, {'id': 806, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'zara', 'precio': 15000}}, {'id': 807, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'adidas', 'precio': 4558}}, {'id': 808, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'blue', 'precio': 9500}}, {'id': 809, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'polo', 'precio': 2333}}, {'id': 810, 'atrr': {'color': 'rojo', 'size': 'xxl', 'brand': 'nike', 'precio': 11000}}, {'id': 811, 'atrr': {'color': 'naranja', 'size': 's', 'brand': 'nike', 'precio': 4447}}, {'id': 812, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'zara', 'precio': 4789}}, {'id': 813, 'atrr': {'color': 'naranja', 'size': 's', 'brand': 'adidas', 'precio': 4558}}, {'id': 814, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'polo', 'precio': 11000}}, {'id': 815, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'polo', 'precio': 10000}}, {'id': 816, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'blue', 'precio': 4447}}, {'id': 817, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'polo', 'precio': 15000}}, {'id': 818, 'atrr': {'color': 'verde', 'size': 'l', 'brand': 'zara', 'precio': 11000}}, {'id': 819, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'zara', 'precio': 2333}}, {'id': 820, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'polo', 'precio': 4569}}, {'id': 821, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'adidas', 'precio': 4447}}, {'id': 822, 'atrr': {'color': 'rojo', 'size': 'l', 'brand': 'zara', 'precio': 2333}}, {'id': 823, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'nike', 'precio': 9500}}, {'id': 824, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'polo', 'precio': 11000}}, {'id': 825, 'atrr': {'color': 'amarillo', 'size': 's', 'brand': 'polo', 'precio': 10000}}, {'id': 826, 'atrr': {'color': 'morado', 'size': 'xl', 'brand': 'zara', 'precio': 2333}}, {'id': 827, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'polo', 'precio': 8889}}, {'id': 828, 'atrr': {'color': 'amarillo', 'size': 'l', 'brand': 'blue', 'precio': 11000}}, {'id': 829, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'polo', 'precio': 14000}}, {'id': 830, 'atrr': {'color': 'morado', 'size': 'm', 'brand': 'nike', 'precio': 4569}}, {'id': 831, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'blue', 'precio': 4447}}, {'id': 832, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'blue', 'precio': 2333}}, {'id': 833, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'nike', 'precio': 4447}}, {'id': 834, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'adidas', 'precio': 10000}}, {'id': 835, 'atrr': {'color': 'rojo', 'size': 'l', 'brand': 'zara', 'precio': 2333}}, {'id': 836, 'atrr': {'color': 'verde', 'size': 'xxl', 'brand': 'polo', 'precio': 1540}}, {'id': 837, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'adidas', 'precio': 4558}}, {'id': 838, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'zara', 'precio': 11000}}, {'id': 839, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'zara', 'precio': 4447}}, {'id': 840, 'atrr': {'color': 'naranja', 'size': 'xl', 'brand': 'nike', 'precio': 10000}}, {'id': 841, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'adidas', 'precio': 15000}}, {'id': 842, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'zara', 'precio': 4569}}, {'id': 843, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'blue', 'precio': 2333}}, {'id': 844, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'polo', 'precio': 10000}}, {'id': 845, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'polo', 'precio': 14000}}, {'id': 846, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'adidas', 'precio': 15000}}, {'id': 847, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'adidas', 'precio': 15000}}, {'id': 848, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'blue', 'precio': 4789}}, {'id': 849, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'zara', 'precio': 1540}}, {'id': 850, 'atrr': {'color': 'amarillo', 'size': 'xxl', 'brand': 'nike', 'precio': 4447}}, {'id': 851, 'atrr': {'color': 'rojo', 'size': 'l', 'brand': 'adidas', 'precio': 1540}}, {'id': 852, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'polo', 'precio': 1540}}, {'id': 853, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'blue', 'precio': 14000}}, {'id': 854, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'adidas', 'precio': 15000}}, {'id': 855, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'polo', 'precio': 4789}}, {'id': 856, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'blue', 'precio': 4569}}, {'id': 857, 'atrr': {'color': 'naranja', 'size': 'm', 'brand': 'zara', 'precio': 4444}}, {'id': 858, 'atrr': {'color': 'naranja', 'size': 's', 'brand': 'zara', 'precio': 9500}}, {'id': 859, 'atrr': {'color': 'morado', 'size': 'l', 'brand': 'polo', 'precio': 10000}}, {'id': 860, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'polo', 'precio': 14000}}, {'id': 861, 'atrr': {'color': 'morado', 'size': 'l', 'brand': 'adidas', 'precio': 4789}}, {'id': 862, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'polo', 'precio': 4789}}, {'id': 863, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'adidas', 'precio': 4789}}, {'id': 864, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'polo', 'precio': 4558}}, {'id': 865, 'atrr': {'color': 'amarillo', 'size': 'l', 'brand': 'adidas', 'precio': 14000}}, {'id': 866, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'adidas', 'precio': 8889}}, {'id': 867, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'zara', 'precio': 8889}}, {'id': 868, 'atrr': {'color': 'naranja', 'size': 's', 'brand': 'adidas', 'precio': 10000}}, {'id': 869, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'polo', 'precio': 11000}}, {'id': 870, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'polo', 'precio': 9500}}, {'id': 871, 'atrr': {'color': 'verde', 'size': 'm', 'brand': 'polo', 'precio': 4447}}, {'id': 872, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'polo', 'precio': 4789}}, {'id': 873, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'zara', 'precio': 4569}}, {'id': 874, 'atrr': {'color': 'rojo', 'size': 'l', 'brand': 'zara', 'precio': 4569}}, {'id': 875, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'blue', 'precio': 9500}}, {'id': 876, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'nike', 'precio': 2333}}, {'id': 877, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'polo', 'precio': 1540}}, {'id': 878, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'blue', 'precio': 4558}}, {'id': 879, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'polo', 'precio': 4444}}, {'id': 880, 'atrr': {'color': 'rojo', 'size': 'l', 'brand': 'zara', 'precio': 15000}}, {'id': 881, 'atrr': {'color': 'azul', 'size': 's', 'brand': 'blue', 'precio': 10000}}, {'id': 882, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'adidas', 'precio': 4569}}, {'id': 883, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'adidas', 'precio': 4444}}, {'id': 884, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'adidas', 'precio': 10000}}, {'id': 885, 'atrr': {'color': 'morado', 'size': 'l', 'brand': 'polo', 'precio': 10000}}, {'id': 886, 'atrr': {'color': 'morado', 'size': 'm', 'brand': 'zara', 'precio': 9500}}, {'id': 887, 'atrr': {'color': 'azul', 'size': 'xl', 'brand': 'zara', 'precio': 1540}}, {'id': 888, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'adidas', 'precio': 14000}}, {'id': 889, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'adidas', 'precio': 10000}}, {'id': 890, 'atrr': {'color': 'naranja', 'size': 's', 'brand': 'zara', 'precio': 2333}}, {'id': 891, 'atrr': {'color': 'rojo', 'size': 'xxl', 'brand': 'zara', 'precio': 10000}}, {'id': 892, 'atrr': {'color': 'amarillo', 'size': 'm', 'brand': 'nike', 'precio': 9500}}, {'id': 893, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'zara', 'precio': 4569}}, {'id': 894, 'atrr': {'color': 'rojo', 'size': 'm', 'brand': 'nike', 'precio': 4789}}, {'id': 895, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'adidas', 'precio': 4558}}, {'id': 896, 'atrr': {'color': 'amarillo', 'size': 'xxl', 'brand': 'adidas', 'precio': 4447}}, {'id': 897, 'atrr': {'color': 'verde', 'size': 'm', 'brand': 'nike', 'precio': 15000}}, {'id': 898, 'atrr': {'color': 'verde', 'size': 'm', 'brand': 'zara', 'precio': 4558}}, {'id': 899, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'nike', 'precio': 15000}}, {'id': 900, 'atrr': {'color': 'rojo', 'size': 'l', 'brand': 'zara', 'precio': 9500}}, {'id': 901, 'atrr': {'color': 'morado', 'size': 'xl', 'brand': 'zara', 'precio': 2333}}, {'id': 902, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'zara', 'precio': 4558}}, {'id': 903, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'adidas', 'precio': 14000}}, {'id': 904, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'nike', 'precio': 10000}}, {'id': 905, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'polo', 'precio': 11000}}, {'id': 906, 'atrr': {'color': 'rojo', 'size': 'm', 'brand': 'nike', 'precio': 15000}}, {'id': 907, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'polo', 'precio': 15000}}, {'id': 908, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'adidas', 'precio': 2333}}, {'id': 909, 'atrr': {'color': 'morado', 'size': 'm', 'brand': 'adidas', 'precio': 4789}}, {'id': 910, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'adidas', 'precio': 15000}}, {'id': 911, 'atrr': {'color': 'verde', 'size': 'l', 'brand': 'zara', 'precio': 4558}}, {'id': 912, 'atrr': {'color': 'rojo', 'size': 'l', 'brand': 'nike', 'precio': 10000}}, {'id': 913, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'blue', 'precio': 8889}}, {'id': 914, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'adidas', 'precio': 10000}}, {'id': 915, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'blue', 'precio': 2333}}, {'id': 916, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'adidas', 'precio': 2333}}, {'id': 917, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'nike', 'precio': 9500}}, {'id': 918, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'blue', 'precio': 4789}}, {'id': 919, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'nike', 'precio': 2333}}, {'id': 920, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'blue', 'precio': 1540}}, {'id': 921, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'polo', 'precio': 4569}}, {'id': 922, 'atrr': {'color': 'azul', 'size': 'xl', 'brand': 'nike', 'precio': 4569}}, {'id': 923, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'polo', 'precio': 14000}}, {'id': 924, 'atrr': {'color': 'azul', 'size': 's', 'brand': 'zara', 'precio': 9500}}, {'id': 925, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'nike', 'precio': 4558}}, {'id': 926, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'blue', 'precio': 10000}}, {'id': 927, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'zara', 'precio': 10000}}, {'id': 928, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'polo', 'precio': 9500}}, {'id': 929, 'atrr': {'color': 'naranja', 'size': 'xl', 'brand': 'adidas', 'precio': 10000}}, {'id': 930, 'atrr': {'color': 'naranja', 'size': 's', 'brand': 'polo', 'precio': 4569}}, {'id': 931, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'blue', 'precio': 2333}}, {'id': 932, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'blue', 'precio': 14000}}, {'id': 933, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'adidas', 'precio': 10000}}, {'id': 934, 'atrr': {'color': 'morado', 'size': 'm', 'brand': 'zara', 'precio': 14000}}, {'id': 935, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'polo', 'precio': 4444}}, {'id': 936, 'atrr': {'color': 'azul', 'size': 'xl', 'brand': 'blue', 'precio': 4789}}, {'id': 937, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'blue', 'precio': 8889}}, {'id': 938, 'atrr': {'color': 'rojo', 'size': 'm', 'brand': 'adidas', 'precio': 4789}}, {'id': 939, 'atrr': {'color': 'amarillo', 'size': 'l', 'brand': 'nike', 'precio': 11000}}, {'id': 940, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'nike', 'precio': 4569}}, {'id': 941, 'atrr': {'color': 'azul', 'size': 'm', 'brand': 'blue', 'precio': 4569}}, {'id': 942, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'polo', 'precio': 15000}}, {'id': 943, 'atrr': {'color': 'naranja', 'size': 's', 'brand': 'polo', 'precio': 10000}}, {'id': 944, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'adidas', 'precio': 11000}}, {'id': 945, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'zara', 'precio': 15000}}, {'id': 946, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'blue', 'precio': 4558}}, {'id': 947, 'atrr': {'color': 'naranja', 'size': 'm', 'brand': 'zara', 'precio': 8889}}, {'id': 948, 'atrr': {'color': 'morado', 'size': 'm', 'brand': 'nike', 'precio': 4569}}, {'id': 949, 'atrr': {'color': 'azul', 'size': 'xl', 'brand': 'nike', 'precio': 10000}}, {'id': 950, 'atrr': {'color': 'naranja', 'size': 'xl', 'brand': 'zara', 'precio': 15000}}, {'id': 951, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'nike', 'precio': 2333}}, {'id': 952, 'atrr': {'color': 'amarillo', 'size': 'xl', 'brand': 'zara', 'precio': 4789}}, {'id': 953, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'zara', 'precio': 10000}}, {'id': 954, 'atrr': {'color': 'verde', 'size': 'xl', 'brand': 'polo', 'precio': 8889}}, {'id': 955, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'zara', 'precio': 14000}}, {'id': 956, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'blue', 'precio': 15000}}, {'id': 957, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'adidas', 'precio': 8889}}, {'id': 958, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'polo', 'precio': 2333}}, {'id': 959, 'atrr': {'color': 'azul', 'size': 'xl', 'brand': 'zara', 'precio': 10000}}, {'id': 960, 'atrr': {'color': 'amarillo', 'size': 'xxl', 'brand': 'adidas', 'precio': 4444}}, {'id': 961, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'polo', 'precio': 4447}}, {'id': 962, 'atrr': {'color': 'rojo', 'size': 'm', 'brand': 'adidas', 'precio': 15000}}, {'id': 963, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'adidas', 'precio': 2333}}, {'id': 964, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'zara', 'precio': 9500}}, {'id': 965, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'polo', 'precio': 10000}}, {'id': 966, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'polo', 'precio': 2333}}, {'id': 967, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'adidas', 'precio': 4447}}, {'id': 968, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'zara', 'precio': 14000}}, {'id': 969, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'blue', 'precio': 15000}}, {'id': 970, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'adidas', 'precio': 10000}}, {'id': 971, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'blue', 'precio': 4558}}, {'id': 972, 'atrr': {'color': 'morado', 'size': 's', 'brand': 'nike', 'precio': 9500}}, {'id': 973, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'polo', 'precio': 4569}}, {'id': 974, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'polo', 'precio': 10000}}, {'id': 975, 'atrr': {'color': 'azul', 'size': 'l', 'brand': 'polo', 'precio': 4447}}, {'id': 976, 'atrr': {'color': 'amarillo', 'size': 'xs', 'brand': 'blue', 'precio': 15000}}, {'id': 977, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'adidas', 'precio': 4789}}, {'id': 978, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'adidas', 'precio': 4447}}, {'id': 979, 'atrr': {'color': 'amarillo', 'size': 's', 'brand': 'blue', 'precio': 14000}}, {'id': 980, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'nike', 'precio': 11000}}, {'id': 981, 'atrr': {'color': 'naranja', 'size': 'xs', 'brand': 'adidas', 'precio': 10000}}, {'id': 982, 'atrr': {'color': 'rojo', 'size': 's', 'brand': 'zara', 'precio': 4558}}, {'id': 983, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'polo', 'precio': 4569}}, {'id': 984, 'atrr': {'color': 'azul', 'size': 's', 'brand': 'adidas', 'precio': 4558}}, {'id': 985, 'atrr': {'color': 'morado', 'size': 'l', 'brand': 'polo', 'precio': 4444}}, {'id': 986, 'atrr': {'color': 'amarillo', 'size': 's', 'brand': 'zara', 'precio': 4447}}, {'id': 987, 'atrr': {'color': 'verde', 'size': 's', 'brand': 'zara', 'precio': 4444}}, {'id': 988, 'atrr': {'color': 'amarillo', 'size': 'l', 'brand': 'blue', 'precio': 4444}}, {'id': 989, 'atrr': {'color': 'morado', 'size': 'xs', 'brand': 'zara', 'precio': 8889}}, {'id': 990, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'adidas', 'precio': 4447}}, {'id': 991, 'atrr': {'color': 'rojo', 'size': 'xl', 'brand': 'blue', 'precio': 10000}}, {'id': 992, 'atrr': {'color': 'morado', 'size': 'xxl', 'brand': 'adidas', 'precio': 9500}}, {'id': 993, 'atrr': {'color': 'rojo', 'size': 'xs', 'brand': 'zara', 'precio': 2333}}, {'id': 994, 'atrr': {'color': 'naranja', 'size': 'xxl', 'brand': 'zara', 'precio': 9500}}, {'id': 995, 'atrr': {'color': 'verde', 'size': 'xs', 'brand': 'nike', 'precio': 11000}}, {'id': 996, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'blue', 'precio': 4789}}, {'id': 997, 'atrr': {'color': 'azul', 'size': 'xxl', 'brand': 'nike', 'precio': 4558}}, {'id': 998, 'atrr': {'color': 'naranja', 'size': 'l', 'brand': 'zara', 'precio': 15000}}, {'id': 999, 'atrr': {'color': 'azul', 'size': 'xs', 'brand': 'nike', 'precio': 1540}}, {'id': 1000, 'atrr': {'color': 'morado', 'size': 'xl', 'brand': 'nike', 'precio': 15000}}]
def repeated(words): distance = float('inf') d = {} for i, word in enumerate(words): if word in d: temp = abs(d[word] - i) if temp < distance: distance = temp d[word] = i return distance
def repeated(words): distance = float('inf') d = {} for (i, word) in enumerate(words): if word in d: temp = abs(d[word] - i) if temp < distance: distance = temp d[word] = i return distance
class Skin(object): menu_positions = ["left", "right"] height_decrement = 150 def get_base_template(self, module): t = self.base_template if module and module.has_local_nav(): t = self.local_nav_template return t def initialize(self, appshell): pass
class Skin(object): menu_positions = ['left', 'right'] height_decrement = 150 def get_base_template(self, module): t = self.base_template if module and module.has_local_nav(): t = self.local_nav_template return t def initialize(self, appshell): pass
# Day5 of my 100DaysOfCode Challenge # Program to learn is and in # use of is number = None if (number is None): print("Yes") else: print("No") # use of in list = [45, 34, 67, 99] print(34 in list)
number = None if number is None: print('Yes') else: print('No') list = [45, 34, 67, 99] print(34 in list)
def multiplication(factor, multiplier): product = factor * multiplier if (product % 1) == 0: return int(product) else: return product
def multiplication(factor, multiplier): product = factor * multiplier if product % 1 == 0: return int(product) else: return product
[ ## this file was manually modified by jt { 'functor' : { 'description' : ['returns a scalar integer value composed by the highiest bits.', 'of each vector element'], 'module' : 'boost', 'arity' : '1', 'call_types' : [], 'ret_arity' : '0', 'rturn' : { 'default' : 'T', }, 'special' : ['reduction'], 'type_defs' : [], 'types' : ['real_', 'signed_int_', 'unsigned_int_'] }, 'info' : 'manually modified', 'unit' : { 'global_header' : { 'first_stamp' : 'created by jt the 24/02/2011', 'included' : [], 'simd_included' : ['#include <boost/simd/include/functions/bits.hpp>', '#include <boost/simd/include/functions/shri.hpp>'], 'cover_included' : ['#include <boost/simd/include/functions/bits.hpp>'], 'no_ulp' : 'True', 'notes' : [], 'stamp' : 'modified by jt the 24/02/2011', }, 'ranges' : { 'default' : [['boost::simd::Valmin<T>()', 'boost::simd::Valmax<T>()']], }, 'specific_values' : { 'signed_int_' : { 'boost::simd::One<T>()' : {'result' : 'boost::simd::Zero<r_t>()','ulp_thresh' : '0',}, 'boost::simd::Zero<T>()' : {'result' : 'boost::simd::Zero<r_t>()','ulp_thresh' : '0',}, 'boost::simd::Signmask<T>()' : {'result' : 'r_t((1ull << boost::simd::meta::cardinal_of<vT>::value) - 1)','ulp_thresh' : '0',}, 'boost::simd::Allbits<T>()' : {'result' : 'r_t((1ull << boost::simd::meta::cardinal_of<vT>::value) - 1)','ulp_thresh' : '0',}, }, 'unsigned_int_' : { 'boost::simd::One<T>()' : {'result' : 'boost::simd::Zero<r_t>()','ulp_thresh' : '0',}, 'boost::simd::Zero<T>()' : {'result' : 'boost::simd::Zero<r_t>()','ulp_thresh' : '0',}, 'boost::simd::Allbits<T>()' : {'result' : 'r_t((1ull << boost::simd::meta::cardinal_of<vT>::value) - 1)','ulp_thresh' : '0',}, }, 'real_' : { 'boost::simd::Inf<T>()' : {'result' : 'boost::simd::Zero<r_t>()','ulp_thresh' : '0',}, 'boost::simd::Minf<T>()' : {'result' : 'boost::simd::shri(boost::simd::Mone<boost::simd::int32_t>(),int(32-boost::simd::meta::cardinal_of<vT>::value))','ulp_thresh' : '0',}, 'boost::simd::Mone<T>()' : {'result' : 'boost::simd::shri(boost::simd::Mone<boost::simd::int32_t>(),int(32-boost::simd::meta::cardinal_of<vT>::value))','ulp_thresh' : '0',}, 'boost::simd::Nan<T>()' : {'result' : 'boost::simd::shri(boost::simd::Mone<boost::simd::int32_t>(),int(32-boost::simd::meta::cardinal_of<vT>::value))','ulp_thresh' : '0',}, 'boost::simd::One<T>()' : {'result' : 'boost::simd::Zero<r_t>()','ulp_thresh' : '0',}, 'boost::simd::Zero<T>()' : {'result' : 'boost::simd::Zero<r_t>()','ulp_thresh' : '0',}, 'boost::simd::Signmask<T>()' : {'result' : 'r_t((1ull << boost::simd::meta::cardinal_of<vT>::value) - 1)','ulp_thresh' : '0',}, 'boost::simd::Allbits<T>()' : {'result' : 'r_t((1ull << boost::simd::meta::cardinal_of<vT>::value) - 1)','ulp_thresh' : '0',}, }, }, 'verif_test' : { 'nb_rand' : { 'default' : 'NT2_NB_RANDOM_TEST', }, 'property_call' : { 'default' : ['boost::simd::hmsb(a0)'], }, 'property_value' : { 'default' : ['boost::simd::b_and(a0, boost::simd::Signmask<r_t>()) != 0'], }, 'ulp_thresh' : { 'default' : ['0'], }, 'scalar_simul' :{ 'default' : [ " int z = 0;", " int N = cardinal_of<n_t>::value;", " for(int i = 0; i< N; ++i)", " {", " z |= boost::simd::bits(a0[i]) >> (sizeof(iT)*CHAR_BIT - 1) << (N-i-1);" " }", " NT2_TEST_EQUAL( v,z);", ] }, }, }, }, ]
[{'functor': {'description': ['returns a scalar integer value composed by the highiest bits.', 'of each vector element'], 'module': 'boost', 'arity': '1', 'call_types': [], 'ret_arity': '0', 'rturn': {'default': 'T'}, 'special': ['reduction'], 'type_defs': [], 'types': ['real_', 'signed_int_', 'unsigned_int_']}, 'info': 'manually modified', 'unit': {'global_header': {'first_stamp': 'created by jt the 24/02/2011', 'included': [], 'simd_included': ['#include <boost/simd/include/functions/bits.hpp>', '#include <boost/simd/include/functions/shri.hpp>'], 'cover_included': ['#include <boost/simd/include/functions/bits.hpp>'], 'no_ulp': 'True', 'notes': [], 'stamp': 'modified by jt the 24/02/2011'}, 'ranges': {'default': [['boost::simd::Valmin<T>()', 'boost::simd::Valmax<T>()']]}, 'specific_values': {'signed_int_': {'boost::simd::One<T>()': {'result': 'boost::simd::Zero<r_t>()', 'ulp_thresh': '0'}, 'boost::simd::Zero<T>()': {'result': 'boost::simd::Zero<r_t>()', 'ulp_thresh': '0'}, 'boost::simd::Signmask<T>()': {'result': 'r_t((1ull << boost::simd::meta::cardinal_of<vT>::value) - 1)', 'ulp_thresh': '0'}, 'boost::simd::Allbits<T>()': {'result': 'r_t((1ull << boost::simd::meta::cardinal_of<vT>::value) - 1)', 'ulp_thresh': '0'}}, 'unsigned_int_': {'boost::simd::One<T>()': {'result': 'boost::simd::Zero<r_t>()', 'ulp_thresh': '0'}, 'boost::simd::Zero<T>()': {'result': 'boost::simd::Zero<r_t>()', 'ulp_thresh': '0'}, 'boost::simd::Allbits<T>()': {'result': 'r_t((1ull << boost::simd::meta::cardinal_of<vT>::value) - 1)', 'ulp_thresh': '0'}}, 'real_': {'boost::simd::Inf<T>()': {'result': 'boost::simd::Zero<r_t>()', 'ulp_thresh': '0'}, 'boost::simd::Minf<T>()': {'result': 'boost::simd::shri(boost::simd::Mone<boost::simd::int32_t>(),int(32-boost::simd::meta::cardinal_of<vT>::value))', 'ulp_thresh': '0'}, 'boost::simd::Mone<T>()': {'result': 'boost::simd::shri(boost::simd::Mone<boost::simd::int32_t>(),int(32-boost::simd::meta::cardinal_of<vT>::value))', 'ulp_thresh': '0'}, 'boost::simd::Nan<T>()': {'result': 'boost::simd::shri(boost::simd::Mone<boost::simd::int32_t>(),int(32-boost::simd::meta::cardinal_of<vT>::value))', 'ulp_thresh': '0'}, 'boost::simd::One<T>()': {'result': 'boost::simd::Zero<r_t>()', 'ulp_thresh': '0'}, 'boost::simd::Zero<T>()': {'result': 'boost::simd::Zero<r_t>()', 'ulp_thresh': '0'}, 'boost::simd::Signmask<T>()': {'result': 'r_t((1ull << boost::simd::meta::cardinal_of<vT>::value) - 1)', 'ulp_thresh': '0'}, 'boost::simd::Allbits<T>()': {'result': 'r_t((1ull << boost::simd::meta::cardinal_of<vT>::value) - 1)', 'ulp_thresh': '0'}}}, 'verif_test': {'nb_rand': {'default': 'NT2_NB_RANDOM_TEST'}, 'property_call': {'default': ['boost::simd::hmsb(a0)']}, 'property_value': {'default': ['boost::simd::b_and(a0, boost::simd::Signmask<r_t>()) != 0']}, 'ulp_thresh': {'default': ['0']}, 'scalar_simul': {'default': [' int z = 0;', ' int N = cardinal_of<n_t>::value;', ' for(int i = 0; i< N; ++i)', ' {', ' z |= boost::simd::bits(a0[i]) >> (sizeof(iT)*CHAR_BIT - 1) << (N-i-1); }', ' NT2_TEST_EQUAL( v,z);']}}}}]
class Source: source_list = [] def __init__(self, id, description, url, category): self.id = id self.description = description self.url = url self.category = category class Articles: def __init__(self, id,author, title, urlToImage, url): self.id = id self.author = author self.title = title self.urlToImage= urlToImage self.url = url
class Source: source_list = [] def __init__(self, id, description, url, category): self.id = id self.description = description self.url = url self.category = category class Articles: def __init__(self, id, author, title, urlToImage, url): self.id = id self.author = author self.title = title self.urlToImage = urlToImage self.url = url
#! /usr/bin/python def _zeros(size): out = [[0 for _ in range(size)] for _ in range(size)] return out def _enforce_self_dist(dist_matrix, scale): longest = max((max(row) for row in dist_matrix)) longest *= scale for i in range(len(dist_matrix)): dist_matrix[i][i] = longest return dist_matrix def build_distance(hub_distance, patient_distance, scale): out = _zeros(len(patient_distance) + 1) for i, d in enumerate(hub_distance, 1): out[0][i] = d out[i][0] = d for i, row in enumerate(patient_distance, 1): for j, d in enumerate(row, 1): out[i][j] = d return _enforce_self_dist(out, scale)
def _zeros(size): out = [[0 for _ in range(size)] for _ in range(size)] return out def _enforce_self_dist(dist_matrix, scale): longest = max((max(row) for row in dist_matrix)) longest *= scale for i in range(len(dist_matrix)): dist_matrix[i][i] = longest return dist_matrix def build_distance(hub_distance, patient_distance, scale): out = _zeros(len(patient_distance) + 1) for (i, d) in enumerate(hub_distance, 1): out[0][i] = d out[i][0] = d for (i, row) in enumerate(patient_distance, 1): for (j, d) in enumerate(row, 1): out[i][j] = d return _enforce_self_dist(out, scale)
# Parameters template. # # This should agree with the current params.ini with the exception of the # fields we wish to modify. # # This template is called by run_sample.py for producing many outputs that are # needed to run a convergence study. finess_data_template = ''' ; Parameters common to FINESS applications [finess] ndims = 2 ; 1, 2, or 3 nout = 1 ; number of output times to print results tfinal = 1.0 ; final time initial_dt = 1.0 ; initial dt max_dt = 1.0 ; max allowable dt max_cfl = 0.4 ; max allowable Courant number desired_cfl = 0.35 ; desired Courant number nv = 500000 ; max number of time steps per call to DogSolve time_stepping_method = %(ts_method_str)s ; (e.g., Runge-Kutta, Lax-Wendroff, Multiderivative, User-Defined) space_order = %(s_order)i ; order of accuracy in space time_order = %(t_order)i ; order of accuracy in time verbosity = 1 ; verbosity of output mcapa = 0 ; mcapa (capacity function index in aux arrays) maux = 2 ; maux (number of aux arrays, maux >= mcapa) source_term = false ; source term (1-yes, 0-no) meqn = 1 ; number of equations output_dir = %(output)s ; location of the output directory ; ------------------------------------------------- ; Cartesian grid data (ignored if Unstructured) ; ------------------------------------------------- [grid] mx = %(mx)i ; number of grid elements in x-direction my = %(my)i ; number of grid elements in y-direction mbc = 3 ; number of ghost cells on each boundary xlow = 0.0e0 ; left end point xhigh = 1.0e0 ; right end point ylow = 0.0e0 ; lower end point yhigh = 1.0e0 ; upper end point ; ------------------------------------------------- ; WENO values ; ------------------------------------------------- [weno] weno_version = JS ; type of WENO reconstruction (e.g. JS, FD, Z) epsilon = 1e-29 ; regulization parameter ( epsilon > 0.0 ) alpha_scaling = 1.1 ; scaling parameter ( alpha_scaling >= 1.0 ) '''
finess_data_template = '\n; Parameters common to FINESS applications\n[finess]\nndims = 2 ; 1, 2, or 3\nnout = 1 ; number of output times to print results\ntfinal = 1.0 ; final time\ninitial_dt = 1.0 ; initial dt\nmax_dt = 1.0 ; max allowable dt \nmax_cfl = 0.4 ; max allowable Courant number\ndesired_cfl = 0.35 ; desired Courant number\nnv = 500000 ; max number of time steps per call to DogSolve\ntime_stepping_method = %(ts_method_str)s ; (e.g., Runge-Kutta, Lax-Wendroff, Multiderivative, User-Defined)\nspace_order = %(s_order)i ; order of accuracy in space\ntime_order = %(t_order)i ; order of accuracy in time\nverbosity = 1 ; verbosity of output\nmcapa = 0 ; mcapa (capacity function index in aux arrays)\nmaux = 2 ; maux (number of aux arrays, maux >= mcapa)\nsource_term = false ; source term (1-yes, 0-no)\nmeqn = 1 ; number of equations\noutput_dir = %(output)s ; location of the output directory\n\n; -------------------------------------------------\n; Cartesian grid data (ignored if Unstructured)\n; -------------------------------------------------\n[grid]\nmx = %(mx)i ; number of grid elements in x-direction\nmy = %(my)i ; number of grid elements in y-direction\nmbc = 3 ; number of ghost cells on each boundary\nxlow = 0.0e0 ; left end point\nxhigh = 1.0e0 ; right end point\nylow = 0.0e0 ; lower end point\nyhigh = 1.0e0 ; upper end point\n\n; -------------------------------------------------\n; WENO values\n; -------------------------------------------------\n[weno]\nweno_version = JS ; type of WENO reconstruction (e.g. JS, FD, Z)\nepsilon = 1e-29 ; regulization parameter ( epsilon > 0.0 )\nalpha_scaling = 1.1 ; scaling parameter ( alpha_scaling >= 1.0 )\n'
class AST: def __init__(self, root_symbol, rule, *children): self.root_symbol = root_symbol self.rule = rule self.children = children def __str__(self): return str(self.root_symbol) class Leaf(AST): def __init__(self, root_symbol, actual_input): super(Leaf, self).__init__(root_symbol, None) self.actual_input = actual_input def __str__(self): return str(self.actual_input)
class Ast: def __init__(self, root_symbol, rule, *children): self.root_symbol = root_symbol self.rule = rule self.children = children def __str__(self): return str(self.root_symbol) class Leaf(AST): def __init__(self, root_symbol, actual_input): super(Leaf, self).__init__(root_symbol, None) self.actual_input = actual_input def __str__(self): return str(self.actual_input)
product = 1 i = 1 while product > 0.5: product *= (365.0 - i) / 365.0 i += 1 print(product, i)
product = 1 i = 1 while product > 0.5: product *= (365.0 - i) / 365.0 i += 1 print(product, i)
class Direcao: def __init__(self): self.posicoes = ("Norte", "Leste", "Sul", "Oeste") self.direcao_atual = 0 def girar_a_direita(self): self.direcao_atual += 1 self.direcao_atual = min(3, self.direcao_atual) #if self.direcao_atual > 3: #self.direcao_atual = 0 def girar_a_esquerda(self): self.direcao_atual -= 1 self.direcao_atual = max(-3, self.direcao_atual) ##if self.direcao_atual < -3: ##self.direcao_atual = 0 if __name__ == '__main__': d = Direcao() print(d.direcao_atual) d.girar_a_direita() print(d.direcao_atual) d.girar_a_direita() print(d.direcao_atual) d.girar_a_direita() print(d.direcao_atual) d.girar_a_direita() print(d.direcao_atual) d.girar_a_esquerda() print(d.direcao_atual) d.girar_a_esquerda() print(d.direcao_atual) d.girar_a_esquerda() print(d.direcao_atual) d.girar_a_esquerda() print(d.direcao_atual)
class Direcao: def __init__(self): self.posicoes = ('Norte', 'Leste', 'Sul', 'Oeste') self.direcao_atual = 0 def girar_a_direita(self): self.direcao_atual += 1 self.direcao_atual = min(3, self.direcao_atual) def girar_a_esquerda(self): self.direcao_atual -= 1 self.direcao_atual = max(-3, self.direcao_atual) if __name__ == '__main__': d = direcao() print(d.direcao_atual) d.girar_a_direita() print(d.direcao_atual) d.girar_a_direita() print(d.direcao_atual) d.girar_a_direita() print(d.direcao_atual) d.girar_a_direita() print(d.direcao_atual) d.girar_a_esquerda() print(d.direcao_atual) d.girar_a_esquerda() print(d.direcao_atual) d.girar_a_esquerda() print(d.direcao_atual) d.girar_a_esquerda() print(d.direcao_atual)
br, bc = map(int, input().split()) dr, dc = map(int, input().split()) jr, jc = map(int, input().split()) bessie = max(abs(br - jr), abs(bc - jc)) daisy = abs(dr - jr) + abs(dc - jc) if bessie == daisy: print('tie') elif bessie < daisy: print('bessie') else: print('daisy')
(br, bc) = map(int, input().split()) (dr, dc) = map(int, input().split()) (jr, jc) = map(int, input().split()) bessie = max(abs(br - jr), abs(bc - jc)) daisy = abs(dr - jr) + abs(dc - jc) if bessie == daisy: print('tie') elif bessie < daisy: print('bessie') else: print('daisy')
# we write a function that computes x factorial recursively def recursiveFactorial(x): # we check that x is positive if x < 0: raise exception("factorials of non-negative numbers only") # we check if x is either 0 or 1 if x <= 1: # we return the asnwer 1 return 1 else: # we recurse return x * recursiveFactorial(x - 1)
def recursive_factorial(x): if x < 0: raise exception('factorials of non-negative numbers only') if x <= 1: return 1 else: return x * recursive_factorial(x - 1)
#!/bin/python3 def hackerrankInString(s): find = "hackerrank" i = 0 for c in s: if find[i] == c: i += 1 if i >= len(find): return("YES") return("NO") if __name__ == "__main__": q = int(input().strip()) for a0 in range(q): s = input().strip() result = hackerrankInString(s) print(result)
def hackerrank_in_string(s): find = 'hackerrank' i = 0 for c in s: if find[i] == c: i += 1 if i >= len(find): return 'YES' return 'NO' if __name__ == '__main__': q = int(input().strip()) for a0 in range(q): s = input().strip() result = hackerrank_in_string(s) print(result)
filein = input('Input an email log txt file please: ') emaillog = open(filein) days = dict() for x in emaillog: if 'From ' in x: array = x.split() day = array[1] day = day.split('@') day = day[1] days[day] = days.get(day, 0)+1 else: continue print(days) # most = max(days, key=days.get) # print(most, days[most])
filein = input('Input an email log txt file please: ') emaillog = open(filein) days = dict() for x in emaillog: if 'From ' in x: array = x.split() day = array[1] day = day.split('@') day = day[1] days[day] = days.get(day, 0) + 1 else: continue print(days)
# 21303 - [Job Adv] (Lv.60) Aran sm.setSpeakerID(1203001) sm.sendNext("*Sob sob* #p1203001# is sad. #p1203001# is mad. #p1203001# cries. *Sob sob*") sm.setPlayerAsSpeaker() sm.sendNext("Wh...What's wrong?") sm.setSpeakerID(1203001) sm.sendNext("#p1203001# made gem. #bGem as red as apple#k. But #rthief#k stole gem. #p1203001# no longer has gem. #p1203001# is sad...") sm.setPlayerAsSpeaker() sm.sendNext("A thief stole your red gem?") sm.setSpeakerID(1203001) if sm.sendAskYesNo("yes, #p1203001# wants gem back. #p1203001# reward you if you find gem. Catch thief and you get reward."): sm.startQuest(parentID) sm.sendNext("The thief wen that way! Which way? Hold on...eat with right hand, not left hand... #bLeft#k! He went left! Go left and you find thief.") sm.dispose() else: sm.dispose()
sm.setSpeakerID(1203001) sm.sendNext('*Sob sob* #p1203001# is sad. #p1203001# is mad. #p1203001# cries. *Sob sob*') sm.setPlayerAsSpeaker() sm.sendNext("Wh...What's wrong?") sm.setSpeakerID(1203001) sm.sendNext('#p1203001# made gem. #bGem as red as apple#k. But #rthief#k stole gem. #p1203001# no longer has gem. #p1203001# is sad...') sm.setPlayerAsSpeaker() sm.sendNext('A thief stole your red gem?') sm.setSpeakerID(1203001) if sm.sendAskYesNo('yes, #p1203001# wants gem back. #p1203001# reward you if you find gem. Catch thief and you get reward.'): sm.startQuest(parentID) sm.sendNext('The thief wen that way! Which way? Hold on...eat with right hand, not left hand... #bLeft#k! He went left! Go left and you find thief.') sm.dispose() else: sm.dispose()
pkgname = "efl" pkgver = "1.26.1" pkgrel = 0 build_style = "meson" configure_args = [ "-Dbuild-tests=false", "-Dbuild-examples=false", "-Dembedded-lz4=false", "-Dcrypto=openssl", "-Decore-imf-loaders-disabler=scim", # rlottie (json) is pretty useless and unstable so keep that off "-Devas-loaders-disabler=json", "-Dlua-interpreter=lua", "-Dbindings=cxx", "-Dopengl=es-egl", "-Dphysics=false", "-Delua=false", "-Dsystemd=true", "-Dx11=true", "-Dxpresent=true", "-Dxinput2=true", "-Dxinput22=true", "-Dfb=true", "-Dwl=true", "-Ddrm=true", "-Dgstreamer=true", "-Dpulseaudio=true", "-Dharfbuzz=true", "-Dglib=true", ] hostmakedepends = ["meson", "pkgconf", "gettext-tiny-devel"] makedepends = [ "gettext-tiny-devel", "openssl-devel", "eudev-devel", "elogind-devel", "libmount-devel", "libdrm-devel", "libinput-devel", "libxkbcommon-devel", "mesa-devel", "wayland-protocols", "wayland-devel", "libxrandr-devel", "libxscrnsaver-devel", "libxcomposite-devel", "libxcursor-devel", "libxdamage-devel", "libxrender-devel", "libxext-devel", "libxtst-devel", "libxi-devel", "libxinerama-devel", "libxpresent-devel", "xcb-util-devel", "xcb-util-keysyms-devel", "xcb-util-image-devel", "xcb-util-wm-devel", "xcb-util-renderutil-devel", "xorgproto", "liblz4-devel", "zlib-devel", "fontconfig-devel", "fribidi-devel", "harfbuzz-devel", "freetype-devel", "libjpeg-turbo-devel", "libpng-devel", "giflib-devel", "libtiff-devel", "libwebp-devel", "openjpeg-devel", "libavif-devel", "libheif-devel", "libpulse-devel", "libraw-devel", "librsvg-devel", "libspectre-devel", "libpoppler-cpp-devel", "libsndfile-devel", "gstreamer-devel", "gst-plugins-base-devel", "glib-devel", "avahi-devel", "lua5.1-devel", "ibus-devel", ] checkdepends = ["dbus", "xvfb-run", "check-devel"] pkgdesc = "Enlightenment Foundation Libraries" maintainer = "q66 <q66@chimera-linux.org>" license = "BSD-2-Clause AND LGPL-2.1-only AND Zlib AND custom:small" url = "https://enlightenment.org" source = f"https://download.enlightenment.org/rel/libs/{pkgname}/{pkgname}-{pkgver}.tar.xz" sha256 = "86a9677e3d48dd0c13a399ebb417bd417bd8d150d6b06cc491bc92275c88a642" # xvfb-run is unpackaged for now, and would need a special do_check options = ["!check"] match self.profile().arch: case "ppc64le" | "aarch64": # requires SSE3 on x86, so not there configure_args.append("-Dnative-arch-optimization=true") case _: configure_args.append("-Dnative-arch-optimization=false") if self.profile().cross: hostmakedepends.append("efl-devel") def post_install(self): self.install_license("licenses/COPYING.BSD") self.install_license("licenses/COPYING.SMALL") self.install_license("licenses/COPYING.DNS") # service files: maybe reimplement for dinit later self.rm(self.destdir / "usr/lib/systemd", recursive = True) self.rm(self.destdir / "usr/lib/ecore/system/systemd", recursive = True) @subpackage("efl-ibus") def _ibus(self): self.pkgdesc = f"{pkgdesc} (IBus support)" self.install_if = [f"{pkgname}={pkgver}-r{pkgrel}", "ibus"] return ["usr/lib/ecore_imf/modules/ibus"] @subpackage("efl-devel") def _devel(self): return self.default_devel()
pkgname = 'efl' pkgver = '1.26.1' pkgrel = 0 build_style = 'meson' configure_args = ['-Dbuild-tests=false', '-Dbuild-examples=false', '-Dembedded-lz4=false', '-Dcrypto=openssl', '-Decore-imf-loaders-disabler=scim', '-Devas-loaders-disabler=json', '-Dlua-interpreter=lua', '-Dbindings=cxx', '-Dopengl=es-egl', '-Dphysics=false', '-Delua=false', '-Dsystemd=true', '-Dx11=true', '-Dxpresent=true', '-Dxinput2=true', '-Dxinput22=true', '-Dfb=true', '-Dwl=true', '-Ddrm=true', '-Dgstreamer=true', '-Dpulseaudio=true', '-Dharfbuzz=true', '-Dglib=true'] hostmakedepends = ['meson', 'pkgconf', 'gettext-tiny-devel'] makedepends = ['gettext-tiny-devel', 'openssl-devel', 'eudev-devel', 'elogind-devel', 'libmount-devel', 'libdrm-devel', 'libinput-devel', 'libxkbcommon-devel', 'mesa-devel', 'wayland-protocols', 'wayland-devel', 'libxrandr-devel', 'libxscrnsaver-devel', 'libxcomposite-devel', 'libxcursor-devel', 'libxdamage-devel', 'libxrender-devel', 'libxext-devel', 'libxtst-devel', 'libxi-devel', 'libxinerama-devel', 'libxpresent-devel', 'xcb-util-devel', 'xcb-util-keysyms-devel', 'xcb-util-image-devel', 'xcb-util-wm-devel', 'xcb-util-renderutil-devel', 'xorgproto', 'liblz4-devel', 'zlib-devel', 'fontconfig-devel', 'fribidi-devel', 'harfbuzz-devel', 'freetype-devel', 'libjpeg-turbo-devel', 'libpng-devel', 'giflib-devel', 'libtiff-devel', 'libwebp-devel', 'openjpeg-devel', 'libavif-devel', 'libheif-devel', 'libpulse-devel', 'libraw-devel', 'librsvg-devel', 'libspectre-devel', 'libpoppler-cpp-devel', 'libsndfile-devel', 'gstreamer-devel', 'gst-plugins-base-devel', 'glib-devel', 'avahi-devel', 'lua5.1-devel', 'ibus-devel'] checkdepends = ['dbus', 'xvfb-run', 'check-devel'] pkgdesc = 'Enlightenment Foundation Libraries' maintainer = 'q66 <q66@chimera-linux.org>' license = 'BSD-2-Clause AND LGPL-2.1-only AND Zlib AND custom:small' url = 'https://enlightenment.org' source = f'https://download.enlightenment.org/rel/libs/{pkgname}/{pkgname}-{pkgver}.tar.xz' sha256 = '86a9677e3d48dd0c13a399ebb417bd417bd8d150d6b06cc491bc92275c88a642' options = ['!check'] match self.profile().arch: case 'ppc64le' | 'aarch64': configure_args.append('-Dnative-arch-optimization=true') case _: configure_args.append('-Dnative-arch-optimization=false') if self.profile().cross: hostmakedepends.append('efl-devel') def post_install(self): self.install_license('licenses/COPYING.BSD') self.install_license('licenses/COPYING.SMALL') self.install_license('licenses/COPYING.DNS') self.rm(self.destdir / 'usr/lib/systemd', recursive=True) self.rm(self.destdir / 'usr/lib/ecore/system/systemd', recursive=True) @subpackage('efl-ibus') def _ibus(self): self.pkgdesc = f'{pkgdesc} (IBus support)' self.install_if = [f'{pkgname}={pkgver}-r{pkgrel}', 'ibus'] return ['usr/lib/ecore_imf/modules/ibus'] @subpackage('efl-devel') def _devel(self): return self.default_devel()
description = 'FOV linear axis for the large box (300 x 300)' group = 'optional' excludes = ['fov_100x100', 'fov_190x190'] includes = ['frr'] devices = dict( fov_300_mot = device('nicos.devices.generic.VirtualReferenceMotor', description = 'FOV motor', visibility = (), abslimits = (275, 950), userlimits = (276, 949), refswitch = 'low', refpos = 275, unit = 'mm', speed = 5, ), # fov_300_enc = device('nicos.devices.generic.VirtualCoder', # description = 'FOV encoder', # motor = 'fov_300_mot', # visibility = (), # ), fov_300 = device('nicos.devices.generic.Axis', description = 'FOV linear axis', pollinterval = 5, maxage = 10, precision = 0.1, fmtstr = '%.2f', motor = 'fov_300_mot', # coder = 'fov_300_enc', ), )
description = 'FOV linear axis for the large box (300 x 300)' group = 'optional' excludes = ['fov_100x100', 'fov_190x190'] includes = ['frr'] devices = dict(fov_300_mot=device('nicos.devices.generic.VirtualReferenceMotor', description='FOV motor', visibility=(), abslimits=(275, 950), userlimits=(276, 949), refswitch='low', refpos=275, unit='mm', speed=5), fov_300=device('nicos.devices.generic.Axis', description='FOV linear axis', pollinterval=5, maxage=10, precision=0.1, fmtstr='%.2f', motor='fov_300_mot'))
''' .remove(x) This operation removes element from the set. If element does not exist, it raises a KeyError. The .remove(x) operation returns None. Example >>> s = set([1, 2, 3, 4, 5, 6, 7, 8, 9]) >>> s.remove(5) >>> print s set([1, 2, 3, 4, 6, 7, 8, 9]) >>> print s.remove(4) None >>> print s set([1, 2, 3, 6, 7, 8, 9]) >>> s.remove(0) KeyError: 0 .discard(x) This operation also removes element from the set. If element does not exist, it does not raise a KeyError. The .discard(x) operation returns None. Example >>> s = set([1, 2, 3, 4, 5, 6, 7, 8, 9]) >>> s.discard(5) >>> print s set([1, 2, 3, 4, 6, 7, 8, 9]) >>> print s.discard(4) None >>> print s set([1, 2, 3, 6, 7, 8, 9]) >>> s.discard(0) >>> print s set([1, 2, 3, 6, 7, 8, 9]) .pop() This operation removes and return an arbitrary element from the set. If there are no elements to remove, it raises a KeyError. Example >>> s = set([1]) >>> print s.pop() 1 >>> print s set([]) >>> print s.pop() KeyError: pop from an empty set Task You have a non-empty set , and you have to execute commands given in lines. The commands will be pop, remove and discard. Input Format The first line contains integer , the number of elements in the set . The second line contains space separated elements of set . All of the elements are non-negative integers, less than or equal to 9. The third line contains integer , the number of commands. The next lines contains either pop, remove and/or discard commands followed by their associated value. Output Format Print the sum of the elements of set on a single line. Sample Input 9 1 2 3 4 5 6 7 8 9 10 pop remove 9 discard 9 discard 8 remove 7 pop discard 6 remove 5 pop discard 5 Sample Output 4 Explanation After completing these 10 operations on the set, we get set([4]). Hence, the sum is 4. Note: Convert the elements of set s to integers while you are assigning them. To ensure the proper input of the set, we have added the first two lines of code to the editor. ''' n = int(input()) s = set(map(int, input().split())) n = int(input()) for i in range(n): a = input() b = list(map(str, a.split())) if b[0] == 'pop': s.pop() elif b[0] == 'discard': s.discard(int(b[1])) elif b[0] == 'remove': try: s.remove(int(b[1])) except KeyError: pass sum = 0 for i in range(len(s)): sum += s.pop() print(sum)
""" .remove(x) This operation removes element from the set. If element does not exist, it raises a KeyError. The .remove(x) operation returns None. Example >>> s = set([1, 2, 3, 4, 5, 6, 7, 8, 9]) >>> s.remove(5) >>> print s set([1, 2, 3, 4, 6, 7, 8, 9]) >>> print s.remove(4) None >>> print s set([1, 2, 3, 6, 7, 8, 9]) >>> s.remove(0) KeyError: 0 .discard(x) This operation also removes element from the set. If element does not exist, it does not raise a KeyError. The .discard(x) operation returns None. Example >>> s = set([1, 2, 3, 4, 5, 6, 7, 8, 9]) >>> s.discard(5) >>> print s set([1, 2, 3, 4, 6, 7, 8, 9]) >>> print s.discard(4) None >>> print s set([1, 2, 3, 6, 7, 8, 9]) >>> s.discard(0) >>> print s set([1, 2, 3, 6, 7, 8, 9]) .pop() This operation removes and return an arbitrary element from the set. If there are no elements to remove, it raises a KeyError. Example >>> s = set([1]) >>> print s.pop() 1 >>> print s set([]) >>> print s.pop() KeyError: pop from an empty set Task You have a non-empty set , and you have to execute commands given in lines. The commands will be pop, remove and discard. Input Format The first line contains integer , the number of elements in the set . The second line contains space separated elements of set . All of the elements are non-negative integers, less than or equal to 9. The third line contains integer , the number of commands. The next lines contains either pop, remove and/or discard commands followed by their associated value. Output Format Print the sum of the elements of set on a single line. Sample Input 9 1 2 3 4 5 6 7 8 9 10 pop remove 9 discard 9 discard 8 remove 7 pop discard 6 remove 5 pop discard 5 Sample Output 4 Explanation After completing these 10 operations on the set, we get set([4]). Hence, the sum is 4. Note: Convert the elements of set s to integers while you are assigning them. To ensure the proper input of the set, we have added the first two lines of code to the editor. """ n = int(input()) s = set(map(int, input().split())) n = int(input()) for i in range(n): a = input() b = list(map(str, a.split())) if b[0] == 'pop': s.pop() elif b[0] == 'discard': s.discard(int(b[1])) elif b[0] == 'remove': try: s.remove(int(b[1])) except KeyError: pass sum = 0 for i in range(len(s)): sum += s.pop() print(sum)
class Article(): def __init__(self, title, authors, link, date): self.title = title self.authors = authors self.link = link self.date = date
class Article: def __init__(self, title, authors, link, date): self.title = title self.authors = authors self.link = link self.date = date
# A part of pdfrw (https://github.com/pmaupin/pdfrw) # Copyright (C) 2006-2015 Patrick Maupin, Austin, Texas # MIT license -- See LICENSE.txt for details class _NotLoaded(object): pass class PdfIndirect(tuple): ''' A placeholder for an object that hasn't been read in yet. The object itself is the (object number, generation number) tuple. The attributes include information about where the object is referenced from and the file object to retrieve the real object from. ''' value = _NotLoaded def real_value(self, NotLoaded=_NotLoaded): value = self.value if value is NotLoaded: value = self.value = self._loader(self) return value
class _Notloaded(object): pass class Pdfindirect(tuple): """ A placeholder for an object that hasn't been read in yet. The object itself is the (object number, generation number) tuple. The attributes include information about where the object is referenced from and the file object to retrieve the real object from. """ value = _NotLoaded def real_value(self, NotLoaded=_NotLoaded): value = self.value if value is NotLoaded: value = self.value = self._loader(self) return value
'''Write a program that returns a list that contains common elements between two input lists without duplicates. Ensure it works for lists of two different sizes.''' # list of random numbers a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89] b = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13] # newlist: # sets ensure unique values # evaluations for each number in a if it's also in b newlist = list(set([i for i in a if i in b])) # return the new list print(newlist)
"""Write a program that returns a list that contains common elements between two input lists without duplicates. Ensure it works for lists of two different sizes.""" a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89] b = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13] newlist = list(set([i for i in a if i in b])) print(newlist)
class StrategyStateMachine : def discovery() : pass def composition() : pass def usage() : pass def end() : pass
class Strategystatemachine: def discovery(): pass def composition(): pass def usage(): pass def end(): pass
# This file is generated by sync-deps, do not edit! load("@rules_jvm_external//:defs.bzl", "maven_install") load("@rules_jvm_external//:specs.bzl", "maven") def default_install(artifacts, repositories, excluded_artifacts = []): maven_install( artifacts = artifacts, fetch_sources = True, repositories = repositories, excluded_artifacts = excluded_artifacts, maven_install_json = "//3rdparty:maven-install.json", ) def maven_dependencies(install=None): if install == None: install = default_install install( artifacts=[ maven.artifact(group = "ch.qos.logback", artifact = "logback-classic", version = "1.2.3", neverlink = False), maven.artifact(group = "ch.qos.logback", artifact = "logback-core", version = "1.2.3", neverlink = False), maven.artifact(group = "com.fasterxml.jackson.core", artifact = "jackson-annotations", version = "2.9.6", neverlink = False), maven.artifact(group = "com.fasterxml.jackson.core", artifact = "jackson-core", version = "2.9.6", neverlink = False), maven.artifact(group = "com.fasterxml.jackson.core", artifact = "jackson-databind", version = "2.9.6", neverlink = False), maven.artifact(group = "com.fasterxml.jackson.dataformat", artifact = "jackson-dataformat-yaml", version = "2.9.6", neverlink = False), maven.artifact(group = "com.fasterxml.jackson.datatype", artifact = "jackson-datatype-guava", version = "2.9.6", neverlink = False), maven.artifact(group = "com.geirsson", artifact = "scalafmt-core_2.12", version = "1.5.1", neverlink = False), maven.artifact(group = "com.geirsson", artifact = "metaconfig-core_2.12", version = "0.4.0", neverlink = False), maven.artifact(group = "com.geirsson", artifact = "metaconfig-typesafe-config_2.12", version = "0.4.0", neverlink = False), maven.artifact(group = "com.github.tomas-langer", artifact = "chalk", version = "1.0.2", neverlink = False), maven.artifact(group = "com.google.auto.value", artifact = "auto-value", version = "1.6.2", neverlink = False), maven.artifact(group = "com.google.auto.value", artifact = "auto-value-annotations", version = "1.6.2", neverlink = False), maven.artifact(group = "com.google.code.findbugs", artifact = "annotations", version = "3.0.1", neverlink = False), maven.artifact(group = "com.google.code.findbugs", artifact = "jsr305", version = "3.0.2", neverlink = False), maven.artifact(group = "com.google.errorprone", artifact = "error_prone_annotations", version = "2.3.1", neverlink = False), maven.artifact(group = "com.google.googlejavaformat", artifact = "google-java-format", version = "1.6", neverlink = False), maven.artifact(group = "com.google.guava", artifact = "guava", version = "23.6.1-jre", neverlink = False), maven.artifact(group = "com.google.protobuf", artifact = "protobuf-java", version = "3.8.0", neverlink = False), maven.artifact(group = "com.google.jimfs", artifact = "jimfs", version = "1.1", neverlink = False), maven.artifact(group = "com.squareup.okio", artifact = "okio", version = "1.15.0", neverlink = False), maven.artifact(group = "net.sf.jopt-simple", artifact = "jopt-simple", version = "5.0.4", neverlink = False), maven.artifact(group = "org.hamcrest", artifact = "java-hamcrest", version = "2.0.0.0", neverlink = False), maven.artifact(group = "org.scala-lang", artifact = "scala-compiler", version = "2.12.6", neverlink = False), maven.artifact(group = "org.scala-lang", artifact = "scala-library", version = "2.12.6", neverlink = False), maven.artifact(group = "org.scala-lang", artifact = "scala-reflect", version = "2.12.6", neverlink = False), maven.artifact(group = "org.slf4j", artifact = "slf4j-api", version = "1.7.25", neverlink = False) ], repositories=[ "https://repo.maven.apache.org/maven2/" ], excluded_artifacts=[ maven.exclusion(group = "com.google.guava", artifact = "guava-jdk5"), maven.exclusion(group = "org.slf4j", artifact = "slf4j-log4j12") ], )
load('@rules_jvm_external//:defs.bzl', 'maven_install') load('@rules_jvm_external//:specs.bzl', 'maven') def default_install(artifacts, repositories, excluded_artifacts=[]): maven_install(artifacts=artifacts, fetch_sources=True, repositories=repositories, excluded_artifacts=excluded_artifacts, maven_install_json='//3rdparty:maven-install.json') def maven_dependencies(install=None): if install == None: install = default_install install(artifacts=[maven.artifact(group='ch.qos.logback', artifact='logback-classic', version='1.2.3', neverlink=False), maven.artifact(group='ch.qos.logback', artifact='logback-core', version='1.2.3', neverlink=False), maven.artifact(group='com.fasterxml.jackson.core', artifact='jackson-annotations', version='2.9.6', neverlink=False), maven.artifact(group='com.fasterxml.jackson.core', artifact='jackson-core', version='2.9.6', neverlink=False), maven.artifact(group='com.fasterxml.jackson.core', artifact='jackson-databind', version='2.9.6', neverlink=False), maven.artifact(group='com.fasterxml.jackson.dataformat', artifact='jackson-dataformat-yaml', version='2.9.6', neverlink=False), maven.artifact(group='com.fasterxml.jackson.datatype', artifact='jackson-datatype-guava', version='2.9.6', neverlink=False), maven.artifact(group='com.geirsson', artifact='scalafmt-core_2.12', version='1.5.1', neverlink=False), maven.artifact(group='com.geirsson', artifact='metaconfig-core_2.12', version='0.4.0', neverlink=False), maven.artifact(group='com.geirsson', artifact='metaconfig-typesafe-config_2.12', version='0.4.0', neverlink=False), maven.artifact(group='com.github.tomas-langer', artifact='chalk', version='1.0.2', neverlink=False), maven.artifact(group='com.google.auto.value', artifact='auto-value', version='1.6.2', neverlink=False), maven.artifact(group='com.google.auto.value', artifact='auto-value-annotations', version='1.6.2', neverlink=False), maven.artifact(group='com.google.code.findbugs', artifact='annotations', version='3.0.1', neverlink=False), maven.artifact(group='com.google.code.findbugs', artifact='jsr305', version='3.0.2', neverlink=False), maven.artifact(group='com.google.errorprone', artifact='error_prone_annotations', version='2.3.1', neverlink=False), maven.artifact(group='com.google.googlejavaformat', artifact='google-java-format', version='1.6', neverlink=False), maven.artifact(group='com.google.guava', artifact='guava', version='23.6.1-jre', neverlink=False), maven.artifact(group='com.google.protobuf', artifact='protobuf-java', version='3.8.0', neverlink=False), maven.artifact(group='com.google.jimfs', artifact='jimfs', version='1.1', neverlink=False), maven.artifact(group='com.squareup.okio', artifact='okio', version='1.15.0', neverlink=False), maven.artifact(group='net.sf.jopt-simple', artifact='jopt-simple', version='5.0.4', neverlink=False), maven.artifact(group='org.hamcrest', artifact='java-hamcrest', version='2.0.0.0', neverlink=False), maven.artifact(group='org.scala-lang', artifact='scala-compiler', version='2.12.6', neverlink=False), maven.artifact(group='org.scala-lang', artifact='scala-library', version='2.12.6', neverlink=False), maven.artifact(group='org.scala-lang', artifact='scala-reflect', version='2.12.6', neverlink=False), maven.artifact(group='org.slf4j', artifact='slf4j-api', version='1.7.25', neverlink=False)], repositories=['https://repo.maven.apache.org/maven2/'], excluded_artifacts=[maven.exclusion(group='com.google.guava', artifact='guava-jdk5'), maven.exclusion(group='org.slf4j', artifact='slf4j-log4j12')])
skill = input() command = input() while command != "For Azeroth": command = command.split(" ") command = command[0] if command == "GladiatorStance": skill = skill.upper() print(skill) break elif command == "DefensiveStance": skill = skill.lower() print(skill) break elif command == "Dispel": index = command[1] letter = command[2] if index > len(skill) - 1 or index < 0: skill = skill.remove(index, 1) skill = skill.insert(index, letter) print("Dispel too weak") else: print("Success!") break
skill = input() command = input() while command != 'For Azeroth': command = command.split(' ') command = command[0] if command == 'GladiatorStance': skill = skill.upper() print(skill) break elif command == 'DefensiveStance': skill = skill.lower() print(skill) break elif command == 'Dispel': index = command[1] letter = command[2] if index > len(skill) - 1 or index < 0: skill = skill.remove(index, 1) skill = skill.insert(index, letter) print('Dispel too weak') else: print('Success!') break
{ "targets": [ { "target_name": "waznutilities", "sources": [ "src/main.cc", "src/cryptonote_core/cryptonote_format_utils.cpp", "src/crypto/tree-hash.c", "src/crypto/crypto.cpp", "src/crypto/crypto-ops.c", "src/crypto/crypto-ops-data.c", "src/crypto/hash.c", "src/crypto/keccak.c", "src/common/base58.cpp", ], "include_dirs": [ "src", "src/contrib/epee/include", "<!(node -e \"require('nan')\")", ], "link_settings": { "libraries": [ "-lboost_system", "-lboost_date_time", ] }, "cflags_c": [ "-fno-exceptions -std=gnu11 -march=native -fPIC -DNDEBUG -Ofast -funroll-loops -fvariable-expansion-in-unroller -ftree-loop-if-convert-stores -fmerge-all-constants -fbranch-target-load-optimize2" ], "cflags_cc": [ "-fexceptions -frtti -std=gnu++11 -march=native -fPIC -DNDEBUG -Ofast -s -funroll-loops -fvariable-expansion-in-unroller -ftree-loop-if-convert-stores -fmerge-all-constants -fbranch-target-load-optimize2" ], "xcode_settings": { "OTHER_CFLAGS": [ "-fexceptions -frtti" ] } } ] }
{'targets': [{'target_name': 'waznutilities', 'sources': ['src/main.cc', 'src/cryptonote_core/cryptonote_format_utils.cpp', 'src/crypto/tree-hash.c', 'src/crypto/crypto.cpp', 'src/crypto/crypto-ops.c', 'src/crypto/crypto-ops-data.c', 'src/crypto/hash.c', 'src/crypto/keccak.c', 'src/common/base58.cpp'], 'include_dirs': ['src', 'src/contrib/epee/include', '<!(node -e "require(\'nan\')")'], 'link_settings': {'libraries': ['-lboost_system', '-lboost_date_time']}, 'cflags_c': ['-fno-exceptions -std=gnu11 -march=native -fPIC -DNDEBUG -Ofast -funroll-loops -fvariable-expansion-in-unroller -ftree-loop-if-convert-stores -fmerge-all-constants -fbranch-target-load-optimize2'], 'cflags_cc': ['-fexceptions -frtti -std=gnu++11 -march=native -fPIC -DNDEBUG -Ofast -s -funroll-loops -fvariable-expansion-in-unroller -ftree-loop-if-convert-stores -fmerge-all-constants -fbranch-target-load-optimize2'], 'xcode_settings': {'OTHER_CFLAGS': ['-fexceptions -frtti']}}]}
# We must set a certain amount of money my_money = 13 # We make a decision if my_money > 20: print("I'm going to the cinema and buy popcorn!") elif my_money > 10: print("I'm going to the cinema, but not buy popcorn!") else: print("I'm staying home!")
my_money = 13 if my_money > 20: print("I'm going to the cinema and buy popcorn!") elif my_money > 10: print("I'm going to the cinema, but not buy popcorn!") else: print("I'm staying home!")
ix.enable_command_history() app = ix.application clarisse_win = app.get_event_window() app.open_rename_item_window(clarisse_win) ix.disable_command_history()
ix.enable_command_history() app = ix.application clarisse_win = app.get_event_window() app.open_rename_item_window(clarisse_win) ix.disable_command_history()
# Input: 2D array of "map" # Output: Shortest distance to exit from cell # Revision 2 with help from my python book and some documentation class deque(object): # A custom implementation of collections.deque that is about 0.4s faster def __init__(self, iterable=(), maxsize=-1): if not hasattr(self, 'data'): self.left = self.right = 0 self.data = {} self.maxsize = maxsize self.extend(iterable) def append(self, x): self.data[self.right] = x self.right += 1 if self.maxsize != -1 and len(self) > self.maxsize: self.popleft() def popleft(self): if self.left == self.right: raise IndexError('cannot pop from empty deque') elem = self.data[self.left] del self.data[self.left] self.left += 1 return elem def extend(self, iterable): for elem in iterable: self.append(elem) class Node: def __init__(self, x, y, remove_uses, hallway_map): # X, Y, number of walls I can take down, the entire map self.x = x self.y = y self.remove_uses = remove_uses self.hallway_map = hallway_map def __eq__(self, comp): return self.x == comp.x and self.y == comp.y and self.remove_uses == comp.remove_uses def __hash__(self): return self.x + len(self.hallway_map) * self.y def getClosest(self): # Return all surounding nodes # Location of current node x = self.x y = self.y # Initalize Vars vertices = [] remove_uses = self.remove_uses hallway_map = self.hallway_map width = len(hallway_map[0]) height = len(hallway_map) # Make sure that notes are not placed beyond the walls if x > 0: wall = hallway_map[y][x - 1] == 1 if wall: if remove_uses > 0: # Subtract from number of wals I can take down until I have run out of walls vertices.append(Node(x - 1, y, remove_uses - 1, hallway_map)) else: pass else: # Do nothing if the node is a hallway vertices.append(Node(x - 1, y, remove_uses, hallway_map)) # The exact same thing for all other walls below: if x < width - 1: wall = hallway_map[y][x + 1] == 1 if wall: if remove_uses > 0: vertices.append(Node(x + 1, y, remove_uses - 1, hallway_map)) else: pass else: vertices.append(Node(x + 1, y, remove_uses, hallway_map)) if y > 0: wall = hallway_map[y - 1][x] == 1 if wall: if remove_uses > 0: vertices.append(Node(x, y - 1, remove_uses - 1, hallway_map)) else: pass else: vertices.append(Node(x, y - 1, remove_uses, hallway_map)) if y < height - 1: wall = hallway_map[y + 1][x] if wall: if remove_uses > 0: vertices.append(Node(x, y + 1, remove_uses - 1, hallway_map)) else: pass else: vertices.append(Node(x, y + 1, remove_uses, hallway_map)) # Return all touching nodes return vertices class PathFinder: def __init__(self, hallway_map, remove_uses): # New path finder self.hallway_map = hallway_map self.height = len(hallway_map) self.width = len(hallway_map[0]) self.remove_uses = remove_uses # Number of walls I can take down def getShortestPath(self): # Use breadth-first search start = Node(0, 0, self.remove_uses, self.hallway_map) # Create a double-ended queue queue = deque([start]) distances = {start: 1} while queue: # Get the next node from the deque current_node = queue.popleft() # If the current_node location happens to be the exit, return the distance if current_node.x == self.width - 1 and current_node.y == self.height - 1: return distances[current_node] # If not at end of maze, add some more nodes for neighbor in current_node.getClosest(): if neighbor not in distances.keys(): # Add next node to the deque distances[neighbor] = distances[current_node] + 1 queue.append(neighbor) def answer(input_map): # Create an object of the map using a Path Finder # 1 = How many walls can I take down? # Useless for foobar, just something to play around with router = PathFinder(input_map, 1) # The most important part return router.getShortestPath() # Used to debug # for _ in range(0,4): # print answer([[0, 0, 0, 0, 0, 0], # [1, 1, 1, 1, 1, 0], # [0, 0, 0, 0, 0, 0], # [0, 1, 1, 1, 1, 1], # [0, 1, 1, 1, 1, 1], # [0, 0, 0, 0, 0, 0]])
class Deque(object): def __init__(self, iterable=(), maxsize=-1): if not hasattr(self, 'data'): self.left = self.right = 0 self.data = {} self.maxsize = maxsize self.extend(iterable) def append(self, x): self.data[self.right] = x self.right += 1 if self.maxsize != -1 and len(self) > self.maxsize: self.popleft() def popleft(self): if self.left == self.right: raise index_error('cannot pop from empty deque') elem = self.data[self.left] del self.data[self.left] self.left += 1 return elem def extend(self, iterable): for elem in iterable: self.append(elem) class Node: def __init__(self, x, y, remove_uses, hallway_map): self.x = x self.y = y self.remove_uses = remove_uses self.hallway_map = hallway_map def __eq__(self, comp): return self.x == comp.x and self.y == comp.y and (self.remove_uses == comp.remove_uses) def __hash__(self): return self.x + len(self.hallway_map) * self.y def get_closest(self): x = self.x y = self.y vertices = [] remove_uses = self.remove_uses hallway_map = self.hallway_map width = len(hallway_map[0]) height = len(hallway_map) if x > 0: wall = hallway_map[y][x - 1] == 1 if wall: if remove_uses > 0: vertices.append(node(x - 1, y, remove_uses - 1, hallway_map)) else: pass else: vertices.append(node(x - 1, y, remove_uses, hallway_map)) if x < width - 1: wall = hallway_map[y][x + 1] == 1 if wall: if remove_uses > 0: vertices.append(node(x + 1, y, remove_uses - 1, hallway_map)) else: pass else: vertices.append(node(x + 1, y, remove_uses, hallway_map)) if y > 0: wall = hallway_map[y - 1][x] == 1 if wall: if remove_uses > 0: vertices.append(node(x, y - 1, remove_uses - 1, hallway_map)) else: pass else: vertices.append(node(x, y - 1, remove_uses, hallway_map)) if y < height - 1: wall = hallway_map[y + 1][x] if wall: if remove_uses > 0: vertices.append(node(x, y + 1, remove_uses - 1, hallway_map)) else: pass else: vertices.append(node(x, y + 1, remove_uses, hallway_map)) return vertices class Pathfinder: def __init__(self, hallway_map, remove_uses): self.hallway_map = hallway_map self.height = len(hallway_map) self.width = len(hallway_map[0]) self.remove_uses = remove_uses def get_shortest_path(self): start = node(0, 0, self.remove_uses, self.hallway_map) queue = deque([start]) distances = {start: 1} while queue: current_node = queue.popleft() if current_node.x == self.width - 1 and current_node.y == self.height - 1: return distances[current_node] for neighbor in current_node.getClosest(): if neighbor not in distances.keys(): distances[neighbor] = distances[current_node] + 1 queue.append(neighbor) def answer(input_map): router = path_finder(input_map, 1) return router.getShortestPath()
# encoding=utf-8 class Expression(object): pass
class Expression(object): pass
# -*- coding: utf-8 -*- '''Snippets for combination. ''' # Usage: # combination = Combination(max_value=10 ** 5 + 100) # combination.count_nCr(n, r) class Combination: ''' Count the total number of combinations. nCr % mod. nHr % mod = (n + r - 1)Cr % mod. Args: max_value: Max size of list. The default is 500,050 mod : Modulo. The default is 10 ** 9 + 7. Landau notation: O(n) See: http://drken1215.hatenablog.com/entry/2018/06/08/210000 ''' def __init__(self, max_value=500050, mod=10 ** 9 + 7): self.max_value = max_value self.mod = mod self.fac = [0 for _ in range(self.max_value)] self.finv = [0 for _ in range(self.max_value)] self.inv = [0 for _ in range(self.max_value)] self.fac[0] = 1 self.fac[1] = 1 self.finv[0] = 1 self.finv[1] = 1 self.inv[1] = 1 for i in range(2, self.max_value): self.fac[i] = self.fac[i - 1] * i % self.mod self.inv[i] = self.mod - self.inv[self.mod % i] * (self.mod // i) % self.mod self.finv[i] = self.finv[i - 1] * self.inv[i] % self.mod def count_nCr(self, n, r): '''Count the total number of combinations. nCr % mod. nHr % mod = (n + r - 1)Cr % mod. Args: n : Elements. Int of number (greater than 1). r : The number of r-th combinations. Int of number (greater than 0). Returns: The total number of combinations. Landau notation: O(1) ''' if n < r: return 0 if n < 0 or r < 0: return 0 return self.fac[n] * (self.finv[r] * self.finv[n - r] % self.mod) % self.mod
"""Snippets for combination. """ class Combination: """ Count the total number of combinations. nCr % mod. nHr % mod = (n + r - 1)Cr % mod. Args: max_value: Max size of list. The default is 500,050 mod : Modulo. The default is 10 ** 9 + 7. Landau notation: O(n) See: http://drken1215.hatenablog.com/entry/2018/06/08/210000 """ def __init__(self, max_value=500050, mod=10 ** 9 + 7): self.max_value = max_value self.mod = mod self.fac = [0 for _ in range(self.max_value)] self.finv = [0 for _ in range(self.max_value)] self.inv = [0 for _ in range(self.max_value)] self.fac[0] = 1 self.fac[1] = 1 self.finv[0] = 1 self.finv[1] = 1 self.inv[1] = 1 for i in range(2, self.max_value): self.fac[i] = self.fac[i - 1] * i % self.mod self.inv[i] = self.mod - self.inv[self.mod % i] * (self.mod // i) % self.mod self.finv[i] = self.finv[i - 1] * self.inv[i] % self.mod def count_n_cr(self, n, r): """Count the total number of combinations. nCr % mod. nHr % mod = (n + r - 1)Cr % mod. Args: n : Elements. Int of number (greater than 1). r : The number of r-th combinations. Int of number (greater than 0). Returns: The total number of combinations. Landau notation: O(1) """ if n < r: return 0 if n < 0 or r < 0: return 0 return self.fac[n] * (self.finv[r] * self.finv[n - r] % self.mod) % self.mod
# -*- coding: utf-8 -*- class Student(object): def __init__(self, name, score): self.__name = name self.__score = score def print_score(self): print('%s: %s' % (self.__name, self.__score)) def get_name(self): return self.__name def get_score(self): return self.__score def set_score(self, score): if 0 <= score <= 100: self.__score = score else: raise ValueError('bad score') bart = Student('Bart Simpson', 59) #print(bart._name) print(bart.get_name())
class Student(object): def __init__(self, name, score): self.__name = name self.__score = score def print_score(self): print('%s: %s' % (self.__name, self.__score)) def get_name(self): return self.__name def get_score(self): return self.__score def set_score(self, score): if 0 <= score <= 100: self.__score = score else: raise value_error('bad score') bart = student('Bart Simpson', 59) print(bart.get_name())
# import simplejson as json # import pandas as pd # import numpy as np # import psycopg2 # from itertools import repeat # from psycopg2.extras import RealDictCursor, DictCursor def execSql(cursor): out = None sqlString = ''' set search_path to demounit1; -- GstInputAll (ExtGstTranD only) based on "isInput" with cte1 as ( select "tranDate", "autoRefNo", "userRefNo", "tranType", "gstin", d."amount" - "cgst" - "sgst" - "igst" as "aggregate", "cgst", "sgst", "igst", d."amount", "accName",h."remarks", "dc", "lineRefNo", d."remarks" as "lineRemarks" from "TranH" h join "TranD" d on h."id" = d."tranHeaderId" join "ExtGstTranD" e on d."id" = e."tranDetailsId" join "AccM" a on a."id" = d."accId" join "TranTypeM" t on t."id" = h."tranTypeId" where ("cgst" <> 0 or "sgst" <> 0 or "igst" <> 0) and "isInput" = true and "finYearId" = 2021 -- "finYearId" = %(finYearId)s and -- "branchId" = %(branchId)s and -- ("tranDate" between %(fromDate)s and %(toDate)s) order by "tranDate", h."id"), -- GstOutputAll (ExtGstTrand) based on "isInput" cte2 as ( select "tranDate", "autoRefNo", "userRefNo", "tranType", "gstin", d."amount" - "cgst" - "sgst" - "igst" as "aggregate", "cgst", "sgst", "igst", d."amount", "accName",h."remarks", "dc", "lineRefNo", d."remarks" as "lineRemarks" from "TranH" h join "TranD" d on h."id" = d."tranHeaderId" join "ExtGstTranD" e on d."id" = e."tranDetailsId" join "AccM" a on a."id" = d."accId" join "TranTypeM" t on t."id" = h."tranTypeId" where ("cgst" <> 0 or "sgst" <> 0 or "igst" <> 0) and "isInput" = false and "finYearId" = 2021 -- "finYearId" = %(finYearId)s and -- "branchId" = %(branchId)s and -- ("tranDate" between %(fromDate)s and %(toDate)s) order by "tranDate", h."id"), -- GstNetSales (considering only table SalePurchaseDetails) cte3 as ( select "tranDate", "autoRefNo", "userRefNo", "tranType", (select "gstin" from "ExtGstTranD" where "tranDetailsId" = d."id") as "gstin", "gstRate", CASE WHEN "tranTypeId" = 4 THEN (s."amount" - "cgst" - "sgst" - "igst") ELSE -(s."amount" - "cgst" - "sgst" - "igst") END as "aggregate", CASE WHEN "tranTypeId" = 4 THEN "cgst" ELSE -"cgst" END as "cgst", CASE WHEN "tranTypeId" = 4 THEN "sgst" ELSE -"sgst" END as "sgst", CASE WHEN "tranTypeId" = 4 THEN "igst" ELSE -"igst" END as "igst", CASE WHEN "tranTypeId" = 4 THEN s."amount" ELSE -s."amount" END as "amount", "accName", h."remarks", "dc", "lineRefNo", d."remarks" as "lineRemarks" from "TranH" h join "TranD" d on h."id" = d."tranHeaderId" -- join "ExtGstTranD" e -- on d."id" = e."tranDetailsId" join "AccM" a on a."id" = d."accId" join "TranTypeM" t on t."id" = h."tranTypeId" join "SalePurchaseDetails" s on d."id" = s."tranDetailsId" where ("cgst" <> 0 or "sgst" <> 0 or "igst" <> 0) and "tranTypeId" in (4,9) and -- "isInput" = false and "finYearId" = 2021 -- "finYearId" = %(finYearId)s and -- "branchId" = %(branchId)s and -- ("tranDate" between %(fromDate)s and %(toDate)s) order by "tranDate", h."id" ), -- GstNetPurchases (considering only table SalePurchaseDetails) cte4 as ( select "tranDate", "autoRefNo", "userRefNo", "tranType", (select "gstin" from "ExtGstTranD" where "tranDetailsId" = d."id") as "gstin", "gstRate", CASE WHEN "tranTypeId" = 5 THEN (s."amount" - "cgst" - "sgst" - "igst") ELSE -(s."amount" - "cgst" - "sgst" - "igst") END as "aggregate", CASE WHEN "tranTypeId" = 5 THEN "cgst" ELSE -"cgst" END as "cgst", CASE WHEN "tranTypeId" = 5 THEN "sgst" ELSE -"sgst" END as "sgst", CASE WHEN "tranTypeId" = 5 THEN "igst" ELSE -"igst" END as "igst", CASE WHEN "tranTypeId" = 5 THEN s."amount" ELSE -s."amount" END as "amount", "accName", h."remarks", "dc", "lineRefNo", d."remarks" as "lineRemarks" from "TranH" h join "TranD" d on h."id" = d."tranHeaderId" -- join "ExtGstTranD" e -- on d."id" = e."tranDetailsId" join "AccM" a on a."id" = d."accId" join "TranTypeM" t on t."id" = h."tranTypeId" join "SalePurchaseDetails" s on d."id" = s."tranDetailsId" where ("cgst" <> 0 or "sgst" <> 0 or "igst" <> 0) and "tranTypeId" in (5,10) and -- "isInput" = false and "finYearId" = 2021 -- "finYearId" = %(finYearId)s and -- "branchId" = %(branchId)s and -- ("tranDate" between %(fromDate)s and %(toDate)s) order by "tranDate", h."id" ), -- gstInputVouchers cte5 as ( select "tranDate", "autoRefNo", "userRefNo", "tranType", "gstin", "rate", d."amount" - "cgst" - "sgst" - "igst" as "aggregate", "cgst", "sgst", "igst", d."amount", "accName", h."remarks", "dc", "lineRefNo", d."remarks" as "lineRemarks" from "TranH" h join "TranD" d on h."id" = d."tranHeaderId" join "ExtGstTranD" e on d."id" = e."tranDetailsId" join "AccM" a on a."id" = d."accId" join "TranTypeM" t on t."id" = h."tranTypeId" -- join "SalePurchaseDetails" s -- on d."id" = s."tranDetailsId" where ("cgst" <> 0 or "sgst" <> 0 or "igst" <> 0) and "rate" is not null and -- When it is not a sale / purchase i.e voucher, then "gstRate" value exists in "ExtGstTranD" table otherwise not "isInput" = true and -- Only applicable for GST through vouchers "finYearId" = 2021 -- "finYearId" = %(finYearId)s and -- "branchId" = %(branchId)s and -- ("tranDate" between %(fromDate)s and %(toDate)s) order by "tranDate", h."id" ) select json_build_object( 'gstInputAll', (SELECT json_agg(row_to_json(a)) from cte1 a), 'gstOutputAll', (SELECT json_agg(row_to_json(b)) from cte2 b), 'gstNetSales', (SELECT json_agg(row_to_json(c)) from cte3 c), 'gstNetPurchases', (SELECT json_agg(row_to_json(d)) from cte4 d), 'gstInputVouchers', (SELECT json_agg(row_to_json(e)) from cte5 e) ) as "jsonResult" ''' cursor.execute(sqlString) out = cursor.fetchall() return out def trialBalance(data): df = pd.DataFrame(data) pivot = pd.pivot_table(df, index=["accCode", "accName", "accType"], columns=["dc"], values="amount", aggfunc=np.sum, fill_value=0) pivot.rename( columns={ 'O': 'Opening', 'D': 'Debit', 'C': 'Credit' }, inplace=True ) pivot['Closing'] = pivot['Opening'] + pivot['Debit'] - pivot['Credit'] pivot.loc['Total', 'Closing'] = pivot['Closing'].sum() pivot.loc['Total', 'Debit'] = pivot['Debit'].sum() pivot.loc['Total', 'Credit'] = pivot['Credit'].sum() pivot.loc['Total', 'Opening'] = pivot['Opening'].sum() pivot['Closing_dc'] = pivot['Closing'].apply(lambda x: 'Dr' if x >= 0 else 'Cr') pivot['Closing'] = pivot['Closing'].apply(lambda x: x if x>=0 else -x) # remove minus sign pivot['Opening_dc'] = pivot['Opening'].apply(lambda x: 'Dr' if x >= 0 else 'Cr') pivot['Opening'] = pivot['Opening'].apply(lambda x: x if x>=0 else -x) # remove minus sign pivot = pivot.reindex(columns= ['Opening', 'Opening_dc', 'Debit', 'Credit', 'Closing', 'Closing_dc']) print(pivot) j = pivot.to_json(orient='table') jsonObj = json.loads(j) dt = jsonObj["data"] return dt try: connection = None with open('adam/config.json') as f: cfg = json.load(f) connection = psycopg2.connect( user=cfg["user"], password=cfg["password"], host=cfg["host"], port=cfg["port"], database=cfg["database"]) cursor = connection.cursor(cursor_factory=RealDictCursor) data = execSql(cursor) d = trialBalance(data) # print(d) connection.commit() except (Exception, psycopg2.Error) as error: print("Error while connecting to PostgreSQL", error) if connection: connection.rollback() finally: if connection: cursor.close() connection.close() print("PostgreSQL connection is closed")
def exec_sql(cursor): out = None sql_string = '\n set search_path to demounit1;\n -- GstInputAll (ExtGstTranD only) based on "isInput"\n with cte1 as (\n\tselect "tranDate", "autoRefNo", "userRefNo", "tranType", "gstin", d."amount" - "cgst" - "sgst" - "igst" as "aggregate", "cgst", "sgst", "igst", d."amount",\n "accName",h."remarks", "dc", "lineRefNo", d."remarks" as "lineRemarks"\n from "TranH" h\n join "TranD" d\n on h."id" = d."tranHeaderId"\n join "ExtGstTranD" e\n on d."id" = e."tranDetailsId"\n join "AccM" a\n on a."id" = d."accId"\n\t\t\tjoin "TranTypeM" t\n\t\t\t\ton t."id" = h."tranTypeId"\n where\n ("cgst" <> 0 or\n "sgst" <> 0 or\n "igst" <> 0) and\n\t\t\t"isInput" = true and\n\t\t\t"finYearId" = 2021\n-- "finYearId" = %(finYearId)s and\n-- "branchId" = %(branchId)s and\n-- ("tranDate" between %(fromDate)s and %(toDate)s)\n \n order by "tranDate", h."id"),\n \n -- GstOutputAll (ExtGstTrand) based on "isInput"\n cte2 as (\n\tselect "tranDate", "autoRefNo", "userRefNo", "tranType", "gstin", d."amount" - "cgst" - "sgst" - "igst" as "aggregate", "cgst", "sgst", "igst", d."amount",\n "accName",h."remarks", "dc", "lineRefNo", d."remarks" as "lineRemarks"\n from "TranH" h\n join "TranD" d\n on h."id" = d."tranHeaderId"\n join "ExtGstTranD" e\n on d."id" = e."tranDetailsId"\n join "AccM" a\n on a."id" = d."accId"\n\t\t\tjoin "TranTypeM" t\n\t\t\t\ton t."id" = h."tranTypeId"\n where\n ("cgst" <> 0 or\n "sgst" <> 0 or\n "igst" <> 0) and\n\t\t\t"isInput" = false and\n\t\t\t"finYearId" = 2021\n-- "finYearId" = %(finYearId)s and\n-- "branchId" = %(branchId)s and\n-- ("tranDate" between %(fromDate)s and %(toDate)s)\n \n order by "tranDate", h."id"),\n \n -- GstNetSales (considering only table SalePurchaseDetails)\n cte3 as (\n select "tranDate", "autoRefNo", "userRefNo", "tranType", \n (select "gstin" from "ExtGstTranD" where "tranDetailsId" = d."id") as "gstin",\n "gstRate",\n CASE WHEN "tranTypeId" = 4 THEN (s."amount" - "cgst" - "sgst" - "igst") ELSE -(s."amount" - "cgst" - "sgst" - "igst") END as "aggregate",\n CASE WHEN "tranTypeId" = 4 THEN "cgst" ELSE -"cgst" END as "cgst",\n CASE WHEN "tranTypeId" = 4 THEN "sgst" ELSE -"sgst" END as "sgst",\n CASE WHEN "tranTypeId" = 4 THEN "igst" ELSE -"igst" END as "igst",\n CASE WHEN "tranTypeId" = 4 THEN s."amount" ELSE -s."amount" END as "amount",\n "accName", h."remarks", "dc", "lineRefNo", d."remarks" as "lineRemarks"\n from "TranH" h\n join "TranD" d\n on h."id" = d."tranHeaderId"\n -- join "ExtGstTranD" e\n -- on d."id" = e."tranDetailsId"\n join "AccM" a\n on a."id" = d."accId"\n join "TranTypeM" t\n on t."id" = h."tranTypeId"\n join "SalePurchaseDetails" s\n on d."id" = s."tranDetailsId"\n where\n ("cgst" <> 0 or\n "sgst" <> 0 or\n "igst" <> 0) and\n "tranTypeId" in (4,9) and\n --\t\t\t"isInput" = false and\n "finYearId" = 2021\n -- "finYearId" = %(finYearId)s and\n -- "branchId" = %(branchId)s and\n -- ("tranDate" between %(fromDate)s and %(toDate)s) \n order by "tranDate", h."id"\n ),\n\n -- GstNetPurchases (considering only table SalePurchaseDetails)\n cte4 as (\n select "tranDate", "autoRefNo", "userRefNo", "tranType", \n (select "gstin" from "ExtGstTranD" where "tranDetailsId" = d."id") as "gstin",\n "gstRate",\n CASE WHEN "tranTypeId" = 5 THEN (s."amount" - "cgst" - "sgst" - "igst") ELSE -(s."amount" - "cgst" - "sgst" - "igst") END as "aggregate",\n CASE WHEN "tranTypeId" = 5 THEN "cgst" ELSE -"cgst" END as "cgst",\n CASE WHEN "tranTypeId" = 5 THEN "sgst" ELSE -"sgst" END as "sgst",\n CASE WHEN "tranTypeId" = 5 THEN "igst" ELSE -"igst" END as "igst",\n CASE WHEN "tranTypeId" = 5 THEN s."amount" ELSE -s."amount" END as "amount",\n "accName", h."remarks", "dc", "lineRefNo", d."remarks" as "lineRemarks"\n from "TranH" h\n join "TranD" d\n on h."id" = d."tranHeaderId"\n -- join "ExtGstTranD" e\n -- on d."id" = e."tranDetailsId"\n join "AccM" a\n on a."id" = d."accId"\n join "TranTypeM" t\n on t."id" = h."tranTypeId"\n join "SalePurchaseDetails" s\n on d."id" = s."tranDetailsId"\n where\n ("cgst" <> 0 or\n "sgst" <> 0 or\n "igst" <> 0) and\n "tranTypeId" in (5,10) and\n --\t\t\t"isInput" = false and\n "finYearId" = 2021\n -- "finYearId" = %(finYearId)s and\n -- "branchId" = %(branchId)s and\n -- ("tranDate" between %(fromDate)s and %(toDate)s)\n \n order by "tranDate", h."id"\n ),\n\n -- gstInputVouchers\n cte5 as (\n select "tranDate", "autoRefNo", "userRefNo", "tranType", \n "gstin", "rate",\n d."amount" - "cgst" - "sgst" - "igst" as "aggregate", "cgst", "sgst", "igst", d."amount",\n "accName", h."remarks", "dc", "lineRefNo", d."remarks" as "lineRemarks"\n from "TranH" h\n join "TranD" d\n on h."id" = d."tranHeaderId"\n join "ExtGstTranD" e\n on d."id" = e."tranDetailsId"\n join "AccM" a\n on a."id" = d."accId"\n join "TranTypeM" t\n on t."id" = h."tranTypeId"\n --\t\t\tjoin "SalePurchaseDetails" s\n --\t\t\t\ton d."id" = s."tranDetailsId"\n where\n ("cgst" <> 0 or\n "sgst" <> 0 or\n "igst" <> 0) and\n "rate" is not null and -- When it is not a sale / purchase i.e voucher, then "gstRate" value exists in "ExtGstTranD" table otherwise not\n "isInput" = true and -- Only applicable for GST through vouchers\n "finYearId" = 2021\n -- "finYearId" = %(finYearId)s and\n -- "branchId" = %(branchId)s and\n -- ("tranDate" between %(fromDate)s and %(toDate)s)\n \n order by "tranDate", h."id"\n )\n\tselect json_build_object(\n \'gstInputAll\', (SELECT json_agg(row_to_json(a)) from cte1 a),\n\t\t\t\'gstOutputAll\', (SELECT json_agg(row_to_json(b)) from cte2 b),\n\t\t\t\'gstNetSales\', (SELECT json_agg(row_to_json(c)) from cte3 c),\n\t\t\t\'gstNetPurchases\', (SELECT json_agg(row_to_json(d)) from cte4 d),\n\t\t\t\'gstInputVouchers\', (SELECT json_agg(row_to_json(e)) from cte5 e)\n ) as "jsonResult" ' cursor.execute(sqlString) out = cursor.fetchall() return out def trial_balance(data): df = pd.DataFrame(data) pivot = pd.pivot_table(df, index=['accCode', 'accName', 'accType'], columns=['dc'], values='amount', aggfunc=np.sum, fill_value=0) pivot.rename(columns={'O': 'Opening', 'D': 'Debit', 'C': 'Credit'}, inplace=True) pivot['Closing'] = pivot['Opening'] + pivot['Debit'] - pivot['Credit'] pivot.loc['Total', 'Closing'] = pivot['Closing'].sum() pivot.loc['Total', 'Debit'] = pivot['Debit'].sum() pivot.loc['Total', 'Credit'] = pivot['Credit'].sum() pivot.loc['Total', 'Opening'] = pivot['Opening'].sum() pivot['Closing_dc'] = pivot['Closing'].apply(lambda x: 'Dr' if x >= 0 else 'Cr') pivot['Closing'] = pivot['Closing'].apply(lambda x: x if x >= 0 else -x) pivot['Opening_dc'] = pivot['Opening'].apply(lambda x: 'Dr' if x >= 0 else 'Cr') pivot['Opening'] = pivot['Opening'].apply(lambda x: x if x >= 0 else -x) pivot = pivot.reindex(columns=['Opening', 'Opening_dc', 'Debit', 'Credit', 'Closing', 'Closing_dc']) print(pivot) j = pivot.to_json(orient='table') json_obj = json.loads(j) dt = jsonObj['data'] return dt try: connection = None with open('adam/config.json') as f: cfg = json.load(f) connection = psycopg2.connect(user=cfg['user'], password=cfg['password'], host=cfg['host'], port=cfg['port'], database=cfg['database']) cursor = connection.cursor(cursor_factory=RealDictCursor) data = exec_sql(cursor) d = trial_balance(data) connection.commit() except (Exception, psycopg2.Error) as error: print('Error while connecting to PostgreSQL', error) if connection: connection.rollback() finally: if connection: cursor.close() connection.close() print('PostgreSQL connection is closed')
class ListenKeyExpired: def __init__(self): self.eventType = '' self.eventTime = 0 @staticmethod def json_parse(json_data): result = ListenKeyExpired() result.eventType = json_data.get_string('e') result.eventTime = json_data.get_int('E') return result
class Listenkeyexpired: def __init__(self): self.eventType = '' self.eventTime = 0 @staticmethod def json_parse(json_data): result = listen_key_expired() result.eventType = json_data.get_string('e') result.eventTime = json_data.get_int('E') return result
self.description = "Remove a package with a modified file marked for backup and has existing pacsaves" self.filesystem = ["etc/dummy.conf.pacsave", "etc/dummy.conf.pacsave.1", "etc/dummy.conf.pacsave.2"] p1 = pmpkg("dummy") p1.files = ["etc/dummy.conf*"] p1.backup = ["etc/dummy.conf"] self.addpkg2db("local", p1) self.args = "-R %s" % p1.name self.addrule("PACMAN_RETCODE=0") self.addrule("!PKG_EXIST=dummy") self.addrule("!FILE_EXIST=etc/dummy.conf") self.addrule("FILE_PACSAVE=etc/dummy.conf") self.addrule("FILE_EXIST=etc/dummy.conf.pacsave.1") self.addrule("FILE_EXIST=etc/dummy.conf.pacsave.2") self.addrule("FILE_EXIST=etc/dummy.conf.pacsave.3")
self.description = 'Remove a package with a modified file marked for backup and has existing pacsaves' self.filesystem = ['etc/dummy.conf.pacsave', 'etc/dummy.conf.pacsave.1', 'etc/dummy.conf.pacsave.2'] p1 = pmpkg('dummy') p1.files = ['etc/dummy.conf*'] p1.backup = ['etc/dummy.conf'] self.addpkg2db('local', p1) self.args = '-R %s' % p1.name self.addrule('PACMAN_RETCODE=0') self.addrule('!PKG_EXIST=dummy') self.addrule('!FILE_EXIST=etc/dummy.conf') self.addrule('FILE_PACSAVE=etc/dummy.conf') self.addrule('FILE_EXIST=etc/dummy.conf.pacsave.1') self.addrule('FILE_EXIST=etc/dummy.conf.pacsave.2') self.addrule('FILE_EXIST=etc/dummy.conf.pacsave.3')
def quote(): # TODO store to indexes.json indexes = [ { source : 'BOVESPA', ticker:'IBOV'}, { source : 'CRYPTO', ticker:'BTCBRL'} ] return indexes
def quote(): indexes = [{source: 'BOVESPA', ticker: 'IBOV'}, {source: 'CRYPTO', ticker: 'BTCBRL'}] return indexes
''' Filippo Aleotti filippo.aleotti2@unibo.it 29 November 2019 I PROFESSIONAL MASTER'S PROGRAM, II LEVEL "SIMUR", Imola 2019 Modify the function realised in the previous exercise to return (inside the dict, using the key min) also the value with minimum frequency. If more values have the same minimum frequency, then return the lowest one ''' def are_equals(dict1, dict2): ''' check if two dict are equal. Both the dicts have str keys and integer values ''' for k,v in dict1.items(): if k not in dict2.keys(): return False if dict2[k] != v: return False return True def frequency_extractor(input_list): output_dict = {} for element in input_list: if str(element) not in output_dict.keys(): output_dict[str(element)] = 1 else: output_dict[str(element)] += 1 min_value = None #NOTE: val are str, so we need an int cast to obtain integer values for val, freq in output_dict.items(): if min_value == None: #NOTE: at first iteration, we will always enter here min_value = int(val) else: if freq < output_dict[str(min_value)]: # this frequency value is lower than the frequency of the current minimum, # so we have to update the current minimum min_value = int(val) elif freq == output_dict[str(min_value)] and min_value > int(val): # the frequency is equal to the frequency of minimum. # We have to update the minimum only if the current minimum # is greather than this value min_value = int(val) output_dict['min'] = min_value return output_dict frequency_1 = frequency_extractor([0,1,0,2,2,1,2,1,0,0,2,1,1]) frequency_2 = frequency_extractor([1,2,2,2,1,5,3,1]) assert are_equals(frequency_1, {'0':4,'1':5,'2':4,'min':0}) == True assert are_equals(frequency_2, {'1':3,'2':3,'3':1,'5':1, 'min':3}) == True
""" Filippo Aleotti filippo.aleotti2@unibo.it 29 November 2019 I PROFESSIONAL MASTER'S PROGRAM, II LEVEL "SIMUR", Imola 2019 Modify the function realised in the previous exercise to return (inside the dict, using the key min) also the value with minimum frequency. If more values have the same minimum frequency, then return the lowest one """ def are_equals(dict1, dict2): """ check if two dict are equal. Both the dicts have str keys and integer values """ for (k, v) in dict1.items(): if k not in dict2.keys(): return False if dict2[k] != v: return False return True def frequency_extractor(input_list): output_dict = {} for element in input_list: if str(element) not in output_dict.keys(): output_dict[str(element)] = 1 else: output_dict[str(element)] += 1 min_value = None for (val, freq) in output_dict.items(): if min_value == None: min_value = int(val) elif freq < output_dict[str(min_value)]: min_value = int(val) elif freq == output_dict[str(min_value)] and min_value > int(val): min_value = int(val) output_dict['min'] = min_value return output_dict frequency_1 = frequency_extractor([0, 1, 0, 2, 2, 1, 2, 1, 0, 0, 2, 1, 1]) frequency_2 = frequency_extractor([1, 2, 2, 2, 1, 5, 3, 1]) assert are_equals(frequency_1, {'0': 4, '1': 5, '2': 4, 'min': 0}) == True assert are_equals(frequency_2, {'1': 3, '2': 3, '3': 1, '5': 1, 'min': 3}) == True
# AUTOGENERATED BY NBDEV! DO NOT EDIT! __all__ = ["index", "modules", "custom_doc_links", "git_url"] index = {"say_hello": "test_example.ipynb", "say_goodbye": "00_core.ipynb"} modules = ["core.py", "test_example.py"] doc_url = "https://daviderzmann.github.io/designkit_test/" git_url = "https://github.com/daviderzmann/designkit_test/tree/master/" def custom_doc_links(name): return None
__all__ = ['index', 'modules', 'custom_doc_links', 'git_url'] index = {'say_hello': 'test_example.ipynb', 'say_goodbye': '00_core.ipynb'} modules = ['core.py', 'test_example.py'] doc_url = 'https://daviderzmann.github.io/designkit_test/' git_url = 'https://github.com/daviderzmann/designkit_test/tree/master/' def custom_doc_links(name): return None
n=int(input()) S=input() k=int(input()) i=S[k-1] for s in S:print(s if s==i else "*",end="")
n = int(input()) s = input() k = int(input()) i = S[k - 1] for s in S: print(s if s == i else '*', end='')
class Solution: def findPoisonedDuration(self, timeSeries: List[int], duration: int) -> int: if len(timeSeries) == 0: return 0 total_poisoned = 0 for i in range(len(timeSeries)-1): total_poisoned += min(duration, timeSeries[i+1] - timeSeries[i]) total_poisoned += duration return total_poisoned
class Solution: def find_poisoned_duration(self, timeSeries: List[int], duration: int) -> int: if len(timeSeries) == 0: return 0 total_poisoned = 0 for i in range(len(timeSeries) - 1): total_poisoned += min(duration, timeSeries[i + 1] - timeSeries[i]) total_poisoned += duration return total_poisoned
# # PySNMP MIB module CISCO-LWAPP-RF-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CISCO-LWAPP-RF-MIB # Produced by pysmi-0.3.4 at Wed May 1 12:06:16 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, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ConstraintsUnion, ValueRangeConstraint, ValueSizeConstraint, SingleValueConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ValueRangeConstraint", "ValueSizeConstraint", "SingleValueConstraint", "ConstraintsIntersection") CLApIfType, = mibBuilder.importSymbols("CISCO-LWAPP-TC-MIB", "CLApIfType") cLAPGroupName, = mibBuilder.importSymbols("CISCO-LWAPP-WLAN-MIB", "cLAPGroupName") ciscoMgmt, = mibBuilder.importSymbols("CISCO-SMI", "ciscoMgmt") SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString") ModuleCompliance, NotificationGroup, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup", "ObjectGroup") NotificationType, TimeTicks, iso, Integer32, ModuleIdentity, Gauge32, Unsigned32, ObjectIdentity, Counter64, Bits, IpAddress, MibScalar, MibTable, MibTableRow, MibTableColumn, MibIdentifier, Counter32 = mibBuilder.importSymbols("SNMPv2-SMI", "NotificationType", "TimeTicks", "iso", "Integer32", "ModuleIdentity", "Gauge32", "Unsigned32", "ObjectIdentity", "Counter64", "Bits", "IpAddress", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "MibIdentifier", "Counter32") StorageType, DisplayString, TextualConvention, RowStatus, TruthValue = mibBuilder.importSymbols("SNMPv2-TC", "StorageType", "DisplayString", "TextualConvention", "RowStatus", "TruthValue") ciscoLwappRFMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 9, 9, 778)) ciscoLwappRFMIB.setRevisions(('2012-04-27 00:00', '2012-01-27 00:00', '2011-11-01 00:00',)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: ciscoLwappRFMIB.setRevisionsDescriptions(('Add 11n MCS rates support in profile, cLRFProfileMcsDataRateTable is added for this rate setting.', ' Below new objects have been added to the cLRFProfileTable cLRFProfileHighDensityMaxRadioClients cLRFProfileBandSelectProbeResponse cLRFProfileBandSelectCycleCount cLRFProfileBandSelectCycleThreshold cLRFProfileBandSelectExpireSuppression cLRFProfileBandSelectExpireDualBand cLRFProfileBandSelectClientRSSI cLRFProfileLoadBalancingWindowSize cLRFProfileLoadBalancingDenialCount cLRFProfileCHDDataRSSIThreshold cLRFProfileCHDVoiceRSSIThreshold cLRFProfileCHDClientExceptionLevel cLRFProfileCHDCoverageExceptionLevel cLRFProfileMulticastDataRate One new scalar object has been added cLRFProfileOutOfBoxAPConfig', 'Initial version of this MIB module.',)) if mibBuilder.loadTexts: ciscoLwappRFMIB.setLastUpdated('201111010000Z') if mibBuilder.loadTexts: ciscoLwappRFMIB.setOrganization('Cisco Systems Inc.') if mibBuilder.loadTexts: ciscoLwappRFMIB.setContactInfo('Cisco Systems, Customer Service Postal: 170 West Tasman Drive San Jose, CA 95134 USA Tel: +1 800 553-NETS Email: cs-wnbu-snmp@cisco.com') if mibBuilder.loadTexts: ciscoLwappRFMIB.setDescription("This MIB is intended to be implemented on all those devices operating as Central Controllers (CC) that terminate the Light Weight Access Point Protocol tunnel from Cisco Light-weight LWAPP Access Points. This MIB helps to manage the Radio Frequency (RF) parameters on the controller. The relationship between CC and the LWAPP APs can be depicted as follows: +......+ +......+ +......+ +......+ + + + + + + + + + CC + + CC + + CC + + CC + + + + + + + + + +......+ +......+ +......+ +......+ .. . . . .. . . . . . . . . . . . . . . . . . . . . . . . +......+ +......+ +......+ +......+ +......+ + + + + + + + + + + + AP + + AP + + AP + + AP + + AP + + + + + + + + + + + +......+ +......+ +......+ +......+ +......+ . . . . . . . . . . . . . . . . . . . . . . . . +......+ +......+ +......+ +......+ +......+ + + + + + + + + + + + MN + + MN + + MN + + MN + + MN + + + + + + + + + + + +......+ +......+ +......+ +......+ +......+ The LWAPP tunnel exists between the controller and the APs. The MNs communicate with the APs through the protocol defined by the 802.11 standard. LWAPP APs, upon bootup, discover and join one of the controllers and the controller pushes the configuration, that includes the WLAN parameters, to the LWAPP APs. The APs then encapsulate all the 802.11 frames from wireless clients inside LWAPP frames and forward the LWAPP frames to the controller. GLOSSARY Access Point ( AP ) An entity that contains an 802.11 medium access control ( MAC ) and physical layer ( PHY ) interface and provides access to the distribution services via the wireless medium for associated clients. LWAPP APs encapsulate all the 802.11 frames in LWAPP frames and sends it to the controller to which it is logically connected to. Central Controller ( CC ) The central entity that terminates the LWAPP protocol tunnel from the LWAPP APs. Throughout this MIB, this entity also referred to as 'controller'. Light Weight Access Point Protocol ( LWAPP ) This is a generic protocol that defines the communication between the Access Points and the controllers. Mobile Node ( MN ) A roaming 802.11 wireless device in a wireless network associated with an access point. 802.1x The IEEE ratified standard for enforcing port based access control. This was originally intended for use on wired LANs and later extended for use in 802.11 WLAN environments. This defines an architecture with three main parts - a supplicant (Ex. an 802.11 wireless client), an authenticator (the AP) and an authentication server(a Radius server). The authenticator passes messages back and forth between the supplicant and the authentication server to enable the supplicant get authenticated to the network. Radio Frequency ( RF ) Radio frequency (RF) is a rate of oscillation in the range of about 3 kHz to 300 GHz, which corresponds to the frequency of radio waves, and the alternating currents which carry radio signals. Received Signal Strength Indicator ( RSSI ) A measure of the strength of the signal as observed by the entity that received it, expressed in 'dbm'. Coverage Hole Detection ( CHD ) If clients on an Access Point are detected at low RSSI levels, it is considered a coverage hole by the Access Points. This indicates the existence of an area where clients are continually getting poor signal coverage, without having a viable location to roam to. REFERENCE [1] Wireless LAN Medium Access Control ( MAC ) and Physical Layer ( PHY ) Specifications. [2] Draft-obara-capwap-lwapp-00.txt, IETF Light Weight Access Point Protocol [3] IEEE 802.11 - The original 1 Mbit/s and 2 Mbit/s, 2.4 GHz RF and IR standard.") ciscoLwappRFMIBNotifs = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 778, 0)) ciscoLwappRFMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 778, 1)) ciscoLwappRFMIBConform = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 778, 2)) ciscoLwappRFConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1)) ciscoLwappRFGlobalObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 2)) class CiscoLwappRFApDataRates(TextualConvention, Integer32): description = "This field indicates the data rates supported by an AP 'disabled' The rate is not supported by the AP 'supported' The rate is supported by the AP 'mandatoryRate' The rate is required by the AP 'notApplicable' The rate is notApplicable." status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3)) namedValues = NamedValues(("disabled", 0), ("supported", 1), ("mandatoryRate", 2), ("notApplicable", 3)) cLAPGroupsRFProfileTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 1), ) if mibBuilder.loadTexts: cLAPGroupsRFProfileTable.setStatus('current') if mibBuilder.loadTexts: cLAPGroupsRFProfileTable.setDescription('This table lists the mapping between an RF profile and an AP group.') cLAPGroupsRFProfileEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 1, 1), ).setIndexNames((0, "CISCO-LWAPP-WLAN-MIB", "cLAPGroupName")) if mibBuilder.loadTexts: cLAPGroupsRFProfileEntry.setStatus('current') if mibBuilder.loadTexts: cLAPGroupsRFProfileEntry.setDescription("An entry containing the configuration attributes that affect the operation of the APs within a group. Entries can be added/deleted by explicit management action from NMS/EMS through the 'bsnAPGroupsVlanRowStatus' object in bsnAPGroupsVlanTable as defined by the AIRESPACE-WIRELESS-MIB.") cLAPGroups802dot11bgRFProfileName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 1, 1, 1), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cLAPGroups802dot11bgRFProfileName.setStatus('current') if mibBuilder.loadTexts: cLAPGroups802dot11bgRFProfileName.setDescription("This object specifies the RF profile name assigned to this site on the 802.11bg radio. This profile being assigned should exist in the 'cLRFProfileTable'. To disassociate a profile with this site a string of zero length should be set.") cLAPGroups802dot11aRFProfileName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 1, 1, 2), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cLAPGroups802dot11aRFProfileName.setStatus('current') if mibBuilder.loadTexts: cLAPGroups802dot11aRFProfileName.setDescription("This object specifies the RF profile name assigned to this site on the 802.11a radio. This profile being assigned should exist in the 'cLRFProfileTable'. To disassociate a profile with this site a string of zero length should be set.") cLRFProfileTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2), ) if mibBuilder.loadTexts: cLRFProfileTable.setStatus('current') if mibBuilder.loadTexts: cLRFProfileTable.setDescription('This table lists the configuration for each RF profile.') cLRFProfileEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1), ).setIndexNames((0, "CISCO-LWAPP-RF-MIB", "cLRFProfileName")) if mibBuilder.loadTexts: cLRFProfileEntry.setStatus('current') if mibBuilder.loadTexts: cLRFProfileEntry.setDescription('An entry containing the configuration attributes that affect the operation of 802.11 RF domain. Entries can be added/deleted by explicit management action from NMS/EMS or through user console.') cLRFProfileName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 1), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(1, 64))) if mibBuilder.loadTexts: cLRFProfileName.setStatus('current') if mibBuilder.loadTexts: cLRFProfileName.setDescription('This object uniquely identifies a RF Profile.') cLRFProfileDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 2), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileDescr.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDescr.setDescription('This object specifies a human-readable description of the profile.') cLRFProfileTransmitPowerMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-10, 30)).clone(-10)).setUnits('dbm').setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileTransmitPowerMin.setStatus('current') if mibBuilder.loadTexts: cLRFProfileTransmitPowerMin.setDescription('This object specifies the lower bound of transmit power value supported by an AP.') cLRFProfileTransmitPowerMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-10, 30)).clone(30)).setUnits('dbm').setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileTransmitPowerMax.setStatus('current') if mibBuilder.loadTexts: cLRFProfileTransmitPowerMax.setDescription('This object specifies the uppoer bound of transmit power value supported by an AP.') cLRFProfileTransmitPowerThresholdV1 = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-80, -50)).clone(-70)).setUnits('dbm').setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileTransmitPowerThresholdV1.setStatus('current') if mibBuilder.loadTexts: cLRFProfileTransmitPowerThresholdV1.setDescription('This object specifies the transmit power control version 1 threshold for the radio resource management algorithm.') cLRFProfileTransmitPowerThresholdV2 = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-80, -50)).clone(-67)).setUnits('dbm').setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileTransmitPowerThresholdV2.setStatus('current') if mibBuilder.loadTexts: cLRFProfileTransmitPowerThresholdV2.setDescription('This object specifies the transmit power control version 2 threshold for the radio resource management algorithm.') cLRFProfileDataRate1Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 7), CiscoLwappRFApDataRates().clone('mandatoryRate')).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileDataRate1Mbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate1Mbps.setDescription('This object specifies the configuration for this data rate.') cLRFProfileDataRate2Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 8), CiscoLwappRFApDataRates().clone('mandatoryRate')).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileDataRate2Mbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate2Mbps.setDescription('This object specifies the configuration for this data rate.') cLRFProfileDataRate5AndHalfMbps = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 9), CiscoLwappRFApDataRates().clone('mandatoryRate')).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileDataRate5AndHalfMbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate5AndHalfMbps.setDescription('This object specifies the configuration for this data rate.') cLRFProfileDataRate11Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 10), CiscoLwappRFApDataRates().clone('mandatoryRate')).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileDataRate11Mbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate11Mbps.setDescription('This object specifies the configuration for this data rate.') cLRFProfileDataRate6Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 11), CiscoLwappRFApDataRates().clone('supported')).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileDataRate6Mbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate6Mbps.setDescription('This object specifies the configuration for this data rate.') cLRFProfileDataRate9Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 12), CiscoLwappRFApDataRates().clone('supported')).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileDataRate9Mbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate9Mbps.setDescription('This object specifies the configuration for this data rate.') cLRFProfileDataRate12Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 13), CiscoLwappRFApDataRates().clone('supported')).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileDataRate12Mbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate12Mbps.setDescription('This object specifies the configuration for this data rate.') cLRFProfileDataRate18Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 14), CiscoLwappRFApDataRates().clone('supported')).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileDataRate18Mbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate18Mbps.setDescription('This object specifies the configuration for this data rate.') cLRFProfileDataRate24Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 15), CiscoLwappRFApDataRates().clone('supported')).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileDataRate24Mbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate24Mbps.setDescription('This object specifies the configuration for this data rate.') cLRFProfileDataRate36Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 16), CiscoLwappRFApDataRates().clone('supported')).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileDataRate36Mbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate36Mbps.setDescription('This object specifies the configuration for this data rate.') cLRFProfileDataRate48Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 17), CiscoLwappRFApDataRates().clone('supported')).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileDataRate48Mbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate48Mbps.setDescription('This object specifies the configuration for this data rate.') cLRFProfileDataRate54Mbps = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 18), CiscoLwappRFApDataRates().clone('supported')).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileDataRate54Mbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate54Mbps.setDescription('This object specifies the configuration for this data rate.') cLRFProfileRadioType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 19), CLApIfType()).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileRadioType.setStatus('current') if mibBuilder.loadTexts: cLRFProfileRadioType.setDescription('This object is used to configure the radio type for this profile.') cLRFProfileStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 20), StorageType().clone('nonVolatile')).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileStorageType.setStatus('current') if mibBuilder.loadTexts: cLRFProfileStorageType.setDescription('This object represents the storage type for this conceptual row.') cLRFProfileRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 21), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileRowStatus.setStatus('current') if mibBuilder.loadTexts: cLRFProfileRowStatus.setDescription('This is the status column for this row and used to create and delete specific instances of rows in this table.') cLRFProfileHighDensityMaxRadioClients = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 22), Unsigned32().clone(200)).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileHighDensityMaxRadioClients.setStatus('current') if mibBuilder.loadTexts: cLRFProfileHighDensityMaxRadioClients.setDescription('This object specifies the maximum number of clients per AP radio.') cLRFProfileBandSelectProbeResponse = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 23), TruthValue().clone('false')).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileBandSelectProbeResponse.setStatus('current') if mibBuilder.loadTexts: cLRFProfileBandSelectProbeResponse.setDescription("This object specifies the AP's probe response with clients to verify whether client can associate on both 2.4 GHz and 5Ghz spectrum. When set to true, AP suppresses probe response to new clients for all SSIDs that are not being Band Select disabled.") cLRFProfileBandSelectCycleCount = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 24), Unsigned32().clone(2)).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileBandSelectCycleCount.setStatus('current') if mibBuilder.loadTexts: cLRFProfileBandSelectCycleCount.setDescription('This object specifies the maximum number of cycles not responding.') cLRFProfileBandSelectCycleThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 25), Unsigned32().clone(200)).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileBandSelectCycleThreshold.setStatus('current') if mibBuilder.loadTexts: cLRFProfileBandSelectCycleThreshold.setDescription('This object specifies the cycle threshold for band select.') cLRFProfileBandSelectExpireSuppression = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 26), Unsigned32().clone(20)).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileBandSelectExpireSuppression.setStatus('current') if mibBuilder.loadTexts: cLRFProfileBandSelectExpireSuppression.setDescription('This object specifies the expire of suppression.') cLRFProfileBandSelectExpireDualBand = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 27), Unsigned32().clone(60)).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileBandSelectExpireDualBand.setStatus('current') if mibBuilder.loadTexts: cLRFProfileBandSelectExpireDualBand.setDescription('This object specifies the expire of dual band.') cLRFProfileBandSelectClientRSSI = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 28), Integer32().clone(-80)).setUnits('dbm').setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileBandSelectClientRSSI.setStatus('current') if mibBuilder.loadTexts: cLRFProfileBandSelectClientRSSI.setDescription('This object specifies the minimum dBM of a client RSSI to respond to probe.') cLRFProfileLoadBalancingWindowSize = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 29), Unsigned32().clone(5)).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileLoadBalancingWindowSize.setStatus('current') if mibBuilder.loadTexts: cLRFProfileLoadBalancingWindowSize.setDescription('This object specifies the number of clients associated between APs.') cLRFProfileLoadBalancingDenialCount = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 30), Unsigned32().clone(3)).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileLoadBalancingDenialCount.setStatus('current') if mibBuilder.loadTexts: cLRFProfileLoadBalancingDenialCount.setDescription('This object specifies number of clients denial with respect to AP.') cLRFProfileCHDDataRSSIThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 31), Integer32().clone(-80)).setUnits('dbm').setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileCHDDataRSSIThreshold.setStatus('current') if mibBuilder.loadTexts: cLRFProfileCHDDataRSSIThreshold.setDescription('This object specifies the RSSI threshold value for data packets.') cLRFProfileCHDVoiceRSSIThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 32), Integer32().clone(-80)).setUnits('dbm').setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileCHDVoiceRSSIThreshold.setStatus('current') if mibBuilder.loadTexts: cLRFProfileCHDVoiceRSSIThreshold.setDescription('This object specifies RSSI threshold value for voice packets.') cLRFProfileCHDClientExceptionLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 33), Unsigned32().clone(3)).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileCHDClientExceptionLevel.setStatus('current') if mibBuilder.loadTexts: cLRFProfileCHDClientExceptionLevel.setDescription('This object specifies the client minimum exception level.') cLRFProfileCHDCoverageExceptionLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 34), Unsigned32().clone(25)).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileCHDCoverageExceptionLevel.setStatus('current') if mibBuilder.loadTexts: cLRFProfileCHDCoverageExceptionLevel.setDescription('This object specifies the coverage exception level.') cLRFProfileMulticastDataRate = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 35), Unsigned32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileMulticastDataRate.setStatus('current') if mibBuilder.loadTexts: cLRFProfileMulticastDataRate.setDescription('This object specifies the minimum multicast data rate. A value 0 indicates that AP will automatically adjust data rates.') cLRFProfile11nOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 36), TruthValue().clone('false')).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfile11nOnly.setStatus('current') if mibBuilder.loadTexts: cLRFProfile11nOnly.setDescription('This object specifies if 11n-client-only mode is enabled.') cLRFProfileHDClientTrapThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 37), Unsigned32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: cLRFProfileHDClientTrapThreshold.setStatus('current') if mibBuilder.loadTexts: cLRFProfileHDClientTrapThreshold.setDescription('This object specifies the threshold number of clients per AP radio to trigger a trap. The trap ciscoLwappApClientThresholdNotify will be triggered once the count of clients on the AP radio reaches this limit. A value of zero indicates that the trap is disabled.') cLRFProfileInterferenceThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 38), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cLRFProfileInterferenceThreshold.setStatus('current') if mibBuilder.loadTexts: cLRFProfileInterferenceThreshold.setDescription('This object specifies the threshold number of interference between 0 and 100 percent.') cLRFProfileNoiseThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 39), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-127, 0))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cLRFProfileNoiseThreshold.setStatus('current') if mibBuilder.loadTexts: cLRFProfileNoiseThreshold.setDescription('This object specifies the threshold number of noise threshold between -127 and 0 dBm.') cLRFProfileUtilizationThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 40), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cLRFProfileUtilizationThreshold.setStatus('current') if mibBuilder.loadTexts: cLRFProfileUtilizationThreshold.setDescription('This object specifies the threshold number of utlization threshold between 0 and 100 percent.') cLRFProfileDCAForeignContribution = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 41), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cLRFProfileDCAForeignContribution.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDCAForeignContribution.setDescription('This object specifies whether foreign interference is taken into account for the DCA metrics.') cLRFProfileDCAChannelWidth = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 42), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("min", 1), ("medium", 2), ("max", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cLRFProfileDCAChannelWidth.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDCAChannelWidth.setDescription('This object specifies how the system performs DCA channel width selection for the RFProfile min - Min channel width(20Mhz) the radio supports medium - Medium channel width(40Mhz) supported by this radio. max - Max channel width(80Mhz) supported by this radio.') cLRFProfileDCAChannelList = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 43), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(1, 500))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cLRFProfileDCAChannelList.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDCAChannelList.setDescription('This object specifies the 802.11 channels available to the RF Profile. A comma separated list of integers.') cLRFProfileRxSopThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 44), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("auto", 0), ("low", 1), ("medium", 2), ("high", 3))).clone('auto')).setMaxAccess("readwrite") if mibBuilder.loadTexts: cLRFProfileRxSopThreshold.setStatus('current') if mibBuilder.loadTexts: cLRFProfileRxSopThreshold.setDescription('Configures the receiver start of packet threshold for the rf profile.') cLRFProfileOutOfBoxAPConfig = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 2, 1), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cLRFProfileOutOfBoxAPConfig.setStatus('current') if mibBuilder.loadTexts: cLRFProfileOutOfBoxAPConfig.setDescription('This object specifies the out of box AP group.') cLRFProfileMcsDataRateTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 3), ) if mibBuilder.loadTexts: cLRFProfileMcsDataRateTable.setStatus('current') if mibBuilder.loadTexts: cLRFProfileMcsDataRateTable.setDescription('This object specifies the 11n MCS rates supported by the RF profile, indexed by the MCS rate, ranging from 1 to 24, corresponding to rate MCS-0, MCS-1, ... MCS-23.') cLRFProfileMcsDataRateEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 3, 1), ).setIndexNames((0, "CISCO-LWAPP-RF-MIB", "cLRFProfileMcsName"), (0, "CISCO-LWAPP-RF-MIB", "cLRFProfileMcsRate")) if mibBuilder.loadTexts: cLRFProfileMcsDataRateEntry.setStatus('current') if mibBuilder.loadTexts: cLRFProfileMcsDataRateEntry.setDescription('An entry containing MCS date rate information applicable to a particular profile.') cLRFProfileMcsName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 3, 1, 1), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(1, 64))) if mibBuilder.loadTexts: cLRFProfileMcsName.setStatus('current') if mibBuilder.loadTexts: cLRFProfileMcsName.setDescription('This object uniquely identifies a RF Profile.') cLRFProfileMcsRate = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 3, 1, 2), Unsigned32()) if mibBuilder.loadTexts: cLRFProfileMcsRate.setStatus('current') if mibBuilder.loadTexts: cLRFProfileMcsRate.setDescription('This object uniquely identifies the MCS data rate for a particular profile.') cLRFProfileMcsRateSupport = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 3, 1, 3), TruthValue().clone('true')).setMaxAccess("readwrite") if mibBuilder.loadTexts: cLRFProfileMcsRateSupport.setStatus('current') if mibBuilder.loadTexts: cLRFProfileMcsRateSupport.setDescription("This object is used to enable or disable the data rate. When this object is set to 'true' the MCS support is enabled. When this object is set to 'false' the MCS support is disabled..") ciscoLwappRFMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 1)) ciscoLwappRFMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 2)) ciscoLwappRFMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 1, 1)).setObjects(("CISCO-LWAPP-RF-MIB", "ciscoLwappRFConfigGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): ciscoLwappRFMIBCompliance = ciscoLwappRFMIBCompliance.setStatus('deprecated') if mibBuilder.loadTexts: ciscoLwappRFMIBCompliance.setDescription('The compliance statement for the SNMP entities that implement the ciscoLwappRFMIB module. This compliance is deprecated and replaced by ciscoLwappRFMIBComplianceVer1 .') ciscoLwappRFMIBComplianceVer1 = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 1, 2)).setObjects(("CISCO-LWAPP-RF-MIB", "ciscoLwappRFConfigGroup"), ("CISCO-LWAPP-RF-MIB", "ciscoLwappRFConfigGroup1"), ("CISCO-LWAPP-RF-MIB", "ciscoLwappRFGlobalConfigGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): ciscoLwappRFMIBComplianceVer1 = ciscoLwappRFMIBComplianceVer1.setStatus('current') if mibBuilder.loadTexts: ciscoLwappRFMIBComplianceVer1.setDescription('The compliance statement for the SNMP entities that implement the ciscoLwappRFMIB module.') ciscoLwappRFMIBComplianceVer2 = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 1, 3)).setObjects(("CISCO-LWAPP-RF-MIB", "ciscoLwappRFConfigGroup"), ("CISCO-LWAPP-RF-MIB", "ciscoLwappRFConfigGroup1"), ("CISCO-LWAPP-RF-MIB", "ciscoLwappRFGlobalConfigGroup"), ("CISCO-LWAPP-RF-MIB", "ciscoLwappRFConfigGroup2"), ("CISCO-LWAPP-RF-MIB", "ciscoLwappRFConfigGroup3")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): ciscoLwappRFMIBComplianceVer2 = ciscoLwappRFMIBComplianceVer2.setStatus('current') if mibBuilder.loadTexts: ciscoLwappRFMIBComplianceVer2.setDescription('The compliance statement for the SNMP entities that implement the ciscoLwappRFMIB module. Added ciscoLwappRFConfigGroup2 to add object to raise trap when client count exceeds threshold and ciscoLwappRFConfigGroup3 to address DCA settings') ciscoLwappRFConfigGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 2, 1)).setObjects(("CISCO-LWAPP-RF-MIB", "cLAPGroups802dot11bgRFProfileName"), ("CISCO-LWAPP-RF-MIB", "cLAPGroups802dot11aRFProfileName"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDescr"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileTransmitPowerMin"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileTransmitPowerMax"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileTransmitPowerThresholdV1"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileTransmitPowerThresholdV2"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate1Mbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate2Mbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate5AndHalfMbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate11Mbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate6Mbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate9Mbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate12Mbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate18Mbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate24Mbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate36Mbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate48Mbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate54Mbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileRadioType"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileStorageType"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileRowStatus"), ("CISCO-LWAPP-RF-MIB", "cLRFProfile11nOnly")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): ciscoLwappRFConfigGroup = ciscoLwappRFConfigGroup.setStatus('deprecated') if mibBuilder.loadTexts: ciscoLwappRFConfigGroup.setDescription('This collection of objects specifies the configuration of RF parameters on the controller to be passed to an LWAPP AP.This config group ciscoLwappRFConfigGroup is deprecated and replaced by ciscoLwappRFConfigGroupVer1') ciscoLwappRFConfigGroupVer1 = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 2, 2)).setObjects(("CISCO-LWAPP-RF-MIB", "cLAPGroups802dot11bgRFProfileName"), ("CISCO-LWAPP-RF-MIB", "cLAPGroups802dot11aRFProfileName"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDescr"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileTransmitPowerMin"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileTransmitPowerMax"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileTransmitPowerThresholdV1"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileTransmitPowerThresholdV2"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate1Mbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate2Mbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate5AndHalfMbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate11Mbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate6Mbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate9Mbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate12Mbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate18Mbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate24Mbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate36Mbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate48Mbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDataRate54Mbps"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileRadioType"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileStorageType"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileRowStatus"), ("CISCO-LWAPP-RF-MIB", "cLRFProfile11nOnly"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileMcsName"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileMcsRate"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileMcsRateSupport")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): ciscoLwappRFConfigGroupVer1 = ciscoLwappRFConfigGroupVer1.setStatus('current') if mibBuilder.loadTexts: ciscoLwappRFConfigGroupVer1.setDescription('This collection of objects specifies the configuration of RF parameters on the controller to be passed to an LWAPP AP.') ciscoLwappRFConfigGroup1 = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 2, 5)).setObjects(("CISCO-LWAPP-RF-MIB", "cLRFProfileHighDensityMaxRadioClients"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileBandSelectProbeResponse"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileBandSelectCycleCount"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileBandSelectCycleThreshold"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileBandSelectExpireSuppression"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileBandSelectExpireDualBand"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileBandSelectClientRSSI"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileLoadBalancingWindowSize"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileLoadBalancingDenialCount"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileCHDDataRSSIThreshold"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileCHDVoiceRSSIThreshold"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileCHDClientExceptionLevel"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileCHDCoverageExceptionLevel"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileMulticastDataRate")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): ciscoLwappRFConfigGroup1 = ciscoLwappRFConfigGroup1.setStatus('current') if mibBuilder.loadTexts: ciscoLwappRFConfigGroup1.setDescription('This collection of objects specifies the configuration of RF parameters on the controller to be passed to an LWAPP AP.') ciscoLwappRFGlobalConfigGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 2, 3)).setObjects(("CISCO-LWAPP-RF-MIB", "cLRFProfileOutOfBoxAPConfig")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): ciscoLwappRFGlobalConfigGroup = ciscoLwappRFGlobalConfigGroup.setStatus('current') if mibBuilder.loadTexts: ciscoLwappRFGlobalConfigGroup.setDescription('This is the RF global config parameter.') ciscoLwappRFConfigGroup2 = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 2, 4)).setObjects(("CISCO-LWAPP-RF-MIB", "cLRFProfileHDClientTrapThreshold"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileInterferenceThreshold"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileNoiseThreshold"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileUtilizationThreshold")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): ciscoLwappRFConfigGroup2 = ciscoLwappRFConfigGroup2.setStatus('current') if mibBuilder.loadTexts: ciscoLwappRFConfigGroup2.setDescription('This object specifies the configuration of Trap threshold to be configured on the interface of an LWAPP AP.') ciscoLwappRFConfigGroup3 = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 2, 6)).setObjects(("CISCO-LWAPP-RF-MIB", "cLRFProfileDCAForeignContribution"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDCAChannelWidth"), ("CISCO-LWAPP-RF-MIB", "cLRFProfileDCAChannelList")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): ciscoLwappRFConfigGroup3 = ciscoLwappRFConfigGroup3.setStatus('current') if mibBuilder.loadTexts: ciscoLwappRFConfigGroup3.setDescription('This object specifies the configuration DCA for RF Profiles.') ciscoLwappRFConfigGroup4 = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 2, 7)).setObjects(("CISCO-LWAPP-RF-MIB", "cLRFProfileRxSopThreshold")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): ciscoLwappRFConfigGroup4 = ciscoLwappRFConfigGroup4.setStatus('current') if mibBuilder.loadTexts: ciscoLwappRFConfigGroup4.setDescription('This object specifies the receiver start of packet threshold for RF Profiles.') mibBuilder.exportSymbols("CISCO-LWAPP-RF-MIB", cLRFProfileOutOfBoxAPConfig=cLRFProfileOutOfBoxAPConfig, cLRFProfileDCAForeignContribution=cLRFProfileDCAForeignContribution, cLRFProfileDataRate11Mbps=cLRFProfileDataRate11Mbps, ciscoLwappRFGlobalObjects=ciscoLwappRFGlobalObjects, ciscoLwappRFMIB=ciscoLwappRFMIB, cLRFProfileBandSelectCycleCount=cLRFProfileBandSelectCycleCount, cLRFProfileRadioType=cLRFProfileRadioType, cLRFProfileRxSopThreshold=cLRFProfileRxSopThreshold, cLRFProfileMcsRateSupport=cLRFProfileMcsRateSupport, cLRFProfileDataRate2Mbps=cLRFProfileDataRate2Mbps, cLRFProfileRowStatus=cLRFProfileRowStatus, cLAPGroups802dot11bgRFProfileName=cLAPGroups802dot11bgRFProfileName, cLRFProfileBandSelectClientRSSI=cLRFProfileBandSelectClientRSSI, ciscoLwappRFMIBNotifs=ciscoLwappRFMIBNotifs, cLRFProfileHighDensityMaxRadioClients=cLRFProfileHighDensityMaxRadioClients, ciscoLwappRFConfigGroup4=ciscoLwappRFConfigGroup4, cLRFProfileDataRate12Mbps=cLRFProfileDataRate12Mbps, cLRFProfileDataRate1Mbps=cLRFProfileDataRate1Mbps, cLRFProfile11nOnly=cLRFProfile11nOnly, cLRFProfileNoiseThreshold=cLRFProfileNoiseThreshold, cLRFProfileTransmitPowerMin=cLRFProfileTransmitPowerMin, cLRFProfileStorageType=cLRFProfileStorageType, cLRFProfileDescr=cLRFProfileDescr, cLRFProfileCHDDataRSSIThreshold=cLRFProfileCHDDataRSSIThreshold, cLRFProfileCHDClientExceptionLevel=cLRFProfileCHDClientExceptionLevel, cLRFProfileBandSelectCycleThreshold=cLRFProfileBandSelectCycleThreshold, cLRFProfileMcsDataRateEntry=cLRFProfileMcsDataRateEntry, ciscoLwappRFMIBObjects=ciscoLwappRFMIBObjects, cLRFProfileDataRate9Mbps=cLRFProfileDataRate9Mbps, ciscoLwappRFConfig=ciscoLwappRFConfig, cLRFProfileInterferenceThreshold=cLRFProfileInterferenceThreshold, ciscoLwappRFMIBComplianceVer2=ciscoLwappRFMIBComplianceVer2, cLRFProfileCHDCoverageExceptionLevel=cLRFProfileCHDCoverageExceptionLevel, ciscoLwappRFConfigGroupVer1=ciscoLwappRFConfigGroupVer1, cLRFProfileDataRate5AndHalfMbps=cLRFProfileDataRate5AndHalfMbps, ciscoLwappRFConfigGroup3=ciscoLwappRFConfigGroup3, cLRFProfileTransmitPowerThresholdV2=cLRFProfileTransmitPowerThresholdV2, cLRFProfileDCAChannelList=cLRFProfileDCAChannelList, cLRFProfileTransmitPowerThresholdV1=cLRFProfileTransmitPowerThresholdV1, cLRFProfileDataRate6Mbps=cLRFProfileDataRate6Mbps, cLRFProfileDataRate36Mbps=cLRFProfileDataRate36Mbps, cLRFProfileTransmitPowerMax=cLRFProfileTransmitPowerMax, cLRFProfileDataRate48Mbps=cLRFProfileDataRate48Mbps, cLRFProfileBandSelectExpireDualBand=cLRFProfileBandSelectExpireDualBand, ciscoLwappRFMIBComplianceVer1=ciscoLwappRFMIBComplianceVer1, CiscoLwappRFApDataRates=CiscoLwappRFApDataRates, cLRFProfileBandSelectExpireSuppression=cLRFProfileBandSelectExpireSuppression, cLRFProfileHDClientTrapThreshold=cLRFProfileHDClientTrapThreshold, cLAPGroups802dot11aRFProfileName=cLAPGroups802dot11aRFProfileName, cLAPGroupsRFProfileTable=cLAPGroupsRFProfileTable, cLRFProfileName=cLRFProfileName, cLRFProfileDataRate18Mbps=cLRFProfileDataRate18Mbps, ciscoLwappRFMIBCompliances=ciscoLwappRFMIBCompliances, ciscoLwappRFConfigGroup=ciscoLwappRFConfigGroup, cLRFProfileMcsRate=cLRFProfileMcsRate, cLRFProfileEntry=cLRFProfileEntry, ciscoLwappRFMIBCompliance=ciscoLwappRFMIBCompliance, cLRFProfileDataRate24Mbps=cLRFProfileDataRate24Mbps, cLRFProfileMulticastDataRate=cLRFProfileMulticastDataRate, PYSNMP_MODULE_ID=ciscoLwappRFMIB, cLRFProfileUtilizationThreshold=cLRFProfileUtilizationThreshold, ciscoLwappRFMIBConform=ciscoLwappRFMIBConform, cLAPGroupsRFProfileEntry=cLAPGroupsRFProfileEntry, cLRFProfileTable=cLRFProfileTable, cLRFProfileDataRate54Mbps=cLRFProfileDataRate54Mbps, ciscoLwappRFMIBGroups=ciscoLwappRFMIBGroups, cLRFProfileDCAChannelWidth=cLRFProfileDCAChannelWidth, cLRFProfileMcsName=cLRFProfileMcsName, cLRFProfileLoadBalancingWindowSize=cLRFProfileLoadBalancingWindowSize, cLRFProfileMcsDataRateTable=cLRFProfileMcsDataRateTable, ciscoLwappRFGlobalConfigGroup=ciscoLwappRFGlobalConfigGroup, ciscoLwappRFConfigGroup1=ciscoLwappRFConfigGroup1, ciscoLwappRFConfigGroup2=ciscoLwappRFConfigGroup2, cLRFProfileBandSelectProbeResponse=cLRFProfileBandSelectProbeResponse, cLRFProfileLoadBalancingDenialCount=cLRFProfileLoadBalancingDenialCount, cLRFProfileCHDVoiceRSSIThreshold=cLRFProfileCHDVoiceRSSIThreshold)
(octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_union, value_range_constraint, value_size_constraint, single_value_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ValueRangeConstraint', 'ValueSizeConstraint', 'SingleValueConstraint', 'ConstraintsIntersection') (cl_ap_if_type,) = mibBuilder.importSymbols('CISCO-LWAPP-TC-MIB', 'CLApIfType') (c_lap_group_name,) = mibBuilder.importSymbols('CISCO-LWAPP-WLAN-MIB', 'cLAPGroupName') (cisco_mgmt,) = mibBuilder.importSymbols('CISCO-SMI', 'ciscoMgmt') (snmp_admin_string,) = mibBuilder.importSymbols('SNMP-FRAMEWORK-MIB', 'SnmpAdminString') (module_compliance, notification_group, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup', 'ObjectGroup') (notification_type, time_ticks, iso, integer32, module_identity, gauge32, unsigned32, object_identity, counter64, bits, ip_address, mib_scalar, mib_table, mib_table_row, mib_table_column, mib_identifier, counter32) = mibBuilder.importSymbols('SNMPv2-SMI', 'NotificationType', 'TimeTicks', 'iso', 'Integer32', 'ModuleIdentity', 'Gauge32', 'Unsigned32', 'ObjectIdentity', 'Counter64', 'Bits', 'IpAddress', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'MibIdentifier', 'Counter32') (storage_type, display_string, textual_convention, row_status, truth_value) = mibBuilder.importSymbols('SNMPv2-TC', 'StorageType', 'DisplayString', 'TextualConvention', 'RowStatus', 'TruthValue') cisco_lwapp_rfmib = module_identity((1, 3, 6, 1, 4, 1, 9, 9, 778)) ciscoLwappRFMIB.setRevisions(('2012-04-27 00:00', '2012-01-27 00:00', '2011-11-01 00:00')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: ciscoLwappRFMIB.setRevisionsDescriptions(('Add 11n MCS rates support in profile, cLRFProfileMcsDataRateTable is added for this rate setting.', ' Below new objects have been added to the cLRFProfileTable cLRFProfileHighDensityMaxRadioClients cLRFProfileBandSelectProbeResponse cLRFProfileBandSelectCycleCount cLRFProfileBandSelectCycleThreshold cLRFProfileBandSelectExpireSuppression cLRFProfileBandSelectExpireDualBand cLRFProfileBandSelectClientRSSI cLRFProfileLoadBalancingWindowSize cLRFProfileLoadBalancingDenialCount cLRFProfileCHDDataRSSIThreshold cLRFProfileCHDVoiceRSSIThreshold cLRFProfileCHDClientExceptionLevel cLRFProfileCHDCoverageExceptionLevel cLRFProfileMulticastDataRate One new scalar object has been added cLRFProfileOutOfBoxAPConfig', 'Initial version of this MIB module.')) if mibBuilder.loadTexts: ciscoLwappRFMIB.setLastUpdated('201111010000Z') if mibBuilder.loadTexts: ciscoLwappRFMIB.setOrganization('Cisco Systems Inc.') if mibBuilder.loadTexts: ciscoLwappRFMIB.setContactInfo('Cisco Systems, Customer Service Postal: 170 West Tasman Drive San Jose, CA 95134 USA Tel: +1 800 553-NETS Email: cs-wnbu-snmp@cisco.com') if mibBuilder.loadTexts: ciscoLwappRFMIB.setDescription("This MIB is intended to be implemented on all those devices operating as Central Controllers (CC) that terminate the Light Weight Access Point Protocol tunnel from Cisco Light-weight LWAPP Access Points. This MIB helps to manage the Radio Frequency (RF) parameters on the controller. The relationship between CC and the LWAPP APs can be depicted as follows: +......+ +......+ +......+ +......+ + + + + + + + + + CC + + CC + + CC + + CC + + + + + + + + + +......+ +......+ +......+ +......+ .. . . . .. . . . . . . . . . . . . . . . . . . . . . . . +......+ +......+ +......+ +......+ +......+ + + + + + + + + + + + AP + + AP + + AP + + AP + + AP + + + + + + + + + + + +......+ +......+ +......+ +......+ +......+ . . . . . . . . . . . . . . . . . . . . . . . . +......+ +......+ +......+ +......+ +......+ + + + + + + + + + + + MN + + MN + + MN + + MN + + MN + + + + + + + + + + + +......+ +......+ +......+ +......+ +......+ The LWAPP tunnel exists between the controller and the APs. The MNs communicate with the APs through the protocol defined by the 802.11 standard. LWAPP APs, upon bootup, discover and join one of the controllers and the controller pushes the configuration, that includes the WLAN parameters, to the LWAPP APs. The APs then encapsulate all the 802.11 frames from wireless clients inside LWAPP frames and forward the LWAPP frames to the controller. GLOSSARY Access Point ( AP ) An entity that contains an 802.11 medium access control ( MAC ) and physical layer ( PHY ) interface and provides access to the distribution services via the wireless medium for associated clients. LWAPP APs encapsulate all the 802.11 frames in LWAPP frames and sends it to the controller to which it is logically connected to. Central Controller ( CC ) The central entity that terminates the LWAPP protocol tunnel from the LWAPP APs. Throughout this MIB, this entity also referred to as 'controller'. Light Weight Access Point Protocol ( LWAPP ) This is a generic protocol that defines the communication between the Access Points and the controllers. Mobile Node ( MN ) A roaming 802.11 wireless device in a wireless network associated with an access point. 802.1x The IEEE ratified standard for enforcing port based access control. This was originally intended for use on wired LANs and later extended for use in 802.11 WLAN environments. This defines an architecture with three main parts - a supplicant (Ex. an 802.11 wireless client), an authenticator (the AP) and an authentication server(a Radius server). The authenticator passes messages back and forth between the supplicant and the authentication server to enable the supplicant get authenticated to the network. Radio Frequency ( RF ) Radio frequency (RF) is a rate of oscillation in the range of about 3 kHz to 300 GHz, which corresponds to the frequency of radio waves, and the alternating currents which carry radio signals. Received Signal Strength Indicator ( RSSI ) A measure of the strength of the signal as observed by the entity that received it, expressed in 'dbm'. Coverage Hole Detection ( CHD ) If clients on an Access Point are detected at low RSSI levels, it is considered a coverage hole by the Access Points. This indicates the existence of an area where clients are continually getting poor signal coverage, without having a viable location to roam to. REFERENCE [1] Wireless LAN Medium Access Control ( MAC ) and Physical Layer ( PHY ) Specifications. [2] Draft-obara-capwap-lwapp-00.txt, IETF Light Weight Access Point Protocol [3] IEEE 802.11 - The original 1 Mbit/s and 2 Mbit/s, 2.4 GHz RF and IR standard.") cisco_lwapp_rfmib_notifs = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 778, 0)) cisco_lwapp_rfmib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 778, 1)) cisco_lwapp_rfmib_conform = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 778, 2)) cisco_lwapp_rf_config = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1)) cisco_lwapp_rf_global_objects = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 2)) class Ciscolwapprfapdatarates(TextualConvention, Integer32): description = "This field indicates the data rates supported by an AP 'disabled' The rate is not supported by the AP 'supported' The rate is supported by the AP 'mandatoryRate' The rate is required by the AP 'notApplicable' The rate is notApplicable." status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 1, 2, 3)) named_values = named_values(('disabled', 0), ('supported', 1), ('mandatoryRate', 2), ('notApplicable', 3)) c_lap_groups_rf_profile_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 1)) if mibBuilder.loadTexts: cLAPGroupsRFProfileTable.setStatus('current') if mibBuilder.loadTexts: cLAPGroupsRFProfileTable.setDescription('This table lists the mapping between an RF profile and an AP group.') c_lap_groups_rf_profile_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 1, 1)).setIndexNames((0, 'CISCO-LWAPP-WLAN-MIB', 'cLAPGroupName')) if mibBuilder.loadTexts: cLAPGroupsRFProfileEntry.setStatus('current') if mibBuilder.loadTexts: cLAPGroupsRFProfileEntry.setDescription("An entry containing the configuration attributes that affect the operation of the APs within a group. Entries can be added/deleted by explicit management action from NMS/EMS through the 'bsnAPGroupsVlanRowStatus' object in bsnAPGroupsVlanTable as defined by the AIRESPACE-WIRELESS-MIB.") c_lap_groups802dot11bg_rf_profile_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 1, 1, 1), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cLAPGroups802dot11bgRFProfileName.setStatus('current') if mibBuilder.loadTexts: cLAPGroups802dot11bgRFProfileName.setDescription("This object specifies the RF profile name assigned to this site on the 802.11bg radio. This profile being assigned should exist in the 'cLRFProfileTable'. To disassociate a profile with this site a string of zero length should be set.") c_lap_groups802dot11a_rf_profile_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 1, 1, 2), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cLAPGroups802dot11aRFProfileName.setStatus('current') if mibBuilder.loadTexts: cLAPGroups802dot11aRFProfileName.setDescription("This object specifies the RF profile name assigned to this site on the 802.11a radio. This profile being assigned should exist in the 'cLRFProfileTable'. To disassociate a profile with this site a string of zero length should be set.") c_lrf_profile_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2)) if mibBuilder.loadTexts: cLRFProfileTable.setStatus('current') if mibBuilder.loadTexts: cLRFProfileTable.setDescription('This table lists the configuration for each RF profile.') c_lrf_profile_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1)).setIndexNames((0, 'CISCO-LWAPP-RF-MIB', 'cLRFProfileName')) if mibBuilder.loadTexts: cLRFProfileEntry.setStatus('current') if mibBuilder.loadTexts: cLRFProfileEntry.setDescription('An entry containing the configuration attributes that affect the operation of 802.11 RF domain. Entries can be added/deleted by explicit management action from NMS/EMS or through user console.') c_lrf_profile_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 1), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(1, 64))) if mibBuilder.loadTexts: cLRFProfileName.setStatus('current') if mibBuilder.loadTexts: cLRFProfileName.setDescription('This object uniquely identifies a RF Profile.') c_lrf_profile_descr = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 2), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileDescr.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDescr.setDescription('This object specifies a human-readable description of the profile.') c_lrf_profile_transmit_power_min = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-10, 30)).clone(-10)).setUnits('dbm').setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileTransmitPowerMin.setStatus('current') if mibBuilder.loadTexts: cLRFProfileTransmitPowerMin.setDescription('This object specifies the lower bound of transmit power value supported by an AP.') c_lrf_profile_transmit_power_max = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(-10, 30)).clone(30)).setUnits('dbm').setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileTransmitPowerMax.setStatus('current') if mibBuilder.loadTexts: cLRFProfileTransmitPowerMax.setDescription('This object specifies the uppoer bound of transmit power value supported by an AP.') c_lrf_profile_transmit_power_threshold_v1 = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(-80, -50)).clone(-70)).setUnits('dbm').setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileTransmitPowerThresholdV1.setStatus('current') if mibBuilder.loadTexts: cLRFProfileTransmitPowerThresholdV1.setDescription('This object specifies the transmit power control version 1 threshold for the radio resource management algorithm.') c_lrf_profile_transmit_power_threshold_v2 = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(-80, -50)).clone(-67)).setUnits('dbm').setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileTransmitPowerThresholdV2.setStatus('current') if mibBuilder.loadTexts: cLRFProfileTransmitPowerThresholdV2.setDescription('This object specifies the transmit power control version 2 threshold for the radio resource management algorithm.') c_lrf_profile_data_rate1_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 7), cisco_lwapp_rf_ap_data_rates().clone('mandatoryRate')).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileDataRate1Mbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate1Mbps.setDescription('This object specifies the configuration for this data rate.') c_lrf_profile_data_rate2_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 8), cisco_lwapp_rf_ap_data_rates().clone('mandatoryRate')).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileDataRate2Mbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate2Mbps.setDescription('This object specifies the configuration for this data rate.') c_lrf_profile_data_rate5_and_half_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 9), cisco_lwapp_rf_ap_data_rates().clone('mandatoryRate')).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileDataRate5AndHalfMbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate5AndHalfMbps.setDescription('This object specifies the configuration for this data rate.') c_lrf_profile_data_rate11_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 10), cisco_lwapp_rf_ap_data_rates().clone('mandatoryRate')).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileDataRate11Mbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate11Mbps.setDescription('This object specifies the configuration for this data rate.') c_lrf_profile_data_rate6_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 11), cisco_lwapp_rf_ap_data_rates().clone('supported')).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileDataRate6Mbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate6Mbps.setDescription('This object specifies the configuration for this data rate.') c_lrf_profile_data_rate9_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 12), cisco_lwapp_rf_ap_data_rates().clone('supported')).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileDataRate9Mbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate9Mbps.setDescription('This object specifies the configuration for this data rate.') c_lrf_profile_data_rate12_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 13), cisco_lwapp_rf_ap_data_rates().clone('supported')).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileDataRate12Mbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate12Mbps.setDescription('This object specifies the configuration for this data rate.') c_lrf_profile_data_rate18_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 14), cisco_lwapp_rf_ap_data_rates().clone('supported')).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileDataRate18Mbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate18Mbps.setDescription('This object specifies the configuration for this data rate.') c_lrf_profile_data_rate24_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 15), cisco_lwapp_rf_ap_data_rates().clone('supported')).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileDataRate24Mbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate24Mbps.setDescription('This object specifies the configuration for this data rate.') c_lrf_profile_data_rate36_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 16), cisco_lwapp_rf_ap_data_rates().clone('supported')).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileDataRate36Mbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate36Mbps.setDescription('This object specifies the configuration for this data rate.') c_lrf_profile_data_rate48_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 17), cisco_lwapp_rf_ap_data_rates().clone('supported')).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileDataRate48Mbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate48Mbps.setDescription('This object specifies the configuration for this data rate.') c_lrf_profile_data_rate54_mbps = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 18), cisco_lwapp_rf_ap_data_rates().clone('supported')).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileDataRate54Mbps.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDataRate54Mbps.setDescription('This object specifies the configuration for this data rate.') c_lrf_profile_radio_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 19), cl_ap_if_type()).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileRadioType.setStatus('current') if mibBuilder.loadTexts: cLRFProfileRadioType.setDescription('This object is used to configure the radio type for this profile.') c_lrf_profile_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 20), storage_type().clone('nonVolatile')).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileStorageType.setStatus('current') if mibBuilder.loadTexts: cLRFProfileStorageType.setDescription('This object represents the storage type for this conceptual row.') c_lrf_profile_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 21), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileRowStatus.setStatus('current') if mibBuilder.loadTexts: cLRFProfileRowStatus.setDescription('This is the status column for this row and used to create and delete specific instances of rows in this table.') c_lrf_profile_high_density_max_radio_clients = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 22), unsigned32().clone(200)).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileHighDensityMaxRadioClients.setStatus('current') if mibBuilder.loadTexts: cLRFProfileHighDensityMaxRadioClients.setDescription('This object specifies the maximum number of clients per AP radio.') c_lrf_profile_band_select_probe_response = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 23), truth_value().clone('false')).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileBandSelectProbeResponse.setStatus('current') if mibBuilder.loadTexts: cLRFProfileBandSelectProbeResponse.setDescription("This object specifies the AP's probe response with clients to verify whether client can associate on both 2.4 GHz and 5Ghz spectrum. When set to true, AP suppresses probe response to new clients for all SSIDs that are not being Band Select disabled.") c_lrf_profile_band_select_cycle_count = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 24), unsigned32().clone(2)).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileBandSelectCycleCount.setStatus('current') if mibBuilder.loadTexts: cLRFProfileBandSelectCycleCount.setDescription('This object specifies the maximum number of cycles not responding.') c_lrf_profile_band_select_cycle_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 25), unsigned32().clone(200)).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileBandSelectCycleThreshold.setStatus('current') if mibBuilder.loadTexts: cLRFProfileBandSelectCycleThreshold.setDescription('This object specifies the cycle threshold for band select.') c_lrf_profile_band_select_expire_suppression = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 26), unsigned32().clone(20)).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileBandSelectExpireSuppression.setStatus('current') if mibBuilder.loadTexts: cLRFProfileBandSelectExpireSuppression.setDescription('This object specifies the expire of suppression.') c_lrf_profile_band_select_expire_dual_band = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 27), unsigned32().clone(60)).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileBandSelectExpireDualBand.setStatus('current') if mibBuilder.loadTexts: cLRFProfileBandSelectExpireDualBand.setDescription('This object specifies the expire of dual band.') c_lrf_profile_band_select_client_rssi = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 28), integer32().clone(-80)).setUnits('dbm').setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileBandSelectClientRSSI.setStatus('current') if mibBuilder.loadTexts: cLRFProfileBandSelectClientRSSI.setDescription('This object specifies the minimum dBM of a client RSSI to respond to probe.') c_lrf_profile_load_balancing_window_size = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 29), unsigned32().clone(5)).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileLoadBalancingWindowSize.setStatus('current') if mibBuilder.loadTexts: cLRFProfileLoadBalancingWindowSize.setDescription('This object specifies the number of clients associated between APs.') c_lrf_profile_load_balancing_denial_count = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 30), unsigned32().clone(3)).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileLoadBalancingDenialCount.setStatus('current') if mibBuilder.loadTexts: cLRFProfileLoadBalancingDenialCount.setDescription('This object specifies number of clients denial with respect to AP.') c_lrf_profile_chd_data_rssi_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 31), integer32().clone(-80)).setUnits('dbm').setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileCHDDataRSSIThreshold.setStatus('current') if mibBuilder.loadTexts: cLRFProfileCHDDataRSSIThreshold.setDescription('This object specifies the RSSI threshold value for data packets.') c_lrf_profile_chd_voice_rssi_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 32), integer32().clone(-80)).setUnits('dbm').setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileCHDVoiceRSSIThreshold.setStatus('current') if mibBuilder.loadTexts: cLRFProfileCHDVoiceRSSIThreshold.setDescription('This object specifies RSSI threshold value for voice packets.') c_lrf_profile_chd_client_exception_level = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 33), unsigned32().clone(3)).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileCHDClientExceptionLevel.setStatus('current') if mibBuilder.loadTexts: cLRFProfileCHDClientExceptionLevel.setDescription('This object specifies the client minimum exception level.') c_lrf_profile_chd_coverage_exception_level = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 34), unsigned32().clone(25)).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileCHDCoverageExceptionLevel.setStatus('current') if mibBuilder.loadTexts: cLRFProfileCHDCoverageExceptionLevel.setDescription('This object specifies the coverage exception level.') c_lrf_profile_multicast_data_rate = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 35), unsigned32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileMulticastDataRate.setStatus('current') if mibBuilder.loadTexts: cLRFProfileMulticastDataRate.setDescription('This object specifies the minimum multicast data rate. A value 0 indicates that AP will automatically adjust data rates.') c_lrf_profile11n_only = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 36), truth_value().clone('false')).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfile11nOnly.setStatus('current') if mibBuilder.loadTexts: cLRFProfile11nOnly.setDescription('This object specifies if 11n-client-only mode is enabled.') c_lrf_profile_hd_client_trap_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 37), unsigned32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: cLRFProfileHDClientTrapThreshold.setStatus('current') if mibBuilder.loadTexts: cLRFProfileHDClientTrapThreshold.setDescription('This object specifies the threshold number of clients per AP radio to trigger a trap. The trap ciscoLwappApClientThresholdNotify will be triggered once the count of clients on the AP radio reaches this limit. A value of zero indicates that the trap is disabled.') c_lrf_profile_interference_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 38), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cLRFProfileInterferenceThreshold.setStatus('current') if mibBuilder.loadTexts: cLRFProfileInterferenceThreshold.setDescription('This object specifies the threshold number of interference between 0 and 100 percent.') c_lrf_profile_noise_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 39), integer32().subtype(subtypeSpec=value_range_constraint(-127, 0))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cLRFProfileNoiseThreshold.setStatus('current') if mibBuilder.loadTexts: cLRFProfileNoiseThreshold.setDescription('This object specifies the threshold number of noise threshold between -127 and 0 dBm.') c_lrf_profile_utilization_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 40), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cLRFProfileUtilizationThreshold.setStatus('current') if mibBuilder.loadTexts: cLRFProfileUtilizationThreshold.setDescription('This object specifies the threshold number of utlization threshold between 0 and 100 percent.') c_lrf_profile_dca_foreign_contribution = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 41), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cLRFProfileDCAForeignContribution.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDCAForeignContribution.setDescription('This object specifies whether foreign interference is taken into account for the DCA metrics.') c_lrf_profile_dca_channel_width = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 42), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('min', 1), ('medium', 2), ('max', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cLRFProfileDCAChannelWidth.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDCAChannelWidth.setDescription('This object specifies how the system performs DCA channel width selection for the RFProfile min - Min channel width(20Mhz) the radio supports medium - Medium channel width(40Mhz) supported by this radio. max - Max channel width(80Mhz) supported by this radio.') c_lrf_profile_dca_channel_list = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 43), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(1, 500))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cLRFProfileDCAChannelList.setStatus('current') if mibBuilder.loadTexts: cLRFProfileDCAChannelList.setDescription('This object specifies the 802.11 channels available to the RF Profile. A comma separated list of integers.') c_lrf_profile_rx_sop_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 2, 1, 44), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('auto', 0), ('low', 1), ('medium', 2), ('high', 3))).clone('auto')).setMaxAccess('readwrite') if mibBuilder.loadTexts: cLRFProfileRxSopThreshold.setStatus('current') if mibBuilder.loadTexts: cLRFProfileRxSopThreshold.setDescription('Configures the receiver start of packet threshold for the rf profile.') c_lrf_profile_out_of_box_ap_config = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 2, 1), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cLRFProfileOutOfBoxAPConfig.setStatus('current') if mibBuilder.loadTexts: cLRFProfileOutOfBoxAPConfig.setDescription('This object specifies the out of box AP group.') c_lrf_profile_mcs_data_rate_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 3)) if mibBuilder.loadTexts: cLRFProfileMcsDataRateTable.setStatus('current') if mibBuilder.loadTexts: cLRFProfileMcsDataRateTable.setDescription('This object specifies the 11n MCS rates supported by the RF profile, indexed by the MCS rate, ranging from 1 to 24, corresponding to rate MCS-0, MCS-1, ... MCS-23.') c_lrf_profile_mcs_data_rate_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 3, 1)).setIndexNames((0, 'CISCO-LWAPP-RF-MIB', 'cLRFProfileMcsName'), (0, 'CISCO-LWAPP-RF-MIB', 'cLRFProfileMcsRate')) if mibBuilder.loadTexts: cLRFProfileMcsDataRateEntry.setStatus('current') if mibBuilder.loadTexts: cLRFProfileMcsDataRateEntry.setDescription('An entry containing MCS date rate information applicable to a particular profile.') c_lrf_profile_mcs_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 3, 1, 1), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(1, 64))) if mibBuilder.loadTexts: cLRFProfileMcsName.setStatus('current') if mibBuilder.loadTexts: cLRFProfileMcsName.setDescription('This object uniquely identifies a RF Profile.') c_lrf_profile_mcs_rate = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 3, 1, 2), unsigned32()) if mibBuilder.loadTexts: cLRFProfileMcsRate.setStatus('current') if mibBuilder.loadTexts: cLRFProfileMcsRate.setDescription('This object uniquely identifies the MCS data rate for a particular profile.') c_lrf_profile_mcs_rate_support = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 778, 1, 1, 3, 1, 3), truth_value().clone('true')).setMaxAccess('readwrite') if mibBuilder.loadTexts: cLRFProfileMcsRateSupport.setStatus('current') if mibBuilder.loadTexts: cLRFProfileMcsRateSupport.setDescription("This object is used to enable or disable the data rate. When this object is set to 'true' the MCS support is enabled. When this object is set to 'false' the MCS support is disabled..") cisco_lwapp_rfmib_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 1)) cisco_lwapp_rfmib_groups = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 2)) cisco_lwapp_rfmib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 1, 1)).setObjects(('CISCO-LWAPP-RF-MIB', 'ciscoLwappRFConfigGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): cisco_lwapp_rfmib_compliance = ciscoLwappRFMIBCompliance.setStatus('deprecated') if mibBuilder.loadTexts: ciscoLwappRFMIBCompliance.setDescription('The compliance statement for the SNMP entities that implement the ciscoLwappRFMIB module. This compliance is deprecated and replaced by ciscoLwappRFMIBComplianceVer1 .') cisco_lwapp_rfmib_compliance_ver1 = module_compliance((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 1, 2)).setObjects(('CISCO-LWAPP-RF-MIB', 'ciscoLwappRFConfigGroup'), ('CISCO-LWAPP-RF-MIB', 'ciscoLwappRFConfigGroup1'), ('CISCO-LWAPP-RF-MIB', 'ciscoLwappRFGlobalConfigGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): cisco_lwapp_rfmib_compliance_ver1 = ciscoLwappRFMIBComplianceVer1.setStatus('current') if mibBuilder.loadTexts: ciscoLwappRFMIBComplianceVer1.setDescription('The compliance statement for the SNMP entities that implement the ciscoLwappRFMIB module.') cisco_lwapp_rfmib_compliance_ver2 = module_compliance((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 1, 3)).setObjects(('CISCO-LWAPP-RF-MIB', 'ciscoLwappRFConfigGroup'), ('CISCO-LWAPP-RF-MIB', 'ciscoLwappRFConfigGroup1'), ('CISCO-LWAPP-RF-MIB', 'ciscoLwappRFGlobalConfigGroup'), ('CISCO-LWAPP-RF-MIB', 'ciscoLwappRFConfigGroup2'), ('CISCO-LWAPP-RF-MIB', 'ciscoLwappRFConfigGroup3')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): cisco_lwapp_rfmib_compliance_ver2 = ciscoLwappRFMIBComplianceVer2.setStatus('current') if mibBuilder.loadTexts: ciscoLwappRFMIBComplianceVer2.setDescription('The compliance statement for the SNMP entities that implement the ciscoLwappRFMIB module. Added ciscoLwappRFConfigGroup2 to add object to raise trap when client count exceeds threshold and ciscoLwappRFConfigGroup3 to address DCA settings') cisco_lwapp_rf_config_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 2, 1)).setObjects(('CISCO-LWAPP-RF-MIB', 'cLAPGroups802dot11bgRFProfileName'), ('CISCO-LWAPP-RF-MIB', 'cLAPGroups802dot11aRFProfileName'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDescr'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileTransmitPowerMin'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileTransmitPowerMax'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileTransmitPowerThresholdV1'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileTransmitPowerThresholdV2'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate1Mbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate2Mbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate5AndHalfMbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate11Mbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate6Mbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate9Mbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate12Mbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate18Mbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate24Mbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate36Mbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate48Mbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate54Mbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileRadioType'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileStorageType'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileRowStatus'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfile11nOnly')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): cisco_lwapp_rf_config_group = ciscoLwappRFConfigGroup.setStatus('deprecated') if mibBuilder.loadTexts: ciscoLwappRFConfigGroup.setDescription('This collection of objects specifies the configuration of RF parameters on the controller to be passed to an LWAPP AP.This config group ciscoLwappRFConfigGroup is deprecated and replaced by ciscoLwappRFConfigGroupVer1') cisco_lwapp_rf_config_group_ver1 = object_group((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 2, 2)).setObjects(('CISCO-LWAPP-RF-MIB', 'cLAPGroups802dot11bgRFProfileName'), ('CISCO-LWAPP-RF-MIB', 'cLAPGroups802dot11aRFProfileName'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDescr'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileTransmitPowerMin'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileTransmitPowerMax'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileTransmitPowerThresholdV1'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileTransmitPowerThresholdV2'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate1Mbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate2Mbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate5AndHalfMbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate11Mbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate6Mbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate9Mbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate12Mbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate18Mbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate24Mbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate36Mbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate48Mbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDataRate54Mbps'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileRadioType'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileStorageType'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileRowStatus'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfile11nOnly'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileMcsName'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileMcsRate'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileMcsRateSupport')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): cisco_lwapp_rf_config_group_ver1 = ciscoLwappRFConfigGroupVer1.setStatus('current') if mibBuilder.loadTexts: ciscoLwappRFConfigGroupVer1.setDescription('This collection of objects specifies the configuration of RF parameters on the controller to be passed to an LWAPP AP.') cisco_lwapp_rf_config_group1 = object_group((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 2, 5)).setObjects(('CISCO-LWAPP-RF-MIB', 'cLRFProfileHighDensityMaxRadioClients'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileBandSelectProbeResponse'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileBandSelectCycleCount'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileBandSelectCycleThreshold'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileBandSelectExpireSuppression'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileBandSelectExpireDualBand'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileBandSelectClientRSSI'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileLoadBalancingWindowSize'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileLoadBalancingDenialCount'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileCHDDataRSSIThreshold'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileCHDVoiceRSSIThreshold'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileCHDClientExceptionLevel'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileCHDCoverageExceptionLevel'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileMulticastDataRate')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): cisco_lwapp_rf_config_group1 = ciscoLwappRFConfigGroup1.setStatus('current') if mibBuilder.loadTexts: ciscoLwappRFConfigGroup1.setDescription('This collection of objects specifies the configuration of RF parameters on the controller to be passed to an LWAPP AP.') cisco_lwapp_rf_global_config_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 2, 3)).setObjects(('CISCO-LWAPP-RF-MIB', 'cLRFProfileOutOfBoxAPConfig')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): cisco_lwapp_rf_global_config_group = ciscoLwappRFGlobalConfigGroup.setStatus('current') if mibBuilder.loadTexts: ciscoLwappRFGlobalConfigGroup.setDescription('This is the RF global config parameter.') cisco_lwapp_rf_config_group2 = object_group((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 2, 4)).setObjects(('CISCO-LWAPP-RF-MIB', 'cLRFProfileHDClientTrapThreshold'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileInterferenceThreshold'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileNoiseThreshold'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileUtilizationThreshold')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): cisco_lwapp_rf_config_group2 = ciscoLwappRFConfigGroup2.setStatus('current') if mibBuilder.loadTexts: ciscoLwappRFConfigGroup2.setDescription('This object specifies the configuration of Trap threshold to be configured on the interface of an LWAPP AP.') cisco_lwapp_rf_config_group3 = object_group((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 2, 6)).setObjects(('CISCO-LWAPP-RF-MIB', 'cLRFProfileDCAForeignContribution'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDCAChannelWidth'), ('CISCO-LWAPP-RF-MIB', 'cLRFProfileDCAChannelList')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): cisco_lwapp_rf_config_group3 = ciscoLwappRFConfigGroup3.setStatus('current') if mibBuilder.loadTexts: ciscoLwappRFConfigGroup3.setDescription('This object specifies the configuration DCA for RF Profiles.') cisco_lwapp_rf_config_group4 = object_group((1, 3, 6, 1, 4, 1, 9, 9, 778, 2, 2, 7)).setObjects(('CISCO-LWAPP-RF-MIB', 'cLRFProfileRxSopThreshold')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): cisco_lwapp_rf_config_group4 = ciscoLwappRFConfigGroup4.setStatus('current') if mibBuilder.loadTexts: ciscoLwappRFConfigGroup4.setDescription('This object specifies the receiver start of packet threshold for RF Profiles.') mibBuilder.exportSymbols('CISCO-LWAPP-RF-MIB', cLRFProfileOutOfBoxAPConfig=cLRFProfileOutOfBoxAPConfig, cLRFProfileDCAForeignContribution=cLRFProfileDCAForeignContribution, cLRFProfileDataRate11Mbps=cLRFProfileDataRate11Mbps, ciscoLwappRFGlobalObjects=ciscoLwappRFGlobalObjects, ciscoLwappRFMIB=ciscoLwappRFMIB, cLRFProfileBandSelectCycleCount=cLRFProfileBandSelectCycleCount, cLRFProfileRadioType=cLRFProfileRadioType, cLRFProfileRxSopThreshold=cLRFProfileRxSopThreshold, cLRFProfileMcsRateSupport=cLRFProfileMcsRateSupport, cLRFProfileDataRate2Mbps=cLRFProfileDataRate2Mbps, cLRFProfileRowStatus=cLRFProfileRowStatus, cLAPGroups802dot11bgRFProfileName=cLAPGroups802dot11bgRFProfileName, cLRFProfileBandSelectClientRSSI=cLRFProfileBandSelectClientRSSI, ciscoLwappRFMIBNotifs=ciscoLwappRFMIBNotifs, cLRFProfileHighDensityMaxRadioClients=cLRFProfileHighDensityMaxRadioClients, ciscoLwappRFConfigGroup4=ciscoLwappRFConfigGroup4, cLRFProfileDataRate12Mbps=cLRFProfileDataRate12Mbps, cLRFProfileDataRate1Mbps=cLRFProfileDataRate1Mbps, cLRFProfile11nOnly=cLRFProfile11nOnly, cLRFProfileNoiseThreshold=cLRFProfileNoiseThreshold, cLRFProfileTransmitPowerMin=cLRFProfileTransmitPowerMin, cLRFProfileStorageType=cLRFProfileStorageType, cLRFProfileDescr=cLRFProfileDescr, cLRFProfileCHDDataRSSIThreshold=cLRFProfileCHDDataRSSIThreshold, cLRFProfileCHDClientExceptionLevel=cLRFProfileCHDClientExceptionLevel, cLRFProfileBandSelectCycleThreshold=cLRFProfileBandSelectCycleThreshold, cLRFProfileMcsDataRateEntry=cLRFProfileMcsDataRateEntry, ciscoLwappRFMIBObjects=ciscoLwappRFMIBObjects, cLRFProfileDataRate9Mbps=cLRFProfileDataRate9Mbps, ciscoLwappRFConfig=ciscoLwappRFConfig, cLRFProfileInterferenceThreshold=cLRFProfileInterferenceThreshold, ciscoLwappRFMIBComplianceVer2=ciscoLwappRFMIBComplianceVer2, cLRFProfileCHDCoverageExceptionLevel=cLRFProfileCHDCoverageExceptionLevel, ciscoLwappRFConfigGroupVer1=ciscoLwappRFConfigGroupVer1, cLRFProfileDataRate5AndHalfMbps=cLRFProfileDataRate5AndHalfMbps, ciscoLwappRFConfigGroup3=ciscoLwappRFConfigGroup3, cLRFProfileTransmitPowerThresholdV2=cLRFProfileTransmitPowerThresholdV2, cLRFProfileDCAChannelList=cLRFProfileDCAChannelList, cLRFProfileTransmitPowerThresholdV1=cLRFProfileTransmitPowerThresholdV1, cLRFProfileDataRate6Mbps=cLRFProfileDataRate6Mbps, cLRFProfileDataRate36Mbps=cLRFProfileDataRate36Mbps, cLRFProfileTransmitPowerMax=cLRFProfileTransmitPowerMax, cLRFProfileDataRate48Mbps=cLRFProfileDataRate48Mbps, cLRFProfileBandSelectExpireDualBand=cLRFProfileBandSelectExpireDualBand, ciscoLwappRFMIBComplianceVer1=ciscoLwappRFMIBComplianceVer1, CiscoLwappRFApDataRates=CiscoLwappRFApDataRates, cLRFProfileBandSelectExpireSuppression=cLRFProfileBandSelectExpireSuppression, cLRFProfileHDClientTrapThreshold=cLRFProfileHDClientTrapThreshold, cLAPGroups802dot11aRFProfileName=cLAPGroups802dot11aRFProfileName, cLAPGroupsRFProfileTable=cLAPGroupsRFProfileTable, cLRFProfileName=cLRFProfileName, cLRFProfileDataRate18Mbps=cLRFProfileDataRate18Mbps, ciscoLwappRFMIBCompliances=ciscoLwappRFMIBCompliances, ciscoLwappRFConfigGroup=ciscoLwappRFConfigGroup, cLRFProfileMcsRate=cLRFProfileMcsRate, cLRFProfileEntry=cLRFProfileEntry, ciscoLwappRFMIBCompliance=ciscoLwappRFMIBCompliance, cLRFProfileDataRate24Mbps=cLRFProfileDataRate24Mbps, cLRFProfileMulticastDataRate=cLRFProfileMulticastDataRate, PYSNMP_MODULE_ID=ciscoLwappRFMIB, cLRFProfileUtilizationThreshold=cLRFProfileUtilizationThreshold, ciscoLwappRFMIBConform=ciscoLwappRFMIBConform, cLAPGroupsRFProfileEntry=cLAPGroupsRFProfileEntry, cLRFProfileTable=cLRFProfileTable, cLRFProfileDataRate54Mbps=cLRFProfileDataRate54Mbps, ciscoLwappRFMIBGroups=ciscoLwappRFMIBGroups, cLRFProfileDCAChannelWidth=cLRFProfileDCAChannelWidth, cLRFProfileMcsName=cLRFProfileMcsName, cLRFProfileLoadBalancingWindowSize=cLRFProfileLoadBalancingWindowSize, cLRFProfileMcsDataRateTable=cLRFProfileMcsDataRateTable, ciscoLwappRFGlobalConfigGroup=ciscoLwappRFGlobalConfigGroup, ciscoLwappRFConfigGroup1=ciscoLwappRFConfigGroup1, ciscoLwappRFConfigGroup2=ciscoLwappRFConfigGroup2, cLRFProfileBandSelectProbeResponse=cLRFProfileBandSelectProbeResponse, cLRFProfileLoadBalancingDenialCount=cLRFProfileLoadBalancingDenialCount, cLRFProfileCHDVoiceRSSIThreshold=cLRFProfileCHDVoiceRSSIThreshold)
def bubble_sort(array): for i in range(len(array)): for j in range(len(array) - 1): if array[j] > array[j + 1]: array[j], array[j + 1] = array[j + 1], array[j]
def bubble_sort(array): for i in range(len(array)): for j in range(len(array) - 1): if array[j] > array[j + 1]: (array[j], array[j + 1]) = (array[j + 1], array[j])
n=int(input()) if n<3: print("NO") else: a=[] b=[] asum=0 bsum=0 for i in range(n,0,-1): if asum<bsum: asum+=i a.append(i) else: bsum+=i b.append(i) if asum==bsum: print("YES") print(len(a)) print(' '.join(map(str,a))) print(len(b)) print(' '.join(map(str,b))) else: print("NO")
n = int(input()) if n < 3: print('NO') else: a = [] b = [] asum = 0 bsum = 0 for i in range(n, 0, -1): if asum < bsum: asum += i a.append(i) else: bsum += i b.append(i) if asum == bsum: print('YES') print(len(a)) print(' '.join(map(str, a))) print(len(b)) print(' '.join(map(str, b))) else: print('NO')
DESCRIPTION = "sets a variable for the current module" def autocomplete(shell, line, text, state): # todo, here we can provide some defaults for bools/enums? i.e. True/False if len(line.split(" ")) >= 3: return None env = shell.plugins[shell.state] options = [x.name + " " for x in env.options.options if x.name.upper().startswith(text.upper()) and not x.hidden] options += [x.alias + " " for x in env.options.options if x.alias.upper().startswith(text.upper()) and not x.hidden and x.alias] try: return options[state] except: return None def help(shell): pass def execute(shell, cmd): env = shell.plugins[shell.state] splitted = cmd.split(" ") if len(splitted) >= 2: key = splitted[1].upper() value = env.options.get(key) if value != None: # if it's >=3, we set the third argument if len(splitted) >= 3: value = " ".join(splitted[2:]) if not env.options.set(key, value): shell.print_error("That value is invalid") return shell.print_good("%s => %s" % (key, value)) else: shell.print_error("Option '%s' not found." % (key))
description = 'sets a variable for the current module' def autocomplete(shell, line, text, state): if len(line.split(' ')) >= 3: return None env = shell.plugins[shell.state] options = [x.name + ' ' for x in env.options.options if x.name.upper().startswith(text.upper()) and (not x.hidden)] options += [x.alias + ' ' for x in env.options.options if x.alias.upper().startswith(text.upper()) and (not x.hidden) and x.alias] try: return options[state] except: return None def help(shell): pass def execute(shell, cmd): env = shell.plugins[shell.state] splitted = cmd.split(' ') if len(splitted) >= 2: key = splitted[1].upper() value = env.options.get(key) if value != None: if len(splitted) >= 3: value = ' '.join(splitted[2:]) if not env.options.set(key, value): shell.print_error('That value is invalid') return shell.print_good('%s => %s' % (key, value)) else: shell.print_error("Option '%s' not found." % key)
class When_we_have_a_test: def when_things_happen(self): pass def it_should_do_this_test(self): assert 1 == 1 def test_we_still_run_regular_pytest_scripts(): assert 2 == 2
class When_We_Have_A_Test: def when_things_happen(self): pass def it_should_do_this_test(self): assert 1 == 1 def test_we_still_run_regular_pytest_scripts(): assert 2 == 2
######################## Errors ########################## PAYLOAD_NOT_FOUND_ERROR = 'Payload can not be found.' KEYWORD_NOT_FOUND_ERROR = "Keywords can to be empty." TYPE_NOT_CORRECT_ERROR = 'Payload type is incorrect, please upload text.' MODEL_NOT_FOUND_ERROR = 'The ML model not found. (default name: en_core_web_sm)' DATA_MODEL_ERROR = 'Data model, text or source ML model has some problems, please check.'
payload_not_found_error = 'Payload can not be found.' keyword_not_found_error = 'Keywords can to be empty.' type_not_correct_error = 'Payload type is incorrect, please upload text.' model_not_found_error = 'The ML model not found. (default name: en_core_web_sm)' data_model_error = 'Data model, text or source ML model has some problems, please check.'
class Solution: def findLengthOfLCIS(self, nums: List[int]) -> int: if not nums: return 0 dp = [1] * len(nums) if len(nums) < 2: return 1 result = 1 for i in range(1, len(nums)): if nums[i] > nums[i - 1]: dp[i] = dp[i - 1] + 1 result = max(result, dp[i]) return result
class Solution: def find_length_of_lcis(self, nums: List[int]) -> int: if not nums: return 0 dp = [1] * len(nums) if len(nums) < 2: return 1 result = 1 for i in range(1, len(nums)): if nums[i] > nums[i - 1]: dp[i] = dp[i - 1] + 1 result = max(result, dp[i]) return result
class Symbol: key = '#' author = '@' goto = '>' condition = '?' action = '!' comment = '%' left = '{' right = '}' def prefixcount(string, prefix): i = 0 while string[i] == prefix: i += 1 return i def extract(string, startsymbol, endsymbol): if not startsymbol in string and endsymbol in string: return ('', string) start = string.find(startsymbol) + len(startsymbol) end = -1 depth = 0 for i in range(start, len(string)): s = string[i:] if not depth and s.startswith(endsymbol): end = i break depth += s.startswith(Symbol.left) depth -= s.startswith(Symbol.right) if end == -1: return ('', string) extraction = string[start:end] return (extraction, string.replace(startsymbol + extraction + endsymbol, '')) def extractattribute(string, symbol): return extract(string, symbol + Symbol.left, Symbol.right) def extractkey(string): return extractattribute(string, Symbol.key)[0] def isempty(string): return string == '' or string.isspace() class Line: def __init__(self, key, text='', author='', goto='', choices=[], condition='', action='', comment=''): self.key = key self.text = text self.author = author self.goto = goto self.choices = choices self.condition = condition self.action = action self.comment = comment def __repr__(self) -> str: return self.author + ': ' + self.text class Talk: def __init__(self): self.lines = {} self.key = '' @staticmethod def fromString(talkString): talk = Talk() while '\\\n\t' in talkString: talkString = talkString.replace('\\\n\t', '\\\n') while '\\\n' in talkString: talkString = talkString.replace('\\\n', '') lines = [line for line in talkString.splitlines() if not isempty(line)] for i, line in enumerate(lines): if isempty(extractkey(line)): lines[i] = line + Symbol.key + Symbol.left + Symbol.key + str(i) + Symbol.right previousauthor = '' for i, line in enumerate(lines): choices = [] goto, text = extractattribute(line, Symbol.goto) if isempty(goto): tabs_i = prefixcount(line, '\t') if tabs_i % 2 == 0: tabs_min = tabs_i for j in range(i + 1, len(lines)): tabs_j = prefixcount(lines[j], '\t') tabs_min = min(tabs_j, tabs_min) if tabs_j <= tabs_min: if choices: break if tabs_j % 2 == 0: goto = extractkey(lines[j]) break if tabs_j == tabs_i + 1: choices.append(extractkey(lines[j])) elif i + 1 < len(lines): goto = extractkey(lines[i + 1]) key, text = extractattribute(text, Symbol.key) author, text = extractattribute(text, Symbol.author) condition, text = extractattribute(text, Symbol.condition) action, text = extractattribute(text, Symbol.action) comment, text = extractattribute(text, Symbol.comment) talk.addLine(Line( key, text = text.strip(), author = author if not isempty(author) else previousauthor, goto = goto, choices = choices, condition = condition, action = action, comment = comment )) if i == 0: talk.key = key previousauthor = author return talk def addLine(self, line: Line): self.lines[line.key] = line def talk(self): string = '' line = self.lines[self.key] while isempty(line.text): self.key = line.goto line = self.lines[self.key] string += str(line) + '\n' choices = [l for l in self.lines.values() if l.key in line.choices] if choices: for i, choice in enumerate(choices): string += str(i) + ' ' + str(choice) + '\n' return string def input(self, string): line = self.lines[self.key] choices = [l.key for l in self.lines.values() if l.key in line.choices] if choices: try: self.key = choices[int(string)] except: self.key = choices[0] else: self.key = line.goto
class Symbol: key = '#' author = '@' goto = '>' condition = '?' action = '!' comment = '%' left = '{' right = '}' def prefixcount(string, prefix): i = 0 while string[i] == prefix: i += 1 return i def extract(string, startsymbol, endsymbol): if not startsymbol in string and endsymbol in string: return ('', string) start = string.find(startsymbol) + len(startsymbol) end = -1 depth = 0 for i in range(start, len(string)): s = string[i:] if not depth and s.startswith(endsymbol): end = i break depth += s.startswith(Symbol.left) depth -= s.startswith(Symbol.right) if end == -1: return ('', string) extraction = string[start:end] return (extraction, string.replace(startsymbol + extraction + endsymbol, '')) def extractattribute(string, symbol): return extract(string, symbol + Symbol.left, Symbol.right) def extractkey(string): return extractattribute(string, Symbol.key)[0] def isempty(string): return string == '' or string.isspace() class Line: def __init__(self, key, text='', author='', goto='', choices=[], condition='', action='', comment=''): self.key = key self.text = text self.author = author self.goto = goto self.choices = choices self.condition = condition self.action = action self.comment = comment def __repr__(self) -> str: return self.author + ': ' + self.text class Talk: def __init__(self): self.lines = {} self.key = '' @staticmethod def from_string(talkString): talk = talk() while '\\\n\t' in talkString: talk_string = talkString.replace('\\\n\t', '\\\n') while '\\\n' in talkString: talk_string = talkString.replace('\\\n', '') lines = [line for line in talkString.splitlines() if not isempty(line)] for (i, line) in enumerate(lines): if isempty(extractkey(line)): lines[i] = line + Symbol.key + Symbol.left + Symbol.key + str(i) + Symbol.right previousauthor = '' for (i, line) in enumerate(lines): choices = [] (goto, text) = extractattribute(line, Symbol.goto) if isempty(goto): tabs_i = prefixcount(line, '\t') if tabs_i % 2 == 0: tabs_min = tabs_i for j in range(i + 1, len(lines)): tabs_j = prefixcount(lines[j], '\t') tabs_min = min(tabs_j, tabs_min) if tabs_j <= tabs_min: if choices: break if tabs_j % 2 == 0: goto = extractkey(lines[j]) break if tabs_j == tabs_i + 1: choices.append(extractkey(lines[j])) elif i + 1 < len(lines): goto = extractkey(lines[i + 1]) (key, text) = extractattribute(text, Symbol.key) (author, text) = extractattribute(text, Symbol.author) (condition, text) = extractattribute(text, Symbol.condition) (action, text) = extractattribute(text, Symbol.action) (comment, text) = extractattribute(text, Symbol.comment) talk.addLine(line(key, text=text.strip(), author=author if not isempty(author) else previousauthor, goto=goto, choices=choices, condition=condition, action=action, comment=comment)) if i == 0: talk.key = key previousauthor = author return talk def add_line(self, line: Line): self.lines[line.key] = line def talk(self): string = '' line = self.lines[self.key] while isempty(line.text): self.key = line.goto line = self.lines[self.key] string += str(line) + '\n' choices = [l for l in self.lines.values() if l.key in line.choices] if choices: for (i, choice) in enumerate(choices): string += str(i) + ' ' + str(choice) + '\n' return string def input(self, string): line = self.lines[self.key] choices = [l.key for l in self.lines.values() if l.key in line.choices] if choices: try: self.key = choices[int(string)] except: self.key = choices[0] else: self.key = line.goto
#value=input().split() #B,G=value #B=int(B) #B=ball #G=int(G) #G=need B=int(input()) G=int(input()) result = G//2 also_need=result-B if (result<=B): print("Amelia tem todas bolinhas!") else: print("Faltam",also_need,"bolinha(s)")
b = int(input()) g = int(input()) result = G // 2 also_need = result - B if result <= B: print('Amelia tem todas bolinhas!') else: print('Faltam', also_need, 'bolinha(s)')
def GenerateCombination(N, ObjectNumber): # initiate the object B and C positions # Get all permutations of length 2 combinlist = [] for i in range(N): if i < N-1: j = i + 1 else: j = 0 combin = [ObjectNumber, i, j] combinlist.append(combin) return combinlist
def generate_combination(N, ObjectNumber): combinlist = [] for i in range(N): if i < N - 1: j = i + 1 else: j = 0 combin = [ObjectNumber, i, j] combinlist.append(combin) return combinlist
class OTBDeepConfig: fhog_params = {'fname': 'fhog', 'num_orients': 9, 'cell_size': 4, 'compressed_dim': 10, # 'nDim': 9 * 3 + 5 -1 } #cn_params = {"fname": 'cn', # "table_name": "CNnorm", # "use_for_color": True, # "cell_size": 4, # "compressed_dim": 3, # # "nDim": 10 # } # ic_params = {'fname': 'ic', # "table_name": "intensityChannelNorm6", # "use_for_color": False, # "cell_size": 4, # "compressed_dim": 3, # # "nDim": 10 # } cnn_params = {'fname': "cnn-resnet50", 'compressed_dim': [16, 64] } # cnn_params = {'fname': "cnn-vgg16", # 'compressed_dim': [16, 64] # } features = [fhog_params, cnn_params] # feature parameters normalize_power = 2 normalize_size = True normalize_dim = True square_root_normalization = False # image sample parameters search_area_shape = 'square' search_area_scale = 4.5 min_image_sample_size = 200 ** 2 max_image_sample_size = 250 ** 2 # detection parameters refinement_iterations = 1 # number of iterations used to refine the resulting position in a frame newton_iterations = 5 clamp_position = False # clamp the target position to be inside the image # learning parameters output_sigma_factor = 1 / 8. # label function sigma learning_rate = 0.010 num_samples = 50 sample_replace_startegy = 'lowest_prior' lt_size = 0 train_gap = 5 skip_after_frame = 1 use_detection_sample = True # factorized convolution parameters use_projection_matrix = True update_projection_matrix = True proj_init_method = 'pca' projection_reg = 5e-8 # generative sample space model parameters use_sample_merge = True sample_merge_type = 'merge' distance_matrix_update_type = 'exact' # CG paramters CG_iter = 5 init_CG_iter = 15 * 15 init_GN_iter = 15 CG_use_FR = False CG_standard_alpha = True CG_forgetting_rate = 75 precond_data_param = 0.3 precond_reg_param= 0.015 precond_proj_param = 35 # regularization window paramters use_reg_window = True reg_window_min = 1e-4 reg_window_edge = 10e-3 reg_window_power = 2 reg_sparsity_threshold = 0.05 # interpolation parameters interp_method = 'bicubic' interp_bicubic_a = -0.75 interp_centering = True interp_windowing = False # scale parameters number_of_scales = 5 scale_step = 1.02# 1.015 use_scale_filter = False vis=True
class Otbdeepconfig: fhog_params = {'fname': 'fhog', 'num_orients': 9, 'cell_size': 4, 'compressed_dim': 10} cnn_params = {'fname': 'cnn-resnet50', 'compressed_dim': [16, 64]} features = [fhog_params, cnn_params] normalize_power = 2 normalize_size = True normalize_dim = True square_root_normalization = False search_area_shape = 'square' search_area_scale = 4.5 min_image_sample_size = 200 ** 2 max_image_sample_size = 250 ** 2 refinement_iterations = 1 newton_iterations = 5 clamp_position = False output_sigma_factor = 1 / 8.0 learning_rate = 0.01 num_samples = 50 sample_replace_startegy = 'lowest_prior' lt_size = 0 train_gap = 5 skip_after_frame = 1 use_detection_sample = True use_projection_matrix = True update_projection_matrix = True proj_init_method = 'pca' projection_reg = 5e-08 use_sample_merge = True sample_merge_type = 'merge' distance_matrix_update_type = 'exact' cg_iter = 5 init_cg_iter = 15 * 15 init_gn_iter = 15 cg_use_fr = False cg_standard_alpha = True cg_forgetting_rate = 75 precond_data_param = 0.3 precond_reg_param = 0.015 precond_proj_param = 35 use_reg_window = True reg_window_min = 0.0001 reg_window_edge = 0.01 reg_window_power = 2 reg_sparsity_threshold = 0.05 interp_method = 'bicubic' interp_bicubic_a = -0.75 interp_centering = True interp_windowing = False number_of_scales = 5 scale_step = 1.02 use_scale_filter = False vis = True
DECOY_PREFIX = 'decoy_' HEADER_SPECFILE = '#SpecFile' HEADER_SCANNR = 'ScanNum' HEADER_SPECSCANID = 'SpecID' HEADER_CHARGE = 'Charge' HEADER_PEPTIDE = 'Peptide' HEADER_PROTEIN = 'Protein' HEADER_GENE = 'Gene ID' HEADER_SYMBOL = 'Gene Name' HEADER_DESCRIPTION = 'Description' HEADER_PRECURSOR_MZ = 'Precursor' HEADER_PRECURSOR_QUANT = 'MS1 area' HEADER_PREC_PURITY = 'Precursor ion fraction' HEADER_PRECURSOR_FWHM = 'FWHM' HEADER_MASTER_PROT = 'Master protein(s)' HEADER_PG_CONTENT = 'Protein group(s) content' HEADER_PG_AMOUNT_PROTEIN_HITS = 'Amount of matching proteins in group(s)' HEADER_PG = [HEADER_MASTER_PROT, HEADER_PG_CONTENT, HEADER_PG_AMOUNT_PROTEIN_HITS] HEADER_SVMSCORE = 'percolator svm-score' HEADER_MISSED_CLEAVAGE = 'missed_cleavage' HEADER_PSMQ = 'PSM q-value' HEADER_PEPTIDE_Q = 'peptide q-value' HEADER_TARGETDECOY = 'TD' HEADER_MSGFSCORE = 'MSGFScore' HEADER_EVALUE = 'EValue' HEADER_SETNAME = 'Biological set' HEADER_RETENTION_TIME = 'Retention time(min)' HEADER_INJECTION_TIME = 'Ion injection time(ms)' HEADER_ION_MOB = 'Ion mobility(Vs/cm2)' MOREDATA_HEADER = [HEADER_RETENTION_TIME, HEADER_INJECTION_TIME, HEADER_ION_MOB] PERCO_HEADER = [HEADER_SVMSCORE, HEADER_PSMQ, HEADER_PEPTIDE_Q, HEADER_TARGETDECOY]
decoy_prefix = 'decoy_' header_specfile = '#SpecFile' header_scannr = 'ScanNum' header_specscanid = 'SpecID' header_charge = 'Charge' header_peptide = 'Peptide' header_protein = 'Protein' header_gene = 'Gene ID' header_symbol = 'Gene Name' header_description = 'Description' header_precursor_mz = 'Precursor' header_precursor_quant = 'MS1 area' header_prec_purity = 'Precursor ion fraction' header_precursor_fwhm = 'FWHM' header_master_prot = 'Master protein(s)' header_pg_content = 'Protein group(s) content' header_pg_amount_protein_hits = 'Amount of matching proteins in group(s)' header_pg = [HEADER_MASTER_PROT, HEADER_PG_CONTENT, HEADER_PG_AMOUNT_PROTEIN_HITS] header_svmscore = 'percolator svm-score' header_missed_cleavage = 'missed_cleavage' header_psmq = 'PSM q-value' header_peptide_q = 'peptide q-value' header_targetdecoy = 'TD' header_msgfscore = 'MSGFScore' header_evalue = 'EValue' header_setname = 'Biological set' header_retention_time = 'Retention time(min)' header_injection_time = 'Ion injection time(ms)' header_ion_mob = 'Ion mobility(Vs/cm2)' moredata_header = [HEADER_RETENTION_TIME, HEADER_INJECTION_TIME, HEADER_ION_MOB] perco_header = [HEADER_SVMSCORE, HEADER_PSMQ, HEADER_PEPTIDE_Q, HEADER_TARGETDECOY]
# The path to the ROM file to load: # SpaceInvaders starts to render visible pixels when # the cpu halfClkCount reaches about 11000 #romFile = 'roms/SpaceInvaders.bin' #romFile = 'roms/Pitfall.bin' romFile = 'roms/DonkeyKong.bin' # 8kb ROM, spins reading 0x282 switches #romFile = 'roms/Asteroids.bin' # 2kb ROM #romFile = 'roms/Adventure.bin' #romFile = 'roms/SpaceInvaders.bin' imageOutputDir = 'outFrames' # Files describing each chip's network of transistors and wires. # Also contains names for various wires, some of which are the # chips input and output pads. # chip6502File = 'chips/net_6502.pkl' chipTIAFile = 'chips/net_TIA.pkl' # How many simulation clock changes to run between updates # of the OpenGL rendering. numTIAHalfClocksPerRender = 128 # If you'd like to provide additional common sense names for # a chip's wires, data like the following can be provided to # CircuitSimulatorBase.updateWireNames(arrayOfArrays) which # sets entries in the wireNames dictionary like: # wireNames['A0'] = 737; wireNames['A1'] = 1234 # wireNames['X3'] = 1648 # # The node numbers are listed in the status pane of the # visual6502.org simulation when you left-click the chip # image to select part of the circuit: # http://visual6502.org/JSSim # The 6502 chip data, node numbers, and names are the same # here in this 2600 console simulation as they are in the # visual6502 online javascript simulation. # # # A, X, and Y register bits from lsb to msb mos6502WireInit = [['A', 737, 1234, 978, 162, 727, 858, 1136, 1653], ['X', 1216, 98, 1, 1648, 85, 589, 448, 777], ['Y', 64, 1148, 573, 305, 989, 615, 115, 843], # stack. only low address has to be stored ['S', 1403, 183, 81, 1532, 1702, 1098, 1212, 1435], # Program counter low byte, from lsb to msb ['PCL', 1139, 1022, 655, 1359, 900, 622, 377, 1611], # Program counter high byte, from lsb to msb ['PCH', 1670, 292, 502, 584, 948, 49, 1551, 205], # status register: C,Z,I,D,B,_,V,N (C is held in LSB) # 6502 programming manual pgmManJan76 pg 24 ['P', 687, 1444, 1421, 439, 1119, 0, 77, 1370], ] scanlineNumPixels = 228 # for hblank and visible image frameHeightPixels = 262 # 3 lines vsync, 37 lines vblank, # 192 lines of image, 30 lines overscan # The order in which these are listed matters. For busses, they should # be from lsb to msb. tiaAddressBusPadNames = ['AB0', 'AB1', 'AB2', 'AB3', 'AB4', 'AB5'] cpuAddressBusPadNames = ['AB0', 'AB1', 'AB2', 'AB3', 'AB4', 'AB5', 'AB6', 'AB7', 'AB8', 'AB9', 'AB10', 'AB11', 'AB12', 'AB13', 'AB14', 'AB15'] tiaInputPadNames = ['I0', 'I1', 'I2', 'I3', 'I4', 'I5'] dataBusPadNames = ['DB0', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7'] tiaDataBusDrivers = ['DB6_drvLo', 'DB6_drvHi', 'DB7_drvHi', 'DB7_drvHi']
rom_file = 'roms/DonkeyKong.bin' image_output_dir = 'outFrames' chip6502_file = 'chips/net_6502.pkl' chip_tia_file = 'chips/net_TIA.pkl' num_tia_half_clocks_per_render = 128 mos6502_wire_init = [['A', 737, 1234, 978, 162, 727, 858, 1136, 1653], ['X', 1216, 98, 1, 1648, 85, 589, 448, 777], ['Y', 64, 1148, 573, 305, 989, 615, 115, 843], ['S', 1403, 183, 81, 1532, 1702, 1098, 1212, 1435], ['PCL', 1139, 1022, 655, 1359, 900, 622, 377, 1611], ['PCH', 1670, 292, 502, 584, 948, 49, 1551, 205], ['P', 687, 1444, 1421, 439, 1119, 0, 77, 1370]] scanline_num_pixels = 228 frame_height_pixels = 262 tia_address_bus_pad_names = ['AB0', 'AB1', 'AB2', 'AB3', 'AB4', 'AB5'] cpu_address_bus_pad_names = ['AB0', 'AB1', 'AB2', 'AB3', 'AB4', 'AB5', 'AB6', 'AB7', 'AB8', 'AB9', 'AB10', 'AB11', 'AB12', 'AB13', 'AB14', 'AB15'] tia_input_pad_names = ['I0', 'I1', 'I2', 'I3', 'I4', 'I5'] data_bus_pad_names = ['DB0', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7'] tia_data_bus_drivers = ['DB6_drvLo', 'DB6_drvHi', 'DB7_drvHi', 'DB7_drvHi']
class RegionModel: def __init__(self, dbRow): self.ID = dbRow["ID"] self.RegionName = dbRow["RegionName"] self.RegionCode = dbRow["RegionCode"] self.RegionChat = dbRow["RegionChat"]
class Regionmodel: def __init__(self, dbRow): self.ID = dbRow['ID'] self.RegionName = dbRow['RegionName'] self.RegionCode = dbRow['RegionCode'] self.RegionChat = dbRow['RegionChat']
def primera_letra(lista_de_palabras): primeras_letras = [] for palabra in lista_de_palabras: assert type(palabra) == str, f'{palabra} no es str' assert len(palabra) > 0, 'No se permiten str vacios' primeras_letras.append(palabra[0]) return primeras_letras
def primera_letra(lista_de_palabras): primeras_letras = [] for palabra in lista_de_palabras: assert type(palabra) == str, f'{palabra} no es str' assert len(palabra) > 0, 'No se permiten str vacios' primeras_letras.append(palabra[0]) return primeras_letras
load("@bazel_skylib//lib:paths.bzl", "paths") load(":common.bzl", "declare_caches", "write_cache_manifest") load("//dotnet/private:context.bzl", "dotnet_exec_context", "make_builder_cmd") load("//dotnet/private:providers.bzl", "DotnetPublishInfo") def pack(ctx): info = ctx.attr.target[DotnetPublishInfo] restore = info.restore dotnet = dotnet_exec_context(ctx, False, False, restore.target_framework) package_id = getattr(ctx.attr, "package_id", None) if not package_id: package_id = paths.split_extension(ctx.file.project_file.basename)[0] nupkg = ctx.actions.declare_file(package_id + "." + ctx.attr.version + ".nupkg") cache = declare_caches(ctx, "pack") cache_manifest = write_cache_manifest(ctx, cache, info.caches) args, cmd_outputs = make_builder_cmd(ctx, dotnet, "pack", restore.directory_info, restore.assembly_name) args.add_all(["--version", ctx.attr.version, "--runfiles_manifest", info.runfiles_manifest]) inputs = depset( [cache_manifest, info.runfiles_manifest], transitive = [info.files, info.library.runfiles], ) outputs = [nupkg, cache.result] + cmd_outputs ctx.actions.run( mnemonic = "DotnetPack", inputs = inputs, outputs = outputs, executable = dotnet.sdk.dotnet, arguments = [args], env = dotnet.env, tools = dotnet.builder.files, ) return nupkg
load('@bazel_skylib//lib:paths.bzl', 'paths') load(':common.bzl', 'declare_caches', 'write_cache_manifest') load('//dotnet/private:context.bzl', 'dotnet_exec_context', 'make_builder_cmd') load('//dotnet/private:providers.bzl', 'DotnetPublishInfo') def pack(ctx): info = ctx.attr.target[DotnetPublishInfo] restore = info.restore dotnet = dotnet_exec_context(ctx, False, False, restore.target_framework) package_id = getattr(ctx.attr, 'package_id', None) if not package_id: package_id = paths.split_extension(ctx.file.project_file.basename)[0] nupkg = ctx.actions.declare_file(package_id + '.' + ctx.attr.version + '.nupkg') cache = declare_caches(ctx, 'pack') cache_manifest = write_cache_manifest(ctx, cache, info.caches) (args, cmd_outputs) = make_builder_cmd(ctx, dotnet, 'pack', restore.directory_info, restore.assembly_name) args.add_all(['--version', ctx.attr.version, '--runfiles_manifest', info.runfiles_manifest]) inputs = depset([cache_manifest, info.runfiles_manifest], transitive=[info.files, info.library.runfiles]) outputs = [nupkg, cache.result] + cmd_outputs ctx.actions.run(mnemonic='DotnetPack', inputs=inputs, outputs=outputs, executable=dotnet.sdk.dotnet, arguments=[args], env=dotnet.env, tools=dotnet.builder.files) return nupkg
#=============================================================== # DMXIS Macro (c) 2010 db audioware limited #=============================================================== RgbColour(255,127,80)
rgb_colour(255, 127, 80)
def remote_pip_install_simple(name, silent): return remote_pip_install(name, True, 'python3', 'pip3', silent) def remote_pip_install(name, usermode, py, pip, silent): return lib_install(name, usermode=usermode, py=py, pip=pip, silent=silent)
def remote_pip_install_simple(name, silent): return remote_pip_install(name, True, 'python3', 'pip3', silent) def remote_pip_install(name, usermode, py, pip, silent): return lib_install(name, usermode=usermode, py=py, pip=pip, silent=silent)
def pytest_addoption(parser): selenium_class_names = ("Android", "Chrome", "Firefox", "Ie", "Opera", "PhantomJS", "Remote", "Safari") parser.addoption("--webdriver", action="store", choices=selenium_class_names, default="PhantomJS", help="Selenium WebDriver interface to use for running the test. Default: PhantomJS") parser.addoption("--webdriver-options", action="store", default="{}", help="Python dictionary of options to pass to the Selenium WebDriver class. Default: {}")
def pytest_addoption(parser): selenium_class_names = ('Android', 'Chrome', 'Firefox', 'Ie', 'Opera', 'PhantomJS', 'Remote', 'Safari') parser.addoption('--webdriver', action='store', choices=selenium_class_names, default='PhantomJS', help='Selenium WebDriver interface to use for running the test. Default: PhantomJS') parser.addoption('--webdriver-options', action='store', default='{}', help='Python dictionary of options to pass to the Selenium WebDriver class. Default: {}')
#!/usr/bin/python # -*- coding: utf-8 -*- # Copyright (c) 2021, Simone Persiani <iosonopersia@gmail.com> # # Permission to use, copy, modify, and/or distribute this software for any purpose # with or without fee is hereby granted, provided that the above copyright notice # and this permission notice appear in all copies. # # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH # REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND # FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, # OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS # ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS # SOFTWARE. # REQUIRED DIRECTORIES meta_csv_output_dir = '<path>/meta_folder/csv_output/' # INPUT DIR citations_csv_dir = '<path>/converter_folder/citations/' # INPUT DIR converter_citations_csv_output_dir = '<path>/citations_folder/csv_output/' # OUTPUT DIR converter_citations_rdf_output_dir = '<path>/citations_folder/rdf_output/' # OUTPUT DIR # TRIPLESTORE and OC_OCDM base_iri = "https://w3id.org/oc/meta/" triplestore_url = "http://localhost:9999/blazegraph/sparql" query_timeout = 3 # seconds context_path = "https://w3id.org/oc/corpus/context.json" info_dir = "<path>/meta_folder/info_dir/" dir_split_number = 10000 # This must be multiple of the following one items_per_file = 1000 default_dir = "_" resp_agent = "https://w3id.org/oc/meta/prov/pa/1" supplier_prefix = "" # OPTIONS rdf_output_in_chunks = True
meta_csv_output_dir = '<path>/meta_folder/csv_output/' citations_csv_dir = '<path>/converter_folder/citations/' converter_citations_csv_output_dir = '<path>/citations_folder/csv_output/' converter_citations_rdf_output_dir = '<path>/citations_folder/rdf_output/' base_iri = 'https://w3id.org/oc/meta/' triplestore_url = 'http://localhost:9999/blazegraph/sparql' query_timeout = 3 context_path = 'https://w3id.org/oc/corpus/context.json' info_dir = '<path>/meta_folder/info_dir/' dir_split_number = 10000 items_per_file = 1000 default_dir = '_' resp_agent = 'https://w3id.org/oc/meta/prov/pa/1' supplier_prefix = '' rdf_output_in_chunks = True
dpi = 400 dpcm = dpi / 2.54 INFTY = float('inf') PAPER = { 'letter': { 'qr_left': (0.0, 0.882, 0.152, 1.0), 'qr_right': (0.848, 0.882, 1.0, 1.0), 'tick': (0.17, 0.88, 0.91, 1.0), 'uin': (0.49, 0.11, 0.964, 0.54) } }
dpi = 400 dpcm = dpi / 2.54 infty = float('inf') paper = {'letter': {'qr_left': (0.0, 0.882, 0.152, 1.0), 'qr_right': (0.848, 0.882, 1.0, 1.0), 'tick': (0.17, 0.88, 0.91, 1.0), 'uin': (0.49, 0.11, 0.964, 0.54)}}