<?xml version="1.0" encoding="utf-8"?>
<HmsMediaItem>
  <MediaType>3</MediaType>
  <ClassID>51</ClassID>
  <ItemID>e94518a9-ea50-46a3-94f0-25f90b4e115a</ItemID>
  <ItemPath></ItemPath>
  <ParentID>234DF17B-418C-4FDC-9DFE-CD0C586D2E76</ParentID>
  <Properties>
    <Property>
      <ID>4</ID>
      <Value>Torrent TV (1ttv.org)</Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>515</ID>
      <Value>1</Value>
    </Property>
    <Property>
      <ID>700</ID>
      <Value>0</Value>
    </Property>
    <Property>
      <ID>701</ID>
      <Value>-1</Value>
    </Property>
    <Property>
      <ID>702</ID>
      <Value>-1</Value>
    </Property>
    <Property>
      <ID>517</ID>
      <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
    </Property>
    <Property>
      <ID>518</ID>
      <Value>0</Value>
    </Property>
    <Property>
      <ID>512</ID>
      <Value>0</Value>
    </Property>
    <Property>
      <ID>532</ID>
      <Value>1</Value>
    </Property>
    <Property>
      <ID>553</ID>
      <Value>1</Value>
    </Property>
    <Property>
      <ID>522</ID>
      <Value>0</Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>570</ID>
      <Value>2</Value>
    </Property>
    <Property>
      <ID>93</ID>
      <Value>41291,401043287</Value>
    </Property>
    <Property>
      <ID>550</ID>
      <Value>const
//csCommandLine1 = &apos;cmd://"%s"   --udp-caching=1500 --no-crashdump --play-and-exit --language en -Idummy --demuxdump-file="&lt;OUTPUT FILE&gt;" --access=p2p_access "%s" :demux=dump&apos;;
  csCommandLine1 = &apos;cmd://"%s"   --no-crashdump --play-and-exit --language en -Idummy --demuxdump-file="&lt;OUTPUT FILE&gt;" vlc://pause:2 --access=p2p_access "%s" :demux=dump&apos;;
  csCommandLine2 = &apos;cmd://"%s"   --no-crashdump --play-and-exit --language en --no-auto-preparse --no-playlist-autostart --extraintf=dummy -Iluaintf --lua-intf=hmsts --lua-config "hmsts={torrentfile=&apos;#39&apos;%s&apos;#39&apos;, torrentsubfile=&apos;#39&apos;%s&apos;#39&apos;}" --demuxdump-file="&lt;OUTPUT FILE&gt;" --access=p2p_access "%s"&apos;;
  csDivRegPattern = &apos;&lt;div\\s+class="reg"&gt;(.*?)&lt;\\/div&gt;&apos;;
  
// ---------------------------------------------------------------------------------------
// Получение пути TorrentStream плеера

function GetTsPlayerPath: string;
var
  sResult: string;
begin
  sResult := IncludeTrailingBackslash(RegistryRead(&apos;Software\AceStream\InstallDir&apos;)) + &apos;player\ace_player.exe&apos;;
  Result := ExtractShortPathName(sResult);
  if Result = &apos;&apos; then Result := sResult
end;

var
  bFileExists: Boolean; iFlags: Integer;
  sID, sTmpFile, sWebPage, sHeaders, sAnswerHeaders, sToken, sCookie: string;
  mail, pass, sPage: string;
begin
  HmsLogMessage(mtiInfo, &apos;Torrent-TV: Запуск скрипта получения ссылки на ресурс mpFilePath=&apos; + mpFilePath );
  Randomize; 
    
  sHeaders := mpFilePath+#10#13+
              &apos;Accept-Encoding: gzip, deflate&apos;+#10#13+
              &apos;User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.130 Safari/537.36&apos;+#10#13;

  iFlags   := StrToInt(&apos;$00200000&apos;); 
  // INTERNET_FLAG_NO_AUTO_REDIRECT := $00200000;
  // INTERNET_FLAG_RELOAD := $80000000;
  // INTERNET_FLAG_NO_COOKIES := $00080000;
  sTmpFile := HmsTempDirectory + &apos;\&apos; + Copy(mpTitle, 1, 20) + &apos;.acelive&apos;;
  if FileExists(sTmpFile) then begin
    MediaResourceLink := Format(csCommandLine1, [GetTsPlayerPath, sTmpFile]);
  end else begin 
    if mpPodcastAuthorizationStream and (mpPodcastAuthorizationUserName&lt;&gt;"") then begin
      // Открываем корневую страницу сайта
      sWebPage := HmsRemoveLineBreaks(HmsUtf8Decode(HmsSendRequestEx(&apos;1ttv.org&apos;, &apos;&apos;, &apos;GET&apos;, &apos;application/x-www-form-urlencoded&apos;, sHeaders, &apos;&apos;,80, iFlags, sAnswerHeaders, true)));
      if not HmsRegExMatch(&apos;&lt;div\s+class="reg"(.*?)&lt;\/div&gt;&apos;, sWebPage, sToken) then Begin 
        HmsLogMessage(mtiError, &apos;Torrent-TV: На корневой странице не найден раздел авторизации. Сайт не доступен или его структура изменена владельцами&apos;);
        exit;
      end;
      if pos(&apos;auth.php&apos;,sToken)&gt;0 Then begin
        mail := HmsHttpEncode( HmsUtf8Encode(mpPodcastAuthorizationUserName));  // логин
        pass := HmsHttpEncode( HmsUtf8Encode(mpPodcastAuthorizationPassword));  // пароль
        HmsLogMessage(mtiInfo, &apos;Torrent-TV: Авторизация под пользователем &apos; + mpPodcastAuthorizationUserName );
        sWebPage := HmsSendRequestEx(&apos;1ttv.org&apos;, &apos;/auth.php&apos;, &apos;POST&apos;, &apos;application/x-www-form-urlencoded&apos;, sHeaders, &apos;email=&apos;+mail+&apos;&amp;password=&apos;+pass+&apos;&amp;remember=on&amp;enter=%D0%92%D0%BE%D0%B9%D1%82%D0%B8&apos;,80, iFlags, sAnswerHeaders, true);;
        If Not HmsRegExMatch(&apos;Location:&apos;, sAnswerHeaders, &apos;&apos;) Then begin
          HmsLogMessage(mtiError, &apos;Torrent-TV: Ошибка авторизации&apos;);      
          exit;
        end;
      end;
      //if HmsRegExMatch(&apos;(PHPSESSID=.*?);&apos;, sAnswerHeaders, sCookie) then
      //  sHeaders := sHeaders+&apos;Cookie: &apos;+sCookie+#10#13;
      //if HmsRegExMatch(&apos;(torrenttv_remember=.*?);&apos;, sAnswerHeaders, sCookie) then
      //  sHeaders := sHeaders+&apos;Cookie: &apos;+sCookie+#10#13;
    end;

    HmsRegExMatch(&apos;//.*?(/.*)&apos;, mpFilePath, sPage);
    sWebPage := HmsSendRequestEx(&apos;1ttv.org&apos;, sPage, &apos;GET&apos;, &apos;application/x-www-form-urlencoded&apos;, sHeaders, &apos;&apos;, 80, iFlags, sAnswerHeaders, true);
    sWebPage := HmsUtf8Decode(sWebPage);
    sWebPage := HmsRemoveLineBreaks(sWebPage);

    if pos(&apos;Location: /404.php&apos;, sAnswerHeaders)&gt;0 then begin
      HmsLogMessage(mtiError, &apos;Torrent-TV: Медиа-ресурс не найден. Попробуйте обновить подкаст &apos;);
    end else if HmsRegExMatch(&apos;this.loadPlayer..(.*?)",&apos;, sWebPage, sID) then begin
      HmsLogMessage(mtiInfo, &apos;Torrent-TV: Открываем по ID &apos; + sID );
      MediaResourceLink := Format(csCommandLine1, [GetTsPlayerPath, sID]);
    end else if HmsRegExMatch(&apos;loadTorrent..(.*?)",&apos;    , sWebPage, sID) then begin
      HmsLogMessage(mtiInfo, &apos;Torrent-TV: Открываем по торренту &apos; + mpTitle );  
      bFileExists := HmsDownloadURLToFile(sID, sTmpFile);
      if bFileExists then 
        MediaResourceLink := Format(csCommandLine1, [GetTsPlayerPath, sTmpFile])
      else begin 
        HmsLogMessage(mtiError, &apos;Torrent-TV: Ошибка при загрузке торрента "&apos; + mpFilePath + &apos;"&apos;);
        exit;
      end;
    end else begin
      HmsLogMessage(mtiError, &apos;Torrent-TV: Ошибка при загрузке c сайта 1ttv.org&apos;);
    end;
  end;
  HmsLogMessage(mtiInfo, &apos;Torrent-TV: MediaResourceLink="&apos; + MediaResourceLink + &apos;"&apos;);
end.</Value>
    </Property>
    <Property>
      <ID>551</ID>
      <Value>PascalScript</Value>
    </Property>
    <Property>
      <ID>530</ID>
      <Value>const
  PCRE_CASELESS   = $00000001;  
  PCRE_DOTALL     = $00000004;
  PCRE_SINGLELINE = PCRE_CASELESS + PCRE_DOTALL;       
  
var
  sWebPage, sNextPage, sAnswerHeaders, sToken, sHeaders, sPage, mail, pass, sAnswHeaders: string;
  ItemsRegExpr: TRegExpr; i, iFlags: Integer; gsNameArray: string; 

   
/////////////////////////////////////////////////////////////////////////////// 
Procedure DeleteOldLinks();
Var
  i: Integer; Item: THmsScriptMediaItem;
Begin
  For i := FolderItem.ChildCount-1 DownTo 0 Do Begin
    Item := FolderItem.ChildItems[i];
    If (Item[4001] = &apos;1&apos;) and Item.IsLink Then Item.Delete;
  End;
End;
/////////////////////////////////////////////////////////////////////////////// 
procedure Kanal(const aItemDescr: string);
var
  sLink, sName, sImg, sBase: string;
  Item: THmsScriptMediaItem;
begin
  HmsRegExMatch(&apos;&lt;a[^&gt;]+href="(.*?)"&apos;   , aItemDescr, sLink); 
  HmsRegExMatch(&apos;&lt;strong&gt;(.*?)&lt;/strong&gt;&apos;, aItemDescr, sName);
  HmsRegExMatch(&apos;&lt;img src="(.*?)"&apos;      , aItemDescr, sImg );
  
  sBase := &apos;http://1ttv.org/&apos;;     // База, для коротких (относительных) ссылок
  sName := HmsHtmlToText(sName);        // Если в названиях будут теги html - избавляемся от них
  sLink := HmsExpandLink(sLink, sBase); // Дополняем, если нужно, до полной ссылки
  sImg  := HmsExpandLink(sImg , sBase); // Дополняем, если нужно, до полной ссылки
  
  // Пытаемся найти элемент по наименованию
  Item := FolderItem.FindItemByProperty(mpiTitle, sName);
  // Если не найден - создаём
  if Item = nil then Item := HmsCreateMediaItem(sLink, FolderItem.ItemID);
  // Обновляем всю информацию
  Item[mpiFilePath      ] := sLink;
  Item[mpiTitle         ] := sName;
  Item[mpiThumbnail     ] := sImg; 
  Item[mpiTimeLength    ] := &apos;11:40:00.000&apos;; // длинная длительность 
  Item[mpiInternetItem  ] := &apos;1&apos;;
  Item[mpiDVDAspectRatio] := &apos;16:9&apos;;
  Item[4001             ] := &apos;&apos;; // Снимаем пометку удаления
end;
  
///////////////////////////////////////////////////////////////////////////////
// ========================================================================= // 
begin
  HmsLogMessage(mtiInfo, &apos;Torrent-TV: Запуск скрипта обновления списка ресурсов &apos; + mpTitle);
  // Помечаем все созданные ранее ссылки для удаления
  For i := 0 to FolderItem.ChildCount-1 Do FolderItem.ChildItems[i].Properties[4001] := &apos;1&apos;;

  iFlags   := StrToInt(&apos;$00200000&apos;); 
  // INTERNET_FLAG_NO_AUTO_REDIRECT := $00200000;
  // INTERNET_FLAG_RELOAD := $80000000;
  // INTERNET_FLAG_NO_COOKIES := $00080000;
  sHeaders := &apos;http://1ttv.org&apos;+#10#13+
               &apos;Origin: http://1ttv.org&apos;+#10#13+
               &apos;Accept-Encoding: gzip, deflate&apos;+#10#13+
               &apos;User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.130 Safari/537.36&apos;+#10#13;
  // Открываем страницу сайта
  //if mpTitle=&apos;Torrent TV (1ttv.org)&apos; then sWebPage := HmsDownloadURL(&apos;http://1ttv.org/exit.php&apos;, sHeaders, True);
  HmsRegExMatch(&apos;//.*?(/.*)&apos;, mpFilePath, sPage);
  //sWebPage := HmsDownloadURL(mpFilePath, sHeaders, True);
  sWebPage := HmsRemoveLineBreaks(HmsUtf8Decode(HmsSendRequestEx(&apos;1ttv.org&apos;, sPage, &apos;GET&apos;, &apos;application/x-www-form-urlencoded&apos;, sHeaders, &apos;&apos;,80, iFlags, sAnswerHeaders, true)));
  if not HmsRegExMatch(&apos;&lt;div\s+class="reg"(.*?)&lt;\/div&gt;&apos;, sWebPage, sToken) then Begin 
    HmsLogMessage(mtiError, &apos;Torrent-TV: На странице не найден раздел авторизации. Сайт не доступен или его структура изменена владельцами&apos;);
    exit;
  end;
  if (pos(&apos;auth.php&apos;,sToken)&gt;0) and mpPodcastAuthorizationPages and (mpPodcastAuthorizationUserName&lt;&gt;"") then begin
    mail := HmsHttpEncode( HmsUtf8Encode(mpPodcastAuthorizationUserName));  // логин
    pass := HmsHttpEncode( HmsUtf8Encode(mpPodcastAuthorizationPassword));  // пароль
    HmsLogMessage(mtiInfo, &apos;Torrent-TV: Авторизация под пользователем &apos; + mpPodcastAuthorizationUserName );
    sWebPage := HmsRemoveLineBreaks(HmsUtf8Decode(HmsSendRequestEx(&apos;1ttv.org&apos;, &apos;/auth.php&apos;, &apos;POST&apos;, &apos;application/x-www-form-urlencoded&apos;, sHeaders, &apos;email=&apos;+mail+&apos;&amp;password=&apos;+pass+&apos;&amp;remember=on&amp;enter=%D0%92%D0%BE%D0%B9%D1%82%D0%B8&apos;,80, iFlags, sAnswerHeaders, true)));;
    //if (not HmsRegExMatch(&apos;&lt;div\s+class="reg"(.*?)&lt;\/div&gt;&apos;, sWebPage, sToken)) or (pos(&apos;auth.php&apos;,sToken)&gt;0) then Begin 
    if pos(&apos;Location: http://1ttv.org/cabinet.php&apos;,sAnswerHeaders)=0 then begin
      HmsLogMessage(mtiError, &apos;Torrent-TV: Ошибка авторизации. Проверьте правильность указания логина/пароля в настройках подкаста&apos;);
      exit;
    end;
    sWebPage := HmsRemoveLineBreaks(HmsUtf8Decode(HmsSendRequestEx(&apos;1ttv.org&apos;, sPage, &apos;GET&apos;, &apos;application/x-www-form-urlencoded&apos;, sHeaders, &apos;&apos;,80, iFlags, sAnswerHeaders, true)));
    if not HmsRegExMatch(&apos;&lt;div\s+class="reg"(.*?)&lt;\/div&gt;&apos;, sWebPage, sToken) then begin 
      HmsLogMessage(mtiError, &apos;Torrent-TV: На странице не найден раздел авторизации. Сайт не доступен или его структура изменена владельцами&apos;);
      exit;
    end else if pos(&apos;auth.php&apos;,sToken)&gt;0 then begin
      HmsLogMessage(mtiError, &apos;Torrent-TV: Попытка авторизации не удалась&apos;);
      exit;
    end;
  end;
  //if (Pos(&apos;film_selector.php&apos;, sWebPage)&gt;1) then
  //  for i := 2 to 20 do  sWebPage := sWebPage+HmsDownloadURL(mpFilePath+&apos;&amp;page=&apos;+IntToStr(i), sHeaders, True);
  i:=1; sNextPage:= sWebPage;
  While pos(&apos;&gt;туда&lt;/a&gt;&apos;,sNextPage)&gt;0 Do Begin 
    Inc(i);
    sNextPage := HmsRemoveLineBreaks(HmsUtf8Decode(HmsDownloadURL(mpFilePath+&apos;&amp;page=&apos;+IntToStr(i), sHeaders, True)));
    sWebPage := sWebPage+sNextPage;
    if (mpTitle=&apos;Последние фильмы&apos;) and (i&gt;4) then Break;
  end;
     
  ItemsRegExpr := TRegExpr.Create(&apos;best-channels-content(.*?)&lt;/h5&gt;&apos;, PCRE_SINGLELINE);  // поиск блоков, который будет между скобок
  try
    if ItemsRegExpr.Search(sWebPage) then repeat // искать в исх.строке совпадение и повторять
      Kanal(ItemsRegExpr.Match)                  // запускать процедуру получения свойств фильма каждый раз как найден объект
    until not ItemsRegExpr.SearchAgain; 
  finally       
    ItemsRegExpr.Free;
  end;

  DeleteOldLinks(); // Удаляем ссылки, имён которых мы не обновляли (устаревшие)
end.</Value>
    </Property>
    <Property>
      <ID>531</ID>
      <Value>PascalScript</Value>
    </Property>
    <Property>
      <ID>571</ID>
      <Value>const
  PCRE_CASELESS   = $00000001;  
  PCRE_DOTALL     = $00000004;
  PCRE_SINGLELINE = PCRE_CASELESS + PCRE_DOTALL;       
  reg1 = &apos;(\d\d\d)&apos;;
  reg2 = &apos;(\d\d)&apos;;
  reg3 = &apos;(\d)&apos;;
  cifr = [&apos;0&apos;,&apos;1&apos;,&apos;2&apos;,&apos;3&apos;,&apos;4&apos;,&apos;5&apos;,&apos;6&apos;,&apos;7&apos;,&apos;8&apos;,&apos;9&apos;];
  
var
  s,s1,s2,ini, file,kat,id,pap,pap1,mes,god,adres: string;
  j,i,aPercent,e,grp:Integer;
  ItemsRegExpr,ItemsRegExpr1,ItemsRegExpr2: TRegExpr;
  sWebPage_,sWebPage_1,sWebPage,sWebPage1,sWebPage2,total,total1: string;
  Item: THmsScriptMediaItem;
  myYear, myMonth, myDay : Word;
  k:byte;
kol,adr,n,adr_m,adr_f: string;
    kol_i,ka:integer;
    dlit,nazv,thum:string;
  
 
   procedure kanal(const aItemDescr2: string); 
   begin
         
             
        HmsRegExMatch(&apos;"(.*?)"&apos;, aItemDescr2, adr); 
         HmsRegExMatch(&apos;"&gt;(.*?)&lt;/a&gt;&apos;, aItemDescr2, nazv);
     //    HmsRegExMatch(&apos;&lt;a href="(.*?)"&apos;, aItemDescr2, thum);
          adr:=&apos;http://1ttv.org/&apos;+adr;
        Item := HmsCreateMediaItem(adr, FolderItem.ItemID,kat ); 
         
          Item.Properties[mpiTitle] := nazv ;
          Item.Properties[mpiThumbnail ] := thum; 
   
   
   end;
  
  
  
 procedure kategor(const aItemDescr: string);   // поцедура выделение свойств фильмов   aItemDescr -строка -результат поиска ItemsRegExpr1.Match между  &lt;li&gt; и &lt;/li&gt;
  
  var              //   обьявление в процедуре              
    Item: THmsScriptMediaItem;   // обьект Item из класса THmsScriptMediaItem -пункт в перечне фильмов
            //  строка
    

    
  begin               //      начало процедуры
       HmsRegExMatch(&apos;style="color: #FFF;"&gt;(.*?)&lt;/a&gt;&apos;, aItemDescr, kat);
       
       ItemsRegExpr2 := TRegExpr.Create(&apos;&lt;a href=(.*?)&lt;/li&gt;&apos;,PCRE_SINGLELINE); 
        try
      if ItemsRegExpr2.Search(aItemDescr) then repeat    //искать в исх.строке объект и повторять
      kanal(ItemsRegExpr2.Match)   //запускать процедуру получения свойств фильма каждый раз как найден объект
      until not ItemsRegExpr2.SearchAgain; 
    finally       
      ItemsRegExpr2.Free;
        end; 
         
       
  end;           
  

 


 
begin
       //j:=0;
  
   // FolderItem.DeleteChildItems; 
  //  mpfilepath:=&apos;http://1ttv.org/category.php?cat=8&apos;;
    mpfilepath:=&apos;http://1ttv.org&apos;;
    sWebPage1 := HmsDownloadURL(mpfilepath); 
     sWebPage1 :=HmsUtf8Decode (sWebPage1);
    sWebPage1 :=HmsRemoveLineBreaks(sWebPage1);
     
 //  
    
  
      ItemsRegExpr1 := TRegExpr.Create(&apos;category.php(.*?)&lt;/li&gt;&lt;li&gt;&apos;,PCRE_SINGLELINE);  //создать объект с содерж. между кавычек
    try
      if ItemsRegExpr1.Search(sWebPage1) then repeat    //искать в исх.строке объект и повторять
       kategor(ItemsRegExpr1.Match)   //запускать процедуру получения свойств фильма каждый раз как найден объект
      until not ItemsRegExpr1.SearchAgain; 
    finally       
      ItemsRegExpr1.Free;
     end  ; 

HmsHideInformation  ;  


end.</Value>
    </Property>
    <Property>
      <ID>572</ID>
      <Value>PascalScript</Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>245</ID>
      <Value>e94518a9-ea50-46a3-94f0-25f90b4e115a</Value>
    </Property>
    <Property>
      <ID>95</ID>
      <Value>3</Value>
    </Property>
    <Property>
      <ID>215</ID>
      <Value>mpTitle</Value>
    </Property>
    <Property>
      <ID>55</ID>
      <Value>http://1ttv.org/images/logo.png</Value>
    </Property>
    <Property>
      <ID>43</ID>
      <Value>video/mpeg</Value>
    </Property>
    <Property>
      <ID>50</ID>
      <Value>AceStream (ACEPLAYER - FFMPEG)</Value>
    </Property>
  </Properties>
  <ChildItems>
    <Item>
      <ClassID>53</ClassID>
      <ItemID>f46a993e-65db-4f37-84e0-9aedaba77ee6</ItemID>
      <ItemPath></ItemPath>
      <ParentID>e94518a9-ea50-46a3-94f0-25f90b4e115a</ParentID>
      <Properties>
        <Property>
          <ID>515</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>512</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>532</ID>
          <Value>0</Value>
        </Property>
        <Property>
          <ID>700</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>553</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>4</ID>
          <Value>Избранные</Value>
        </Property>
        <Property>
          <ID>701</ID>
          <Value>-1</Value>
        </Property>
        <Property>
          <ID>702</ID>
          <Value>-1</Value>
        </Property>
        <Property>
          <ID>517</ID>
          <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
        </Property>
        <Property>
          <ID>518</ID>
          <Value>0</Value>
        </Property>
        <Property>
          <ID>522</ID>
          <Value>0</Value>
        </Property>
        <Property>
          <ID>245</ID>
          <Value>f46a993e-65db-4f37-84e0-9aedaba77ee6</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>41784,5774392245</Value>
        </Property>
        <Property>
          <ID>525</ID>
          <Value>42382,9964444444</Value>
        </Property>
        <Property>
          <ID>42</ID>
          <Value>3</Value>
        </Property>
        <Property>
          <ID>4001</ID>
          <Value>1</Value>
        </Property>
      </Properties>
    </Item>
    <Item>
      <ClassID>53</ClassID>
      <ItemID>b68d3085-0e62-4a5e-b096-ef62dfc7e953</ItemID>
      <ItemPath>http://1ttv.org/hd_channels.php</ItemPath>
      <ParentID>e94518a9-ea50-46a3-94f0-25f90b4e115a</ParentID>
      <Properties>
        <Property>
          <ID>515</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>512</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>532</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>700</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>553</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>4</ID>
          <Value>HD</Value>
        </Property>
        <Property>
          <ID>701</ID>
          <Value>-1</Value>
        </Property>
        <Property>
          <ID>702</ID>
          <Value>-1</Value>
        </Property>
        <Property>
          <ID>517</ID>
          <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
        </Property>
        <Property>
          <ID>518</ID>
          <Value>0</Value>
        </Property>
        <Property>
          <ID>522</ID>
          <Value>0</Value>
        </Property>
        <Property>
          <ID>245</ID>
          <Value>b68d3085-0e62-4a5e-b096-ef62dfc7e953</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>41657,8676109375</Value>
        </Property>
        <Property>
          <ID>525</ID>
          <Value>42382,9964522917</Value>
        </Property>
        <Property>
          <ID>42</ID>
          <Value>3</Value>
        </Property>
        <Property>
          <ID>43</ID>
          <Value>video/mpeg</Value>
        </Property>
        <Property>
          <ID>4001</ID>
          <Value>1</Value>
        </Property>
      </Properties>
    </Item>
    <Item>
      <ClassID>51</ClassID>
      <ItemID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ItemID>
      <ItemPath></ItemPath>
      <ParentID>e94518a9-ea50-46a3-94f0-25f90b4e115a</ParentID>
      <Properties>
        <Property>
          <ID>515</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>512</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>532</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>700</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>553</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>42</ID>
          <Value>3</Value>
        </Property>
        <Property>
          <ID>4</ID>
          <Value>Категории</Value>
        </Property>
        <Property>
          <ID>701</ID>
          <Value>-1</Value>
        </Property>
        <Property>
          <ID>702</ID>
          <Value>-1</Value>
        </Property>
        <Property>
          <ID>517</ID>
          <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
        </Property>
        <Property>
          <ID>518</ID>
          <Value>0</Value>
        </Property>
        <Property>
          <ID>522</ID>
          <Value>0</Value>
        </Property>
        <Property>
          <ID>570</ID>
          <Value>0</Value>
        </Property>
        <Property>
          <ID>245</ID>
          <Value>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>41791,097291713</Value>
        </Property>
        <Property>
          <ID>4001</ID>
          <Value>1</Value>
        </Property>
      </Properties>
      <ChildItems>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>650f99de-f849-4864-8e81-3815934eb051</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=10</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Мужские</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>701</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>702</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>517</ID>
              <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
            </Property>
            <Property>
              <ID>518</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41291,4038803819</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42382,9964570023</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>81b3949c-8d92-449f-a1e0-3d3ce52940c6</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=2</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Музыка</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>701</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>702</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>517</ID>
              <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
            </Property>
            <Property>
              <ID>518</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41291,4036305208</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>81b3949c-8d92-449f-a1e0-3d3ce52940c6</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42382,9964673843</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>3a5ef185-80cc-43e1-ae09-5177f06e5df3</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=6</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Познавательные</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>701</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>702</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>517</ID>
              <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
            </Property>
            <Property>
              <ID>518</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41291,403352581</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>3a5ef185-80cc-43e1-ae09-5177f06e5df3</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42382,996472963</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>01114956-a44c-4ab3-a832-cd9be25bd457</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=4</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Спорт</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>701</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>702</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>517</ID>
              <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
            </Property>
            <Property>
              <ID>518</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41291,4031054167</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42382,9964852199</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>3c131ec2-b556-48d2-9931-1236e449d364</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=3</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Фильмы</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>701</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>702</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>517</ID>
              <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
            </Property>
            <Property>
              <ID>518</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41291,4028075116</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>3c131ec2-b556-48d2-9931-1236e449d364</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42382,9964996991</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>8d821786-4281-4ed6-b1d6-51534694a017</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=8</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Развлекательные</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>701</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>702</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>517</ID>
              <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
            </Property>
            <Property>
              <ID>518</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41291,4022379282</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>8d821786-4281-4ed6-b1d6-51534694a017</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42382,9965094444</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>b8c820f0-a804-4b11-a631-b40818ba29b2</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=7</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Новостные</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>701</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>702</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>517</ID>
              <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
            </Property>
            <Property>
              <ID>518</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41291,4017085185</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42382,9965218056</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>a1775721-0c9f-48ac-93d1-1d2fb032a37e</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=5</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Общие</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>701</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>702</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>517</ID>
              <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
            </Property>
            <Property>
              <ID>518</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41291,4013226042</Value>
            </Property>
            <Property>
              <ID>530</ID>
              <Value>const
  PCRE_CASELESS   = $00000001;  
  PCRE_DOTALL     = $00000004;
  PCRE_SINGLELINE = PCRE_CASELESS + PCRE_DOTALL;       
  reg1 = &apos;(\d\d\d)&apos;;
  reg2 = &apos;(\d\d)&apos;;
  reg3 = &apos;(\d)&apos;;
  cifr = [&apos;0&apos;,&apos;1&apos;,&apos;2&apos;,&apos;3&apos;,&apos;4&apos;,&apos;5&apos;,&apos;6&apos;,&apos;7&apos;,&apos;8&apos;,&apos;9&apos;];
  
var
  s,s1,s2,ini, file,kat,id,pap,pap1,mes,god,adres: string;
  j,i,aPercent,e,grp:Integer;
  ItemsRegExpr,ItemsRegExpr1,ItemsRegExpr2: TRegExpr;
  sWebPage_,sWebPage_1,sWebPage,sWebPage1,sWebPage2,total,total1: string;
  Item: THmsScriptMediaItem;
  myYear, myMonth, myDay : Word;
  k:byte;
kol,adr,n,adr_m,adr_f: string;
    kol_i,ka:integer;
    dlit,nazv,thum:string;
  
 
   procedure kanal(const aItemDescr2: string); 
   begin
         
             
        HmsRegExMatch(&apos;&lt;a href="(.*?)"&apos;, aItemDescr2, adr); 
         HmsRegExMatch(&apos;&lt;strong&gt;(.*?)&lt;/strong&gt;&apos;, aItemDescr2, nazv);
         HmsRegExMatch(&apos;&lt;a href="(.*?)"&apos;, aItemDescr2, thum);
          adr:=&apos;http://1ttv.org/&apos;+adr;
        Item := HmsCreateMediaItem(adr, FolderItem.ItemID, ); 
         
          Item.Properties[mpiTitle] := nazv ;
          Item.Properties[mpiThumbnail ] := thum; 
   
   
   end;
  
  
  
 procedure kategor(const aItemDescr: string);   // поцедура выделение свойств фильмов   aItemDescr -строка -результат поиска ItemsRegExpr1.Match между  &lt;li&gt; и &lt;/li&gt;
  
  var              //   обьявление в процедуре              
    Item: THmsScriptMediaItem;   // обьект Item из класса THmsScriptMediaItem -пункт в перечне фильмов
            //  строка
    

    
  begin               //      начало процедуры
       HmsRegExMatch(&apos;style="color: #FFF;"&gt;(.*?)&lt;/a&gt;&apos;, sWebPage1, kat);
       
       ItemsRegExpr2 := TRegExpr.Create(&apos;&lt;li onclick=(.*?)&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&apos;,PCRE_SINGLELINE); 
        try
      if ItemsRegExpr2.Search(aItemDescr) then repeat    //искать в исх.строке объект и повторять
      kanal(ItemsRegExpr2.Match)   //запускать процедуру получения свойств фильма каждый раз как найден объект
      until not ItemsRegExpr2.SearchAgain; 
    finally       
      ItemsRegExpr2.Free;
        end; 
         
       
  end;           
  

 


 
begin
       //j:=0;
  
    FolderItem.DeleteChildItems; 
  //  mpfilepath:=&apos;http://1ttv.org/category.php?cat=8&apos;;
    sWebPage1 := HmsDownloadURL(mpfilepath); 
     sWebPage1 :=HmsUtf8Decode (sWebPage1);
    sWebPage1 :=HmsRemoveLineBreaks(sWebPage1);
     
 //  
    
  
      ItemsRegExpr1 := TRegExpr.Create(&apos;&lt;div class="best-channels-content"(.*?)&lt;/h5&gt;&apos;,PCRE_SINGLELINE);  //создать объект с содерж. между кавычек
    try
      if ItemsRegExpr1.Search(sWebPage1) then repeat    //искать в исх.строке объект и повторять
       kanal(ItemsRegExpr1.Match)   //запускать процедуру получения свойств фильма каждый раз как найден объект
      until not ItemsRegExpr1.SearchAgain; 
    finally       
      ItemsRegExpr1.Free;
     end  ; 

HmsHideInformation  ;  


end.</Value>
            </Property>
            <Property>
              <ID>531</ID>
              <Value>PascalScript</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>a1775721-0c9f-48ac-93d1-1d2fb032a37e</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42382,9965271065</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>3fd6a69b-18b1-4fbd-b043-a397aaa2b868</ItemID>
          <ItemPath>http://1ttv.org/on_moderation.php</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>На модерации</Value>
            </Property>
            <Property>
              <ID>701</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>702</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>517</ID>
              <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
            </Property>
            <Property>
              <ID>518</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>3fd6a69b-18b1-4fbd-b043-a397aaa2b868</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42041,8126561921</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42382,99653125</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>73a2c4d3-a94a-4476-8b9e-f59201547bd3</ItemID>
          <ItemPath>http://1ttv.org/index.php</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Популярные</Value>
            </Property>
            <Property>
              <ID>701</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>702</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>517</ID>
              <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
            </Property>
            <Property>
              <ID>518</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>73a2c4d3-a94a-4476-8b9e-f59201547bd3</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42041,8143009144</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42382,9965407292</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>d8c32d90-fb5f-4230-8890-b27e7dbe1052</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=1</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Детские</Value>
            </Property>
            <Property>
              <ID>701</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>702</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>517</ID>
              <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
            </Property>
            <Property>
              <ID>518</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>d8c32d90-fb5f-4230-8890-b27e7dbe1052</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42041,9355829745</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42382,9965451736</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>9b91fabf-dd19-4b50-8890-4d81d19dfda9</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=11</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Региональные</Value>
            </Property>
            <Property>
              <ID>701</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>702</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>517</ID>
              <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
            </Property>
            <Property>
              <ID>518</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>9b91fabf-dd19-4b50-8890-4d81d19dfda9</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42041,9364160069</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42382,996549375</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>69daf825-1e12-44cf-940e-679c69a7332f</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=12</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Религиозные</Value>
            </Property>
            <Property>
              <ID>701</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>702</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>517</ID>
              <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
            </Property>
            <Property>
              <ID>518</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>69daf825-1e12-44cf-940e-679c69a7332f</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42041,9385848611</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42382,9965539005</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>ac9e2277-618e-4ea9-9e68-e91f6e8550ac</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=9</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>XXX</Value>
            </Property>
            <Property>
              <ID>701</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>702</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>517</ID>
              <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
            </Property>
            <Property>
              <ID>518</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>ac9e2277-618e-4ea9-9e68-e91f6e8550ac</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42372,5978038194</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42382,9965583218</Value>
            </Property>
          </Properties>
        </Item>
      </ChildItems>
    </Item>
    <Item>
      <ClassID>51</ClassID>
      <ItemID>5c35b398-8e05-4ed9-ba01-76268c2e1197</ItemID>
      <ItemPath></ItemPath>
      <ParentID>e94518a9-ea50-46a3-94f0-25f90b4e115a</ParentID>
      <Properties>
        <Property>
          <ID>515</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>512</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>532</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>700</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>553</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>4</ID>
          <Value>Фильмы</Value>
        </Property>
        <Property>
          <ID>701</ID>
          <Value>-1</Value>
        </Property>
        <Property>
          <ID>702</ID>
          <Value>-1</Value>
        </Property>
        <Property>
          <ID>517</ID>
          <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
        </Property>
        <Property>
          <ID>518</ID>
          <Value>0</Value>
        </Property>
        <Property>
          <ID>522</ID>
          <Value>0</Value>
        </Property>
        <Property>
          <ID>570</ID>
          <Value>0</Value>
        </Property>
        <Property>
          <ID>245</ID>
          <Value>5c35b398-8e05-4ed9-ba01-76268c2e1197</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>42181,7637193287</Value>
        </Property>
        <Property>
          <ID>50</ID>
          <Value>AceStream (Входной поток)</Value>
        </Property>
        <Property>
          <ID>42</ID>
          <Value>3</Value>
        </Property>
        <Property>
          <ID>4001</ID>
          <Value>1</Value>
        </Property>
      </Properties>
      <ChildItems>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>5ac45198-dbe3-4c8a-b5cb-46047cd7981e</ItemID>
          <ItemPath>http://1ttv.org/films.php</ItemPath>
          <ParentID>5c35b398-8e05-4ed9-ba01-76268c2e1197</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Главная</Value>
            </Property>
            <Property>
              <ID>701</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>702</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>517</ID>
              <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
            </Property>
            <Property>
              <ID>518</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>5ac45198-dbe3-4c8a-b5cb-46047cd7981e</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42181,7652742824</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42382,9966380556</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>1c9b6217-09c5-489c-8d77-334901c49e22</ItemID>
          <ItemPath>http://1ttv.org/film_selector.php?new&amp;sort_type=date</ItemPath>
          <ParentID>5c35b398-8e05-4ed9-ba01-76268c2e1197</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Новинки</Value>
            </Property>
            <Property>
              <ID>701</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>702</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>517</ID>
              <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
            </Property>
            <Property>
              <ID>518</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>1c9b6217-09c5-489c-8d77-334901c49e22</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42181,7672834722</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42382,9968246296</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>15a3cf0d-ff14-4d2f-936e-c2b7b4c10f07</ItemID>
          <ItemPath>http://1ttv.org/film_selector.php?serials&amp;sort_type=date</ItemPath>
          <ParentID>5c35b398-8e05-4ed9-ba01-76268c2e1197</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Сериалы</Value>
            </Property>
            <Property>
              <ID>701</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>702</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>517</ID>
              <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
            </Property>
            <Property>
              <ID>518</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>15a3cf0d-ff14-4d2f-936e-c2b7b4c10f07</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42181,7681074653</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42382,9971102199</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>84d981ac-af37-4dc6-aa7f-cce1d4bcb4f3</ItemID>
          <ItemPath>http://1ttv.org/film_selector.php?last_added&amp;sort_type=date</ItemPath>
          <ParentID>5c35b398-8e05-4ed9-ba01-76268c2e1197</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Последние фильмы</Value>
            </Property>
            <Property>
              <ID>701</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>702</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>517</ID>
              <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
            </Property>
            <Property>
              <ID>518</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>84d981ac-af37-4dc6-aa7f-cce1d4bcb4f3</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42181,7694552431</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42382,9973339583</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>0de5a602-e8da-42f7-b746-712f10e53db5</ItemID>
          <ItemPath>http://1ttv.org/film_selector.php?specific=1080&amp;sort_type=date</ItemPath>
          <ParentID>5c35b398-8e05-4ed9-ba01-76268c2e1197</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Фильмы 1080</Value>
            </Property>
            <Property>
              <ID>701</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>702</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>517</ID>
              <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
            </Property>
            <Property>
              <ID>518</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>0de5a602-e8da-42f7-b746-712f10e53db5</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42181,7721687963</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42382,9975569444</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>8b1a06a8-906c-42c8-9885-1bd356b86682</ItemID>
          <ItemPath>http://1ttv.org/film_selector.php?specific=hd&amp;sort_type=date</ItemPath>
          <ParentID>5c35b398-8e05-4ed9-ba01-76268c2e1197</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Фильмы 720</Value>
            </Property>
            <Property>
              <ID>701</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>702</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>517</ID>
              <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
            </Property>
            <Property>
              <ID>518</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>8b1a06a8-906c-42c8-9885-1bd356b86682</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42181,7728997801</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42382,9977703009</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>67caf764-c4eb-4f6c-8f98-9b7d4b33aa9e</ItemID>
          <ItemPath>http://1ttv.org/film_selector.php?specific=3d&amp;sort_type=date</ItemPath>
          <ParentID>5c35b398-8e05-4ed9-ba01-76268c2e1197</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Фильмы 3D</Value>
            </Property>
            <Property>
              <ID>701</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>702</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>517</ID>
              <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
            </Property>
            <Property>
              <ID>518</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>67caf764-c4eb-4f6c-8f98-9b7d4b33aa9e</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42181,7767627083</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42382,9979218287</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>51</ClassID>
          <ItemID>28cbf1d9-383a-4903-bd43-ec8420e68634</ItemID>
          <ItemPath></ItemPath>
          <ParentID>5c35b398-8e05-4ed9-ba01-76268c2e1197</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value> Категории</Value>
            </Property>
            <Property>
              <ID>701</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>702</ID>
              <Value>-1</Value>
            </Property>
            <Property>
              <ID>517</ID>
              <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
            </Property>
            <Property>
              <ID>518</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>570</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>28cbf1d9-383a-4903-bd43-ec8420e68634</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42181,7843086458</Value>
            </Property>
          </Properties>
          <ChildItems>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>5ce7d6ec-d1d6-44e0-a62d-b80e675bc9f5</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=293&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Аниме</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>5ce7d6ec-d1d6-44e0-a62d-b80e675bc9f5</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,7846729282</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42382,9980370486</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>376ca783-2b11-43f9-9832-e020df5eb6cb</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=306&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Биография</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>376ca783-2b11-43f9-9832-e020df5eb6cb</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,786460706</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42382,998239375</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>7daa60dc-ca37-4b43-a178-91b89d977751</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=279&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Боевик</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>7daa60dc-ca37-4b43-a178-91b89d977751</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,7926891898</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42382,9984544444</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>ab401b7f-81ab-41aa-95db-3d8c85466746</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=326&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Вестерн</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>ab401b7f-81ab-41aa-95db-3d8c85466746</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,7938823958</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42382,9985619792</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>cb0d0ed9-d453-43cc-9105-50a3a4d4fc2d</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=315&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Военный</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>cb0d0ed9-d453-43cc-9105-50a3a4d4fc2d</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,7944740278</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42382,9988104514</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>ebe82366-bdf9-4676-a60c-ee95a9b425c3</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=313&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Детектив</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>ebe82366-bdf9-4676-a60c-ee95a9b425c3</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,7964300579</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42382,9990238542</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>aeb6b1a6-7597-46f2-9d3f-075f39669c50</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=308&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Детский</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>aeb6b1a6-7597-46f2-9d3f-075f39669c50</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,7971980787</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42382,9991553472</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>2eea7b3e-82a9-4e2b-b06d-355abfbf5c8f</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=314&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>XXX</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>2eea7b3e-82a9-4e2b-b06d-355abfbf5c8f</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,7977198148</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42382,9992908102</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>ed444744-0333-4bd9-828e-a9a2ac9fca09</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=275&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Документальный</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>ed444744-0333-4bd9-828e-a9a2ac9fca09</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,7984283218</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42382,9994762732</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>7f8d4c18-a6a4-4bfe-867f-4dd38a9bbea1</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=278&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Драма</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>7f8d4c18-a6a4-4bfe-867f-4dd38a9bbea1</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42382,9997421528</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8042588889</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>d053af0f-0929-483d-bf09-eff4accd09e3</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=331&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Игра</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>d053af0f-0929-483d-bf09-eff4accd09e3</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42382,9998340509</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8042588889</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>e26015aa-a302-464e-8e0c-73fc9d0bbdbe</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=319&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>История</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>e26015aa-a302-464e-8e0c-73fc9d0bbdbe</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8046012153</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42383,0000784028</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>9a0c586d-e873-4000-b293-49412d05ea7c</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=282&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Комедия</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>9a0c586d-e873-4000-b293-49412d05ea7c</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42383,0003418403</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8084392014</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>e847bab3-879f-4666-8f93-65233b4d0985</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=298&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Концерт</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>e847bab3-879f-4666-8f93-65233b4d0985</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8095269907</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42383,0004376389</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c8248eaa-3a1c-4555-bbfd-0295cf1fd700</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=286&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Короткометражка</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>c8248eaa-3a1c-4555-bbfd-0295cf1fd700</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,810422338</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42383,0006022222</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>4c051f60-320d-4a05-b62a-95d8fa9784b0</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=283&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Криминал</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>4c051f60-320d-4a05-b62a-95d8fa9784b0</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8135283449</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42383,0008416667</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>8dda60cf-8803-4f48-9658-d95381d6a64a</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=296&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Мелодрама</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>8dda60cf-8803-4f48-9658-d95381d6a64a</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8145252431</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42383,0011034491</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c235a50a-f51d-46b0-a973-598e9b233ad0</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=302&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Музыка</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>c235a50a-f51d-46b0-a973-598e9b233ad0</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,815244919</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42383,0012598032</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>56b2011e-ec7c-417d-9897-951cfd02957f</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=291&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Мультфильмы</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>56b2011e-ec7c-417d-9897-951cfd02957f</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8159469792</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42383,0015065509</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>d7c58a2a-0543-4b1e-ab34-2130ad23a8af</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=311&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Мюзикл</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>d7c58a2a-0543-4b1e-ab34-2130ad23a8af</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8167418171</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42383,0016632755</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>974c2ebe-91b3-463c-a1ec-5791e8dab8b8</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=304&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Новости</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>974c2ebe-91b3-463c-a1ec-5791e8dab8b8</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8177370023</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42383,0017622454</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>6efc6306-616d-4bc0-a1ed-6615ecebd38a</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=294&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Приключения</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>6efc6306-616d-4bc0-a1ed-6615ecebd38a</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8183569213</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42383,0019762731</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>6b7ca9c1-f6c3-4da5-8a6f-993ffa235a0b</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=309&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Реальное ТВ</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>6b7ca9c1-f6c3-4da5-8a6f-993ffa235a0b</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8191386574</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42383,0020962037</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>6245cff0-befa-44c7-b67a-5b9f339b4d18</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=297&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Семейный</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>6245cff0-befa-44c7-b67a-5b9f339b4d18</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8197535301</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42383,0023303357</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>65342193-143d-4575-a24c-53ab356648a3</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=318&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Спорт</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>65342193-143d-4575-a24c-53ab356648a3</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8202522569</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42383,0024659954</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>bd642bad-53a5-4ae5-91b5-3df44c78ebea</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=324&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Ток-шоу</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>bd642bad-53a5-4ae5-91b5-3df44c78ebea</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8213258218</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42383,0025684838</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>6e06a682-3690-433f-b9d9-52eee1f48769</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=280&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Триллер</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>6e06a682-3690-433f-b9d9-52eee1f48769</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,825048206</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42383,0028198611</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>de546538-ad52-4de9-820a-a5c40e157e5e</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=289&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Ужасы</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>de546538-ad52-4de9-820a-a5c40e157e5e</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8258326968</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42383,0030542708</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>a53af94a-2949-4499-be44-f4b321bc87de</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=284&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Фантастика</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>a53af94a-2949-4499-be44-f4b321bc87de</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8272954977</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42383,0032998958</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>261c6cc4-6552-405e-89c6-20c3ac4a7340</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=336&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Фильм-Нуар</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>261c6cc4-6552-405e-89c6-20c3ac4a7340</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8286096991</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42383,0034075347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>b62e88d2-fd51-4176-909f-6ac69d9ef3a4</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=301&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Фэнтези</Value>
                </Property>
                <Property>
                  <ID>701</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>702</ID>
                  <Value>-1</Value>
                </Property>
                <Property>
                  <ID>517</ID>
                  <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
                </Property>
                <Property>
                  <ID>518</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>b62e88d2-fd51-4176-909f-6ac69d9ef3a4</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8295659144</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42383,0036515509</Value>
                </Property>
              </Properties>
            </Item>
          </ChildItems>
        </Item>
      </ChildItems>
      <HmsTranscodingConfig>
        <TranscoderList>
          <Transcoder>
            <Name>ACEPLAYER</Name>
            <Path>%Registry\SOFTWARE\AceStream\InstallDir%\player\ace_player.exe</Path>
            <HomePage>http://www.acestream.org</HomePage>
            <Download>http://www.acestream.org</Download>
          </Transcoder>
        </TranscoderList>
        <TranscodingProfileList>
          <Profile>
            <TranscoderName>ACEPLAYER</TranscoderName>
            <TranscodingCondition></TranscodingCondition>
            <TranscodingConditionSyntaxType>PascalScript</TranscodingConditionSyntaxType>
            <TranscodingComment></TranscodingComment>
            <TranscodingFolder>Транскодирование для TorrentStream, AceStream медиа-ресурсов</TranscodingFolder>
            <TranscodingMediaType>3</TranscodingMediaType>
            <TranscodingMimeType></TranscodingMimeType>
            <TranscodingMimeTypeScript>var
  i: Integer;
  sFileExt: string;
begin
  if mpFileType &lt;&gt; &apos;&apos; then begin
    if SameText(mpFileType, &apos;mpegts&apos;) then  
      sFileExt := &apos;ts&apos;    
    else if SameText(mpFileType, &apos;mpeg&apos;) then
      sFileExt := &apos;mpg&apos;      
    else if MatchText(mpFileType, [&apos;matroska&apos;, &apos;matroska,webm&apos;]) then
      sFileExt := &apos;mkv&apos;
    else if SameText(mpFileType, &apos;asf&apos;) then  
      sFileExt := &apos;wmv&apos;    
    else begin  
      i := Pos(&apos;,&apos;, mpFileType);    
      if i &gt; 0 then    
        sFileExt := Copy(mpFileType, 1, i - 1)      
      else              
        sFileExt := mpFileType      
    end;    
    MimeType := HmsGetMimeType(sFileExt)
  end                                   
end.</TranscodingMimeTypeScript>
            <TranscodingMimeTypeSyntaxType>PascalScript</TranscodingMimeTypeSyntaxType>
            <TranscodingMode>0</TranscodingMode>
            <TranscodingParams>const
  csVideoLanParams = &apos;--no-crashdump --play-and-exit -Idummy --language en --demuxdump-file="&lt;OUTPUT FILE&gt;" --access=p2p_access "%s" :demux=dump&apos;;
var
  sInputFileName, sMediaResourceLink: string;  
begin
  sInputFileName := &apos;&lt;INPUT FILE&gt;&apos;;
  if InputFileName = &apos;-&apos; then begin
    sMediaResourceLink := HmsGetItemProperty(mpiMediaResourceLink);
    if Pos(&apos;--demuxdump-file&apos;, sMediaResourceLink) &gt; 0 then begin
      if not HmsRegExMatch(&apos;--access=p2p_access "(.*?)"&apos;, sMediaResourceLink, sInputFileName) then 
        HmsRegExMatch(&apos;"(.*?\.torrent)"&apos;, sMediaResourceLink, sInputFileName)
    end    
  end;
  TranscodingParams := Format(csVideoLanParams, [sInputFileName])  
end.</TranscodingParams>
            <TranscodingParamsSyntaxType>PascalScript</TranscodingParamsSyntaxType>
            <TranscodingProfile>AceStream (Входной поток)</TranscodingProfile>
            <TranscodingProfileActive>-1</TranscodingProfileActive>
            <TranscodingProfilePriority>16</TranscodingProfilePriority>
            <TranscodingProfileUuid>9b658aac-e270-40ba-9114-0ca9d833c2a1</TranscodingProfileUuid>
          </Profile>
        </TranscodingProfileList>
      </HmsTranscodingConfig>
    </Item>
  </ChildItems>
  <HmsTranscodingConfig>
    <TranscoderList>
      <Transcoder>
        <Name>HMSMPEG</Name>
        <Path>hmsmpeg.exe</Path>
        <HomePage>http://www.ffmpeg.org/</HomePage>
        <Download></Download>
      </Transcoder>
      <Transcoder>
        <Name>HmsMPEG</Name>
        <Path>Hmsmpeg.exe</Path>
        <HomePage>http://www.ffmpeg.org/</HomePage>
        <Download></Download>
      </Transcoder>
      <Transcoder>
        <Name>hmsMPEG</Name>
        <Path>hmsmpeg.exe</Path>
        <HomePage>http://www.ffmpeg.org/</HomePage>
        <Download></Download>
      </Transcoder>
    </TranscoderList>
    <TranscodingProfileList>
      <Profile>
        <TranscoderName>HMSMPEG</TranscoderName>
        <TranscodingCondition></TranscodingCondition>
        <TranscodingConditionSyntaxType>PascalScript</TranscodingConditionSyntaxType>
        <TranscodingComment></TranscodingComment>
        <TranscodingFolder>Транскодирование для TorrentStream, AceStream медиа-ресурсов</TranscodingFolder>
        <TranscodingMediaType>3</TranscodingMediaType>
        <TranscodingMimeType>video/mpeg</TranscodingMimeType>
        <TranscodingMimeTypeScript>begin
  //HmsLogMessage(1, &apos;cfgTranscodingFileFormat: &apos;+ cfgTranscodingFileFormat);
  if SameText(cfgTranscodingFileFormat, &apos;MPEG (DVD)&apos;) then
    FileExt := &apos;mpg&apos;
  else if Pos(&apos;MPEGTS&apos;, cfgTranscodingFileFormat) &gt; 0 then
    FileExt := &apos;ts&apos;
  else if Pos(&apos;ASF&apos;, cfgTranscodingFileFormat) &gt; 0 then
    FileExt := &apos;wmv&apos;
  else if SameText(cfgTranscodingFileFormat, &apos;MP4&apos;) then
    FileExt := &apos;mp4&apos;
  else if SameText(cfgTranscodingFileFormat, &apos;MPEG1&apos;) then
    FileExt := &apos;mpeg&apos;
  else
    FileExt := &apos;&apos;;    
  if FileExt &lt;&gt; &apos;&apos; then
    MimeType := HmsGetMimeType(FileExt)    
  else            
    MimeType := &apos;&apos;
//cfgTranscodingVideoMimeType
end.</TranscodingMimeTypeScript>
        <TranscodingMimeTypeSyntaxType>PascalScript</TranscodingMimeTypeSyntaxType>
        <TranscodingMode>1</TranscodingMode>
        <TranscodingParams>const
  csVlcParams = &apos;-Idummy --language en vlc://pause:2 --demuxdump-file="%s" --access=p2p_access "%s" :demux=dump&apos;;  
var
  sFileType, sInputFileName, sMediaResourceLink, sReadPipeName, sWritePipeName, sTranscodingParams: string;    
begin
  HmsLogMessage(mtiInfo, &apos;AceStream Transcoder: mpTitle: "&apos; + mpTitle + &apos;"&apos;);
  TranscodingResult := False;
  sInputFileName := InputFileName;
  if sInputFileName = &apos;-&apos; then begin
    sMediaResourceLink := HmsGetItemProperty(mpiMediaResourceLink);
    if sMediaResourceLink = "" then begin 
      HmsLogMessage(mtiInfo, &apos;AceStream Transcoder: no media resource available, stop processing&apos;);
      exit;
    end else if Pos(&apos;--demuxdump-file&apos;, sMediaResourceLink) &gt; 0 then begin
      if not HmsRegExMatch(&apos;--access=p2p_access "(.*?)"&apos;, sMediaResourceLink, sInputFileName) then 
        HmsRegExMatch(&apos;"(.*?\.torrent)"&apos;, sMediaResourceLink, sInputFileName);
    end else begin 
      sInputFileName := sMediaResourceLink;   
    end;
  end;      
  if HmsCreateDualPipe(sReadPipeName, sWritePipeName) then begin
    sTranscodingParams := Format(csVlcParams, [sWritePipeName, sInputFileName]);
    HmsLogMessage(mtiInfo, &apos;AceStream Transcoder: Start ACEPLAYER &apos; + sTranscodingParams);
    if HmsTranscodingExecute(&apos;ACEPLAYER&apos;, sTranscodingParams, False) then begin    
      if mpFileType &lt;&gt; &apos;&apos; then      
        sFileType := &apos;-f "&apos; + mpFileType + &apos;" &apos;
      else                          
        sFileType := &apos;&apos;;
      mpInternetItem := False;
      sTranscodingParams := HmsTranscodingProfileParams(&apos;Фильмы (основной)&apos;);
      sTranscodingParams := ReplaceStr(sTranscodingParams, &apos;&lt;HMSMPEG&gt; &apos;, sFileType);          
      sTranscodingParams := ReplaceStr(sTranscodingParams, &apos;&lt;INPUT FILE&gt;&apos;, sReadPipeName);      
      sTranscodingParams := sTranscodingParams + &apos; "&apos; + OutputFileName + &apos;"&apos;;
      HmsLogMessage(mtiInfo, &apos;AceStream Transcoder: Start transcoding HMSMPEG &apos; + sTranscodingParams);
      TranscodingResult := HmsTranscodingExecute(&apos;HMSMPEG&apos;, sTranscodingParams, True)          
    end 
  end 
end.</TranscodingParams>
        <TranscodingParamsSyntaxType>PascalScript</TranscodingParamsSyntaxType>
        <TranscodingProfile>AceStream (ACEPLAYER - FFMPEG)</TranscodingProfile>
        <TranscodingProfileActive>-1</TranscodingProfileActive>
        <TranscodingProfilePriority>37</TranscodingProfilePriority>
        <TranscodingProfileUuid>09d8f390-166e-4b6d-88cf-64820cf53475</TranscodingProfileUuid>
      </Profile>
    </TranscodingProfileList>
  </HmsTranscodingConfig>
</HmsMediaItem>
