<?xml version="1.0" encoding="utf-8"?>
<HmsMediaItem>
  <MediaType>3</MediaType>
  <ClassID>51</ClassID>
  <ItemID>1ea13c4f-c6ed-478b-afdc-d6a20117a8a7</ItemID>
  <ItemPath>http://ex-fs.net/</ItemPath>
  <ParentID>234DF17B-418C-4FDC-9DFE-CD0C586D2E76</ParentID>
  <Properties>
    <Property>
      <ID>4</ID>
      <Value>Ex-fs.net (wh)</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,482-576,722-1080,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>570</ID>
      <Value>2</Value>
    </Property>
    <Property>
      <ID>245</ID>
      <Value>1ea13c4f-c6ed-478b-afdc-d6a20117a8a7</Value>
    </Property>
    <Property>
      <ID>55</ID>
      <Value>http://ex-fs.net/templates/ex-fs/images/logo.png</Value>
    </Property>
    <Property>
      <ID>93</ID>
      <Value>41631,150353287</Value>
    </Property>
    <Property>
      <ID>550</ID>
      <Value>// VERSION = 2018.01.29
////////////////////////  Создание  списка  видео   ///////////////////////////
#define mpiJsonInfo 40032
#define mpiKPID     40033
#define DEBUG 0 // Флаг отладки. 1 - при неудачном получении ссылки сохранять файл на рабочий стол ex-fs.log. 0 - не сохранять

///////////////////////////////////////////////////////////////////////////////
//               Г Л О Б А Л Ь Н Ы Е   П Е Р Е М Е Н Н Ы Е                   //
THmsScriptMediaItem Podcast = GetRoot(); // Главная папка подкаста
string    gsUrlBase    = "http://ex-fs.net"; // База для относительных ссылок
int       gnTotalItems = 0;                    // Счётчик созданных элементов
TDateTime gStart       = Now;                  // Время начала запуска скрипта
string    gsTime       = "02:30:00.000";       // Продолжительность видео
string    gsTVDBInfo   = "";
bool gbUseSerialKPInfo = false;

///////////////////////////////////////////////////////////////////////////////
//                             Ф У Н К Ц И И                                 //

//////////////////////////////////////////////////////////////////////////////
// Установка переменной Podcast: поиск родительской папки, содержащий скрипт
THmsScriptMediaItem GetRoot() {
  Podcast = PodcastItem;
  while ((Trim(Podcast[550])==&apos;&apos;) &amp;&amp; (Podcast.ItemParent!=nil)) Podcast=Podcast.ItemParent;
  return Podcast;
}

///////////////////////////////////////////////////////////////////////////////
// Получение информации с Kinopoisk о сериале
void LoadKPSerialInfo() {
  string sID, sData, sHtml, sName, sVal, sHeaders, sYear; int nEpisode, nSeason, n; TRegExpr RE;
  if (gsTVDBInfo!=&apos;&apos;) return;
  sID = Trim(PodcastItem[100500]); // Получаем запомненный kinopoisk ID
  if (sID==&apos;&apos;) HmsRegExMatch(&apos;/images/(film|film_big)/(\\d+)&apos;, mpThumbnail, sID, 2); // Или пытаемся его получить из картинки
  if ((sID!=&apos;&apos;) &amp;&amp; (sID!=&apos;0&apos;)) {
    // Проверяем, была ли уже загружена информация для такого количества серий
    if ((PodcastItem[100508]!=&apos;&apos;) &amp;&amp; (PodcastItem[100508]==PodcastItem[100509])) {
      gsTVDBInfo = PodcastItem[100507];
      return;
    }
    sHeaders = &apos;Referer: https://kinopoisk.ru/\r\n&apos;+
               &apos;Accept-Encoding: gzip, deflate\r\n&apos;+
               &apos;User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:13.0) Gecko/20100101 Firefox/13.0\r\n&apos;;
    sHtml = HmsDownloadURL("https://www.kinopoisk.ru/film/"+sID+"/episodes/", sHeaders, true);
    if (HmsRegExMatch2(&apos;&lt;td[^&gt;]+class="news"&gt;([^&lt;]+),\\s+(\\d{4})&apos;, sHtml, sName, sYear)) {
      // Если получили оригинальное название сериала - пробуем загрузить инфу с картинками
      sName = ReplaceStr(sName, &apos; &apos;, &apos;_&apos;);
      gsTVDBInfo = HmsUtf8Decode(HmsDownloadURL(&apos;http://wonky.lostcut.net/tvdb.php?n=&apos;+sName+&apos;&amp;y=&apos;+sYear, sHeaders, true));
    }
    if (gsTVDBInfo==&apos;&apos;) {
      RE = TRegExpr.Create(&apos;(&lt;h[^&gt;]+moviename-big.*?)&lt;/h&apos;, PCRE_SINGLELINE);
      nSeason  = 1;
      nEpisode = 1;
      if (RE.Search(sHtml)) do {
        sName = HmsHtmlToText(re.Match());
        if (HmsRegExMatch("Сезон\\s*?(\\d+)", sName, sVal)) { nSeason=StrToInt(sVal); nEpisode=1; continue; }
        gsTVDBInfo += &apos;s&apos;+Str(nSeason)+&apos;e&apos;+Str(nEpisode)+&apos;=;t=&apos;+sName+&apos;|&apos;;
        nEpisode++;
      } while (RE.SearchAgain());
    }
    if (gsTVDBInfo==&apos;&apos;) gsTVDBInfo = &apos;-&apos;;
  }
  PodcastItem[100507] = gsTVDBInfo;          // Запоминаем инфу 
  PodcastItem[100509] = PodcastItem[100508]; // для такого количества серий
}

///////////////////////////////////////////////////////////////////////////////
// Получение реального названия и картинки для серии сериала из gsTVDBInfo
void GetSerialInfo(THmsScriptMediaItem Item, int nSeason, int nEpisode) {
  string sName, sImg;
  if (!gbUseSerialKPInfo ) return; if (gsTVDBInfo==&apos;&apos;) LoadKPSerialInfo();
  if (HmsRegExMatch2(&apos;s&apos;+Str(nSeason)+&apos;e&apos;+Str(nEpisode)+&apos;=(.*?);t=(.*?)\\|&apos;, gsTVDBInfo, sImg, sName)) {
    if (sImg !="") Item[mpiThumbnail] = sImg;
    if (sName!="") Item[mpiTitle    ] = Format("%.2d %s", [nEpisode, sName]);
    Item[mpiSeriesEpisodeNo   ] = nEpisode;
    Item[mpiSeriesSeasonNo    ] = nSeason;
    Item[mpiSeriesEpisodeTitle] = sName;
    Item[mpiSeriesTitle       ] = PodcastItem[mpiSeriesTitle];
  }
}

///////////////////////////////////////////////////////////////////////////////
// Формирование ссылки для воспроизведения через HDSDump.exe
void HDSLink(string sLink, string sQual = &apos;&apos;) {
  string sData, sExePath, sVal;
  sExePath = ProgramPath+&apos;\\Transcoders\\hdsdump.exe&apos;;
  MediaResourceLink = Format(&apos;cmd://"%s" --manifest "%s" --outfile "&lt;OUTPUT FILE&gt;"&apos;, [sExePath, sLink]);
  if (sQual       != &apos;&apos;) MediaResourceLink += &apos; --quality &apos; + sQual;
  if (mpTimeStart != &apos;&apos;) MediaResourceLink += &apos; --skip &apos;    + mpTimeStart;
  PodcastItem[mpiTimeSeekDisabled] = true;
  // Получение длительности видео, если она не установлена
  if ((Trim(PodcastItem[mpiTimeLength])==&apos;&apos;) || (RightCopy(PodcastItem[mpiTimeLength], 6)==&apos;00.000&apos;)) {
    sData = HmsDownloadUrl(sLink, &apos;Referer: &apos;+sLink, true);
    if (HmsRegExMatch(&apos;&lt;duration&gt;(\\d+)&apos;, sData, sVal))
      PodcastItem.Properties[mpiTimeLength] = StrToInt(sVal);
  }
}

///////////////////////////////////////////////////////////////////////////////
// Получение ссылки с moonwalk.cc
void GetLink_Moonwalk(string sLink) {
  string sHtml, sData, sJsData, sPost, sVer, sQual, sVal, sServ, sVar, sUrlBase;
  int i; float f; TRegExpr RE; bool bHdsDump, bQualLog;
  TJsonObject JSON, OPTIONS, POSTDATA;
  
  string sHeaders = sLink+&apos;\r\n&apos;+
                    &apos;Accept-Encoding: identity\r\n&apos;+
                    &apos;User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36\r\n&apos;;
  
  // Проверка установленных дополнительных параметров
  HmsRegExMatch(&apos;--quality=(\\w+)&apos;, mpPodcastParameters, sQual);
  bHdsDump = Pos(&apos;--hdsdump&apos;      , mpPodcastParameters) &gt; 0;
  bQualLog = Pos(&apos;--qualitylog&apos;   , mpPodcastParameters) &gt; 0;
  
  // Замена домена moonwalk.co и moonwalk.pw на moonwalk.cc
  HmsRegExReplace(&apos;(.*?moonwalk.)(co|pw)(.*)&apos;, sLink, &apos;$1cc$3&apos;, sLink);
  sHtml = HmsDownloadURL(sLink, &apos;Referer: &apos;+sHeaders);
  
  if (HmsRegExMatch(&apos;&lt;iframe[^&gt;]+src="(http.*?)"&apos;, sHtml, sLink)) {
    // Если внутри есть ссылка на iframe - загружаем его
    HmsRegExReplace(&apos;(.*?moonwalk.)(co|pw)(.*)&apos;, sLink, &apos;$1cc$3&apos;, sLink);
    sHtml = HmsDownloadURL(sLink, &apos;Referer: &apos;+sHeaders);
  }
  HmsRegExMatch2(&apos;(.*?//([^/]+))&apos;, sLink, sUrlBase, sServ); // Получаем UrlBase и домен
  sHeaders += &apos;Origin: &apos;+sUrlBase+&apos;\r\nX-Requested-With: XMLHttpRequest\r\n&apos;;

  JSON     = TJsonObject.Create();
  OPTIONS  = TJsonObject.Create();
  POSTDATA = TJsonObject.Create();
  try {

    // Ищем значения параметров (this.options)
    if (!HmsRegExMatch(&apos;VideoBalancer\\((.*?)\\);&apos;, sHtml, sData)) {
      HmsLogMessage(2, mpTitle+": Не найдены данные VideoBalancer в iframe."); 
      return;    
    }

    OPTIONS.LoadFromString(sData);

    // Если есть субтитры и их ещё локально не сохраняли - загружаем
    if ((OPTIONS.S["subtitles\\master_vtt"]!="") &amp;&amp; (!FileExists(PodcastItem[mpiSubtitleLanguage]))) {
      sData = HmsUtf8Decode(HmsDownloadURL(OPTIONS.S["subtitles\\master_vtt"], "Referer: "+sHeaders));
      RE = TRegExpr.Create(&apos;(\\d{2}:\\d{2}:[\\d:,.\\s-&gt;]+.*?)(?=\n\\d{2}:d{2}:|\n\\d+\n|$)&apos;, PCRE_SINGLELINE);
      i = 1; sVal = ""; // Форматируем
      if (RE.Search(sData)) do { sVal += Format("%d\r\n%s\r\n\r\n", [i, RE.Match]); i++; } while (RE.SearchAgain);
      sLink = HmsSubtitlesDirectory+&apos;\\&apos;+PodcastItem.ItemID+&apos;.srt&apos;;
      HmsStringToFile(sVal, sLink);             // Сохраняем субтитры локально
      PodcastItem[mpiSubtitleLanguage] = sLink; // Указываем новое расположение
    }

    // Получение ссылки на js-скрипт, где есть список параметров POST запроса
    if (!HmsRegExMatch(&apos;src="([^"]+/video-[^"]+.js)&apos;, sHtml, sVal)) {
      HmsLogMessage(2, mpTitle+": Не найдена ссылка на js-скрипт в iframe."); 
      return; 
    }      
    sJsData = HmsDownloadURL(HmsExpandLink(sVal, sUrlBase), &apos;Referer: &apos;+sLink);
    // Устанавливаем дополнительные заголовки и их значения
    if (HmsRegExMatch(&apos;headers:({.*?})&apos;, sJsData, sVal)) {
      JSON.LoadFromString(sVal);
      for (i=0; i &lt; JSON.Count; i++) {
        sVal = JSON.Values[i].AsString;
        if (HmsRegExMatch(&apos;this.options.(\\w+)&apos;, sVal, sVar)) sVal = OPTIONS.S[sVar];
        sHeaders += JSON.Names[i] + ": " + sVal + "\r\n";
      }
    }
    // Получаем параметры POST запроса
    if (!HmsRegExMatch(&apos;var\\s+\\w+=(\\{mw_key.*?\\})&apos;, sJsData, sData)) {
      HmsLogMessage(2, mpTitle+": Не найдены параметры для POST запроса."); 
      return; 
    }
    POSTDATA.LoadFromString(sData);
    // Формируем данные для POST
    sPost = "";
    for (i=0; i &lt; POSTDATA.Count; i++) {
      sVal = POSTDATA.Values[i].AsString;
      if (HmsRegExMatch2(&apos;(this.options.(\\w+))&apos;, sVal, sVer, sVar)) sVal = ReplaceStr(sVal, sVer, OPTIONS.S[sVar]);
      if (HmsRegExMatch(&apos;\\w+\\.(\\w+)&apos;, sVal, sVar)) HmsRegExMatch(&apos;window\\.&apos;+sVar+&apos;\\s*=\\s*[\&apos;"](.*?)[\&apos;"]&apos;, sHtml, sVal);
      sPost += POSTDATA.Names[i] + "=" + sVal + "&amp;";
    }
    // Get global variable
    if (HmsRegExMatch2("window\\[&apos;(\\w+)&apos;\\]\\s*=\\s*&apos;(\\w+)&apos;", sHtml, sVar, sVal))
      if (HmsRegExMatch("\\w+\\.(\\w+)\\s*=\\s*\\w+\\[[\"&apos;]"+sVar, sJsData, sVar)) 
        sPost += sVar + "=" + sVal;

    sLink = "/manifests/video/"+OPTIONS.S["video_token"]+"/all";

    sData = HmsSendRequest(sServ, sLink, &apos;POST&apos;, &apos;application/x-www-form-urlencoded; Charset=UTF-8&apos;, sHeaders, sPost, 80, true);
    sData = ReplaceStr(HmsJsonDecode(sData), "\\r\\n", "");
    
  } finally { JSON.Free; OPTIONS.Free; POSTDATA.Free; }
  
  if (bHdsDump &amp;&amp; HmsRegExMatch(&apos;"manifest_f4m"\\s*?:\\s*?"(.*?)"&apos;, sData, sLink)) {
    
    HDSLink(sLink, sQual);
    
  } else if (HmsRegExMatch(&apos;"manifest_m3u8"\\s*?:\\s*?"(.*?)"&apos;, sData, sLink)) {
    MediaResourceLink = &apos; &apos; + sLink;
    // Получение длительности видео, если она не установлена
    // ------------------------------------------------------------------------
    sData = HmsDownloadUrl(sLink, &apos;Referer: &apos;+sHeaders, true);
    sVal  = Trim(PodcastItem.ItemOrigin[mpiTimeLength]);
    if ((sVal==&apos;&apos;) || (RightCopy(sVal, 6)==&apos;00.000&apos;)) {
      if (HmsRegExMatch(&apos;(http.*?)[\r\n$]&apos;, sData, sLink)) {
        sHtml = HmsDownloadUrl(sLink, &apos;Referer: &apos;+sHeaders, true);
        RE = TRegExpr.Create(&apos;#EXTINF:(\\d+.\\d+)&apos;, PCRE_SINGLELINE); f=0;
        if (RE.Search(sHtml)) do f += StrToFloatDef(RE.Match(1), 0); while (RE.SearchAgain());
        RE.Free;
        if (f &gt; 0) PodcastItem.ItemOrigin[mpiTimeLength] = HmsTimeFormat(Round(f))+&apos;.000&apos;;
      }
    }
    // ------------------------------------------------------------------------
    
    // Если установлен ключ --quality или в настройках подкаста выставлен приоритет выбора качества
    // ------------------------------------------------------------------------
    string sSelectedQual = &apos;&apos;, sMsg, sHeight; int iMinPriority = 99, iPriority; 
    if ((sQual!=&apos;&apos;) || (mpPodcastMediaFormats!=&apos;&apos;)) {
      TStringList QLIST = TStringList.Create();
      // Собираем список ссылок разного качества
      RE = TRegExpr.Create(&apos;#EXT-X-STREAM-INF:RESOLUTION=\\d+x(\\d+).*?[\r\n](http.+)$&apos;, PCRE_MULTILINE);
      if (RE.Search(sData)) do {
        sHeight = Format(&apos;%.5d&apos;, [StrToInt(RE.Match(1))]);
        sLink   = RE.Match(2);
        QLIST.Values[sHeight] = sLink;
        iPriority = HmsMediaFormatPriority(StrToInt(sHeight), mpPodcastMediaFormats);
        if ((iPriority &gt;= 0) &amp;&amp; (iPriority &lt; iMinPriority)) {
          iMinPriority  = iPriority;
          sSelectedQual = sHeight;
        }
      } while (RE.SearchAgain());
      RE.Free;
      QLIST.Sort();
      if (QLIST.Count &gt; 0) {
        if      (sQual==&apos;low&apos;   ) sSelectedQual = QLIST.Names[0];
        else if (sQual==&apos;medium&apos;) sSelectedQual = QLIST.Names[Round((QLIST.Count-1) / 2)];
        else if (sQual==&apos;high&apos;  ) sSelectedQual = QLIST.Names[QLIST.Count - 1];
        else if (HmsRegExMatch(&apos;(\\d+)&apos;, sQual, sQual)) {
          extended minDiff = 999999; // search nearest quality
          for (i=0; i &lt; QLIST.Count; i++) {
            extended diff = StrToInt(QLIST.Names[i]) - StrToInt(sQual);
            if (Abs(diff) &lt; minDiff) {
              minDiff = Abs(diff);
              sSelectedQual = QLIST.Names[i];
            }
          }
        }
      }
      if (sSelectedQual != &apos;&apos;) MediaResourceLink = &apos; &apos; + QLIST.Values[sSelectedQual];
      if (bQualLog) {
        sMsg = &apos;Доступное качество: &apos;;
        for (i = 0; i &lt; QLIST.Count; i++) {
          if (i&gt;0) sMsg += &apos;, &apos;;
          sMsg += IntToStr(StrToInt(QLIST.Names[i])); // Обрезаем лидирующие нули
        }
        if (sSelectedQual != &apos;&apos;) sSelectedQual = IntToStr(StrToInt(sSelectedQual));
        else sSelectedQual = &apos;Auto&apos;;
        sMsg += &apos;. Выбрано: &apos; + sSelectedQual;
        HmsLogMessage(1, mpTitle+&apos;. &apos;+sMsg);
      }
      QLIST.Free;
    }
    // ------------------------------------------------------------------------
    
  } else if (HmsRegExMatch(&apos;"manifest_mp4"\\s*?:\\s*?"(.*?)"&apos;, sData, sLink)) {
    sData = HmsDownloadURL(sLink, &apos;Referer: &apos;+sHeaders);
    // Поддержка установленных приоритетов качества в настройках подкаста
    JSON = TJsonObject.Create();
    int height, selHeight=0, minPriority=99, priority, maxHeight;
    if (sQual==&apos;medium&apos;) sQual=&apos;480&apos;; if (sQual==&apos;low&apos;) sQual=&apos;360&apos;;
    maxHeight = StrToIntDef(sQual, 4320);
    try {
      JSON.LoadFromString(sData);
      for (i=0; i&lt;JSON.Count; i++) {
        sVer  = JSON.Names[i];
        sLink = JSON.S[sVer];
        height = StrToIntDef(sVer, 0);
        if ((sQual!=&apos;&apos;) &amp;&amp; (sQual==sVer)) { MediaResourceLink = sLink; selHeight = height; break; }
        if (mpPodcastMediaFormats!=&apos;&apos;) {
          priority = HmsMediaFormatPriority(height, mpPodcastMediaFormats);
          if ((priority&gt;=0) &amp;&amp; (priority&lt;minPriority)) {
            MediaResourceLink = sLink; minPriority = priority;
          }
        } else if ((height &gt; selHeight) &amp;&amp; (height &lt;= maxHeight)) {
          MediaResourceLink = sLink; selHeight = height;
        }
      }
    } finally { JSON.Free(); }
    
  } else {
    HmsLogMessage(2, mpTitle+&apos;: Ошибка получения данных от new_session.&apos;);
    if (DEBUG==1) {
      if (ServiceMode) sVal = SpecialFolderPath(0x37); // Общая папака "Видео"
        else           sVal = SpecialFolderPath(0);    // Рабочий стол
        sVal = IncludeTrailingBackslash(sVal)+&apos;Moonwalk.log&apos;;
      HmsStringToFile(sHeaders+&apos;\r\nsHtml:\r\n&apos;+sHtml+&apos;\r\nsPost:\r\n&apos;+sPost+&apos;\r\nsData:\r\n&apos;+sData, sVal);
      HmsLogMessage(1, mpTitle+&apos;: Создан лог файл &apos;+sVal);
    }
  }
} // Конец функции поулчения ссылки с moonwalk.cc

///////////////////////////////////////////////////////////////////////////////
// Создание информационной ссылки
void CreateInfoItem(string sName, TStrings INFO) {
  THmsScriptMediaItem Item; string sVal = Trim(INFO.Values[sName]);
  if ((sVal=="") || (sVal=="-")) return;
  Item = HmsCreateMediaItem(&apos;Info&apos;+IntToStr(PodcastItem.ChildCount), PodcastItem.ItemID);
  Item[mpiTitle     ] = sName+&apos;: &apos;+sVal;
  Item[mpiThumbnail ] = &apos;http://wonky.lostcut.net/vids/info.jpg&apos;;
  Item[mpiTimeLength] = 20;
  Item[mpiCreateDate] = VarToStr(IncTime(gStart,0,-gnTotalItems,0,0));
  gnTotalItems++;
  // ---- Формирование и сохранение текста для отображения видео информации ---
  string sInfo=&apos;&apos;;
  for (int i=0; i&lt;INFO.Count; i++) {
    sName = INFO.Names[i];
    if (HmsRegExMatch(&apos;(Описание|Жанр|Название|Постер|Трейлер)&apos;, sName, &apos;&apos;)) continue;
    sInfo += "&lt;c:#FFC3BD&gt;"+sName+": &lt;/c&gt;"+INFO.Values[sName]+" ";
    if (!HmsRegExMatch(&apos;(Год|IMDb)&apos;, sName, &apos;&apos;)) sInfo += "|";
  }
  sInfo = Copy(sInfo, 1, Length(sInfo)-1);
  
  TStrings INFOTEXT = TStringList.Create();  
  INFOTEXT.Values[&apos;Poster&apos;] = mpThumbnail;
  INFOTEXT.Values[&apos;Title&apos; ] = INFO.Values[&apos;Название&apos;];
  INFOTEXT.Values[&apos;Info&apos;  ] = Trim(sInfo);
  INFOTEXT.Values[&apos;Categ&apos; ] = INFO.Values[&apos;Жанр&apos;    ];
  INFOTEXT.Values[&apos;Descr&apos; ] = INFO.Values[&apos;Описание&apos;];
  Item[1001001] = INFOTEXT.Text;
  INFOTEXT.Free();
  // ---------------------------------
}

///////////////////////////////////////////////////////////////////////////////
// Создание ссылки-ошибки
void CreateErrorItem(string sMsg) {
  THmsScriptMediaItem Item = HmsCreateMediaItem(&apos;Err&apos;+IntToStr(PodcastItem.ChildCount), PodcastItem.ItemID);
  Item[mpiTitle     ] = sMsg;
  Item[mpiThumbnail ] = &apos;http://wonky.lostcut.net/icons/symbol-error.png&apos;;
}

///////////////////////////////////////////////////////////////////////////////
// Создание папки или подкаста
THmsScriptMediaItem CreateFolder(THmsScriptMediaItem ParentFolder, string sName, string sLink, string sImg=&apos;&apos;) {
  THmsScriptMediaItem Item = ParentFolder.AddFolder(sLink); // Создаём папку с указанной ссылкой
  Item[mpiTitle     ] = sName; // Присваиваем наименование
  Item[mpiThumbnail ] = sImg;  // Картинка
  Item[mpiCreateDate] = DateTimeToStr(IncTime(gStart, 0, -gnTotalItems, 0, 0)); // Для обратной сортировки по дате создания
  Item[100500       ] = PodcastItem[100500];
  gnTotalItems++;             // Увеличиваем счетчик созданных элементов
  return Item;                // Возвращаем созданный объект
}

///////////////////////////////////////////////////////////////////////////////
// Создание ссылки на видео
THmsScriptMediaItem CreateMediaItem(THmsScriptMediaItem Folder, string sTitle, string sLink, string sImg, string sTime=&apos;&apos;) {
  THmsScriptMediaItem Item = HmsCreateMediaItem(sLink, Folder.ItemID);
  Item[mpiTitle     ] = sTitle;
  Item[mpiThumbnail ] = sImg;
  Item[mpiCreateDate] = VarToStr(IncTime(gStart,0,-gnTotalItems,0,0));
  Item[mpiTimeLength] = sTime;
  gnTotalItems++;
  return Item;
}

///////////////////////////////////////////////////////////////////////////////
// ----------------- Формирование видео с картинкой с информацией о фильме ----
bool VideoPreview() {
  string sVal, sFileImage, sPoster, sTitle, sDescr, sCateg, sInfo, sLink, sData;
  int xMargin=7, yMargin=10, nSeconds=10, n; 
  string gsCacheDir      = IncludeTrailingBackslash(HmsTempDirectory)+&apos;Moonwalk/&apos;;
  string gsPreviewPrefix = "Moonwalk";
  float nH=cfgTranscodingScreenHeight, nW=cfgTranscodingScreenWidth;
  // Проверяем и, если указаны в параметрах подкаста, выставляем значения смещения от краёв
  if (HmsRegExMatch(&apos;--xmargin=(\\d+)&apos;, mpPodcastParameters, sVal)) xMargin=StrToInt(sVal);
  if (HmsRegExMatch(&apos;--ymargin=(\\d+)&apos;, mpPodcastParameters, sVal)) yMargin=StrToInt(sVal);
  
  if (Trim(PodcastItem[1001001])==&apos;&apos;) return; // Если нет инфы - выходим быстро!
    TStrings INFO = TStringList.Create();       // Создаём объект TStrings
  INFO.Text  = PodcastItem[1001001];          // И загружаем туда информацию
  sPoster = INFO.Values[&apos;Poster&apos;];            // Постер
  sTitle  = INFO.Values[&apos;Title&apos; ];            // Самая верхняя надпись - Название
  sCateg  = INFO.Values[&apos;Genre&apos; ];            // Жанр
  sInfo   = INFO.Values[&apos;Info&apos;  ];            // Блок информации
  sDescr  = INFO.Values[&apos;Descr&apos; ];
  if (sTitle==&apos;&apos;) sTitle = &apos; &apos;;
  ForceDirectories(gsCacheDir);
  sFileImage = ExtractShortPathName(gsCacheDir)+&apos;videopreview_&apos;; // Файл-заготовка для сохранения картинки
  sDescr = Copy(sDescr, 1, 3000); // Если блок описания получился слишком большой - обрезаем
  
  INFO.Text = ""; // Очищаем объект TStrings для формирования параметров запроса
  INFO.Values[&apos;prfx&apos;  ] = gsPreviewPrefix;  // Префикс кеша сформированных картинок на сервере
  INFO.Values[&apos;title&apos; ] = sTitle;           // Блок - Название
  INFO.Values[&apos;info&apos;  ] = sInfo;            // Блок - Информация
  INFO.Values[&apos;categ&apos; ] = sCateg;           // Блок - Жанр/категории
  INFO.Values[&apos;descr&apos; ] = sDescr;           // Блок - Описание фильма
  INFO.Values[&apos;mlinfo&apos;] = &apos;20&apos;;             // Максимальное число срок блока Info
  INFO.Values[&apos;w&apos; ] = IntToStr(Round(nW));  // Ширина кадра
  INFO.Values[&apos;h&apos; ] = IntToStr(Round(nH));  // Высота кадра
  INFO.Values[&apos;xm&apos;] = IntToStr(xMargin);    // Отступ от краёв слева/справа
  INFO.Values[&apos;ym&apos;] = IntToStr(yMargin);    // Отступ от краёв сверху/снизу
  INFO.Values[&apos;bg&apos;] = &apos;http://www.pageresource.com/wallpapers/wallpaper/noir-blue-dark_3512158.jpg&apos;; // Катринка фона (кэшируется на сервере) 
  INFO.Values[&apos;fx&apos;] = &apos;3&apos;; // Номер эффекта для фона: 0-нет, 1-Blur, 2-more Blur, 3-motion Blur, 4-radial Blur
  INFO.Values[&apos;fztitle&apos;] = IntToStr(Round(nH/14)); // Размер шрифта блока названия (тут относительно высоты кадра)
  INFO.Values[&apos;fzinfo&apos; ] = IntToStr(Round(nH/22)); // Размер шрифта блока информации
  INFO.Values[&apos;fzcateg&apos;] = IntToStr(Round(nH/26)); // Размер шрифта блока жанра/категории
  INFO.Values[&apos;fzdescr&apos;] = IntToStr(Round(nH/18)); // Размер шрифта блока описания
  // Если текста описания больше чем нужно - немного уменьшаем шрифт блока
  if (Length(sDescr)&gt;890) INFO.Values[&apos;fzdescr&apos;] = IntToStr(Round(nH/20));
  // Если есть постер, задаём его параметры отображения (где, каким размером)
  if (sPoster!=&apos;&apos;) {
    INFO.Values[&apos;wpic&apos;  ] = IntToStr(Round(nW/4)); // Ширина постера (1/4 ширины кадра)
    INFO.Values[&apos;xpic&apos;  ] = &apos;10&apos;;    // x-координата постера
    INFO.Values[&apos;ypic&apos;  ] = &apos;10&apos;;    // y-координата постера
    if (mpFilePath==&apos;InfoUpdate&apos;) {
      INFO.Values[&apos;wpic&apos;  ] = IntToStr(Round(nW/6)); // Ширина постера (1/6 ширины кадра)
      INFO.Values[&apos;xpic&apos;  ] = IntToStr(Round(nW/2 - nW/12)); // центрируем
    }
    INFO.Values[&apos;urlpic&apos;] = sPoster; // Адрес изображения постера
  }
  sData = &apos;&apos;;  // Из установленных параметров формируем строку POST запроса
  for (n=0; n&lt;INFO.Count; n++) sData += &apos;&amp;&apos;+Trim(INFO.Names[n])+&apos;=&apos;+HmsHttpEncode(INFO.Values[INFO.Names[n]]);
  INFO.Free(); // Освобождаем объект из памяти, теперь он нам не нужен
  // Делаем POST запрос не сервер формирования картинки с информацией
  sLink = HmsSendRequestEx(&apos;wonky.lostcut.net&apos;, &apos;/videopreview.php?p=&apos;+gsPreviewPrefix, &apos;POST&apos;, 
  &apos;application/x-www-form-urlencoded&apos;, &apos;&apos;, sData, 80, 0, &apos;&apos;, true);
  // В ответе должна быть ссылка на сформированную картинку
  if (LeftCopy(sLink, 4)!=&apos;http&apos;) {HmsLogMessage(2, &apos;Ошибка получения файла информации videopreview.&apos;); return;}
  // Сохраняем сформированную картинку с информацией в файл на диске
  HmsDownloadURLToFile(sLink, sFileImage);
  // Копируем и нумеруем файл картики столько раз, сколько секунд мы будем её показывать
  for (n=1; n&lt;=nSeconds; n++) CopyFile(sFileImage, sFileImage+Format(&apos;%.3d.jpg&apos;, [n]), false);
  // Для некоторых телевизоров (Samsung) видео без звука отказывается проигрывать, поэтому скачиваем звук тишины
  char sFileMP3 = ExtractShortPathName(HmsTempDirectory)+&apos;\\silent.mp3&apos;;
  try {
    if (!FileExists(sFileMP3)) HmsDownloadURLToFile(&apos;http://wonky.lostcut.net/mp3/silent.mp3&apos;, sFileMP3);
    sFileMP3 = &apos;-i "&apos;+sFileMP3+&apos;"&apos;;
  } except { sFileMP3=&apos;&apos;; }
  // Формируем из файлов пронумерованных картинок и звукового команду для формирования видео
  MediaResourceLink = Format(&apos;%s -f image2 -r 1 -i "%s" -c:v libx264 -pix_fmt yuv420p &apos;, [sFileMP3, sFileImage+&apos;%03d.jpg&apos;]);
}

///////////////////////////////////////////////////////////////////////////////
// Получение названий и картинок серий сериала
void GetSerialInfoFromImdb(string sName, TStrings INFO) {
  string sData, sLink, sID, sKey, sImg, sVal; int nSeason, nEpisode, nYear;
  TJsonObject JSON, MOVIE, SEASON, EPISODE; TJsonArray SEASONS, EPISODES;
  
  sLink = &apos;http://www.myapifilms.com/imdb/idIMDB?format=json&amp;language=ru&amp;token=c5c8d3f3-0524-4c66-90df-e2e727b2e628&amp;&amp;seasons=1&amp;title=&apos;+HmsHttpEncode(sName);
  sData = HmsRemoveLineBreaks(HmsDownloadURL(sLink, &apos;&apos;, true));
  
  JSON = TJsonObject.Create();
  try {
    JSON.LoadFromString(sData);
    nYear   = StrToIntDef(LeftCopy(JSON.O[&apos;0&apos;].S[&apos;year&apos;], 4), 0);
    MOVIE   = JSON.O[&apos;data\\movies\\0&apos;];
    if (MOVIE == nil) return;
    SEASONS = MOVIE[&apos;seasons&apos;].AsArray();
    if (SEASONS == nil) return;
    for (nSeason=0; nSeason&lt;SEASONS.Length; nSeason++) {
      EPISODES = SEASONS[nSeason].A[&apos;episodes&apos;];
      for (nEpisode=0; nEpisode&lt;EPISODES.Length; nEpisode++) {
        EPISODE = EPISODES[nEpisode];
        sImg = EPISODE.S[&apos;urlPoster&apos;]; if (sImg==&apos;&apos;) continue;
        sKey = IntToStr(nSeason+1)+&apos;x&apos;+EPISODE.S[&apos;episode&apos;];
        INFO.Values[sKey] = sImg;
      }
    } 
    
  } finally { JSON.Free; } 
}

///////////////////////////////////////////////////////////////////////////////
// Создание списка серий сериала с Moonwalk.cc
void CreateMoonwallkLinks(string sLink) {
  String sHtml, sData, sServ, sRef, sSerie, sVal, sHeaders, sID, sSub, sFile;
  int n, nEpisode, nSeason; THmsScriptMediaItem Item, Folder = PodcastItem;
  TJsonObject JSON; TJsonArray JARRAY, EPISODE; bool bOneSeason;
  
  sHeaders = sLink+&apos;/\r\n&apos;+
             &apos;Accept-Encoding: gzip, deflate\r\n&apos;+
             &apos;User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:13.0) Gecko/20100101 Firefox/13.0\r\n&apos;+
             &apos;X-Requested-With: XMLHttpRequest\r\n&apos;;
  
  gbUseSerialKPInfo = Pos("--usekpinfo", mpPodcastParameters) &gt; 0;
  
  sHtml = HmsDownloadURL(sLink, &apos;Referer: &apos;+sHeaders, true);
  if (HmsRegExMatch(&apos;&lt;body&gt;\\s*?&lt;/body&gt;&apos;, sHtml, &apos;&apos;)) {
    HmsRegExReplace(&apos;(.*?moonwalk.)(co|pw)(.*)&apos;, sLink, &apos;$1cc$3&apos;, sLink);
    sHtml = HmsDownloadURL(sLink, &apos;Referer: &apos;+sHeaders, true);
  }
  if (HmsRegExMatch(&apos;&lt;iframe[^&gt;]+src="(.*?)"&apos;, sHtml, sLink)) {
    if (LeftCopy(sLink, 2)=="//") sLink = "http:" + Trim(sLink);
    sHtml = HmsDownloadURL(sLink, &apos;Referer: &apos;+sHeaders, true);
  }
  sHtml = HmsRemoveLineBreaks(HmsUtf8Decode(sHtml));
  
  if (Trim(mpSeriesTitle)==&apos;&apos;) { PodcastItem[mpiSeriesTitle] = mpTitle; HmsRegExMatch(&apos;^(.*?)[\\(\\[]&apos;, mpTitle, PodcastItem[mpiSeriesTitle]); }
  
  if (!HmsRegExMatch(&apos;VideoBalancer\\((.*?)\\);&apos;, sHtml, sData)) {
    if (HmsRegExMatch(&apos;&gt;([^&lt;]+Error.*?)&lt;&apos;, sHtml, sVal))
      CreateErrorItem(sVal);
    HmsLogMessage(2, mpTitle+&apos;: Не найдены данные VideoBalancer в iframe.&apos;);
    return;    
  }
  JSON = TJsonObject.Create();
  try {
    JSON.LoadFromString(sData);
    HmsRegExMatch("&apos;(.*?)&apos;", JSON.S[&apos;ref&apos;], sRef);
    nSeason = 0;
    if (HmsRegExMatch2(&apos;^(.*?)\\?season=(\\d+)&apos;, sLink, sLink, sVal)) nSeason = StrToInt(sVal);
    
    // Подсчитываем количество серий и запоминаем в укромном месте
    n = JSON[&apos;episodes&apos;].Count; PodcastItem[100508] = Str(n);
    JARRAY = JSON.A[&apos;seasons&apos;];
    // Если в ссылке указан номер сезона - показываем только серии этого сезона
    // Если сезон всего один и номер его = 1, то сразу выкатываем серии
    if (JARRAY != nil) bOneSeason = (JARRAY.Length == 1) &amp;&amp; (JARRAY.I[0] == 1);
    if ((nSeason &gt; 0) || bOneSeason) {
      gsTime = &apos;00:45:00.000&apos;;
      JARRAY = JSON.A[&apos;episodes&apos;];
      for (n=0; n &lt; JARRAY.Length; n++) {
        EPISODE  = JARRAY[n].AsArray;
        nEpisode = JARRAY.I[n];
        sSerie   = Format("%.2d серия", [nEpisode]); // Форматируем номер в два знака
        Item = CreateMediaItem(Folder, sSerie, sLink+&apos;?season=&apos;+Str(nSeason)+&apos;&amp;episode=&apos;+Str(nEpisode)+&apos;&amp;ref=&apos;+sRef, mpThumbnail, gsTime);
        if (JSON.S["subtitles\\master_vtt"]!="") Item[mpiSubtitleLanguage] = HmsSubtitlesDirectory+&apos;\\&apos;+PodcastItem.ItemID+&apos;.srt&apos;;
        GetSerialInfo(Item, nSeason, nEpisode);
      }
    } else if (JARRAY != nil) {
      // Создаём список сезонов как папки
      for (n=0; n &lt; JARRAY.Length; n++) {
        nSeason  = JARRAY.I[n];
        sSerie   = Format("%d сезон", [nSeason]); // Форматируем номер в два знака
        Item = CreateFolder(Folder, sSerie, sLink+&apos;?season=&apos;+Str(nSeason)+&apos;&amp;ref=&apos;+sRef, mpThumbnail);
        Item[mpiSeriesTitle] = PodcastItem[mpiSeriesTitle];
      }
    } else {
      // Просто ссылка на фильм
      Item = CreateMediaItem(Folder, mpTitle, sLink, mpThumbnail, gsTime);
    }

  } finally { JSON.Free; }
}

///////////////////////////////////////////////////////////////////////////////
void SetInfo(string sHtml, string sPattern, string sName, TStrings INFO) {
  string sVal;
  if (HmsRegExMatch(sPattern, sHtml, sVal)) {
    sVal = ReplaceStr(HmsHtmlToText(sVal), &apos;|&apos;, &apos;&apos;);
    if ((sVal!=&apos;&apos;) &amp;&amp; (sVal!=&apos;-&apos;))
      INFO.Values[sName] = sVal;
  } 
}

///////////////////////////////////////////////////////////////////////////////
// Создание информационных ссылок (Жанр, Страна, Рейтинг и проч.)
void CreateInfoItems() {
  string sHtml, sVal, sVal2, sTime, sKPID, sImg; TStrings INFO;
  if (!HmsRegExMatch(&apos;kinopoisk.ru/images/film/(\\d+)&apos;, mpThumbnail, sKPID)) return;
  sHtml = HmsDownloadURL(&apos;https://www.kinopoisk.ru/film/&apos;+sKPID+&apos;/&apos;, &apos;Referer: http://ivi.ru&apos;, true);
  sHtml = HmsRemoveLineBreaks(HmsUtf8Decode(sHtml));
  
  INFO = TStringList.Create;
  SetInfo(sHtml, &apos;(&lt;h1.*?&lt;/h1&gt;)&apos;           , &apos;Название&apos;, INFO);
  SetInfo(sHtml, &apos;&gt;год&lt;/td&gt;(.*?)&lt;/tr&gt;&apos;     , &apos;Год&apos;     , INFO);
  SetInfo(sHtml, &apos;&gt;страна&lt;/td&gt;(.*?)&lt;/tr&gt;&apos;  , &apos;Страна&apos;  , INFO);
  SetInfo(sHtml, &apos;&gt;слоган&lt;/td&gt;(.*?)&lt;/tr&gt;&apos;  , &apos;Слоган&apos;  , INFO);
  SetInfo(sHtml, &apos;&gt;режиссер&lt;/td&gt;(.*?)&lt;/tr&gt;&apos;, &apos;Режиссер&apos;, INFO);
  SetInfo(sHtml, &apos;&gt;сценарий&lt;/td&gt;(.*?)&lt;/tr&gt;&apos;, &apos;Сценарий&apos;, INFO);
  SetInfo(sHtml, &apos;&gt;продюсер&lt;/td&gt;(.*?)&lt;/tr&gt;&apos;, &apos;Продюсер&apos;, INFO);
  SetInfo(sHtml, &apos;&gt;оператор&lt;/td&gt;(.*?)&lt;/tr&gt;&apos;, &apos;Оператор&apos;, INFO);
  SetInfo(sHtml, &apos;&gt;бюджет&lt;/td&gt;(.*?)&lt;/tr&gt;&apos;  , &apos;Бюджет&apos;  , INFO);
  SetInfo(sHtml, &apos;&gt;возраст&lt;/td&gt;(.*?)&lt;/tr&gt;&apos; , &apos;Возраст&apos; , INFO);
  SetInfo(sHtml, &apos;&gt;жанр&lt;/td&gt;(.*?)&lt;/(span|tr)&gt;&apos;, &apos;Жанр&apos; , INFO);
  SetInfo(sHtml, &apos;&gt;IMDb:(.*?)&lt;/&apos;           , &apos;IMDb&apos;    , INFO);
  
  SetInfo(sHtml, &apos;&gt;сборы в США&lt;/td&gt;(.*?)&lt;/(a|tr)&gt;&apos;   , &apos;Сборы в США&apos;   , INFO);
  SetInfo(sHtml, &apos;&gt;сборы в мире&lt;/td&gt;(.*?)&lt;/(a|tr)&gt;&apos;  , &apos;Сборы в мире&apos;  , INFO);
  SetInfo(sHtml, &apos;&gt;сборы в России&lt;/td&gt;(.*?)&lt;/(a|tr)&gt;&apos;, &apos;Сборы в России&apos;, INFO);
  SetInfo(sHtml, &apos;&gt;премьера (мир)&lt;/td&gt;(.*?)&lt;/(a|tr)&gt;&apos;, &apos;Премьера (мир)&apos;, INFO);
  SetInfo(sHtml, &apos;&gt;премьера (РФ)&lt;/td&gt;(.*?)&lt;/(a|tr)&gt;&apos; , &apos;Премьера (РФ)&apos; , INFO);
  
  if (HmsRegExMatch(&apos;"rating_ball"&gt;(.*?)&lt;/(span|tr)&gt;&apos;, sHtml, sVal)) {
    if (HmsRegExMatch(&apos;"ratingCount"&gt;(.*?)&lt;/(span|tr)&gt;&apos;, sHtml, sVal2)) sVal += &apos; (&apos;+HmsHtmlToText(sVal2)+&apos;)&apos;;
    INFO.Values[&apos;Рейтинг КП&apos;] = HmsHtmlToText(sVal);
  }
  if (HmsRegExMatch(&apos;&gt;время&lt;/td&gt;(.*?)&lt;/tr&gt;&apos;, sHtml, sVal)) {
    if (HmsRegExMatch(&apos;(\\d+)\\s*?мин.&apos;, sVal, sVal)) {
      INFO.Values[&apos;Продолжительность&apos;] = HmsTimeFormat(StrToInt(sVal) * 60);
    }
  }
  SetInfo(sHtml, &apos;(&lt;div[^&gt;]+"description".*?&lt;/div&gt;)&apos;, &apos;Описание&apos;, INFO);
  
  if (HmsRegExMatch(&apos;video_src[^&gt;]+content="[^&gt;"]+file=([^"&amp;]+)&apos;, sHtml, sVal)) {
    HmsRegExMatch(&apos;image_src[^&gt;]+href="(.*?)"&apos;, sHtml, sImg);
    if (HmsRegExMatch(&apos;video:duration[^&gt;]+content="(\\d+)"&apos;, sHtml, sTime))
      sTime = HmsTimeFormat(StrToInt(sTime))+".000";
    else
      sTime = "00:03:50.000";
    CreateMediaItem(PodcastItem, "Трейлер", HmsHttpDecode(sVal), sImg, sTime);
  }
  
  // Создаём выборочно информационные ссылки
  CreateInfoItem(&apos;Страна&apos;    , INFO);
  CreateInfoItem(&apos;Жанр&apos;      , INFO);
  CreateInfoItem(&apos;Режиссер&apos;  , INFO);
  CreateInfoItem(&apos;IMDb&apos;      , INFO);
  CreateInfoItem(&apos;Рейтинг КП&apos;, INFO);
  INFO.Free;
}

///////////////////////////////////////////////////////////////////////////////
// Создание ссылок на трейлеры
void CreateTrailersLinks(string sLink) {
  string sHtml, sName, sTitle, sVal, sImg;
  TRegExpr RE1, RE2; THmsScriptMediaItem Item;
  
  sHtml = HmsDownloadURL(sLink, &apos;Referer: &apos;+sLink, true);
  RE1 = TRegExpr.Create(&apos;&lt;!-- ролик --&gt;(.*?)&lt;!-- /ролик --&gt;&apos;, PCRE_SINGLELINE);
  RE2 = TRegExpr.Create(&apos;&lt;a[^&gt;]+href="/getlink.php[^&gt;]+link=([^&gt;]+\\.(mp4|mov|flv)).*?&lt;/a&gt;&apos;, PCRE_SINGLELINE);
  if (RE1.Search(sHtml)) do {
    if (!HmsRegExMatch(&apos;(&lt;a[^&gt;]+href="/film/\\d+/video/\\d+/".*?&lt;/a&gt;)&apos;, RE1.Match, sTitle)) continue;
    sTitle = HmsHtmlToText(sTitle);
    if (HmsRegExMatch(&apos;["\&apos;]previewFile["\&apos;]:\\s*?["\&apos;](.*?)["\&apos;]&apos;, RE1.Match, sVal)) {
      sImg = &apos;http://kp.cdn.yandex.net/&apos;+sVal;
    }
    if (RE2.Search(RE1.Match)) do {
      sLink = RE2.Match(1);
      sName = sTitle+&apos; &apos;+HmsHtmlToText(RE2.Match(0));
      Item  = PodcastItem.FindItemByProperty(mpiTitle, sName);
      if ((Item != null) &amp;&amp; (Item != nil))
        Item[mpiFilePath] = sLink;
      else 
        CreateMediaItem(PodcastItem, sName, sLink, sImg, &apos;00:03:50.000&apos;);
    } while (RE2.SearchAgain());
  
  } while (RE1.SearchAgain());
  RE1.Free; RE2.Free;
}

///////////////////////////////////////////////////////////////////////////////
//                     Г Л А В Н А Я   П Р О Ц Е Д У Р А                     //
///////////////////////////////////////////////////////////////////////////////
{
  
  if (PodcastItem.IsFolder) {
    PodcastItem.DeleteChildItems();
    
    if (HmsRegExMatch(&apos;kinopoisk.ru&apos;, mpFilePath, &apos;&apos;)) {
      CreateTrailersLinks(mpFilePath);

    } else {
      CreateMoonwallkLinks(mpFilePath);
      if ((Pos(&apos;?season&apos;, mpFilePath) &lt; 1) &amp;&amp; (Pos(&apos;--infoitems&apos;, mpPodcastParameters) &gt; 0)) {
        CreateInfoItems();
      }
    }
    
  } else {

    if (LeftCopy(mpFilePath, 4)==&apos;Info&apos;)
      VideoPreview();
    else if (HmsRegExMatch(&apos;\\.(mp4|mov|flv)$&apos;, mpFilePath, &apos;&apos;))
      MediaResourceLink = mpFilePath;
    else
      GetLink_Moonwalk(mpFilePath);
    
  }
  
}</Value>
    </Property>
    <Property>
      <ID>551</ID>
      <Value>C++Script</Value>
    </Property>
    <Property>
      <ID>530</ID>
      <Value>int gnMaxPages=10, gnMaxInGroup=100, gnItemsAdded=0; string gsUrlBase="http://ex-fs.net";
TDateTime gTimeStart = Now; bool gbGroupAlph, gbYearInTitle;

string 
  gsPatternBlock  = &apos;"MiniPost"(.*?)&lt;/div&gt;\\s*?&lt;/div&gt;&apos;,
  gsPatternTitle  = &apos;&lt;div class="MiniPostName"&gt;(.*?)&lt;/div&gt;&apos;,
  gsPatternLink   = &apos;class="MiniPostName".*?&lt;a[^&gt;]+href="(.*?)"&apos;,
  gsPatternImg    = &apos;&lt;img[^&gt;]+src="(.*?)"&apos;,
  gsPatternYear   = &apos;&lt;a[^&gt;]+href="/year/(\\d+)&apos;,
  gsPatternPages  = &apos;.*/page/(\\d+)/"&gt;\\d+&apos;;

// ------------------------------------ Получение название группы из имени ----
char GetGroupName(char sName) {
  char sGroupName = &apos;#&apos;;
  sName = Uppercase(sName);
  if (HmsRegExMatch(&apos;([A-ZА-Я0-9].*)&apos;, sName, sName)) sGroupName = LeftCopy(sName, 1);
  if (HmsRegExMatch(&apos;[0-9]&apos;, sGroupName, sGroupName)) sGroupName = &apos;#&apos;;
  if (HmsRegExMatch(&apos;[A-Z]&apos;, sGroupName, sGroupName)) sGroupName = &apos;A..Z&apos;;
  return sGroupName;
}

// --------------- Создание ссылок на фильм/сериал/передачу из TStringList ----
void  CreateItemsFromList(TStringList LIST, THmsScriptMediaItem ParentFolder) {
  int i; char sValue, sLink, sTitle, sYear, sGroup, sCurGroup=&apos;&apos;, sImg; 
  THmsScriptMediaItem GroupFolder = ParentFolder, Item; 
  
  for (i=0; i&lt;LIST.Count; i++) {
    sValue = LIST.Strings[i];
    sGroup = ExtractWord(1, sValue, &apos;|&apos;);
    sTitle = ExtractWord(2, sValue, &apos;|&apos;);
    sLink  = ExtractWord(3, sValue, &apos;|&apos;);
    sYear  = ExtractWord(4, sValue, &apos;|&apos;);
    sImg   = ExtractWord(5, sValue, &apos;|&apos;);
    if (gbYearInTitle) sTitle = Trim(sTitle)+" ("+sYear+")";
    if ((sCurGroup != sGroup) &amp;&amp; (Trim(sGroup) != "")) {
      GroupFolder = ParentFolder.AddFolder(sGroup);
      GroupFolder[mpiCreateDate     ] = VarToStr(IncTime(gTimeStart,0,-gnItemsAdded,0,0));
      GroupFolder[mpiFolderSortOrder] = "-mpCreateDate";
    }
    Item = GroupFolder.AddFolder(sLink);
    Item[mpiTitle          ] = sTitle;
    Item[mpiCreateDate     ] = VarToStr(IncTime(gTimeStart,0,-gnItemsAdded,0,0));
    Item[mpiThumbnail      ] = sImg;
    Item[mpiYear           ] = sYear;
    Item[mpiFolderSortOrder] = "-mpCreateDate";

    gnItemsAdded++;
  }
}                                                  

///////////////////////////////////////////////////////////////////////////////
// Проверка актуальности версии функции GetLink_Moonwalk в скриптах
void CheckMoonwalkFunction() {
  string sData, sFuncOld, sFuncNew; THmsScriptMediaItem PodcastFolder=FolderItem; int nTimePrev, nTimeNow;
  int    mpiMoonwalkUpdateTime    = 100602;
  string sPatternMoonwalkFunction = "(// Получение ссылки с moonwalk.cc.*?// Конец функции поулчения ссылки с moonwalk.cc)";
  // Ищем скрипт получения ссылки на поток
  if ((Trim(PodcastFolder[550])==&apos;&apos;) &amp;&amp; (PodcastFolder.ItemParent!=nil)) PodcastFolder = PodcastFolder.ItemParent;
  if (PodcastFolder.ItemParent==nil) return;              // Если не нашли - выходим
  // Если проверяемая функция присутствует в скрипте - получаем текст функции в переменную sFuncOld
  if (HmsRegExMatch(sPatternMoonwalkFunction, PodcastFolder[550], sFuncOld, 1, PCRE_SINGLELINE)) {
    nTimePrev = StrToIntDef(PodcastFolder[mpiMoonwalkUpdateTime], 0);
    nTimeNow  = DateTimeToTimeStamp1970(Now, false);
    if (nTimeNow-nTimePrev &lt; 1800) return;                // Если после последней проверки прошло меньше получаса - выходим
    PodcastFolder[mpiMoonwalkUpdateTime] = Str(nTimeNow); // Запоминаем время проверки
    sData = HmsUtf8Decode(HmsDownloadURL("https://gist.githubusercontent.com/WendyH/3092dc755ad4a6c412e2fcd17c28d096/raw/GetLink_Moonwalk.cpp?_="+Str(nTimeNow)));
    if (HmsRegExMatch(sPatternMoonwalkFunction, sData, sFuncNew, 1, PCRE_SINGLELINE)) { 
      if (HmsMD5SumOfString(sFuncOld)==HmsMD5SumOfString(sFuncNew)) return;    // Если версия скрипта не отличается - выходим
      PodcastFolder[550] = ReplaceStr(PodcastFolder[550], sFuncOld, sFuncNew); // Заменяем старую функцию на новую
      HmsLogMessage(2, PodcastFolder[mpiTitle]+": Обновлена функция получения ссылки с moonwalk.cc!");
    }
  }
  //Вызов в главной процедуре: if (Pos(&apos;--noupdatemoonwalk&apos;, mpPodcastParameters)&lt;1) CheckMoonwalkFunction();
}


// ----------------------------------------------------------------------------
{
  char sHtml, sLink, sTitle, sVal, sYear, sImg; TRegExpr re; 
  THmsScriptMediaItem Item, Folder = FolderItem;
  int i, nPages, nGrp=0; bool bGrouping; char sGrp="";
  TStringList LIST = TStringList.Create();

  if (Pos(&apos;--noupdatemoonwalk&apos;, mpPodcastParameters)&lt;1) CheckMoonwalkFunction();

  sLink = mpFilePath;
  gbGroupAlph   = (Pos(&apos;--group=alph&apos; , mpPodcastParameters) &gt; 0);
  gbYearInTitle = (Pos(&apos;--yearintitle&apos;, mpPodcastParameters) &gt; 0);
  if (HmsRegExMatch(&apos;--maxingroup=(\\d+)&apos;, mpPodcastParameters, sVal)) gnMaxInGroup = StrToInt(sVal);

  // Если нет ссылки - делаем поиск названия
  if (LeftCopy(mpFilePath, 4) != "http") {
    if (Length(mpTitle)&lt;4) mpTitle += " :::"; // Фишка обхода ограничения на минимальную длину в 4 символа (двоеточие при самом поиске не учитывается)
    sLink = gsUrlBase+&apos;/?do=search&amp;subaction=search&amp;full_search=1&amp;titleonly=3&amp;story=&apos;+HmsHttpEncode(HmsUtf8Encode(mpTitle));
    sHtml = HmsUtf8Decode(HmsDownloadURL(sLink, gsUrlBase, true));
    gsPatternBlock  = &apos;SeaRchresultPostTitle(.*?)SeaRchresultPostOpisanie&apos;;
    gsPatternTitle  = &apos;(&lt;a.*?&lt;/a&gt;)&apos;;
    gsPatternLink   = &apos;&lt;a[^&gt;]+href="(.*?)"&apos;;
    gsPatternYear   = &apos;&lt;a[^&gt;]+href="/year/(\\d+)&apos;;
  } else {
    sHtml = HmsUtf8Decode(HmsDownloadURL(sLink, gsUrlBase, true));
  }
  FolderItem.DeleteChildItems();

  // Дозагрузка страниц
  if (HmsRegExMatch(gsPatternPages, sHtml, sVal, 1, PCRE_SINGLELINE)) {
    nPages = StrToInt(sVal);
    if (HmsRegExMatch(&apos;--maxpages=(\\d+)&apos;, mpPodcastParameters, sVal)) gnMaxPages = StrToInt(sVal); 
    if (nPages &gt; gnMaxPages) nPages = gnMaxPages; 
     for (i=2; i &lt;= nPages; i++) {
       HmsSetProgress(Trunc(i*100/nPages));
       HmsShowProgress(Format(&apos;%s: Загрузка страницы %d из %d&apos;, [mpTitle, i, nPages]));
       if (HmsCancelPressed()) break;
       sHtml+= HmsUtf8Decode(HmsDownloadURL(sLink+&apos;/page/&apos;+IntToStr(i)+&apos;/&apos;, gsUrlBase, true));
     }
    HmsHideProgress();
  }

  // Создание ссылок
  RE = TRegExpr.Create(gsPatternBlock, PCRE_SINGLELINE);
  try {
    // Определяем, если блоков в загруженном более чем gnMaxInGroup, включаем группировку
    i=0; if (RE.Search(sHtml)) do i++; while (RE.SearchAgain());
    bGrouping = (i &gt; gnMaxInGroup); i=0;

    if (RE.Search(sHtml)) do {
      sLink=&apos;&apos;; sYear=&apos;&apos;; sImg=&apos;&apos;;
      HmsRegExMatch(gsPatternTitle, RE.Match, sTitle);
      HmsRegExMatch(gsPatternImg  , RE.Match, sImg  );
      HmsRegExMatch(gsPatternLink , RE.Match, sLink );
      HmsRegExMatch(gsPatternYear , RE.Match, sYear );
      sTitle = ReplaceStr(HmsHtmlToText(sTitle), "/", "-");
      sLink  = HmsExpandLink(sLink, gsUrlBase+&apos;/&apos;);
      if (LeftCopy(sImg, 1)==&apos;/&apos;) sImg = gsUrlBase+Trim(sImg);

      if (bGrouping &amp;&amp; !gbGroupAlph) {
        sGrp = Format(&apos;%.2d&apos;, [nGrp]);
        i++; if (i&gt;=gnMaxInGroup) { nGrp++; i=0; }
      } else if (gbGroupAlph) {
        sGrp = GetGroupName(sTitle);
      } else {
        sGrp = " ";
      }
      LIST.Add(sGrp+&apos;|&apos;+sTitle+&apos;|&apos;+sLink+&apos;|&apos;+sYear+&apos;|&apos;+sImg);

    } while (RE.SearchAgain());
  } finally { RE.Free; }
  if (gbGroupAlph) LIST.Sort();
  CreateItemsFromList(LIST, FolderItem);
  
  HmsLogMessage(1, mpTitle+&apos;: Создано ссылок - &apos;+IntToStr(gnItemsAdded));
}</Value>
    </Property>
    <Property>
      <ID>531</ID>
      <Value>C++Script</Value>
    </Property>
    <Property>
      <ID>527</ID>
      <Value>--addinfoitems --quality=high</Value>
    </Property>
    <Property>
      <ID>100602</ID>
      <Value>1517517353</Value>
    </Property>
  </Properties>
  <ChildItems>
    <Item>
      <ClassID>51</ClassID>
      <ItemID>05f57e639ab4d991e7791ac70cd3bbe4</ItemID>
      <ItemPath>-SearchFolder</ItemPath>
      <ParentID>1ea13c4f-c6ed-478b-afdc-d6a20117a8a7</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>0 Поиск</Value>
        </Property>
        <Property>
          <ID>35</ID>
          <Value>41631,1530208333</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>41631,1530410417</Value>
        </Property>
        <Property>
          <ID>200104</ID>
          <Value>ef4cc5d865af1d9b672cc3ea8ec28190</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>05f57e639ab4d991e7791ac70cd3bbe4</Value>
        </Property>
        <Property>
          <ID>527</ID>
          <Value>--yearintitle</Value>
        </Property>
      </Properties>
      <ChildItems>
        <Item>
          <ClassID>32</ClassID>
          <ItemID>ef4cc5d865af1d9b672cc3ea8ec28190</ItemID>
          <ItemPath>-SearchCommands</ItemPath>
          <ParentID>05f57e639ab4d991e7791ac70cd3bbe4</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>35</ID>
              <Value>41631,152349537</Value>
            </Property>
            <Property>
              <ID>200</ID>
              <Value>5</Value>
            </Property>
            <Property>
              <ID>500</ID>
              <Value>// Var 21.07.2013 //
int mpiFolderType        = 200;
int mpiDynamicScript     = 500;
int mpiDynamicSyntaxType = 501;
int mpiPreviousItemID    = 200104;
int mpiDoNothing         = 201100;
char gsSpace           = &apos;Пробел&apos;;
char gsDelLastChar     = &apos;Удалить последний символ&apos;;
char gsClearSearch     = &apos;Очистить текст поиска&apos;;
char gsClearHystoryIn  = &apos;Очистить историю поиска в папке "%s"&apos;;
char gsMsgClearHistory = &apos;История поиска в папке "%s" очищена&apos;;
char gsMsgTextSaved    = &apos;Подкаст "%s" добавлен в "%s"&apos;;
char gsMsgNothingSaved = &apos;Текст поиска не набран! Добавлять нечего.&apos;;
char gsMsgSearchText   = &apos;Текст поиска: %s&apos;;
char gsAddSearchTo     = &apos;Добавить в папку "%s"&apos;;
char gsSuggestQuery    = &apos;http://ex-fs.net/engine/ajax/search.php?query=&apos;;
char gsSuggestResultCut= &apos;&apos;;
char gsSuggestRegExpr  = &apos;&lt;span class="searchheading"&gt;(.*?)&lt;/span&gt;&apos;;
char gsSuggestMethod   = &apos;POST&apos;;
int  gnSuggestNoUTFEnc = 0;
char gsSuggestMessage  = &apos;Вариант: &apos;;
int gnTotalItems=0; TDateTime gTimeStart = Now; char gsTextSearch, gsMsg=&apos;&apos;;
THmsScriptMediaItem goRootItem, goCmdItem;
// ------------------------------------------ Создание папок команд поиска ----
void CreateSearchCommands() {
  int i; char sText; THmsScriptMediaItem Item;
  CreateDynamicItem(FolderItem, &apos;#&apos;,   &apos;-SearchCreateChars=From:32To:58&apos;);
  CreateDynamicItem(FolderItem, &apos;A-Z&apos;, &apos;-SearchCreateChars=From:65To:91&apos;);
  CreateDynamicItem(FolderItem, &apos;А-Я&apos;, &apos;-SearchCreateChars=From:192To:224&apos;);
  CreateDynamicItem(FolderItem, gsClearSearch, &apos;-SearchCmd=ClearSearchText&apos;);
  // Создание команды добавления в корневую папку поиска
  CreateDynamicItem(FolderItem, Format(gsAddSearchTo, [goRootItem[mpiTitle]]), &apos;-SearchCmd=SaveSearchText&apos;);
  // Создание команд добавления в папки, находящиеся в корневой, если поле "Файл" (mpiFilePath) у них пустое
  for (i=0; i&lt;goRootItem.ChildCount; i++) {
    Item = goRootItem.ChildItems[i];
    if ((Item.ItemClassID!=51) || (Item[mpiFilePath]!=&apos;&apos;)) continue;
    CreateDynamicItem(FolderItem, Format(gsAddSearchTo, [Item[mpiTitle]]), &apos;-SaveSearchTextTo=&apos;+Item.ItemID);
  }
  // Создание команды очистки истории в корневой папке поиска
  CreateDynamicItem(FolderItem, Format(gsClearHystoryIn, [goRootItem[mpiTitle]]), &apos;-SearchCmd=ClearSearchHistory&apos;);
  // Создание команд очистки истории в папках, которые наодятся в корневой
  for (i=0; i&lt;goRootItem.ChildCount; i++) {
    Item = goRootItem.ChildItems[i];
    if ((Item.ItemClassID!=51) || (Item[mpiFilePath]!=&apos;&apos;)) continue;
    CreateDynamicItem(FolderItem, Format(gsClearHystoryIn, [Item[mpiTitle]]), &apos;-ClearSearchHistoryIn=&apos;+Item.ItemID);
  }
  // Создание ссылки, информирующей о текущем набранном тексте поиска
  Item = HmsCreateMediaItem(&apos;-command=none&apos;, goCmdItem.ItemID);
  Item[mpiTitle] = Format(gsMsgSearchText, [gsTextSearch]);
  Item[mpiThumbnail] = &apos;http://wonky.lostcut.net/icons/search-icon1.jpg&apos;;
}
// ---------------------------- Добавление подкаста с именем текста поиска ----
void AddPodcastSearch(THmsScriptMediaItem prntItem) {
  THmsScriptMediaItem Item;
  if (Trim(gsTextSearch)==&apos;&apos;) {gsMsg = gsMsgNothingSaved; return;}
  if (LowerCase(gsTextSearch)==gsTextSearch) gsTextSearch = NameCase(gsTextSearch);
  Item = prntItem.AddFolder(gsTextSearch, false);
  Item[mpiFilePath       ] = Format(&apos;search="%s"&apos;, [gsTextSearch]);
  Item[mpiTitle          ] = gsTextSearch;
  Item[mpiCreateDate     ] = VarToStr(IncTime(gTimeStart,0,-gnTotalItems,0,0));
  Item[mpiFolderSortOrder] = "-mpCreateDate";
  gnTotalItems++;
  HmsDatabaseAutoSave(false);
  gsMsg = Format(gsMsgTextSaved, [gsTextSearch, prntItem[mpiTitle]]);
  gsTextSearch = &apos;&apos;;
}
// --------- Функция создания динамической папки с унаследованным скриптом ----
void CreateDynamicItem(THmsScriptMediaItem prntItem, char sTitle, char sLink) {
char s; THmsScriptMediaItem Folder;
  if (Trim(sTitle)==&apos;&apos;) sTitle = gsSpace;
  Folder = prntItem.AddFolder(sLink, true);
  Folder[mpiTitle            ] = sTitle;
  Folder[mpiCreateDate       ] = VarToStr(IncTime(gTimeStart,0,-gnTotalItems,0,0)); gnTotalItems++;
  Folder[mpiFolderType       ] = prntItem[mpiFolderType];
  Folder[mpiDynamicScript    ] = prntItem[mpiDynamicScript];
  Folder[mpiDynamicSyntaxType] = prntItem[mpiDynamicSyntaxType];
  Folder[mpiFolderSortOrder  ] = prntItem[mpiFolderSortOrder];
}
// ----------------------------  MAIN PROCEDURE  ------------------------------
{
  int i, nCnt; char sCh, sCh1, sCh2, sText; THmsScriptMediaItem Item;
  char s, sUrlServer = &apos;&apos;, sRequestPage = &apos;/&apos;, sPostData = &apos;&apos;, sHeaders = &apos;&apos;;
  if (LeftCopy(mpFilePath, 1) != &apos;-&apos;) return; // Если это не команда - то и не обрабатываем
  // Поиск корневого каталога поиска (папки, которая содержит динамическую папку с путем "-SearchCommands")
  goRootItem = FolderItem; goCmdItem = FolderItem;
  while ((goRootItem.ItemParent != HmsDatabaseRootItem) &amp;&amp; (goRootItem.ItemParent != nil)) {
    if (goRootItem[mpiFilePath] == &apos;-SearchCommands&apos;) {goCmdItem=goRootItem; goRootItem=goCmdItem.ItemParent; break;}
    goRootItem = goRootItem.ItemParent;
  }
  // Если это повторный вызов, смены папки не произошло - ничего не делаем
  if ((FolderItem.ItemID==goRootItem[mpiPreviousItemID]) &amp;&amp; !DebugMode &amp;&amp; (FolderItem!=goCmdItem)) return;
  FolderItem.DeleteChildItems(); goRootItem[mpiPreviousItemID] = FolderItem.ItemID;
  gsTextSearch = HmsGetUserSearchText(); // Получаем текущее значение текста поиска
  // ---- Проверяем команды - по значению в mpFilePath ----
  if (goRootItem[mpiDoNothing]==&apos;1&apos;) {   // Флаг "Ничего не делать" - например, при возврате
    goRootItem[mpiDoNothing] = &apos;&apos;;       //   в команду набирания буквы из подпапки варианта
  } else if (HmsRegExMatch(&apos;-SearchCommands&apos;, mpFilePath, sCh1)) {              // Создание корневых команд поиска
    CreateSearchCommands(); return;
  } else if (HmsRegExMatch(&apos;-SearchChar=(\\d+)&apos;, mpFilePath, sCh1)) {           // Добавление буквы (символа) к набираемому тексту поиска
    gsTextSearch += Chr(StrToInt(sCh1));
  } else if (HmsRegExMatch(&apos;-SetSearchText=(.*)&apos;, mpFilePath, gsTextSearch)) {  // Назначить текст поиска значением варианта подсказки
    goRootItem[mpiDoNothing] = &apos;1&apos;; gsSuggestQuery = &apos;&apos;; // включаем флаг не выполнять команду при возврате из этой папки
  } else if (HmsRegExMatch(&apos;-SaveSearchTextTo=(.*)&apos;, mpFilePath, sCh1)) {       // Добавление в папку Х. Поиск этой папки по ItemID.
    Item = goRootItem; // Ищем папку с ItemID равному идентификатору, переданному в mpFilePath
    for (i=0; i&lt;goRootItem.ChildCount; i++) {
      if (goRootItem.ChildItems[i].ItemID==sCh1) {Item = goRootItem.ChildItems[i]; break;}
    }
    AddPodcastSearch(Item); // и добавляем в найденную папку подкаст текстом поиска
  } else if (HmsRegExMatch(&apos;-ClearSearchHistoryIn=(.*)&apos;, mpFilePath, sCh1)) {   // Очистка истории (добавленных ранее) поисковых значений
    Item = goRootItem; // Ищем папку с ItemID равному идентификатору, переданному в mpFilePath
    for (i=0; i&lt;goRootItem.ChildCount; i++) {
      if (goRootItem.ChildItems[i].ItemID==sCh1) {Item = goRootItem.ChildItems[i]; break;}
    }
    for(i=0; i&lt;Item.ChildCount; i++) { // Удаляем все элементы с начинающимся словом &apos;search&apos; в поле mpiFilePath
      if (LeftCopy(Item.ChildItems[i].Properties[mpiFilePath], 6)==&apos;search&apos;) {Item.ChildItems[i].Delete();i--;}
    }
    gsMsg = Format(gsMsgClearHistory, [Item[mpiTitle]]); // вывод сообщения, что история очищена
  } else if (HmsRegExMatch(&apos;-SearchCmd=(\\w+)&apos;,   mpFilePath, sCh1)) {
    if      (sCh1==&apos;DeleteLastChar&apos; ) gsTextSearch = LeftCopy(gsTextSearch, Length(gsTextSearch)-1); // Удаление последнего символа
    else if (sCh1==&apos;SaveSearchText&apos; ) AddPodcastSearch(goRootItem);             // Добавить текст поиска в корневую папку
    else if (sCh1==&apos;ClearSearchText&apos;) gsTextSearch = &apos;&apos;;                        // Очистка текста поиска
    else if (sCh1==&apos;ClearSearchHistory&apos;) {                                      // Очистка истории (добавленных значений поиска)
      for(i=0; i&lt;goRootItem.ChildCount; i++) {
        Item = goRootItem.ChildItems[i]; // Ищем все элементы, у которых значение mpiFilePath начиначется с &apos;search&apos;
        if (LeftCopy(Item[mpiFilePath], 6)==&apos;search&apos;) {goRootItem.ChildItems[i].Delete();i--;}
      }
      gsMsg = Format(gsMsgClearHistory, [goRootItem[mpiTitle]]);
    }
  } else if (HmsRegExMatch2(&apos;-SearchCreateChars=From:(\\d+)To:(\\d+)&apos;, mpFilePath, sCh1, sCh2)) { // Создание списка букв/символов
    CreateDynamicItem(FolderItem, gsDelLastChar, &apos;-SearchCmd=DeleteLastChar Suggestions&apos;); // В начало - команда удаления символа
    CreateDynamicItem(FolderItem, &apos; &apos;, &apos;-SearchChar=32 Suggestions&apos;); // Пробел
    for (i= StrToInt(sCh1); i&lt;StrToInt(sCh2); i++) CreateDynamicItem(FolderItem, Chr(i), &apos;-SearchChar=&apos;+IntToStr(i)+&apos; Suggestions&apos;);
    // слово "Suggestions" добавлено к значению mpiFilePath тек команд, в которых возможно использование подсказок
  }
  else return; // Если неизвестная нам команда - просто выходим
  HmsSetUserSearchText(gsTextSearch); // Устанавливаем значение текста поиска
  Item = HmsCreateMediaItem(&apos;-command=none&apos;, FolderItem.ItemID);
  if (gsMsg==&apos;&apos;) { // Если сообщения небыло - просто выводим ссылку с текущим значением набранного текста
    Item[mpiThumbnail] = &apos;http://wonky.lostcut.net/icons/search-icon1.jpg&apos;;
    Item[mpiTitle    ] = Format(gsMsgSearchText, [gsTextSearch]);
  } else {         // Выводим сообщение
    Item[mpiThumbnail] = &apos;http://wonky.lostcut.net/icons/ok.png&apos;;
    Item[mpiTitle    ] = gsMsg;
  }
  Item = HmsCreateMediaItem(&apos;-command=none&apos;, FolderItem.ItemParent.ItemID);     // В родительской папке (выше) обновляем информацию о текущем значении текста
  Item[mpiTitle]     = Format(gsMsgSearchText, [gsTextSearch]);
  Item[mpiThumbnail] = &apos;http://wonky.lostcut.net/icons/search-icon1.jpg&apos;;
  Item = HmsCreateMediaItem(&apos;-command=none&apos;, goCmdItem.ItemID);                 // Также в папке, содержащую главные команды поиска
  Item[mpiTitle]     = Format(gsMsgSearchText, [gsTextSearch]);
  Item[mpiThumbnail] = &apos;http://wonky.lostcut.net/icons/search-icon1.jpg&apos;;
  // Suggestions ------ Блок работы с подсказками -------
  if ((gsSuggestQuery!=&apos;&apos;) &amp;&amp; (Pos(&apos;Suggestions&apos;, mpFilePath)&gt;0) &amp;&amp; (Length(gsTextSearch)&gt;1)) {
    sText = gsTextSearch; if (gnSuggestNoUTFEnc==0) sText = HmsUtf8Encode(sText); // Если не указано не кодировать в UTF - кодируем
    sText = HmsHttpEncode(sText);
    // Если есть ключ &lt;TEXT&gt; в запросе - заменяем его на значение набранного текста, иначе просто добавляем в конец
    if (Pos(&apos;&lt;TEXT&gt;&apos;, gsSuggestQuery)&gt;0) gsSuggestQuery = ReplaceStr(gsSuggestQuery, &apos;&lt;TEXT&gt;&apos;, sText);
    else gsSuggestQuery = gsSuggestQuery + sText;
    HmsRegExMatch2(&apos;http://(.*?)(/.*)&apos;, gsSuggestQuery, sUrlServer, sRequestPage);
    if (gsSuggestMethod==&apos;POST&apos;) HmsRegExMatch2(&apos;^(.*?)\\?(.*)&apos;, sRequestPage, sRequestPage, sPostData);
    sHeaders = &apos;http://&apos;+sUrlServer+&apos;/\r\n&apos;+
               &apos;Accept-Encoding: gzip, deflate\r\n&apos;+
               &apos;User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:13.0) Gecko/20100101 Firefox/13.0\r\n&apos;+
               &apos;Connection: Keep-Alive\r\n&apos;+
               &apos;Accept: application/json, text/javascript, */*; q=0.01\r\n&apos;;    // Для включения возможности gzip в запросах
    sText = HmsSendRequestEx(sUrlServer, sRequestPage, gsSuggestMethod, &apos;application/x-www-form-urlencoded; Charset=UTF-8&apos;, sHeaders, sPostData, 80, 0, &apos;&apos;, true);
    sText = HmsUtf8Decode(sText);
    if (gsSuggestResultCut!=&apos;&apos;) HmsRegExMatch(gsSuggestResultCut, sText, sText);// Если есть выражение обрезки - обрезаем
    sText = HmsJsonDecode(sText); TRegExpr t = TRegExpr.Create(&apos;(&lt;[^&gt;]+&gt;)&apos;);    // Избавляемся от тегов в середине слов подсказки
    TRegExpr reSearch = TRegExpr.Create(gsSuggestRegExpr, PCRE_SINGLELINE);
    if (reSearch.Search(sText)) do {
      s = reSearch.Match;
      if (t.Search(s)) do s=ReplaceStr(s, t.Match, &apos;&apos;); while (t.SearchAgain());// (функция HmsHtmlToText не подходит т.к. ставит пробел в середине слова)
      if (HmsRegExMatch(&apos;^(.*?)[/\\(\\|]&apos;, s, sCh)) {                           // Обрезаем подсказку до знаков /, ( или |
        if (Pos(LowerCase(gsTextSearch), LowerCase(sCh))&gt;0) s = sCh;            // Если после этого в подсказке встречается набранный текст - то так и оставляем
      }
      if (LowerCase(s)==s) s = NameCase(s);                                     // Если подсказки - все маленькие буквы, делаем NameCase
      // Если в подсказке больше одного слова - дополнительно создаём сначала подсказки из слов, которые содержат набранный текст (выделяем слова отдельно)
      if (WordCount(s, &apos; &apos;)&gt;1) {
        nCnt = WordCount(s, &apos; &apos;);
        for (i=1; i&lt;=nCnt; i++) {
          sCh=ExtractWord(i, s, &apos; &apos;); if (Trim(sCh)==&apos;&apos;) continue;
          if (Pos(LowerCase(gsTextSearch), LowerCase(sCh))&lt;1) continue;
          if (LowerCase(gsTextSearch)==LowerCase(sCh)) continue;
          sCh = ReplaceStr(sCh, &apos;:&apos;, &apos;&apos;); sCh=ReplaceStr(sCh, &apos;\\&apos;, &apos;&apos;);  sCh=ReplaceStr(sCh, &apos;(&apos;, &apos;&apos;); sCh=ReplaceStr(sCh, &apos;)&apos;, &apos;&apos;);
          CreateDynamicItem(FolderItem, gsSuggestMessage+sCh, &apos;-SetSearchText=&apos;+sCh);
        }
      }
      // Создаём папку с предложением варианта (подсказку)
      if (LowerCase(s)!=LowerCase(gsTextSearch)) CreateDynamicItem(FolderItem, gsSuggestMessage+s, &apos;-SetSearchText=&apos;+s);
      if (gnTotalItems&gt;100) break; // Ограничиваем количество создаваемых элементов = 100
    } while (reSearch.SearchAgain());
  }
  HmsIncSystemUpdateID(); // Говорим устройству об обновлении содержания
}</Value>
            </Property>
            <Property>
              <ID>501</ID>
              <Value>C++Script</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41631,1530410417</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>ef4cc5d865af1d9b672cc3ea8ec28190</Value>
            </Property>
          </Properties>
        </Item>
      </ChildItems>
    </Item>
    <Item>
      <ClassID>53</ClassID>
      <ItemID>0603b056-51b2-427a-9105-1f66d0172bc2</ItemID>
      <ItemPath>http://ex-fs.net/films/</ItemPath>
      <ParentID>1ea13c4f-c6ed-478b-afdc-d6a20117a8a7</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>1 Фильмы - Последние поступления</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>0603b056-51b2-427a-9105-1f66d0172bc2</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>41630,9223242708</Value>
        </Property>
        <Property>
          <ID>531</ID>
          <Value>Нет скрипта</Value>
        </Property>
        <Property>
          <ID>527</ID>
          <Value>--maxpages=4 --yearintitle --maxingroup=150</Value>
        </Property>
        <Property>
          <ID>525</ID>
          <Value>43132,9843480556</Value>
        </Property>
        <Property>
          <ID>215</ID>
          <Value>-mpCreateDate</Value>
        </Property>
      </Properties>
    </Item>
    <Item>
      <ClassID>53</ClassID>
      <ItemID>21b55791-c9e9-4bb9-88a6-546e478cbe9b</ItemID>
      <ItemPath>http://ex-fs.net/series/</ItemPath>
      <ParentID>1ea13c4f-c6ed-478b-afdc-d6a20117a8a7</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>2 Сериалы</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>21b55791-c9e9-4bb9-88a6-546e478cbe9b</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>41631,0463529861</Value>
        </Property>
        <Property>
          <ID>531</ID>
          <Value>Нет скрипта</Value>
        </Property>
        <Property>
          <ID>527</ID>
          <Value>--group=alph --maxpages=50</Value>
        </Property>
        <Property>
          <ID>525</ID>
          <Value>43132,9846935995</Value>
        </Property>
      </Properties>
    </Item>
    <Item>
      <ClassID>51</ClassID>
      <ItemID>0478d66e-ac93-4377-b454-374ac487b417</ItemID>
      <ItemPath></ItemPath>
      <ParentID>1ea13c4f-c6ed-478b-afdc-d6a20117a8a7</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>3 Мультфильмы</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>0478d66e-ac93-4377-b454-374ac487b417</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>41631,1245786227</Value>
        </Property>
      </Properties>
      <ChildItems>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>daab54ce-4e99-4ae8-8abe-728e741af7f6</ItemID>
          <ItemPath>http://ex-fs.net/cartoon/</ItemPath>
          <ParentID>0478d66e-ac93-4377-b454-374ac487b417</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>daab54ce-4e99-4ae8-8abe-728e741af7f6</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41631,1193552315</Value>
            </Property>
            <Property>
              <ID>527</ID>
              <Value>--maxpages=4 --yearintitle</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>43132,9849755787</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>eaa0f8ca-1ce3-4d47-9315-03869ef1a1d0</ItemID>
          <ItemPath>http://ex-fs.net/cartoon/</ItemPath>
          <ParentID>0478d66e-ac93-4377-b454-374ac487b417</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>eaa0f8ca-1ce3-4d47-9315-03869ef1a1d0</Value>
            </Property>
            <Property>
              <ID>527</ID>
              <Value>--maxpages=30 --group=alph</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41631,1245786458</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>43132,9851133102</Value>
            </Property>
          </Properties>
        </Item>
      </ChildItems>
    </Item>
    <Item>
      <ClassID>51</ClassID>
      <ItemID>1379a516-21f0-4509-9197-fb863ef79865</ItemID>
      <ItemPath>http://ex-fs.net/genre</ItemPath>
      <ParentID>1ea13c4f-c6ed-478b-afdc-d6a20117a8a7</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>4 Категории</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>1</Value>
        </Property>
        <Property>
          <ID>245</ID>
          <Value>1379a516-21f0-4509-9197-fb863ef79865</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>41631,1307855093</Value>
        </Property>
        <Property>
          <ID>571</ID>
          <Value>char gsBaseUrl = "http://ex-fs.net"; int gnItemsAdded=0; TDateTime gTimeStart=Now; 
char
  gsTagBlockBegin = &apos;&lt;tr class="alldoppole"&gt;&apos;,
  gsTagBlockEnd   = &apos;&lt;/tr&gt;&apos;,
  gsPatternTitle  = &apos;(&lt;a.*?&lt;/a&gt;)&apos;,
  gsPatternLink   = &apos;&lt;a[^&gt;]+href="(.*?)"&apos;;

// ----------------------------------------------------------------------------
{
  char sHtml, sLink, sTitle; TRegExpr re; THmsScriptMediaItem Item; 
  FolderItem.DeleteChildItems();
  sHtml = HmsUtf8Decode(HmsDownloadURL(mpFilePath, gsBaseUrl, true));
  re = TRegExpr.Create(gsTagBlockBegin+&apos;(.*?)&apos;+gsTagBlockEnd, PCRE_SINGLELINE);
  if (re.Search(sHtml)) do {
    HmsRegExMatch(gsPatternTitle, re.Match, sTitle); 
    HmsRegExMatch(gsPatternLink , re.Match, sLink );
    sTitle = HmsHtmlToText(sTitle);
    sLink  = HmsExpandLink(sLink, gsBaseUrl+"/");
    
    sTitle = NameCase(sTitle);
    
    Item = FolderItem.AddFolder(sLink);
    Item[mpiTitle          ] = ReplaceStr(sTitle, &apos;/&apos;, &apos;-&apos;);
    Item[mpiCreateDate     ] = VarToStr(IncTime(gTimeStart,0,-gnItemsAdded,0,0));
    Item[mpiFolderSortOrder] = "-mpCreateDate";
  } while (re.SearchAgain());
  re.Free();
}</Value>
        </Property>
        <Property>
          <ID>572</ID>
          <Value>C++Script</Value>
        </Property>
        <Property>
          <ID>527</ID>
          <Value>--yearintitle</Value>
        </Property>
      </Properties>
      <ChildItems>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>8185d10ba2b8c2e4abafb03da51daca0</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D0%B0%D0%BD%D0%B8%D0%BC%D0%B5/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>ff5316aae25815cb9c4ed6f2e3968e46</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D0%B1%D0%B8%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D1%8F/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>bce398edcb5bfb7ca717cd8a6df6d320</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D0%B1%D0%BE%D0%B5%D0%B2%D0%B8%D0%BA/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>9ebd48509d956d3a891c7f5c5a97468e</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D0%B2%D0%B5%D1%81%D1%82%D0%B5%D1%80%D0%BD/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>eb351e99d5fca0eca9d12fbd9bfe0186</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D0%B2%D0%BE%D0%B5%D0%BD%D0%BD%D1%8B%D0%B9/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>a453a9b6d84cec637072f84ba97b3be5</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D0%B4%D0%B5%D1%82%D0%B5%D0%BA%D1%82%D0%B8%D0%B2/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>ce9afd742125db1812b32a505d66efcb</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D0%B4%D0%B5%D1%82%D1%81%D0%BA%D0%B8%D0%B9/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>812f5f19eaad2504fd175ca6af86b81c</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D0%B4%D0%BE%D0%BA%D1%83%D0%BC%D0%B5%D0%BD%D1%82%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B9/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>49bc31b71a79c69c6713442583b305cb</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D0%B4%D1%80%D0%B0%D0%BC%D0%B0/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>4a261cc2d178530f99db0811ee7ada1c</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D0%B8%D1%81%D1%82%D0%BE%D1%80%D0%B8%D1%8F/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>b8a1a0324f1454988340ceb3d440e488</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D0%BA%D0%BE%D0%BC%D0%B5%D0%B4%D0%B8%D1%8F/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>d76c5bbc0ee1a9bc4ecdd7e406680bf2</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D0%BA%D0%BE%D1%80%D0%BE%D1%82%D0%BA%D0%BE%D0%BC%D0%B5%D1%82%D1%80%D0%B0%D0%B6%D0%BA%D0%B0/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>bad7256975a1143b18ae1fea501f285c</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D0%BA%D1%80%D0%B8%D0%BC%D0%B8%D0%BD%D0%B0%D0%BB/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>4cc663f07f1904d7a1c013fdb7d46ba2</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D0%BC%D0%B5%D0%BB%D0%BE%D0%B4%D1%80%D0%B0%D0%BC%D0%B0/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>8fd5bb47aa6d52c5fc6c238788ffaa3d</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D0%BC%D1%83%D0%B7%D1%8B%D0%BA%D0%B0/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>2f8405e6b096ebfb5aaf55c235bc771d</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D0%BC%D1%83%D0%BB%D1%8C%D1%82%D1%84%D0%B8%D0%BB%D1%8C%D0%BC/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>00d62bd3be6ef9ead7f379be4ba81eef</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D0%BC%D1%8E%D0%B7%D0%B8%D0%BA%D0%BB/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>4d83e9bbc8e84da3d4f68203bb8b399f</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D0%BF%D1%80%D0%B8%D0%BA%D0%BB%D1%8E%D1%87%D0%B5%D0%BD%D0%B8%D1%8F/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>647c3239ef2a1825fc4f6002e560b5f0</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D1%81%D0%B5%D0%BC%D0%B5%D0%B9%D0%BD%D1%8B%D0%B9/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>7a877842c5eef3ea732a95be2cd7717c</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D1%81%D0%BF%D0%BE%D1%80%D1%82/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>29858033c9378e07b400e46ef4566ffd</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D1%82%D1%80%D0%B8%D0%BB%D0%BB%D0%B5%D1%80/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>24a9825983576b7bfed46313b776dcf0</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D1%83%D0%B6%D0%B0%D1%81%D1%8B/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>f5b377faaa35a2f1f8338dafefcd167e</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D1%84%D0%B0%D0%BD%D1%82%D0%B0%D1%81%D1%82%D0%B8%D0%BA%D0%B0/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42709,049296331</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>3d688c3764a9a327c3030c535f67def2</ItemID>
          <ItemPath>http://ex-fs.net/genre/%D1%84%D1%8D%D0%BD%D1%82%D0%B5%D0%B7%D0%B8/</ItemPath>
          <ParentID>1379a516-21f0-4509-9197-fb863ef79865</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>35</ID>
              <Value>41632,0044328704</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0044335648</Value>
            </Property>
          </Properties>
        </Item>
      </ChildItems>
    </Item>
    <Item>
      <ClassID>51</ClassID>
      <ItemID>27f26531-d4b9-406b-ae16-59b620d07596</ItemID>
      <ItemPath></ItemPath>
      <ParentID>1ea13c4f-c6ed-478b-afdc-d6a20117a8a7</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>5 По годам</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>1</Value>
        </Property>
        <Property>
          <ID>245</ID>
          <Value>27f26531-d4b9-406b-ae16-59b620d07596</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>41631,1249284722</Value>
        </Property>
        <Property>
          <ID>571</ID>
          <Value>int gnItemsAdded=0; TDateTime gTimeStart=Now;
{
  variant Item; int nYear, nMonth, nDay;
  FolderItem.DeleteChildItems();
  DecodeDate(Now, nYear, nMonth, nDay);
  if (nMonth&gt;11) nYear++;
  for (int i=nYear; i&gt;1990; i--) {
    Item = FolderItem.AddFolder("http://ex-fs.net/year/"+IntToStr(i));
    Item[mpiTitle] = IntToStr(i);
    Item[mpiCreateDate     ] = VarToStr(IncTime(gTimeStart,0,-gnItemsAdded,0,0));
    Item[mpiFolderSortOrder] = "-mpCreateDate";
    gnItemsAdded++;
  }
}</Value>
        </Property>
        <Property>
          <ID>572</ID>
          <Value>C++Script</Value>
        </Property>
      </Properties>
      <ChildItems>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>ed9365cb-6db6-406a-bf35-8d989ba2bfd4</ItemID>
          <ItemPath>http://ex-fs.net/year/2017</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>2017</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</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>ed9365cb-6db6-406a-bf35-8d989ba2bfd4</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42745,7730902083</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42745,7766726968</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>ad3cd2f1-5a6f-4589-8c48-a3b0dd9c0b55</ItemID>
          <ItemPath>http://ex-fs.net/year/2016</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>2016</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>ad3cd2f1-5a6f-4589-8c48-a3b0dd9c0b55</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42429,1124563079</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42609,5196787963</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>827e47e9-7fe1-4262-9f25-0e2ae5f8fe89</ItemID>
          <ItemPath>http://ex-fs.net/year/2015</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>2015</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>827e47e9-7fe1-4262-9f25-0e2ae5f8fe89</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42429,1124563079</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>ed85fc446e0fb4f6cd28085ef65f61a5</ItemID>
          <ItemPath>http://ex-fs.net/year/2014</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>2014</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41632,0071180556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</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>ed85fc446e0fb4f6cd28085ef65f61a5</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>a7a40a341945668909bff806465dae60</ItemID>
          <ItemPath>http://ex-fs.net/year/2013</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>2013</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41632,0064236111</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42654,6228593634</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>c71c3075436c85dda72757773124826a</ItemID>
          <ItemPath>http://ex-fs.net/year/2012</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>2012</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41632,0057291667</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</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>c71c3075436c85dda72757773124826a</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>3238ec573fd97180f3476bdac6e7603f</ItemID>
          <ItemPath>http://ex-fs.net/year/2011</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>2011</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41632,0050347222</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>690016159bcc7a9bec01725914509e42</ItemID>
          <ItemPath>http://ex-fs.net/year/2010</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>2010</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41632,0043402778</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>8a9df39f4ab376b777d55a1d3331d8d7</ItemID>
          <ItemPath>http://ex-fs.net/year/2009</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>2009</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41632,0036458333</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>8030a7c41b38659ff2081c54cf3fb857</ItemID>
          <ItemPath>http://ex-fs.net/year/2008</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>2008</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41632,0029513889</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>302e67c3d4d88601f1de46f09143b9e9</ItemID>
          <ItemPath>http://ex-fs.net/year/2007</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>2007</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41632,0022569444</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>f71514a19ecc31bf14b2716712856225</ItemID>
          <ItemPath>http://ex-fs.net/year/2006</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>2006</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41632,0015625</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>a172bf857b01157a6dab26252534131c</ItemID>
          <ItemPath>http://ex-fs.net/year/2005</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>2005</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41632,0008680556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>ae17603f08c8e9ee9434c03b009f07cc</ItemID>
          <ItemPath>http://ex-fs.net/year/2004</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>2004</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41632,0001736111</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>de6fd45d6e6b13fe1d87a556fe0d21a8</ItemID>
          <ItemPath>http://ex-fs.net/year/2003</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>2003</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41631,9994791667</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>91187cf4aab1e1cffbfe66c59f26ca43</ItemID>
          <ItemPath>http://ex-fs.net/year/2002</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>2002</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41631,9987847222</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>6e625d267b9ce3245ba7e5540df27ccd</ItemID>
          <ItemPath>http://ex-fs.net/year/2001</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>2001</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41631,9980902778</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>fce6fdb9208c6b2d7db4c82423ec7b4e</ItemID>
          <ItemPath>http://ex-fs.net/year/2000</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>2000</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41631,9973958333</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>d993d3dcb46fe4617db4144e14c09b6f</ItemID>
          <ItemPath>http://ex-fs.net/year/1999</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>1999</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41631,9967013889</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>ccc68a4166794bc51ab4b8a6f28976d7</ItemID>
          <ItemPath>http://ex-fs.net/year/1998</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>1998</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41631,9960069444</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>ac40ae5c7269d6e1be7e569816c8226e</ItemID>
          <ItemPath>http://ex-fs.net/year/1997</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>1997</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41631,9953125</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>3e3c5407f4d2c441e238dd9bc5cc0b70</ItemID>
          <ItemPath>http://ex-fs.net/year/1996</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>1996</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41631,9946180556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>2249fc866c04d881fda4beff5e630111</ItemID>
          <ItemPath>http://ex-fs.net/year/1995</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>1995</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41631,9939236111</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>f18130a2811b8eae1b98fc7d96b0be90</ItemID>
          <ItemPath>http://ex-fs.net/year/1994</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>1994</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41631,9932291667</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>d20a3b0ae826fcc30050d341b8ed2a39</ItemID>
          <ItemPath>http://ex-fs.net/year/1993</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>1993</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41631,9925347222</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>f2c4ab6f97a48c316a7d0c3842bb909a</ItemID>
          <ItemPath>http://ex-fs.net/year/1992</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>1992</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41631,9918402778</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>ce724424ea82bc0bbd75d154e9bc0bff</ItemID>
          <ItemPath>http://ex-fs.net/year/1991</ItemPath>
          <ParentID>27f26531-d4b9-406b-ae16-59b620d07596</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>1991</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>41631,9911458333</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0071234607</Value>
            </Property>
          </Properties>
        </Item>
      </ChildItems>
    </Item>
    <Item>
      <ClassID>51</ClassID>
      <ItemID>54d39c88-8f27-4f27-854e-f39a159c7ce9</ItemID>
      <ItemPath>http://ex-fs.net/country/</ItemPath>
      <ParentID>1ea13c4f-c6ed-478b-afdc-d6a20117a8a7</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>6 По странам</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>571</ID>
          <Value>char gsBaseUrl = "http://ex-fs.net"; int gnItemsAdded=0; TDateTime gTimeStart=Now;
char
  gsTagBlockBegin = &apos;&lt;tr class="alldoppole"&gt;&apos;,
  gsTagBlockEnd   = &apos;&lt;/tr&gt;&apos;,
  gsPatternTitle  = &apos;(&lt;a.*?&lt;/a&gt;)&apos;,
  gsPatternLink   = &apos;&lt;a[^&gt;]+href="(.*?)"&apos;;

// ----------------------------------------------------------------------------
{
  char sHtml, sLink, sTitle; TRegExpr re; THmsScriptMediaItem Item; 
  FolderItem.DeleteChildItems();
  sHtml = HmsUtf8Decode(HmsDownloadURL(mpFilePath, gsBaseUrl, true));
  re = TRegExpr.Create(gsTagBlockBegin+&apos;(.*?)&apos;+gsTagBlockEnd, PCRE_SINGLELINE);
  if (re.Search(sHtml)) do {
    HmsRegExMatch(gsPatternTitle, re.Match, sTitle); 
    HmsRegExMatch(gsPatternLink , re.Match, sLink );
    sTitle = HmsHtmlToText(sTitle);
    sLink  = HmsExpandLink(sLink, gsBaseUrl+"/");
    Item = FolderItem.AddFolder(sLink);
    Item[mpiTitle          ] = ReplaceStr(sTitle, &apos;/&apos;, &apos;-&apos;);
    Item[mpiCreateDate     ] = VarToStr(IncTime(gTimeStart,0,-gnItemsAdded,0,0));
    Item[mpiFolderSortOrder] = "-mpCreateDate";
  } while (re.SearchAgain());
  re.Free();
}</Value>
        </Property>
        <Property>
          <ID>572</ID>
          <Value>C++Script</Value>
        </Property>
        <Property>
          <ID>570</ID>
          <Value>1</Value>
        </Property>
        <Property>
          <ID>245</ID>
          <Value>54d39c88-8f27-4f27-854e-f39a159c7ce9</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>41631,1416359838</Value>
        </Property>
        <Property>
          <ID>527</ID>
          <Value>--yearintitle</Value>
        </Property>
      </Properties>
      <ChildItems>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>99b6492e344f5098aae6aec0276ced6f</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%90%D0%B2%D1%81%D1%82%D1%80%D0%B0%D0%BB%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302083</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>fd6f101cfa84e5da4ea7ee18a0eb8ed5</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%90%D0%B2%D1%81%D1%82%D1%80%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302083</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>32189fe654c6d410d0a901df178e4b13</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%90%D0%BD%D0%B3%D0%BE%D0%BB%D0%B0/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302083</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>0386cf10ed0eee1211e102671b6123bc</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%90%D1%80%D0%B3%D0%B5%D0%BD%D1%82%D0%B8%D0%BD%D0%B0/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302083</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42705,9948358333</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>d34f1dcfbbf79c7bc3532cc8dd3ec878</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%90%D1%80%D0%BC%D0%B5%D0%BD%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302199</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>000c3f8626319cd624a7b5b8b73f105e</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%91%D0%B0%D0%B3%D0%B0%D0%BC%D1%8B/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302199</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>700058fedff4e031d88900dd80d22e9e</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%91%D0%B5%D0%BB%D0%B0%D1%80%D1%83%D1%81%D1%8C/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302199</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>cfc8f2dd5f2ddc02eaea802f14a971ab</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%91%D0%B5%D0%BB%D1%8C%D0%B3%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302199</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>b712b367521f1c91741e6f77bf9bdc0b</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%91%D0%BE%D0%BB%D0%B3%D0%B0%D1%80%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302199</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>3cfe2bdb6a266e4aa465edacef770e86</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%91%D0%BE%D0%BB%D0%B8%D0%B2%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302199</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>93b2a19b3fc1c345bf51487993e6b3e6</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%91%D0%BE%D1%81%D0%BD%D0%B8%D1%8F-%D0%93%D0%B5%D1%80%D1%86%D0%B5%D0%B3%D0%BE%D0%B2%D0%B8%D0%BD%D0%B0/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302199</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>71193dce938ffcbefd78113badb11374</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%91%D1%80%D0%B0%D0%B7%D0%B8%D0%BB%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302199</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>83168014297d822ed0d1adddd8d2ec56</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%92%D0%B5%D0%BB%D0%B8%D0%BA%D0%BE%D0%B1%D1%80%D0%B8%D1%82%D0%B0%D0%BD%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302199</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>d70898fe9668746ee45f664264424dbd</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%92%D0%B5%D0%BD%D0%B3%D1%80%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302778</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>2dafe44a9e2272128ba9e47517a20cb5</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%92%D1%8C%D0%B5%D1%82%D0%BD%D0%B0%D0%BC/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302778</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>f2ef859a25902a8d9b34771778e627c5</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%93%D0%B5%D1%80%D0%BC%D0%B0%D0%BD%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302778</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>dc265b80bafbf357b03f2687df636dc9</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%93%D0%B5%D1%80%D0%BC%D0%B0%D0%BD%D0%B8%D1%8F_%28%D0%93%D0%94%D0%A0%29/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302778</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>9780e4943c731625ff58d0f33b9f8f85</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%93%D0%B5%D1%80%D0%BC%D0%B0%D0%BD%D0%B8%D1%8F_%28%D0%A4%D0%A0%D0%93%29/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302778</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>ac23a37097dd3851bf6587a4316ffdf9</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%93%D0%BE%D0%BD%D0%BA%D0%BE%D0%BD%D0%B3/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302778</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>4c452d287062cb948c8393dd258d09b1</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%93%D1%80%D0%B5%D1%86%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302778</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>c854a28de46c631b5d501efa2e3be2ba</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%93%D1%80%D1%83%D0%B7%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302778</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>76bda2c141c93f4b7c0ed035b22d308a</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%94%D0%B0%D0%BD%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302778</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>6875c87e30df8da82bc552b9ebba4a66</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%98%D0%B7%D1%80%D0%B0%D0%B8%D0%BB%D1%8C/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302778</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>209940200a4bc8b3c0ae98778eed4988</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%98%D0%BD%D0%B4%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302778</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>38bbf0b168fe86ddf9c7a2844f6e4247</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%98%D0%BD%D0%B4%D0%BE%D0%BD%D0%B5%D0%B7%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302778</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>4a20501334df5645dd41116b713ebbb6</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%98%D1%80%D0%B0%D0%BD/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302778</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>538d4bb6cce8925e6c43d1ae5d4be44a</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%98%D1%80%D0%BB%D0%B0%D0%BD%D0%B4%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302778</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>ba3c36af67f914f9bf274eaf67b4dc71</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%98%D1%81%D0%BB%D0%B0%D0%BD%D0%B4%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302778</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>618900975580717435912f4653751f6e</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%98%D1%81%D0%BF%D0%B0%D0%BD%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302778</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>425c021033c2ad0729b49b3ac0579374</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%98%D1%82%D0%B0%D0%BB%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302778</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>93e00f1885c82dc58acc54dccec451ca</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9A%D0%B0%D0%B7%D0%B0%D1%85%D1%81%D1%82%D0%B0%D0%BD/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302778</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>6ef5834cd3cbf5c0257c9053b6a6bf93</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9A%D0%B0%D0%BC%D0%B5%D1%80%D1%83%D0%BD/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302778</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>7cb9f4d9e5821cf69c85351b5ac5ac9a</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9A%D0%B0%D0%BD%D0%B0%D0%B4%D0%B0/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302778</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>70edfc7d036cd439b2d5a6336534208f</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9A%D0%B0%D1%82%D0%B0%D1%80/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302778</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>e27aa0762fd2dc3c619967f8eb83b1e1</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9A%D0%B5%D0%BD%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302778</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>07047721efe666414e8ce25330f80878</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9A%D0%B8%D1%82%D0%B0%D0%B9/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>abc069935bc37cf92c46c9d6974c5463</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9A%D0%BE%D0%BB%D1%83%D0%BC%D0%B1%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>ea74abe5f5b1993634e8a89252985e7a</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9A%D0%BE%D1%80%D0%B5%D1%8F_%D0%AE%D0%B6%D0%BD%D0%B0%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42763,0195046643</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>38021ed1d377796b768219ededa3d358</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9A%D1%83%D0%B1%D0%B0/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>d458be894c1971e2e16664566c177bff</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9B%D0%B0%D1%82%D0%B2%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>efd03b63ae1028027d8422ce4939c388</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9B%D0%B8%D1%82%D0%B2%D0%B0/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>71063c5e148cce3130105745057f533f</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9B%D1%8E%D0%BA%D1%81%D0%B5%D0%BC%D0%B1%D1%83%D1%80%D0%B3/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>437b1d0829b80d4162876857bec5a137</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9C%D0%B0%D0%BA%D0%B5%D0%B4%D0%BE%D0%BD%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>b5f420c7d7179fc70982943e20ddcc9a</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9C%D0%B0%D0%BB%D0%B0%D0%B9%D0%B7%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>d4fefb58a0a17ccd1b9d5d9da061c8df</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9C%D0%B0%D0%BB%D1%8C%D1%82%D0%B0/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>8875d7956b3fa96c4c17f8cdfe965d1f</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9C%D0%B0%D1%80%D0%BE%D0%BA%D0%BA%D0%BE/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>da3729d5d0e198048eb73820692f4bc0</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9C%D0%B5%D0%BA%D1%81%D0%B8%D0%BA%D0%B0/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>c0fda2df1eb274b79cbca99dd3fe1e87</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9C%D0%BE%D0%BD%D0%B0%D0%BA%D0%BE/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>77038332d6b28580b8d1764c0416d043</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9D%D0%B8%D0%B4%D0%B5%D1%80%D0%BB%D0%B0%D0%BD%D0%B4%D1%8B/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>078756cd429aab03bfaba937a25c9847</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9D%D0%BE%D0%B2%D0%B0%D1%8F_%D0%97%D0%B5%D0%BB%D0%B0%D0%BD%D0%B4%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>05f86b0c6a24482630bbd9763feed474</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9D%D0%BE%D1%80%D0%B2%D0%B5%D0%B3%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>ab0f792b71367f5c13c558598ba87551</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9E%D0%90%D0%AD/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>1b580cf1f6d04fb15092f90fba4a2e4e</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9E%D1%81%D1%82%D1%80%D0%BE%D0%B2_%D0%9C%D1%8D%D0%BD/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>1b1b2b7e1953c93992aab66d6015fceb</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9F%D0%B0%D0%BB%D0%B5%D1%81%D1%82%D0%B8%D0%BD%D0%B0/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>698a0c33f29767cc38a8de477c8f8a14</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9F%D0%B0%D1%80%D0%B0%D0%B3%D0%B2%D0%B0%D0%B9/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>e9efef23c3587cd4a6194279aa8016c1</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9F%D0%B5%D1%80%D1%83/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>240809a9fa136df312f550496744b009</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9F%D0%BE%D0%BB%D1%8C%D1%88%D0%B0/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>8151338a895793e0dee27fa923043def</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%9F%D0%BE%D1%80%D1%82%D1%83%D0%B3%D0%B0%D0%BB%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>1a3fb2ddae16e9433039a73a76e84510</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>b7d757ba986bb6fe9592ca0307b32157</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A0%D1%83%D0%BC%D1%8B%D0%BD%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>7056c5886f7cbc6e07484c83c6c631e1</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A1%D0%B5%D1%80%D0%B1%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>1b9cf8f29c324041f8fa48a4f131536a</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A1%D0%B5%D1%80%D0%B1%D0%B8%D1%8F_%D0%B8_%D0%A7%D0%B5%D1%80%D0%BD%D0%BE%D0%B3%D0%BE%D1%80%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>0a317241877dabef55fd8e635e5762c0</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A1%D0%B8%D0%BD%D0%B3%D0%B0%D0%BF%D1%83%D1%80/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>d5632b7f64c77dc817ecb4630d2f7f94</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A1%D0%BB%D0%BE%D0%B2%D0%B0%D0%BA%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>d258d1d3fb86db3c913044992f4bb203</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A1%D0%BB%D0%BE%D0%B2%D0%B5%D0%BD%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>f36480f135ff00c3539336ec61892958</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A1%D0%A1%D0%A1%D0%A0/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>9c80228dafaecdde3622de76bb20d843</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A1%D0%A8%D0%90/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>e88a063c8aa427837f73a76dd2f9a2a7</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A2%D0%B0%D0%B8%D0%BB%D0%B0%D0%BD%D0%B4/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>f2b36785fbc98165c506078c88dcf24d</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A2%D0%B0%D0%B9%D0%B2%D0%B0%D0%BD%D1%8C/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>384b7936b12d481f3439e8a34a46656d</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A2%D1%83%D0%BD%D0%B8%D1%81/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>85f5f5366eb1e205b254de662d365250</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A2%D1%83%D1%80%D1%86%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>a34ed53a601de283875fbef026fd3bf9</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A3%D0%BA%D1%80%D0%B0%D0%B8%D0%BD%D0%B0/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>8d16b4ef073f043ce88b92ae488a4315</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A3%D1%80%D1%83%D0%B3%D0%B2%D0%B0%D0%B9/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>54de2766052608147806e16ca50818fd</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A4%D0%B8%D0%BB%D0%B8%D0%BF%D0%BF%D0%B8%D0%BD%D1%8B/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>ddf6f168feec95f20cc9e3df7a5ac0dc</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A4%D0%B8%D0%BD%D0%BB%D1%8F%D0%BD%D0%B4%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>653b5bf7563f27f638bf49769887e582</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A4%D1%80%D0%B0%D0%BD%D1%86%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>1d2272e3aae038d31141a253687f85e4</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A5%D0%BE%D1%80%D0%B2%D0%B0%D1%82%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098302894</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>3a3511e0bc18b2fa401e0911ae051a29</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A7%D0%B0%D0%B4/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098303009</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>2577f292b294a542d0b1f852c0449c90</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A7%D0%B5%D1%85%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098303009</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>5e904e5bf46f7fd84835e6b915fab440</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A7%D0%B5%D1%85%D0%BE%D1%81%D0%BB%D0%BE%D0%B2%D0%B0%D0%BA%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098303009</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>9ba09ac2d8a27194ccd908c4485c6f5d</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A7%D0%B8%D0%BB%D0%B8/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098303009</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>c8752d4f3e0462517ebe319b4a012b2e</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A8%D0%B2%D0%B5%D0%B9%D1%86%D0%B0%D1%80%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098303009</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>086be940b20c3762338cecaba391ff41</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%A8%D0%B2%D0%B5%D1%86%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098303009</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>2999e6a41c7e014b7a939c6ecd916151</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%AD%D1%81%D1%82%D0%BE%D0%BD%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098303009</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>2dabe9fe363769d8753a18eea185b081</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%AE%D0%90%D0%A0/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098303009</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>cae410139550ad9570436fc7e80efb3d</ItemID>
          <ItemPath>http://ex-fs.net/country/%D0%AF%D0%BF%D0%BE%D0%BD%D0%B8%D1%8F/</ItemPath>
          <ParentID>54d39c88-8f27-4f27-854e-f39a159c7ce9</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>35</ID>
              <Value>41632,0077430556</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41632,0098303009</Value>
            </Property>
          </Properties>
        </Item>
      </ChildItems>
    </Item>
  </ChildItems>
</HmsMediaItem>
