Rating:

1. See the comments in the given [youtube](https://youtu.be/_nDcdQb0Ae8) link ,copy it and save it in your notepad++
2. Watch the video, specially the mid of the video contains morse code.Download video and decode morse using Audacity.
As a result you get: starthttp://play.swampctf.com/1C457BA5HL1K3N0OTH3REND
3. Visiting that link redirects you to [another youtube page](https://www.youtube.com/watch?v=Fc0uICnSA-c&feature=youtu.be)
4. Copy those comments as well to your notepad++

5. observe the key , value pairs.. format it properly and save it as mis.txt (keys starts with 000088 )
6. Now run the following script to sort based on the keys and output to a file

```
import re

l=[]

with open("mis.txt", 'r') as f_in:
for line in f_in:
a=line.split(" ")
for i in a:
for img in re.findall('00008[a-z0-9]{3}$', i):
#print img,line
l.append(line)

print "sorted stuff "
#print l
l.sort()
print l
f=open("flag.txt","w")

for i in l:
f.write(i)
```

Now open flag.txt and zoomout. flag is `flag{pull_the_lever_i_dare_you}`