Версия для Kodi 19
This commit is contained in:
		
							parent
							
								
									9e253bfe05
								
							
						
					
					
						commit
						bf08457a2a
					
				@ -1,7 +1,7 @@
 | 
				
			|||||||
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
 | 
					<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
 | 
				
			||||||
<addon id='script.module.libtorrent' version='1.1.7' name='python-libtorrent' provider-name='DiMartino, srg70, RussakHH, aisman, inpos'>
 | 
					<addon id='script.module.libtorrent' version='1.2.0' name='python-libtorrent' provider-name='DiMartino, srg70, RussakHH, aisman, inpos'>
 | 
				
			||||||
  <requires>
 | 
					  <requires>
 | 
				
			||||||
    <import addon='xbmc.python' version='2.1.0'/>
 | 
					    <import addon='xbmc.python' version='3.0.0'/>
 | 
				
			||||||
  </requires>
 | 
					  </requires>
 | 
				
			||||||
  <extension point="xbmc.python.script" library="default.py">
 | 
					  <extension point="xbmc.python.script" library="default.py">
 | 
				
			||||||
    <provides>executable</provides>
 | 
					    <provides>executable</provides>
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										43
									
								
								default.py
									
									
									
									
									
								
							
							
						
						
									
										43
									
								
								default.py
									
									
									
									
									
								
							@ -1,7 +1,7 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					# -*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					"""
 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					    Copyright (C) 2015-2022 DiMartino, srg70, RussakHH, aisman, inpos
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					    Permission is hereby granted, free of charge, to any person obtaining
 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					    a copy of this software and associated documentation files (the
 | 
				
			||||||
@ -21,37 +21,38 @@
 | 
				
			|||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					"""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
from python_libtorrent.python_libtorrent import get_libtorrent, log
 | 
					import xbmc
 | 
				
			||||||
from python_libtorrent.platform_pulsar import get_platform
 | 
					import xbmcaddon
 | 
				
			||||||
import xbmcgui
 | 
					import xbmcgui
 | 
				
			||||||
import xbmcaddon, xbmc
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
sucsess=False
 | 
					from python_libtorrent.platform_pulsar import get_platform
 | 
				
			||||||
version=''
 | 
					from python_libtorrent.python_libtorrent import get_libtorrent, log
 | 
				
			||||||
p=get_platform()
 | 
					
 | 
				
			||||||
 | 
					sucsess = False
 | 
				
			||||||
 | 
					version = ''
 | 
				
			||||||
 | 
					p = get_platform()
 | 
				
			||||||
dialog = xbmcgui.Dialog()
 | 
					dialog = xbmcgui.Dialog()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
try:
 | 
					try:
 | 
				
			||||||
    libtorrent=get_libtorrent()
 | 
					    libtorrent = get_libtorrent()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    log('Imported libtorrent v' + libtorrent.version + ' from get_libtorrent()')
 | 
					    log('Imported libtorrent v' + libtorrent.version + ' from get_libtorrent()')
 | 
				
			||||||
    version=str(libtorrent.version)
 | 
					    version = str(libtorrent.version)
 | 
				
			||||||
    sucsess=True
 | 
					    sucsess = True
 | 
				
			||||||
except Exception, e:
 | 
					except Exception as e:
 | 
				
			||||||
    log('Error importing from get_libtorrent(). Exception: ' + str(e))
 | 
					    log('Error importing from get_libtorrent(). Exception: ' + str(e))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					line2 = 'python-libtorrent %s IMPORTED successfully' % version if sucsess else 'Failed to import python-libtorrent!'
 | 
				
			||||||
line2='python-libtorrent %s IMPORTED successfully' % version if sucsess else 'Failed to import python-libtorrent!'
 | 
					dialog.ok('Libtorrent', 'OS:' + p['os'] + ' arch:' + p['arch'] + '\n' + line2)
 | 
				
			||||||
dialog.ok('Libtorrent','OS:'+p['os']+' arch:'+p['arch'], line2)
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
__settings__ = xbmcaddon.Addon(id='script.module.libtorrent')
 | 
					__settings__ = xbmcaddon.Addon(id='script.module.libtorrent')
 | 
				
			||||||
__language__ = __settings__.getLocalizedString
 | 
					__language__ = __settings__.getLocalizedString
 | 
				
			||||||
if __settings__.getSetting('ask_dirname')=='true':
 | 
					if __settings__.getSetting('ask_dirname') == 'true':
 | 
				
			||||||
    set_dirname=__settings__.getSetting('dirname')
 | 
					    set_dirname = __settings__.getSetting('dirname')
 | 
				
			||||||
    __settings__.setSetting('ask_dirname','false')
 | 
					    __settings__.setSetting('ask_dirname', 'false')
 | 
				
			||||||
    keyboard = xbmc.Keyboard(set_dirname, __language__(1002))
 | 
					    keyboard = xbmc.Keyboard(set_dirname, __language__(401002))
 | 
				
			||||||
    keyboard.doModal()
 | 
					    keyboard.doModal()
 | 
				
			||||||
    path_keyboard = keyboard.getText()
 | 
					    path_keyboard = keyboard.getText()
 | 
				
			||||||
    if path_keyboard and keyboard.isConfirmed():
 | 
					    if path_keyboard and keyboard.isConfirmed():
 | 
				
			||||||
 | 
				
			|||||||
@ -1,5 +1,5 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					#-*- coding: utf-8 -*-
 | 
				
			||||||
'''
 | 
					"""
 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					    python-libtorrent for Kodi (script.module.libtorrent)
 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -21,4 +21,4 @@
 | 
				
			|||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
				
			||||||
'''
 | 
					"""
 | 
				
			||||||
@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
6804840
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
6545732
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
6519704
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
6513752
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
6518156
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
4608320
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
4628960
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
7145572
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
6921524
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
6890380
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
6889512
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
6889548
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
5369280
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
5393984
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
10425648
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
3578388
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
5292640
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
5331516
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
8834480
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
8779608
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
8831856
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
3439420
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
5191944
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1 +0,0 @@
 | 
				
			|||||||
4318808
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
5191944
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
2884768
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -0,0 +1 @@
 | 
				
			|||||||
 | 
					10487144
 | 
				
			||||||
							
								
								
									
										
											BIN
										
									
								
								python_libtorrent/linux_aarch64_ucs4/1.1.14/libtorrent.so.zip
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								python_libtorrent/linux_aarch64_ucs4/1.1.14/libtorrent.so.zip
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							@ -1 +0,0 @@
 | 
				
			|||||||
4318808
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
2133072
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
2286476
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
1979232
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
2286424
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@ -1,24 +0,0 @@
 | 
				
			|||||||
#-*- coding: utf-8 -*-
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
    python-libtorrent for Kodi (script.module.libtorrent)
 | 
					 | 
				
			||||||
    Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    Permission is hereby granted, free of charge, to any person obtaining
 | 
					 | 
				
			||||||
    a copy of this software and associated documentation files (the
 | 
					 | 
				
			||||||
    "Software"), to deal in the Software without restriction, including
 | 
					 | 
				
			||||||
    without limitation the rights to use, copy, modify, merge, publish,
 | 
					 | 
				
			||||||
    distribute, sublicense, and/or sell copies of the Software, and to
 | 
					 | 
				
			||||||
    permit persons to whom the Software is furnished to do so, subject to
 | 
					 | 
				
			||||||
    the following conditions:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    The above copyright notice and this permission notice shall be
 | 
					 | 
				
			||||||
    included in all copies or substantial portions of the Software.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | 
					 | 
				
			||||||
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | 
					 | 
				
			||||||
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 | 
					 | 
				
			||||||
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 | 
					 | 
				
			||||||
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 | 
					 | 
				
			||||||
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 | 
					 | 
				
			||||||
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | 
					 | 
				
			||||||
'''
 | 
					 | 
				
			||||||
@ -1 +0,0 @@
 | 
				
			|||||||
2286424
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							Some files were not shown because too many files have changed in this diff Show More
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user