+ hashMap = {}
+ v = ol_id.replace(t, "")
+ h = 0
+
+ while h < len(t):
+ f = t[h:h + 2]
+ i = int(f, 16)
+ hashMap[h / 2] = i
+ h += 2
+
+ h = 0
+
+ while h < len(v):
+ B = v[h:h + 2]
+ i = int(B, 16)
+ index = (h / 2) % 6
+ A = hashMap[index]
+ i = i ^ A
+ video_url_chars.append(compat_chr(i))
+ h += 2
+
+ video_url = 'https://openload.co/stream/%s?mime=true'
+ video_url = video_url % (''.join(video_url_chars))