zelles Posted December 9, 2014 Share Posted December 9, 2014 Using the FTP FTPEx.au3 makes communicating with FTP a breeze. With great functions like _FTP_FileGet, _FTP_FilePut, and _FTP_DirPutContents, you can upload and download with ease. But what about the much needed ability to download a folder with a simple _FTP_DirGetContents function? Well I put together a function that will download a folder with ease... _FTP_DirGetContents Function: Func _FTP_DirGetContents($oConn, $opath, $olocal, $orec) If Not FileExists($olocal) Then DirCreate($olocal) If StringRight($opath, 1) <> "/" Then $opath &= "/" If $orec == 1 Then Local $ocurrent = _FTP_DirGetCurrent($oConn) _FTP_DirSetCurrent($oConn, $opath) Local $afolders = _FTP_ListToArray($oConn, 1) _FTP_DirSetCurrent($oConn, $ocurrent) For $o = 1 To $afolders[0] If $afolders[$o] == "." Or $afolders[$o] == ".." Then ContinueLoop If Not FileExists($olocal & "\" & $afolders[$o]) Then DirCreate($olocal & "\" & $afolders[$o]) _FTP_DirGetContents($oConn, $opath & $afolders[$o], $olocal & "\" & $afolders[$o], $orec) Next EndIf Local $hFTPFind Local $aFile = _FTP_FindFileFirst($oConn, $opath, $hFTPFind) While 1 _FTP_FileGet($oConn, $opath & $aFile[10], @ScriptDir & "\tmpdata\" & $aFile[10]) $aFile = _FTP_FindFileNext($hFTPFind) If @error Then ExitLoop WEnd _FTP_FindFileClose($hFTPFind) EndFunc Example Usage: #include <FTPEx.au3> If Not FileExist(@ScriptDir & "\ftptemp") Then DirCreate(@ScriptDir & "\ftptemp") $dir_local = @ScriptDir & "\ftptemp" $dir_remote = "/" Local $iOpen = _FTP_Open('MyFTP Control') Local $iConn = _FTP_Connect($iOpen, "YourFTPServer", "YourUsername", "YourPassword") _FTP_DirGetContents($iConn, $dir_remote, $dir_local, 1) _FTP_Close($iConn) _FTP_Close($iOpen) Function Call Explanation: _FTP_DirGetContents($oConn, $opath, $olocal, $orec) $oConn: session handle as returned by _FTP_Connect. $opath: The remote folder to download $olocal: The local folder to download to. $orec: set to 1 to download folder and subfolders. Set to 0 for non recursive. Enjoy MadeININDIA 1 Link to comment Share on other sites More sharing options...
MadeININDIA Posted January 5, 2015 Share Posted January 5, 2015 Hi , I'm getting error in line : _FTP_FileGet($oConn, $opath & $aFile[10], @ScriptDir & "tmpdata" & $aFile[10]) : ==> Array variable has incorrect number of subscripts or subscript dimension range exceeded.: _FTP_FileGet($oConn, $opath & $aFile[10], @ScriptDir & "tmpdata" & $aFile[10]) _FTP_FileGet($oConn, $opath & ^ ERROR Pls help ! Link to comment Share on other sites More sharing options...
Moderators SmOke_N Posted January 5, 2015 Moderators Share Posted January 5, 2015 Put this before _FTP_FileGet and post the whole content of the console after it crashes. ConsoleWrite("There are " & (UBound($aFile) - 1) & " available indexes for this array, you are trying to use 10.") Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer. Link to comment Share on other sites More sharing options...
MadeININDIA Posted January 12, 2015 Share Posted January 12, 2015 (edited) Hi , I'm getting this console message : There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10. Only folders are copying as empty folders . Files are not getting transferred > Edited January 12, 2015 by ParkaviP Link to comment Share on other sites More sharing options...
MadeININDIA Posted January 12, 2015 Share Posted January 12, 2015 (edited) From the above image 26 files are there,but only transferring folders as empty. as seen below: Edited January 12, 2015 by ParkaviP Link to comment Share on other sites More sharing options...
ViciousXUSMC Posted April 28, 2015 Share Posted April 28, 2015 (edited) Hi ,I'm getting error in line : _FTP_FileGet($oConn, $opath & $aFile[10], @ScriptDir & "tmpdata" & $aFile[10]) : ==> Array variable has incorrect number of subscripts or subscript dimension range exceeded.:_FTP_FileGet($oConn, $opath & $aFile[10], @ScriptDir & "tmpdata" & $aFile[10])_FTP_FileGet($oConn, $opath & ^ ERROR Pls help !Same error I got when trying to use it.But I agree this feature would make sense to be in the FTPEx.au3 and is exactly what I am trying to do right now for a project. There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 11 available indexes for this array, you are trying to use 10.There are 5 available indexes for this array, you are trying to use 10."C:\Users\frpatrmo\Desktop\Get Map Update\FTPDirGet.au3" (19) : ==> Array variable has incorrect number of subscripts or subscript dimension range exceeded.: _FTP_FileGet($oConn, $opath & $aFile[10], @ScriptDir & "\tmpdata\" & $aFile[10]) _FTP_FileGet($oConn, $opath & ^ ERROR Edited April 28, 2015 by ViciousXUSMC Link to comment Share on other sites More sharing options...
payne Posted January 2, 2020 Share Posted January 2, 2020 thx for this useful function! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now