plexflow 0.0.64__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (256) hide show
  1. plexflow/__init__.py +0 -0
  2. plexflow/__main__.py +15 -0
  3. plexflow/core/.DS_Store +0 -0
  4. plexflow/core/__init__.py +0 -0
  5. plexflow/core/context/__init__.py +0 -0
  6. plexflow/core/context/metadata/__init__.py +0 -0
  7. plexflow/core/context/metadata/context.py +32 -0
  8. plexflow/core/context/metadata/tmdb/__init__.py +0 -0
  9. plexflow/core/context/metadata/tmdb/context.py +45 -0
  10. plexflow/core/context/partial_context.py +46 -0
  11. plexflow/core/context/partials/__init__.py +8 -0
  12. plexflow/core/context/partials/cache.py +16 -0
  13. plexflow/core/context/partials/context.py +12 -0
  14. plexflow/core/context/partials/ids.py +37 -0
  15. plexflow/core/context/partials/movie.py +115 -0
  16. plexflow/core/context/partials/tgx_batch.py +33 -0
  17. plexflow/core/context/partials/tgx_context.py +34 -0
  18. plexflow/core/context/partials/torrents.py +23 -0
  19. plexflow/core/context/partials/watchlist.py +35 -0
  20. plexflow/core/context/plexflow_context.py +29 -0
  21. plexflow/core/context/plexflow_property.py +36 -0
  22. plexflow/core/context/root/__init__.py +0 -0
  23. plexflow/core/context/root/context.py +25 -0
  24. plexflow/core/context/select/__init__.py +0 -0
  25. plexflow/core/context/select/context.py +45 -0
  26. plexflow/core/context/torrent/__init__.py +0 -0
  27. plexflow/core/context/torrent/context.py +43 -0
  28. plexflow/core/context/torrent/tpb/__init__.py +0 -0
  29. plexflow/core/context/torrent/tpb/context.py +45 -0
  30. plexflow/core/context/torrent/yts/__init__.py +0 -0
  31. plexflow/core/context/torrent/yts/context.py +45 -0
  32. plexflow/core/context/watchlist/__init__.py +0 -0
  33. plexflow/core/context/watchlist/context.py +46 -0
  34. plexflow/core/downloads/__init__.py +0 -0
  35. plexflow/core/downloads/candidates/__init__.py +0 -0
  36. plexflow/core/downloads/candidates/download_candidate.py +210 -0
  37. plexflow/core/downloads/candidates/filtered.py +51 -0
  38. plexflow/core/downloads/candidates/utils.py +39 -0
  39. plexflow/core/env/__init__.py +0 -0
  40. plexflow/core/env/env.py +31 -0
  41. plexflow/core/genai/__init__.py +0 -0
  42. plexflow/core/genai/bot.py +9 -0
  43. plexflow/core/genai/plexa.py +54 -0
  44. plexflow/core/genai/torrent/imdb_verify.py +65 -0
  45. plexflow/core/genai/torrent/movie.py +25 -0
  46. plexflow/core/genai/utils/__init__.py +0 -0
  47. plexflow/core/genai/utils/loader.py +5 -0
  48. plexflow/core/metadata/__init__.py +0 -0
  49. plexflow/core/metadata/auto/__init__.py +0 -0
  50. plexflow/core/metadata/auto/auto_meta.py +40 -0
  51. plexflow/core/metadata/auto/auto_providers/__init__.py +0 -0
  52. plexflow/core/metadata/auto/auto_providers/auto/__init__.py +0 -0
  53. plexflow/core/metadata/auto/auto_providers/auto/episode.py +49 -0
  54. plexflow/core/metadata/auto/auto_providers/auto/item.py +55 -0
  55. plexflow/core/metadata/auto/auto_providers/auto/movie.py +13 -0
  56. plexflow/core/metadata/auto/auto_providers/auto/season.py +43 -0
  57. plexflow/core/metadata/auto/auto_providers/auto/show.py +26 -0
  58. plexflow/core/metadata/auto/auto_providers/imdb/__init__.py +0 -0
  59. plexflow/core/metadata/auto/auto_providers/imdb/movie.py +36 -0
  60. plexflow/core/metadata/auto/auto_providers/imdb/show.py +45 -0
  61. plexflow/core/metadata/auto/auto_providers/moviemeter/__init__.py +0 -0
  62. plexflow/core/metadata/auto/auto_providers/moviemeter/movie.py +40 -0
  63. plexflow/core/metadata/auto/auto_providers/plex/__init__.py +0 -0
  64. plexflow/core/metadata/auto/auto_providers/plex/movie.py +39 -0
  65. plexflow/core/metadata/auto/auto_providers/tmdb/__init__.py +0 -0
  66. plexflow/core/metadata/auto/auto_providers/tmdb/episode.py +30 -0
  67. plexflow/core/metadata/auto/auto_providers/tmdb/movie.py +36 -0
  68. plexflow/core/metadata/auto/auto_providers/tmdb/season.py +23 -0
  69. plexflow/core/metadata/auto/auto_providers/tmdb/show.py +41 -0
  70. plexflow/core/metadata/auto/auto_providers/tmdb.py +92 -0
  71. plexflow/core/metadata/auto/auto_providers/tvdb/__init__.py +0 -0
  72. plexflow/core/metadata/auto/auto_providers/tvdb/episode.py +28 -0
  73. plexflow/core/metadata/auto/auto_providers/tvdb/movie.py +36 -0
  74. plexflow/core/metadata/auto/auto_providers/tvdb/season.py +25 -0
  75. plexflow/core/metadata/auto/auto_providers/tvdb/show.py +41 -0
  76. plexflow/core/metadata/providers/__init__.py +0 -0
  77. plexflow/core/metadata/providers/imdb/__init__.py +0 -0
  78. plexflow/core/metadata/providers/imdb/datatypes.py +53 -0
  79. plexflow/core/metadata/providers/imdb/imdb.py +112 -0
  80. plexflow/core/metadata/providers/moviemeter/__init__.py +0 -0
  81. plexflow/core/metadata/providers/moviemeter/datatypes.py +111 -0
  82. plexflow/core/metadata/providers/moviemeter/moviemeter.py +42 -0
  83. plexflow/core/metadata/providers/plex/__init__.py +0 -0
  84. plexflow/core/metadata/providers/plex/datatypes.py +693 -0
  85. plexflow/core/metadata/providers/plex/plex.py +167 -0
  86. plexflow/core/metadata/providers/tmdb/__init__.py +0 -0
  87. plexflow/core/metadata/providers/tmdb/datatypes.py +460 -0
  88. plexflow/core/metadata/providers/tmdb/tmdb.py +85 -0
  89. plexflow/core/metadata/providers/tvdb/__init__.py +0 -0
  90. plexflow/core/metadata/providers/tvdb/datatypes.py +257 -0
  91. plexflow/core/metadata/providers/tvdb/tv_datatypes.py +554 -0
  92. plexflow/core/metadata/providers/tvdb/tvdb.py +65 -0
  93. plexflow/core/metadata/providers/universal/__init__.py +0 -0
  94. plexflow/core/metadata/providers/universal/movie.py +130 -0
  95. plexflow/core/metadata/providers/universal/old.py +192 -0
  96. plexflow/core/metadata/providers/universal/show.py +107 -0
  97. plexflow/core/plex/__init__.py +0 -0
  98. plexflow/core/plex/api/context/authorized.py +15 -0
  99. plexflow/core/plex/api/context/discover.py +14 -0
  100. plexflow/core/plex/api/context/library.py +14 -0
  101. plexflow/core/plex/discover/__init__.py +0 -0
  102. plexflow/core/plex/discover/activity.py +448 -0
  103. plexflow/core/plex/discover/comment.py +89 -0
  104. plexflow/core/plex/discover/feed.py +11 -0
  105. plexflow/core/plex/hooks/__init__.py +0 -0
  106. plexflow/core/plex/hooks/plex_authorized.py +60 -0
  107. plexflow/core/plex/hooks/plexflow_database.py +6 -0
  108. plexflow/core/plex/library/__init__.py +0 -0
  109. plexflow/core/plex/library/library.py +103 -0
  110. plexflow/core/plex/token/__init__.py +0 -0
  111. plexflow/core/plex/token/auto_token.py +91 -0
  112. plexflow/core/plex/utils/__init__.py +0 -0
  113. plexflow/core/plex/utils/paginated.py +39 -0
  114. plexflow/core/plex/watchlist/__init__.py +0 -0
  115. plexflow/core/plex/watchlist/datatypes.py +124 -0
  116. plexflow/core/plex/watchlist/watchlist.py +23 -0
  117. plexflow/core/storage/__init__.py +0 -0
  118. plexflow/core/storage/object/__init__.py +0 -0
  119. plexflow/core/storage/object/plexflow_storage.py +143 -0
  120. plexflow/core/storage/object/redis_storage.py +169 -0
  121. plexflow/core/subtitles/__init__.py +0 -0
  122. plexflow/core/subtitles/providers/__init__.py +0 -0
  123. plexflow/core/subtitles/providers/auto_subtitles.py +48 -0
  124. plexflow/core/subtitles/providers/oss/__init__.py +0 -0
  125. plexflow/core/subtitles/providers/oss/datatypes.py +104 -0
  126. plexflow/core/subtitles/providers/oss/download.py +48 -0
  127. plexflow/core/subtitles/providers/oss/old.py +144 -0
  128. plexflow/core/subtitles/providers/oss/oss.py +400 -0
  129. plexflow/core/subtitles/providers/oss/oss_subtitle.py +32 -0
  130. plexflow/core/subtitles/providers/oss/search.py +52 -0
  131. plexflow/core/subtitles/providers/oss/unlimited_oss.py +231 -0
  132. plexflow/core/subtitles/providers/oss/utils/__init__.py +0 -0
  133. plexflow/core/subtitles/providers/oss/utils/config.py +63 -0
  134. plexflow/core/subtitles/providers/oss/utils/download_client.py +22 -0
  135. plexflow/core/subtitles/providers/oss/utils/exceptions.py +35 -0
  136. plexflow/core/subtitles/providers/oss/utils/file_utils.py +83 -0
  137. plexflow/core/subtitles/providers/oss/utils/languages.py +78 -0
  138. plexflow/core/subtitles/providers/oss/utils/response_base.py +221 -0
  139. plexflow/core/subtitles/providers/oss/utils/responses.py +176 -0
  140. plexflow/core/subtitles/providers/oss/utils/srt.py +561 -0
  141. plexflow/core/subtitles/results/__init__.py +0 -0
  142. plexflow/core/subtitles/results/subtitle.py +170 -0
  143. plexflow/core/torrents/__init__.py +0 -0
  144. plexflow/core/torrents/analyzers/analyzed_torrent.py +143 -0
  145. plexflow/core/torrents/analyzers/analyzer.py +45 -0
  146. plexflow/core/torrents/analyzers/torrentquest/analyzer.py +47 -0
  147. plexflow/core/torrents/auto/auto_providers/auto/__init__.py +0 -0
  148. plexflow/core/torrents/auto/auto_providers/auto/torrent.py +64 -0
  149. plexflow/core/torrents/auto/auto_providers/tpb/torrent.py +62 -0
  150. plexflow/core/torrents/auto/auto_torrents.py +29 -0
  151. plexflow/core/torrents/providers/__init__.py +0 -0
  152. plexflow/core/torrents/providers/ext/__init__.py +0 -0
  153. plexflow/core/torrents/providers/ext/ext.py +18 -0
  154. plexflow/core/torrents/providers/ext/utils.py +64 -0
  155. plexflow/core/torrents/providers/extratorrent/__init__.py +0 -0
  156. plexflow/core/torrents/providers/extratorrent/extratorrent.py +21 -0
  157. plexflow/core/torrents/providers/extratorrent/utils.py +66 -0
  158. plexflow/core/torrents/providers/eztv/__init__.py +0 -0
  159. plexflow/core/torrents/providers/eztv/eztv.py +47 -0
  160. plexflow/core/torrents/providers/eztv/utils.py +83 -0
  161. plexflow/core/torrents/providers/rarbg2/__init__.py +0 -0
  162. plexflow/core/torrents/providers/rarbg2/rarbg2.py +19 -0
  163. plexflow/core/torrents/providers/rarbg2/utils.py +76 -0
  164. plexflow/core/torrents/providers/snowfl/__init__.py +0 -0
  165. plexflow/core/torrents/providers/snowfl/snowfl.py +36 -0
  166. plexflow/core/torrents/providers/snowfl/utils.py +59 -0
  167. plexflow/core/torrents/providers/tgx/__init__.py +0 -0
  168. plexflow/core/torrents/providers/tgx/context.py +50 -0
  169. plexflow/core/torrents/providers/tgx/dump.py +40 -0
  170. plexflow/core/torrents/providers/tgx/tgx.py +22 -0
  171. plexflow/core/torrents/providers/tgx/utils.py +61 -0
  172. plexflow/core/torrents/providers/therarbg/__init__.py +0 -0
  173. plexflow/core/torrents/providers/therarbg/therarbg.py +17 -0
  174. plexflow/core/torrents/providers/therarbg/utils.py +61 -0
  175. plexflow/core/torrents/providers/torrentquest/__init__.py +0 -0
  176. plexflow/core/torrents/providers/torrentquest/torrentquest.py +20 -0
  177. plexflow/core/torrents/providers/torrentquest/utils.py +70 -0
  178. plexflow/core/torrents/providers/tpb/__init__.py +0 -0
  179. plexflow/core/torrents/providers/tpb/tpb.py +17 -0
  180. plexflow/core/torrents/providers/tpb/utils.py +139 -0
  181. plexflow/core/torrents/providers/yts/__init__.py +0 -0
  182. plexflow/core/torrents/providers/yts/utils.py +57 -0
  183. plexflow/core/torrents/providers/yts/yts.py +31 -0
  184. plexflow/core/torrents/results/__init__.py +0 -0
  185. plexflow/core/torrents/results/torrent.py +165 -0
  186. plexflow/core/torrents/results/universal.py +220 -0
  187. plexflow/core/torrents/results/utils.py +15 -0
  188. plexflow/events/__init__.py +0 -0
  189. plexflow/events/download/__init__.py +0 -0
  190. plexflow/events/download/torrent_events.py +96 -0
  191. plexflow/events/publish/__init__.py +0 -0
  192. plexflow/events/publish/publish.py +34 -0
  193. plexflow/logging/__init__.py +0 -0
  194. plexflow/logging/log_setup.py +8 -0
  195. plexflow/spiders/quiet_logger.py +9 -0
  196. plexflow/spiders/tgx/pipelines/dump_json_pipeline.py +30 -0
  197. plexflow/spiders/tgx/pipelines/meta_pipeline.py +13 -0
  198. plexflow/spiders/tgx/pipelines/publish_pipeline.py +14 -0
  199. plexflow/spiders/tgx/pipelines/torrent_info_pipeline.py +12 -0
  200. plexflow/spiders/tgx/pipelines/validation_pipeline.py +17 -0
  201. plexflow/spiders/tgx/settings.py +36 -0
  202. plexflow/spiders/tgx/spider.py +72 -0
  203. plexflow/utils/__init__.py +0 -0
  204. plexflow/utils/antibot/human_like_requests.py +122 -0
  205. plexflow/utils/api/__init__.py +0 -0
  206. plexflow/utils/api/context/http.py +62 -0
  207. plexflow/utils/api/rest/__init__.py +0 -0
  208. plexflow/utils/api/rest/antibot_restful.py +68 -0
  209. plexflow/utils/api/rest/restful.py +49 -0
  210. plexflow/utils/captcha/__init__.py +0 -0
  211. plexflow/utils/captcha/bypass/__init__.py +0 -0
  212. plexflow/utils/captcha/bypass/decode_audio.py +34 -0
  213. plexflow/utils/download/__init__.py +0 -0
  214. plexflow/utils/download/gz.py +26 -0
  215. plexflow/utils/filesystem/__init__.py +0 -0
  216. plexflow/utils/filesystem/search.py +129 -0
  217. plexflow/utils/gmail/__init__.py +0 -0
  218. plexflow/utils/gmail/mails.py +116 -0
  219. plexflow/utils/hooks/__init__.py +0 -0
  220. plexflow/utils/hooks/http.py +84 -0
  221. plexflow/utils/hooks/postgresql.py +93 -0
  222. plexflow/utils/hooks/redis.py +112 -0
  223. plexflow/utils/image/storage.py +36 -0
  224. plexflow/utils/imdb/__init__.py +0 -0
  225. plexflow/utils/imdb/imdb_codes.py +107 -0
  226. plexflow/utils/pubsub/consume.py +82 -0
  227. plexflow/utils/pubsub/produce.py +25 -0
  228. plexflow/utils/retry/__init__.py +0 -0
  229. plexflow/utils/retry/utils.py +38 -0
  230. plexflow/utils/strings/__init__.py +0 -0
  231. plexflow/utils/strings/filesize.py +55 -0
  232. plexflow/utils/strings/language.py +14 -0
  233. plexflow/utils/subtitle/search.py +76 -0
  234. plexflow/utils/tasks/decorators.py +78 -0
  235. plexflow/utils/tasks/k8s/task.py +70 -0
  236. plexflow/utils/thread_safe/safe_list.py +54 -0
  237. plexflow/utils/thread_safe/safe_set.py +69 -0
  238. plexflow/utils/torrent/__init__.py +0 -0
  239. plexflow/utils/torrent/analyze.py +118 -0
  240. plexflow/utils/torrent/extract/common.py +37 -0
  241. plexflow/utils/torrent/extract/ext.py +2391 -0
  242. plexflow/utils/torrent/extract/extratorrent.py +56 -0
  243. plexflow/utils/torrent/extract/kat.py +1581 -0
  244. plexflow/utils/torrent/extract/tgx.py +96 -0
  245. plexflow/utils/torrent/extract/therarbg.py +170 -0
  246. plexflow/utils/torrent/extract/torrentquest.py +171 -0
  247. plexflow/utils/torrent/files.py +36 -0
  248. plexflow/utils/torrent/hash.py +90 -0
  249. plexflow/utils/transcribe/__init__.py +0 -0
  250. plexflow/utils/transcribe/speech2text.py +40 -0
  251. plexflow/utils/video/__init__.py +0 -0
  252. plexflow/utils/video/subtitle.py +73 -0
  253. plexflow-0.0.64.dist-info/METADATA +71 -0
  254. plexflow-0.0.64.dist-info/RECORD +256 -0
  255. plexflow-0.0.64.dist-info/WHEEL +4 -0
  256. plexflow-0.0.64.dist-info/entry_points.txt +24 -0
@@ -0,0 +1,1581 @@
1
+ from bs4 import BeautifulSoup
2
+ from dateutil.parser import parse
3
+
4
+ def extract_torrent_results(html):
5
+ """
6
+ Extracts torrent results from HTML content, converting age to absolute date using dateutil.parser.
7
+
8
+ Args:
9
+ html: The HTML content as a string.
10
+
11
+ Returns:
12
+ A list of dictionaries, each representing a torrent result with keys:
13
+ - 'download_name': The name of the torrent.
14
+ - 'magnet_link': The magnet link for the torrent.
15
+ - 'size': The size of the torrent.
16
+ - 'uploader': The uploader of the torrent.
17
+ - 'age': The absolute date the torrent was uploaded (datetime object).
18
+ - 'seeders': The number of seeders for the torrent.
19
+ - 'leechers': The number of leechers for the torrent.
20
+ """
21
+
22
+ soup = BeautifulSoup(html, 'html.parser')
23
+ torrent_results = []
24
+
25
+ # Find all table rows that contain torrent data
26
+ torrent_rows = soup.find_all('tr', class_=['odd', 'even'])
27
+
28
+ for row in torrent_rows:
29
+ torrent_result = {}
30
+
31
+ # Extract download name and link
32
+ download_name_element = row.find('div', class_='torrentname').find('a', class_='cellMainLink')
33
+ if download_name_element:
34
+ torrent_result['download_name'] = download_name_element.text.strip()
35
+ torrent_result['magnet_link'] = download_name_element['href']
36
+
37
+ # Extract other data from table cells
38
+ cols = row.find_all('td')
39
+ if len(cols) >= 6:
40
+ torrent_result['size'] = cols[1].text.strip()
41
+ torrent_result['uploader'] = cols[2].text.strip()
42
+
43
+ # Extract age and convert to absolute date using dateutil.parser
44
+ age_text = cols[3].text.strip()
45
+ torrent_result["age_text"] = age_text
46
+ if age_text:
47
+ try:
48
+ torrent_result['age'] = parse(age_text).replace(tzinfo=None) # Remove timezone info
49
+ except ValueError:
50
+ torrent_result['age'] = None # Handle cases where the age format is invalid
51
+
52
+ torrent_result['seeders'] = cols[4].text.strip()
53
+ torrent_result['leechers'] = cols[5].text.strip()
54
+
55
+ torrent_results.append(torrent_result)
56
+
57
+ return torrent_results
58
+
59
+ # Example usage
60
+ html_content = """
61
+
62
+ <!DOCTYPE html>
63
+ <html xmlns="http://www.w3.org/1999/xhtml" dir="auto">
64
+ <head>
65
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
66
+ <meta http-equiv="Content-Style-Type" content="text/css" />
67
+ <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
68
+ <title>Download planet of the apes 2024 Torrents - Kickass Torrents</title>
69
+ <meta name="description" content="Come and download planet of the apes 2024 absolutely for free. Fast downloads.">
70
+ <link rel="stylesheet" type="text/css" href="/static/all-5.css" charset="utf-8"/>
71
+ <link rel="shortcut icon" href="/favicon.ico" />
72
+ <link rel="apple-touch-icon" href="/static/apple-touch-icon.png?v=3" />
73
+ <!--[if IE 7]>
74
+ <link href="/static/css/ie7.css" rel="stylesheet" type="text/css" />
75
+ <![endif]-->
76
+ <!--[if IE 8]>
77
+ <link href="/static/css/ie8.css" rel="stylesheet" type="text/css" />
78
+ <![endif]-->
79
+ <!--[if lt IE 9]>
80
+
81
+ <![endif]-->
82
+ <!--[if gte IE 9]>
83
+ <link href="/static/css/ie9.css" rel="stylesheet" type="text/css" />
84
+ <![endif]-->
85
+
86
+ <meta name="apple-mobile-web-app-capable" content="yes" />
87
+ <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"
88
+ />
89
+
90
+ <style>
91
+ .feedbackButton,.spareBlock{display:none} header a#logo{background: url(/static/images/logo.png?v=3)}
92
+ </style>
93
+
94
+ </head>
95
+
96
+ <body class="mainBody">
97
+ <div id="wrapper">
98
+ <div id="wrapperInner">
99
+
100
+ <header>
101
+ <nav id="menu">
102
+ <a href="/" title="kickass" id="logo">
103
+ </a>
104
+ <a href="#" id="showHideSearch">
105
+ <i class="ka ka-zoom">
106
+ </i>
107
+ </a>
108
+ <div id="torrentSearch">
109
+ <form action="/search.php" method="get" id="searchform" accept-charset="utf-8"
110
+ onsubmit="return doSearch(this.q.value);">
111
+ <input id="contentSearch" class="input-big" type="text" name="q" value="planet of the apes 2024"
112
+ autocomplete="off" placeholder="Search query" />
113
+ <div id="searchTool">
114
+ <button title="search" type="submit" value onfocus="this.blur();" onclick="this.blur();">
115
+ <i class="ka ka-search">
116
+ </i>
117
+ </button>
118
+ </div>
119
+ </form>
120
+ </div>
121
+ <ul id="navigation">
122
+ <li>
123
+ <a href="/browse/">
124
+ <i class="ka ka-torrent">
125
+ </i>
126
+ <span class="menuItem">
127
+ browse
128
+ </span>
129
+ </a>
130
+ <ul class="dropdown dp-middle dropdown-msg upper">
131
+ <li class="topMsg">
132
+ <a href="/new/">
133
+ <i class="ka ka16 ka-torrent">
134
+ </i>
135
+ latest
136
+ </a>
137
+ </li>
138
+ <li class="topMsg">
139
+ <a href="/movies/">
140
+ <i class="ka ka16 ka-movie lower">
141
+ </i>
142
+ Movies
143
+ </a>
144
+ </li>
145
+ <li class="topMsg">
146
+ <a href="/tv/">
147
+ <i class="ka ka16 ka-movie lower">
148
+ </i>
149
+ TV
150
+ </a>
151
+ </li>
152
+ <li class="topMsg">
153
+ <a href="/music/">
154
+ <i class="ka ka16 ka-music-note lower">
155
+ </i>
156
+ Music
157
+ </a>
158
+ </li>
159
+ <li class="topMsg">
160
+ <a href="/games/">
161
+ <i class="ka ka16 ka-settings lower">
162
+ </i>
163
+ Games
164
+ </a>
165
+ </li>
166
+ <li class="topMsg">
167
+ <a href="/documentaries/">
168
+ <i class="ka ka16 ka-bookmark">
169
+ </i>
170
+ Doc
171
+ </a>
172
+ </li>
173
+ <li class="topMsg">
174
+ <a href="/apps/">
175
+ <i class="ka ka16 ka-settings lower">
176
+ </i>
177
+ Apps
178
+ </a>
179
+ </li>
180
+ <li class="topMsg">
181
+ <a href="/anime/">
182
+ <i class="ka ka16 ka-movie lower">
183
+ </i>
184
+ Anime
185
+ </a>
186
+ </li>
187
+ <li class="topMsg">
188
+ <a href="/other/">
189
+ <i class="ka ka16 ka-torrent">
190
+ </i>
191
+ Other
192
+ </a>
193
+ </li>
194
+ <li class="topMsg">
195
+ <a href="/xxx/">
196
+ <i class="ka ka16 ka-delete">
197
+ </i>
198
+ XXX
199
+ </a>
200
+ </li>
201
+ </ul>
202
+ </li>
203
+ <li>
204
+ <a data-nop href="#"> <i class="ka ka-community"></i><span class="menuItem">POPULAR</span></a>
205
+ <ul class="dropdown dp-middle dropdown-msg upper">
206
+ <li class="topMsg">
207
+ <a href="/popular">
208
+ <i class="ka ka16 ka-torrent">
209
+ </i>
210
+ all
211
+ </a>
212
+ </li>
213
+ <li class="topMsg">
214
+ <a href="/popular-movies">
215
+ <i class="ka ka16 ka-movie lower">
216
+ </i>
217
+ Movies
218
+ </a>
219
+ </li>
220
+ <li class="topMsg">
221
+ <a href="/popular-tv">
222
+ <i class="ka ka16 ka-movie lower">
223
+ </i>
224
+ TV
225
+ </a>
226
+ </li>
227
+ <li class="topMsg">
228
+ <a href="/popular-music">
229
+ <i class="ka ka16 ka-music-note lower">
230
+ </i>
231
+ Music
232
+ </a>
233
+ </li>
234
+ <li class="topMsg">
235
+ <a href="/popular-games">
236
+ <i class="ka ka16 ka-settings lower">
237
+ </i>
238
+ Games
239
+ </a>
240
+ </li>
241
+ <li class="topMsg">
242
+ <a href="/popular-documentaries">
243
+ <i class="ka ka16 ka-bookmark">
244
+ </i>
245
+ Doc
246
+ </a>
247
+ </li>
248
+ <li class="topMsg">
249
+ <a href="/popular-apps">
250
+ <i class="ka ka16 ka-settings lower">
251
+ </i>
252
+ Apps
253
+ </a>
254
+ </li>
255
+ <li class="topMsg">
256
+ <a href="/popular-anime">
257
+ <i class="ka ka16 ka-movie lower">
258
+ </i>
259
+ Anime
260
+ </a>
261
+ </li>
262
+ <li class="topMsg">
263
+ <a href="/popular-other">
264
+ <i class="ka ka16 ka-torrent">
265
+ </i>
266
+ Other
267
+ </a>
268
+ </li>
269
+ <li class="topMsg">
270
+ <a href="/popular-xxx">
271
+ <i class="ka ka16 ka-delete">
272
+ </i>
273
+ XXX
274
+ </a>
275
+ </li>
276
+ </ul>
277
+ </li>
278
+ <li>
279
+ <a data-nop href="#"><i class="ka ka-rss lower"></i><span class="menuItem">TOP</span></a>
280
+ <ul class="dropdown dp-middle dropdown-msg upper">
281
+ <li class="topMsg">
282
+ <a href="/top-100">
283
+ <i class="ka ka16 ka-torrent">
284
+ </i>
285
+ all
286
+ </a>
287
+ </li>
288
+ <li class="topMsg">
289
+ <a href="/top-100-movies">
290
+ <i class="ka ka16 ka-movie lower">
291
+ </i>
292
+ Movies
293
+ </a>
294
+ </li>
295
+ <li class="topMsg">
296
+ <a href="/top-100-television">
297
+ <i class="ka ka16 ka-movie lower">
298
+ </i>
299
+ TV
300
+ </a>
301
+ </li>
302
+ <li class="topMsg">
303
+ <a href="/top-100-music">
304
+ <i class="ka ka16 ka-music-note lower">
305
+ </i>
306
+ Music
307
+ </a>
308
+ </li>
309
+ <li class="topMsg">
310
+ <a href="/top-100-games">
311
+ <i class="ka ka16 ka-settings lower">
312
+ </i>
313
+ Games
314
+ </a>
315
+ </li>
316
+ <li class="topMsg">
317
+ <a href="/top-100-documentaries">
318
+ <i class="ka ka16 ka-bookmark">
319
+ </i>
320
+ Doc
321
+ </a>
322
+ </li>
323
+ <li class="topMsg">
324
+ <a href="/top-100-applications">
325
+ <i class="ka ka16 ka-settings lower">
326
+ </i>
327
+ Apps
328
+ </a>
329
+ </li>
330
+ <li class="topMsg">
331
+ <a href="/top-100-anime">
332
+ <i class="ka ka16 ka-movie lower">
333
+ </i>
334
+ Anime
335
+ </a>
336
+ </li>
337
+ <li class="topMsg">
338
+ <a href="/top-100-other">
339
+ <i class="ka ka16 ka-torrent">
340
+ </i>
341
+ Other
342
+ </a>
343
+ </li>
344
+ <li class="topMsg">
345
+ <a href="/top-100-xxx">
346
+ <i class="ka ka16 ka-delete">
347
+ </i>
348
+ XXX
349
+ </a>
350
+ </li>
351
+ </ul>
352
+ </li>
353
+ <li><a data-nop href="/register/" class="ajaxLink1"><i class="ka ka-user"></i><span class="menuItem">Register</span></a></li>
354
+ </ul>
355
+ </nav>
356
+ </header>
357
+ <div class="pusher">
358
+ </div>
359
+
360
+
361
+ <div class="mainpart">
362
+ <table width="100%" cellspacing="0" cellpadding="0" class="doublecelltable">
363
+ <tbody>
364
+ <tr>
365
+ <td width="100%">
366
+ <div class="tabs">
367
+ <ul class="tabNavigation">
368
+ <li>
369
+ <a class="darkButton " href="/search/planet of the apes 2024/">
370
+ <span>
371
+ All
372
+ </span>
373
+ </a>
374
+ </li>
375
+ <li>
376
+ <a rel="nofollow" class="darkButton selectedTab" href="/search/planet of the apes 2024/category/movies/">
377
+ <span>
378
+ Movies </span>
379
+ </a>
380
+ </li><li>
381
+ <a rel="nofollow" class="darkButton " href="/search/planet of the apes 2024/category/tv/">
382
+ <span>
383
+ TV </span>
384
+ </a>
385
+ </li><li>
386
+ <a rel="nofollow" class="darkButton " href="/search/planet of the apes 2024/category/music/">
387
+ <span>
388
+ Music </span>
389
+ </a>
390
+ </li><li>
391
+ <a rel="nofollow" class="darkButton " href="/search/planet of the apes 2024/category/games/">
392
+ <span>
393
+ Games </span>
394
+ </a>
395
+ </li><li>
396
+ <a rel="nofollow" class="darkButton " href="/search/planet of the apes 2024/category/documentaries/">
397
+ <span>
398
+ Documentaries </span>
399
+ </a>
400
+ </li><li>
401
+ <a rel="nofollow" class="darkButton " href="/search/planet of the apes 2024/category/apps/">
402
+ <span>
403
+ Apps </span>
404
+ </a>
405
+ </li><li>
406
+ <a rel="nofollow" class="darkButton " href="/search/planet of the apes 2024/category/anime/">
407
+ <span>
408
+ Anime </span>
409
+ </a>
410
+ </li><li>
411
+ <a rel="nofollow" class="darkButton " href="/search/planet of the apes 2024/category/other/">
412
+ <span>
413
+ Other </span>
414
+ </a>
415
+ </li><li>
416
+ <a rel="nofollow" class="darkButton " href="/search/planet of the apes 2024/category/xxx/">
417
+ <span>
418
+ XXX </span>
419
+ </a>
420
+ </li> </ul>
421
+ <hr class="tabsSeparator">
422
+ </div>
423
+ <nav class="searchTags">
424
+ <ul>
425
+ <li>
426
+ <a href="/search/planet of the apes 2024/">
427
+ in movies </a>
428
+ </li>
429
+ </ul>
430
+ </nav> <table width="100%" cellspacing="0" cellpadding="0" class="doublecelltable">
431
+ <tbody>
432
+ <tr>
433
+ <td width="100%">
434
+ <h2>
435
+ <a class="plain" href="javascript:void(0)">
436
+ planet of the apes 2024 results 1-20 from 48 </a>
437
+ </h2>
438
+ <div>
439
+ <table cellpadding="0" cellspacing="0" class="data frontPageWidget" style="width: 100%">
440
+ <tbody>
441
+ <tr class="firstr">
442
+ <th class="width100perc nopad">torrent name</th>
443
+ <th class="center">
444
+ <a href="?sortby=size&sort=desc">size</a> </th>
445
+ <th class="center">
446
+ uploader
447
+ </th>
448
+ <th class="center">
449
+ <a href="?sortby=time&sort=asc" style="padding: 0 2.9em;">age</a>
450
+ </th>
451
+ <th class="center">
452
+ <a href="?sortby=seeders&sort=desc">seed</a> </th>
453
+ <th class="lasttd nobr center">
454
+ <a href="?sortby=leechers&sort=desc">leech</a> </th>
455
+ </tr>
456
+ <tr class="odd" >
457
+ <td>
458
+ <div class="iaconbox center floatright">
459
+ <a data-download="" title="Download torrent file" target="_blank" href="#kingdom-of-the-planet-of-the-apes-2024-1080p-10bit-webrip-hindi-ddp-5-1-english-aac-5-1-dual-audio-x265-hevc-esubs-psa-protonmovies-t6181666.html"
460
+ class="icon16">
461
+ <i class="ka ka16 ka-arrow-down">
462
+ </i>
463
+ </a>
464
+ </div>
465
+ <div class="torrentname">
466
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-10bit-webrip-hindi-ddp-5-1-english-aac-5-1-dual-audio-x265-hevc-esubs-psa-t6181666.html"
467
+ class="torType filmType">
468
+ </a>
469
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-10bit-webrip-hindi-ddp-5-1-english-aac-5-1-dual-audio-x265-hevc-esubs-psa-t6181666.html"
470
+ class="normalgrey font12px plain bold">
471
+ </a>
472
+ <div class="markeredBlock torType filmType">
473
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-10bit-webrip-hindi-ddp-5-1-english-aac-5-1-dual-audio-x265-hevc-esubs-psa-t6181666.html"
474
+ class="cellMainLink">
475
+ Kingdom <strong class="red">of</strong> <strong class="red">The</strong> <strong class="red">Planet</strong> <strong class="red">of</strong> <strong class="red">The</strong> <strong class="red">Apes</strong> (<strong class="red">2024</strong>) 1080p 10bit WEBRip Hindi DDP 5 1 + English AAC 5 1 Dual Audio x265 HEVC ESubs - PSA ProtonMovies </a>
476
+ <span class="font11px lightgrey block">
477
+ Posted by
478
+ <i title="Verified Uploader" class="ka ka-verify" style="font-size: 16px;color:orange;">
479
+ </i>
480
+ <a class="plain" href="/user/AlejandroAXL/">
481
+ AlejandroAXL </a>
482
+ in
483
+ <span>
484
+ <strong>
485
+ <a href="/movies/">
486
+ Movies </a> &gt;
487
+ <a href="/movies/dubs+dual-audio/">
488
+ Dubs/Dual Audio </a>
489
+ </strong>
490
+ </span>
491
+ </span>
492
+ </div>
493
+ </div>
494
+ </td>
495
+ <td class="nobr center">
496
+ 2.5 GB </td>
497
+ <td class="center">
498
+ AlejandroAXL </td>
499
+ <td class="center" title="4<br/>days">
500
+ 4<br/>days </td>
501
+ <td class="green center">
502
+ 64 </td>
503
+ <td class="red lasttd center">
504
+ 55 </td>
505
+ </tr><tr class="even" >
506
+ <td>
507
+ <div class="iaconbox center floatright">
508
+ <a data-download="" title="Download torrent file" target="_blank" href="#kingdom-of-the-planet-of-the-apes-2024-720p-10bit-webrip-hindi-ddp-5-1-english-aac5-1-dual-audio-x265-hevc-esubs-psa-protonmovies-t6181668.html"
509
+ class="icon16">
510
+ <i class="ka ka16 ka-arrow-down">
511
+ </i>
512
+ </a>
513
+ </div>
514
+ <div class="torrentname">
515
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-720p-10bit-webrip-hindi-ddp-5-1-english-aac5-1-dual-audio-x265-hevc-esubs-psa-protonmovies-t6181668.html"
516
+ class="torType filmType">
517
+ </a>
518
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-720p-10bit-webrip-hindi-ddp-5-1-english-aac5-1-dual-audio-x265-hevc-esubs-psa-protonmovies-t6181668.html"
519
+ class="normalgrey font12px plain bold">
520
+ </a>
521
+ <div class="markeredBlock torType filmType">
522
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-720p-10bit-webrip-hindi-ddp-5-1-english-aac5-1-dual-audio-x265-hevc-esubs-psa-protonmovies-t6181668.html"
523
+ class="cellMainLink">
524
+ Kingdom <strong class="red">of</strong> <strong class="red">The</strong> <strong class="red">Planet</strong> <strong class="red">of</strong> <strong class="red">The</strong> <strong class="red">Apes</strong> (<strong class="red">2024</strong>) 720p 10bit WEBRip Hindi DDP 5 1 + English AAC5 1 Dual Audio x265 HEVC ESubs - PSA ProtonMovies </a>
525
+ <span class="font11px lightgrey block">
526
+ Posted by
527
+ <i title="Verified Uploader" class="ka ka-verify" style="font-size: 16px;color:orange;">
528
+ </i>
529
+ <a class="plain" href="/user/AlejandroAXL/">
530
+ AlejandroAXL </a>
531
+ in
532
+ <span>
533
+ <strong>
534
+ <a href="/movies/">
535
+ Movies </a> &gt;
536
+ <a href="/movies/dubs+dual-audio/">
537
+ Dubs/Dual Audio </a>
538
+ </strong>
539
+ </span>
540
+ </span>
541
+ </div>
542
+ </div>
543
+ </td>
544
+ <td class="nobr center">
545
+ 1.4 GB </td>
546
+ <td class="center">
547
+ AlejandroAXL </td>
548
+ <td class="center" title="4<br/>days">
549
+ 4<br/>days </td>
550
+ <td class="green center">
551
+ 40 </td>
552
+ <td class="red lasttd center">
553
+ 30 </td>
554
+ </tr><tr class="odd" >
555
+ <td>
556
+ <div class="iaconbox center floatright">
557
+ <a data-download="" title="Download torrent file" target="_blank" href="#kingdom-of-the-planet-of-the-apes-2024-720p-webrip-hindi-english-x264-aac-gopihd-t6179756.html"
558
+ class="icon16">
559
+ <i class="ka ka16 ka-arrow-down">
560
+ </i>
561
+ </a>
562
+ </div>
563
+ <div class="torrentname">
564
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-720p-webrip-hindi-english-x264-aac-gopihd-t6179756.html"
565
+ class="torType filmType">
566
+ </a>
567
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-720p-webrip-hindi-english-x264-aac-gopihd-t6179756.html"
568
+ class="normalgrey font12px plain bold">
569
+ </a>
570
+ <div class="markeredBlock torType filmType">
571
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-720p-webrip-hindi-english-x264-aac-gopihd-t6179756.html"
572
+ class="cellMainLink">
573
+ Kingdom <strong class="red">Of</strong> <strong class="red">The</strong> <strong class="red">Planet</strong> <strong class="red">Of</strong> <strong class="red">The</strong> <strong class="red">Apes</strong> <strong class="red">2024</strong> 720p WEBRip HINDI ENGLISH x264 AAC-GOPIHD </a>
574
+ <span class="font11px lightgrey block">
575
+ Posted by
576
+ <i title="Verified Uploader" class="ka ka-verify" style="font-size: 16px;color:orange;">
577
+ </i>
578
+ <a class="plain" href="/user/MrX123/">
579
+ MrX123 </a>
580
+ in
581
+ <span>
582
+ <strong>
583
+ <a href="/movies/">
584
+ Movies </a> &gt;
585
+ <a href="/movies/dubs+dual-audio/">
586
+ Dubs/Dual Audio </a>
587
+ </strong>
588
+ </span>
589
+ </span>
590
+ </div>
591
+ </div>
592
+ </td>
593
+ <td class="nobr center">
594
+ 1.5 GB </td>
595
+ <td class="center">
596
+ MrX123 </td>
597
+ <td class="center" title="7<br/>days">
598
+ 7<br/>days </td>
599
+ <td class="green center">
600
+ 27 </td>
601
+ <td class="red lasttd center">
602
+ 11 </td>
603
+ </tr><tr class="even" >
604
+ <td>
605
+ <div class="iaconbox center floatright">
606
+ <a data-download="" title="Download torrent file" target="_blank" href="#kingdom-of-the-planet-of-the-apes-2024-1080p-webrip-hindi-english-aac-10bit-x265-gopihd-t6179754.html"
607
+ class="icon16">
608
+ <i class="ka ka16 ka-arrow-down">
609
+ </i>
610
+ </a>
611
+ </div>
612
+ <div class="torrentname">
613
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-webrip-hindi-english-aac-10bit-x265-gopihd-t6179754.html"
614
+ class="torType filmType">
615
+ </a>
616
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-webrip-hindi-english-aac-10bit-x265-gopihd-t6179754.html"
617
+ class="normalgrey font12px plain bold">
618
+ </a>
619
+ <div class="markeredBlock torType filmType">
620
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-webrip-hindi-english-aac-10bit-x265-gopihd-t6179754.html"
621
+ class="cellMainLink">
622
+ Kingdom <strong class="red">Of</strong> <strong class="red">The</strong> <strong class="red">Planet</strong> <strong class="red">Of</strong> <strong class="red">The</strong> <strong class="red">Apes</strong> <strong class="red">2024</strong> 1080p WEBRip HINDI ENGLISH AAC 10BIT X265-GOPIHD </a>
623
+ <span class="font11px lightgrey block">
624
+ Posted by
625
+ <i title="Verified Uploader" class="ka ka-verify" style="font-size: 16px;color:orange;">
626
+ </i>
627
+ <a class="plain" href="/user/MrX123/">
628
+ MrX123 </a>
629
+ in
630
+ <span>
631
+ <strong>
632
+ <a href="/movies/">
633
+ Movies </a> &gt;
634
+ <a href="/movies/dubs+dual-audio/">
635
+ Dubs/Dual Audio </a>
636
+ </strong>
637
+ </span>
638
+ </span>
639
+ </div>
640
+ </div>
641
+ </td>
642
+ <td class="nobr center">
643
+ 1.8 GB </td>
644
+ <td class="center">
645
+ MrX123 </td>
646
+ <td class="center" title="7<br/>days">
647
+ 7<br/>days </td>
648
+ <td class="green center">
649
+ 77 </td>
650
+ <td class="red lasttd center">
651
+ 26 </td>
652
+ </tr><tr class="odd" >
653
+ <td>
654
+ <div class="iaconbox center floatright">
655
+ <a data-download="" title="Download torrent file" target="_blank" href="#kingdom-of-the-planet-of-the-apes-2024-720p-webrip-x265-aac-hin-eng-esub-t6179703.html"
656
+ class="icon16">
657
+ <i class="ka ka16 ka-arrow-down">
658
+ </i>
659
+ </a>
660
+ </div>
661
+ <div class="torrentname">
662
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-720p-webrip-x265-aac-hin-eng-esub-t6179703.html"
663
+ class="torType filmType">
664
+ </a>
665
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-720p-webrip-x265-aac-hin-eng-esub-t6179703.html"
666
+ class="normalgrey font12px plain bold">
667
+ </a>
668
+ <div class="markeredBlock torType filmType">
669
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-720p-webrip-x265-aac-hin-eng-esub-t6179703.html"
670
+ class="cellMainLink">
671
+ Kingdom <strong class="red">Of</strong> <strong class="red">The</strong> <strong class="red">Planet</strong> <strong class="red">Of</strong> <strong class="red">The</strong> <strong class="red">Apes</strong> (<strong class="red">2024</strong>) 720p WEBRip x265 AAC Hin, Eng ESub </a>
672
+ <span class="font11px lightgrey block">
673
+ Posted by
674
+ <i title="Verified Uploader" class="ka ka-verify" style="font-size: 16px;color:orange;">
675
+ </i>
676
+ <a class="plain" href="/user/krishh1337/">
677
+ krishh1337 </a>
678
+ in
679
+ <span>
680
+ <strong>
681
+ <a href="/movies/">
682
+ Movies </a> &gt;
683
+ <a href="/movies/dubs+dual-audio/">
684
+ Dubs/Dual Audio </a>
685
+ </strong>
686
+ </span>
687
+ </span>
688
+ </div>
689
+ </div>
690
+ </td>
691
+ <td class="nobr center">
692
+ 1 GB </td>
693
+ <td class="center">
694
+ krishh1337 </td>
695
+ <td class="center" title="7<br/>days">
696
+ 7<br/>days </td>
697
+ <td class="green center">
698
+ 107 </td>
699
+ <td class="red lasttd center">
700
+ 74 </td>
701
+ </tr><tr class="even" >
702
+ <td>
703
+ <div class="iaconbox center floatright">
704
+ <a data-download="" title="Download torrent file" target="_blank" href="#kingdom-of-the-planet-of-the-apes-2024-1080p-amzn-web-dl-x265-hevc-10bit-eac3-5-1-silence-qxr-t6161691.html"
705
+ class="icon16">
706
+ <i class="ka ka16 ka-arrow-down">
707
+ </i>
708
+ </a>
709
+ </div>
710
+ <div class="torrentname">
711
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-amzn-web-dl-x265-hevc-10bit-eac3-5-1-silence-qxr-t6161691.html"
712
+ class="torType filmType">
713
+ </a>
714
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-amzn-web-dl-x265-hevc-10bit-eac3-5-1-silence-qxr-t6161691.html"
715
+ class="normalgrey font12px plain bold">
716
+ </a>
717
+ <div class="markeredBlock torType filmType">
718
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-amzn-web-dl-x265-hevc-10bit-eac3-5-1-silence-qxr-t6161691.html"
719
+ class="cellMainLink">
720
+ Kingdom <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Planet</strong> <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Apes</strong> (<strong class="red">2024</strong>) (1080p AMZN WEB-DL x265 HEVC 10bit EAC3 5 1 Silence) QxR </a>
721
+ <span class="font11px lightgrey block">
722
+ Posted by
723
+ <i title="Verified Uploader" class="ka ka-verify" style="font-size: 16px;color:orange;">
724
+ </i>
725
+ <a class="plain" href="/user/QxR/">
726
+ QxR </a>
727
+ in
728
+ <span>
729
+ <strong>
730
+ <a href="/movies/">
731
+ Movies </a> &gt;
732
+ <a href="/movies/hevc+x265/">
733
+ HEVC/x265 </a>
734
+ </strong>
735
+ </span>
736
+ </span>
737
+ </div>
738
+ </div>
739
+ </td>
740
+ <td class="nobr center">
741
+ 6.4 GB </td>
742
+ <td class="center">
743
+ QxR </td>
744
+ <td class="center" title="27<br/>days">
745
+ 27<br/>days </td>
746
+ <td class="green center">
747
+ 230 </td>
748
+ <td class="red lasttd center">
749
+ 101 </td>
750
+ </tr><tr class="odd" >
751
+ <td>
752
+ <div class="iaconbox center floatright">
753
+ <a data-download="" title="Download torrent file" target="_blank" href="#kingdom-of-the-planet-of-the-apes-2024-1080p-web-rip-ds4k-10bit-hevc-ddp5-1-atmos-esub-nmct-t6161440.html"
754
+ class="icon16">
755
+ <i class="ka ka16 ka-arrow-down">
756
+ </i>
757
+ </a>
758
+ </div>
759
+ <div class="torrentname">
760
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-web-rip-ds4k-10bit-hevc-ddp5-1-atmos-esub-nmct-t6161440.html"
761
+ class="torType filmType">
762
+ </a>
763
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-web-rip-ds4k-10bit-hevc-ddp5-1-atmos-esub-nmct-t6161440.html"
764
+ class="normalgrey font12px plain bold">
765
+ </a>
766
+ <div class="markeredBlock torType filmType">
767
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-web-rip-ds4k-10bit-hevc-ddp5-1-atmos-esub-nmct-t6161440.html"
768
+ class="cellMainLink">
769
+ Kingdom <strong class="red">of</strong> <strong class="red">The</strong> <strong class="red">Planet</strong> <strong class="red">of</strong> <strong class="red">The</strong> <strong class="red">Apes</strong> <strong class="red">2024</strong> 1080p WEB-Rip DS4K 10bit HEVC DDP5 1 Atmos ESub-NmCT </a>
770
+ <span class="font11px lightgrey block">
771
+ Posted by
772
+ <i title="Verified Uploader" class="ka ka-verify" style="font-size: 16px;color:orange;">
773
+ </i>
774
+ <a class="plain" href="/user/WiCK0028/">
775
+ WiCK0028 </a>
776
+ in
777
+ <span>
778
+ <strong>
779
+ <a href="/movies/">
780
+ Movies </a> &gt;
781
+ <a href="/movies/hevc+x265/">
782
+ HEVC/x265 </a>
783
+ </strong>
784
+ </span>
785
+ </span>
786
+ </div>
787
+ </div>
788
+ </td>
789
+ <td class="nobr center">
790
+ 5.7 GB </td>
791
+ <td class="center">
792
+ WiCK0028 </td>
793
+ <td class="center" title="28<br/>days">
794
+ 28<br/>days </td>
795
+ <td class="green center">
796
+ 46 </td>
797
+ <td class="red lasttd center">
798
+ 36 </td>
799
+ </tr><tr class="even" >
800
+ <td>
801
+ <div class="iaconbox center floatright">
802
+ <a data-download="" title="Download torrent file" target="_blank" href="#kingdom-of-the-planet-of-the-apes-2024-2160p-hdr10plus-dv-webrip-6ch-x265-hevc-psa-t6161420.html"
803
+ class="icon16">
804
+ <i class="ka ka16 ka-arrow-down">
805
+ </i>
806
+ </a>
807
+ </div>
808
+ <div class="torrentname">
809
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-2160p-hdr10plus-dv-webrip-6ch-x265-hevc-psa-t6161420.html"
810
+ class="torType filmType">
811
+ </a>
812
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-2160p-hdr10plus-dv-webrip-6ch-x265-hevc-psa-t6161420.html"
813
+ class="normalgrey font12px plain bold">
814
+ </a>
815
+ <div class="markeredBlock torType filmType">
816
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-2160p-hdr10plus-dv-webrip-6ch-x265-hevc-psa-t6161420.html"
817
+ class="cellMainLink">
818
+ Kingdom <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Planet</strong> <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Apes</strong> <strong class="red">2024</strong> 2160p HDR10Plus DV WEBRip 6CH x265 HEVC-PSA </a>
819
+ <span class="font11px lightgrey block">
820
+ Posted by
821
+ <i title="Verified Uploader" class="ka ka-verify" style="font-size: 16px;color:orange;">
822
+ </i>
823
+ <a class="plain" href="/user/mazemaze16/">
824
+ mazemaze16 </a>
825
+ in
826
+ <span>
827
+ <strong>
828
+ <a href="/movies/">
829
+ Movies </a> &gt;
830
+ <a href="/movies/hevc+x265/">
831
+ HEVC/x265 </a>
832
+ </strong>
833
+ </span>
834
+ </span>
835
+ </div>
836
+ </div>
837
+ </td>
838
+ <td class="nobr center">
839
+ 4.5 GB </td>
840
+ <td class="center">
841
+ mazemaze16 </td>
842
+ <td class="center" title="28<br/>days">
843
+ 28<br/>days </td>
844
+ <td class="green center">
845
+ 49 </td>
846
+ <td class="red lasttd center">
847
+ 66 </td>
848
+ </tr><tr class="odd" >
849
+ <td>
850
+ <div class="iaconbox center floatright">
851
+ <a data-download="" title="Download torrent file" target="_blank" href="#kingdom-of-the-planet-of-the-apes-2024-1080p-webrip-x265-kontrast-t6160656.html"
852
+ class="icon16">
853
+ <i class="ka ka16 ka-arrow-down">
854
+ </i>
855
+ </a>
856
+ </div>
857
+ <div class="torrentname">
858
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-webrip-x265-kontrast-t6160656.html"
859
+ class="torType filmType">
860
+ </a>
861
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-webrip-x265-kontrast-t6160656.html"
862
+ class="normalgrey font12px plain bold">
863
+ </a>
864
+ <div class="markeredBlock torType filmType">
865
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-webrip-x265-kontrast-t6160656.html"
866
+ class="cellMainLink">
867
+ Kingdom <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Planet</strong> <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Apes</strong> <strong class="red">2024</strong> 1080p WEBRip x265-KONTRAST </a>
868
+ <span class="font11px lightgrey block">
869
+ Posted by
870
+ <i title="Verified Uploader" class="ka ka-verify" style="font-size: 16px;color:orange;">
871
+ </i>
872
+ <a class="plain" href="/user/rondobym/">
873
+ rondobym </a>
874
+ in
875
+ <span>
876
+ <strong>
877
+ <a href="/movies/">
878
+ Movies </a> &gt;
879
+ <a href="/movies/hevc+x265/">
880
+ HEVC/x265 </a>
881
+ </strong>
882
+ </span>
883
+ </span>
884
+ </div>
885
+ </div>
886
+ </td>
887
+ <td class="nobr center">
888
+ 2.7 GB </td>
889
+ <td class="center">
890
+ rondobym </td>
891
+ <td class="center" title="28<br/>days">
892
+ 28<br/>days </td>
893
+ <td class="green center">
894
+ 60 </td>
895
+ <td class="red lasttd center">
896
+ 66 </td>
897
+ </tr><tr class="even" >
898
+ <td>
899
+ <div class="iaconbox center floatright">
900
+ <a data-download="" title="Download torrent file" target="_blank" href="#kingdom-of-the-planet-of-the-apes-2024-720p-webrip-x265-proton-t6160657.html"
901
+ class="icon16">
902
+ <i class="ka ka16 ka-arrow-down">
903
+ </i>
904
+ </a>
905
+ </div>
906
+ <div class="torrentname">
907
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-720p-webrip-x265-proton-t6160657.html"
908
+ class="torType filmType">
909
+ </a>
910
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-720p-webrip-x265-proton-t6160657.html"
911
+ class="normalgrey font12px plain bold">
912
+ </a>
913
+ <div class="markeredBlock torType filmType">
914
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-720p-webrip-x265-proton-t6160657.html"
915
+ class="cellMainLink">
916
+ Kingdom <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Planet</strong> <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Apes</strong> <strong class="red">2024</strong> 720p WEBRip x265-PROTON </a>
917
+ <span class="font11px lightgrey block">
918
+ Posted by
919
+ <i title="Verified Uploader" class="ka ka-verify" style="font-size: 16px;color:orange;">
920
+ </i>
921
+ <a class="plain" href="/user/rondobym/">
922
+ rondobym </a>
923
+ in
924
+ <span>
925
+ <strong>
926
+ <a href="/movies/">
927
+ Movies </a> &gt;
928
+ <a href="/movies/hevc+x265/">
929
+ HEVC/x265 </a>
930
+ </strong>
931
+ </span>
932
+ </span>
933
+ </div>
934
+ </div>
935
+ </td>
936
+ <td class="nobr center">
937
+ 1.4 GB </td>
938
+ <td class="center">
939
+ rondobym </td>
940
+ <td class="center" title="28<br/>days">
941
+ 28<br/>days </td>
942
+ <td class="green center">
943
+ 25 </td>
944
+ <td class="red lasttd center">
945
+ 24 </td>
946
+ </tr><tr class="odd" >
947
+ <td>
948
+ <div class="iaconbox center floatright">
949
+ <a data-download="" title="Download torrent file" target="_blank" href="#kingdom-of-the-planet-of-the-apes-il-regno-del-pianeta-delle-scimmie-2024-ita-eng-ac3-5-1-sub-ita-webrip-1080p-h264-armor-t6160503.html"
950
+ class="icon16">
951
+ <i class="ka ka16 ka-arrow-down">
952
+ </i>
953
+ </a>
954
+ </div>
955
+ <div class="torrentname">
956
+ <a href="/kingdom-of-the-planet-of-the-apes-il-regno-del-pianeta-delle-scimmie-2024-ita-eng-ac3-5-1-sub-ita-webrip-1080p-h264-armor-t6160503.html"
957
+ class="torType filmType">
958
+ </a>
959
+ <a href="/kingdom-of-the-planet-of-the-apes-il-regno-del-pianeta-delle-scimmie-2024-ita-eng-ac3-5-1-sub-ita-webrip-1080p-h264-armor-t6160503.html"
960
+ class="normalgrey font12px plain bold">
961
+ </a>
962
+ <div class="markeredBlock torType filmType">
963
+ <a href="/kingdom-of-the-planet-of-the-apes-il-regno-del-pianeta-delle-scimmie-2024-ita-eng-ac3-5-1-sub-ita-webrip-1080p-h264-armor-t6160503.html"
964
+ class="cellMainLink">
965
+ Kingdom <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Planet</strong> <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Apes</strong> - Il Regno del Pianeta delle Scimmie (<strong class="red">2024</strong>) ITA ENG Ac3 5 1 sub Ita WEBRip 1080p H264 ArMor </a>
966
+ <span class="font11px lightgrey block">
967
+ Posted by
968
+ <i title="Verified Uploader" class="ka ka-verify" style="font-size: 16px;color:orange;">
969
+ </i>
970
+ <a class="plain" href="/user/ArMor/">
971
+ ArMor </a>
972
+ in
973
+ <span>
974
+ <strong>
975
+ <a href="/movies/">
976
+ Movies </a> &gt;
977
+ <a href="/movies/hd/">
978
+ HD </a>
979
+ </strong>
980
+ </span>
981
+ </span>
982
+ </div>
983
+ </div>
984
+ </td>
985
+ <td class="nobr center">
986
+ 3.6 GB </td>
987
+ <td class="center">
988
+ ArMor </td>
989
+ <td class="center" title="28<br/>days">
990
+ 28<br/>days </td>
991
+ <td class="green center">
992
+ 27 </td>
993
+ <td class="red lasttd center">
994
+ 16 </td>
995
+ </tr><tr class="even" >
996
+ <td>
997
+ <div class="iaconbox center floatright">
998
+ <a data-download="" title="Download torrent file" target="_blank" href="#kingdom-of-the-planet-of-the-apes-2024-2160p-amzn-web-dl-ddp5-1-atmos-h-265-xebec-t6160327.html"
999
+ class="icon16">
1000
+ <i class="ka ka16 ka-arrow-down">
1001
+ </i>
1002
+ </a>
1003
+ </div>
1004
+ <div class="torrentname">
1005
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-2160p-amzn-web-dl-ddp5-1-atmos-h-265-xebec-t6160327.html"
1006
+ class="torType filmType">
1007
+ </a>
1008
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-2160p-amzn-web-dl-ddp5-1-atmos-h-265-xebec-t6160327.html"
1009
+ class="normalgrey font12px plain bold">
1010
+ </a>
1011
+ <div class="markeredBlock torType filmType">
1012
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-2160p-amzn-web-dl-ddp5-1-atmos-h-265-xebec-t6160327.html"
1013
+ class="cellMainLink">
1014
+ Kingdom <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Planet</strong> <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Apes</strong> <strong class="red">2024</strong> 2160p AMZN WEB-DL DDP5 1 Atmos H 265-XEBEC </a>
1015
+ <span class="font11px lightgrey block">
1016
+ Posted by
1017
+ <i title="Verified Uploader" class="ka ka-verify" style="font-size: 16px;color:orange;">
1018
+ </i>
1019
+ <a class="plain" href="/user/mazemaze16/">
1020
+ mazemaze16 </a>
1021
+ in
1022
+ <span>
1023
+ <strong>
1024
+ <a href="/movies/">
1025
+ Movies </a> &gt;
1026
+ <a href="/movies/hevc+x265/">
1027
+ HEVC/x265 </a>
1028
+ </strong>
1029
+ </span>
1030
+ </span>
1031
+ </div>
1032
+ </div>
1033
+ </td>
1034
+ <td class="nobr center">
1035
+ 15.7 GB </td>
1036
+ <td class="center">
1037
+ mazemaze16 </td>
1038
+ <td class="center" title="29<br/>days">
1039
+ 29<br/>days </td>
1040
+ <td class="green center">
1041
+ 121 </td>
1042
+ <td class="red lasttd center">
1043
+ 93 </td>
1044
+ </tr><tr class="odd" >
1045
+ <td>
1046
+ <div class="iaconbox center floatright">
1047
+ <a data-download="" title="Download torrent file" target="_blank" href="#kingdom-of-the-planet-of-the-apes-2024-1080p-amzn-web-dl-ddp5-1-h-264-xebec-t6160323.html"
1048
+ class="icon16">
1049
+ <i class="ka ka16 ka-arrow-down">
1050
+ </i>
1051
+ </a>
1052
+ </div>
1053
+ <div class="torrentname">
1054
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-amzn-web-dl-ddp5-1-h-264-xebec-t6160323.html"
1055
+ class="torType filmType">
1056
+ </a>
1057
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-amzn-web-dl-ddp5-1-h-264-xebec-t6160323.html"
1058
+ class="normalgrey font12px plain bold">
1059
+ </a>
1060
+ <div class="markeredBlock torType filmType">
1061
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-amzn-web-dl-ddp5-1-h-264-xebec-t6160323.html"
1062
+ class="cellMainLink">
1063
+ Kingdom <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Planet</strong> <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Apes</strong> <strong class="red">2024</strong> 1080p AMZN WEB-DL DDP5 1 H 264-XEBEC </a>
1064
+ <span class="font11px lightgrey block">
1065
+ Posted by
1066
+ <i title="Verified Uploader" class="ka ka-verify" style="font-size: 16px;color:orange;">
1067
+ </i>
1068
+ <a class="plain" href="/user/mazemaze16/">
1069
+ mazemaze16 </a>
1070
+ in
1071
+ <span>
1072
+ <strong>
1073
+ <a href="/movies/">
1074
+ Movies </a> &gt;
1075
+ <a href="/movies/h.264+x264/">
1076
+ h.264/x264 </a>
1077
+ </strong>
1078
+ </span>
1079
+ </span>
1080
+ </div>
1081
+ </div>
1082
+ </td>
1083
+ <td class="nobr center">
1084
+ 8.3 GB </td>
1085
+ <td class="center">
1086
+ mazemaze16 </td>
1087
+ <td class="center" title="29<br/>days">
1088
+ 29<br/>days </td>
1089
+ <td class="green center">
1090
+ 244 </td>
1091
+ <td class="red lasttd center">
1092
+ 88 </td>
1093
+ </tr><tr class="even" >
1094
+ <td>
1095
+ <div class="iaconbox center floatright">
1096
+ <a data-download="" title="Download torrent file" target="_blank" href="#kingdom-of-the-planet-of-the-apes-2024-spanish-latino-1080p-web-dl-ddp7-1-h-264-dem3nt3-t6160011.html"
1097
+ class="icon16">
1098
+ <i class="ka ka16 ka-arrow-down">
1099
+ </i>
1100
+ </a>
1101
+ </div>
1102
+ <div class="torrentname">
1103
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-spanish-latino-1080p-web-dl-ddp7-1-h-264-dem3nt3-t6160011.html"
1104
+ class="torType filmType">
1105
+ </a>
1106
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-spanish-latino-1080p-web-dl-ddp7-1-h-264-dem3nt3-t6160011.html"
1107
+ class="normalgrey font12px plain bold">
1108
+ </a>
1109
+ <div class="markeredBlock torType filmType">
1110
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-spanish-latino-1080p-web-dl-ddp7-1-h-264-dem3nt3-t6160011.html"
1111
+ class="cellMainLink">
1112
+ Kingdom <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Planet</strong> <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Apes</strong> <strong class="red">2024</strong> SPANiSH LATiNO 1080p WEB-DL DDP7 1 H 264-dem3nt3 </a>
1113
+ <span class="font11px lightgrey block">
1114
+ Posted by
1115
+ <i title="Verified Uploader" class="ka ka-verify" style="font-size: 16px;color:orange;">
1116
+ </i>
1117
+ <a class="plain" href="/user/outr0x/">
1118
+ outr0x </a>
1119
+ in
1120
+ <span>
1121
+ <strong>
1122
+ <a href="/movies/">
1123
+ Movies </a> &gt;
1124
+ <a href="/movies/hd/">
1125
+ HD </a>
1126
+ </strong>
1127
+ </span>
1128
+ </span>
1129
+ </div>
1130
+ </div>
1131
+ </td>
1132
+ <td class="nobr center">
1133
+ 8.7 GB </td>
1134
+ <td class="center">
1135
+ outr0x </td>
1136
+ <td class="center" title="29<br/>days">
1137
+ 29<br/>days </td>
1138
+ <td class="green center">
1139
+ 14 </td>
1140
+ <td class="red lasttd center">
1141
+ 34 </td>
1142
+ </tr><tr class="odd" >
1143
+ <td>
1144
+ <div class="iaconbox center floatright">
1145
+ <a data-download="" title="Download torrent file" target="_blank" href="#kingdom-of-the-planet-of-the-apes-2024-spanish-latino-2160p-web-dl-ddp7-1-hdr10-h-265-dem3nt3-t6160012.html"
1146
+ class="icon16">
1147
+ <i class="ka ka16 ka-arrow-down">
1148
+ </i>
1149
+ </a>
1150
+ </div>
1151
+ <div class="torrentname">
1152
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-spanish-latino-2160p-web-dl-ddp7-1-hdr10-h-265-dem3nt3-t6160012.html"
1153
+ class="torType filmType">
1154
+ </a>
1155
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-spanish-latino-2160p-web-dl-ddp7-1-hdr10-h-265-dem3nt3-t6160012.html"
1156
+ class="normalgrey font12px plain bold">
1157
+ </a>
1158
+ <div class="markeredBlock torType filmType">
1159
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-spanish-latino-2160p-web-dl-ddp7-1-hdr10-h-265-dem3nt3-t6160012.html"
1160
+ class="cellMainLink">
1161
+ Kingdom <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Planet</strong> <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Apes</strong> <strong class="red">2024</strong> SPANiSH LATiNO 2160p WEB-DL DDP7 1 HDR10 H 265-dem3nt3 </a>
1162
+ <span class="font11px lightgrey block">
1163
+ Posted by
1164
+ <i title="Verified Uploader" class="ka ka-verify" style="font-size: 16px;color:orange;">
1165
+ </i>
1166
+ <a class="plain" href="/user/outr0x/">
1167
+ outr0x </a>
1168
+ in
1169
+ <span>
1170
+ <strong>
1171
+ <a href="/movies/">
1172
+ Movies </a> &gt;
1173
+ <a href="/movies/hevc+x265/">
1174
+ HEVC/x265 </a>
1175
+ </strong>
1176
+ </span>
1177
+ </span>
1178
+ </div>
1179
+ </div>
1180
+ </td>
1181
+ <td class="nobr center">
1182
+ 26.3 GB </td>
1183
+ <td class="center">
1184
+ outr0x </td>
1185
+ <td class="center" title="29<br/>days">
1186
+ 29<br/>days </td>
1187
+ <td class="green center">
1188
+ 21 </td>
1189
+ <td class="red lasttd center">
1190
+ 75 </td>
1191
+ </tr><tr class="even" >
1192
+ <td>
1193
+ <div class="iaconbox center floatright">
1194
+ <a data-download="" title="Download torrent file" target="_blank" href="#planet-of-the-apes-il-pianeta-delle-scimmie-saga-2011-2024-1080p-h265-ac3-5-1-ita-eng-sub-ita-eng-mircrew-t6159912.html"
1195
+ class="icon16">
1196
+ <i class="ka ka16 ka-arrow-down">
1197
+ </i>
1198
+ </a>
1199
+ </div>
1200
+ <div class="torrentname">
1201
+ <a href="/planet-of-the-apes-il-pianeta-delle-scimmie-saga-2011-2024-1080p-h265-ac3-5-1-ita-eng-sub-ita-eng-mircrew-t6159912.html"
1202
+ class="torType filmType">
1203
+ </a>
1204
+ <a href="/planet-of-the-apes-il-pianeta-delle-scimmie-saga-2011-2024-1080p-h265-ac3-5-1-ita-eng-sub-ita-eng-mircrew-t6159912.html"
1205
+ class="normalgrey font12px plain bold">
1206
+ </a>
1207
+ <div class="markeredBlock torType filmType">
1208
+ <a href="/planet-of-the-apes-il-pianeta-delle-scimmie-saga-2011-2024-1080p-h265-ac3-5-1-ita-eng-sub-ita-eng-mircrew-t6159912.html"
1209
+ class="cellMainLink">
1210
+ <strong class="red">Planet</strong> <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Apes</strong> - Il pianeta delle scimmie Saga (2011-<strong class="red">2024</strong>) 1080p H265 AC3 5 1 ITA ENG sub ita eng MIRCrew </a>
1211
+ <span class="font11px lightgrey block">
1212
+ Posted by
1213
+ <i title="Verified Uploader" class="ka ka-verify" style="font-size: 16px;color:orange;">
1214
+ </i>
1215
+ <a class="plain" href="/user/robbyrs/">
1216
+ robbyrs </a>
1217
+ in
1218
+ <span>
1219
+ <strong>
1220
+ <a href="/movies/">
1221
+ Movies </a> &gt;
1222
+ <a href="/movies/hevc+x265/">
1223
+ HEVC/x265 </a>
1224
+ </strong>
1225
+ </span>
1226
+ </span>
1227
+ </div>
1228
+ </div>
1229
+ </td>
1230
+ <td class="nobr center">
1231
+ 12.6 GB </td>
1232
+ <td class="center">
1233
+ robbyrs </td>
1234
+ <td class="center" title="29<br/>days">
1235
+ 29<br/>days </td>
1236
+ <td class="green center">
1237
+ 5 </td>
1238
+ <td class="red lasttd center">
1239
+ 12 </td>
1240
+ </tr><tr class="odd" >
1241
+ <td>
1242
+ <div class="iaconbox center floatright">
1243
+ <a data-download="" title="Download torrent file" target="_blank" href="#planet-of-the-apes-il-pianeta-delle-scimmie-saga-2011-2024-2160p-h265-hdr10-ac3-5-1-ita-eng-sub-ita-eng-mircrew-t6159913.html"
1244
+ class="icon16">
1245
+ <i class="ka ka16 ka-arrow-down">
1246
+ </i>
1247
+ </a>
1248
+ </div>
1249
+ <div class="torrentname">
1250
+ <a href="/planet-of-the-apes-il-pianeta-delle-scimmie-saga-2011-2024-2160p-h265-hdr10-ac3-5-1-ita-eng-sub-ita-eng-mircrew-t6159913.html"
1251
+ class="torType filmType">
1252
+ </a>
1253
+ <a href="/planet-of-the-apes-il-pianeta-delle-scimmie-saga-2011-2024-2160p-h265-hdr10-ac3-5-1-ita-eng-sub-ita-eng-mircrew-t6159913.html"
1254
+ class="normalgrey font12px plain bold">
1255
+ </a>
1256
+ <div class="markeredBlock torType filmType">
1257
+ <a href="/planet-of-the-apes-il-pianeta-delle-scimmie-saga-2011-2024-2160p-h265-hdr10-ac3-5-1-ita-eng-sub-ita-eng-mircrew-t6159913.html"
1258
+ class="cellMainLink">
1259
+ <strong class="red">Planet</strong> <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Apes</strong> - Il pianeta delle scimmie Saga (2011-<strong class="red">2024</strong>) 2160p H265 HDR10 AC3 5 1 ITA ENG sub ita eng MIRCrew </a>
1260
+ <span class="font11px lightgrey block">
1261
+ Posted by
1262
+ <i title="Verified Uploader" class="ka ka-verify" style="font-size: 16px;color:orange;">
1263
+ </i>
1264
+ <a class="plain" href="/user/robbyrs/">
1265
+ robbyrs </a>
1266
+ in
1267
+ <span>
1268
+ <strong>
1269
+ <a href="/movies/">
1270
+ Movies </a> &gt;
1271
+ <a href="/movies/hevc+x265/">
1272
+ HEVC/x265 </a>
1273
+ </strong>
1274
+ </span>
1275
+ </span>
1276
+ </div>
1277
+ </div>
1278
+ </td>
1279
+ <td class="nobr center">
1280
+ 16.1 GB </td>
1281
+ <td class="center">
1282
+ robbyrs </td>
1283
+ <td class="center" title="29<br/>days">
1284
+ 29<br/>days </td>
1285
+ <td class="green center">
1286
+ 7 </td>
1287
+ <td class="red lasttd center">
1288
+ 6 </td>
1289
+ </tr><tr class="even" >
1290
+ <td>
1291
+ <div class="iaconbox center floatright">
1292
+ <a data-download="" title="Download torrent file" target="_blank" href="#kingdom-of-the-planet-of-the-apes-2024-4k-hdr-dv-2160p-webdl-ita-eng-x265-nahom-t6159794.html"
1293
+ class="icon16">
1294
+ <i class="ka ka16 ka-arrow-down">
1295
+ </i>
1296
+ </a>
1297
+ </div>
1298
+ <div class="torrentname">
1299
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-4k-hdr-dv-2160p-webdl-ita-eng-x265-nahom-t6159794.html"
1300
+ class="torType filmType">
1301
+ </a>
1302
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-4k-hdr-dv-2160p-webdl-ita-eng-x265-nahom-t6159794.html"
1303
+ class="normalgrey font12px plain bold">
1304
+ </a>
1305
+ <div class="markeredBlock torType filmType">
1306
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-4k-hdr-dv-2160p-webdl-ita-eng-x265-nahom-t6159794.html"
1307
+ class="cellMainLink">
1308
+ Kingdom <strong class="red">Of</strong> <strong class="red">The</strong> <strong class="red">Planet</strong> <strong class="red">Of</strong> <strong class="red">The</strong> <strong class="red">Apes</strong> <strong class="red">2024</strong> 4K HDR DV 2160p WEBDL Ita Eng x265-NAHOM </a>
1309
+ <span class="font11px lightgrey block">
1310
+ Posted by
1311
+ <i title="Verified Uploader" class="ka ka-verify" style="font-size: 16px;color:orange;">
1312
+ </i>
1313
+ <a class="plain" href="/user/NAHOM1/">
1314
+ NAHOM1 </a>
1315
+ in
1316
+ <span>
1317
+ <strong>
1318
+ <a href="/movies/">
1319
+ Movies </a> &gt;
1320
+ <a href="/movies/uhd/">
1321
+ UHD </a>
1322
+ </strong>
1323
+ </span>
1324
+ </span>
1325
+ </div>
1326
+ </div>
1327
+ </td>
1328
+ <td class="nobr center">
1329
+ 25.6 GB </td>
1330
+ <td class="center">
1331
+ NAHOM1 </td>
1332
+ <td class="center" title="29<br/>days">
1333
+ 29<br/>days </td>
1334
+ <td class="green center">
1335
+ 46 </td>
1336
+ <td class="red lasttd center">
1337
+ 74 </td>
1338
+ </tr><tr class="odd" >
1339
+ <td>
1340
+ <div class="iaconbox center floatright">
1341
+ <a data-download="" title="Download torrent file" target="_blank" href="#il-regno-del-pianeta-delle-scimmie-kingdom-of-the-planet-of-the-apes-2024-1080p-h265-webdl-rip-ita-eng-ac3-5-1-sub-ita-eng-licdom-t6159679.html"
1342
+ class="icon16">
1343
+ <i class="ka ka16 ka-arrow-down">
1344
+ </i>
1345
+ </a>
1346
+ </div>
1347
+ <div class="torrentname">
1348
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-10bit-webrip-hindi-ddp-5-1-english-aac-5-1-dual-audio-x265-hevc-esubs-psa-il-regno-del-pianeta-delle-scimmie-kingdom-of-the-planet-of-the-apes-2024-1080p-h265-webdl-rip-ita-eng-ac3-5-1-sub-ita-t6159679.html"
1349
+ class="torType filmType">
1350
+ </a>
1351
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-10bit-webrip-hindi-ddp-5-1-english-aac-5-1-dual-audio-x265-hevc-esubs-psa-il-regno-del-pianeta-delle-scimmie-kingdom-of-the-planet-of-the-apes-2024-1080p-h265-webdl-rip-ita-eng-ac3-5-1-sub-ita-t6159679.html"
1352
+ class="normalgrey font12px plain bold">
1353
+ </a>
1354
+ <div class="markeredBlock torType filmType">
1355
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-10bit-webrip-hindi-ddp-5-1-english-aac-5-1-dual-audio-x265-hevc-esubs-psa-il-regno-del-pianeta-delle-scimmie-kingdom-of-the-planet-of-the-apes-2024-1080p-h265-webdl-rip-ita-eng-ac3-5-1-sub-ita-t6159679.html"
1356
+ class="cellMainLink">
1357
+ Il regno del pianeta delle scimmie - Kingdom <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Planet</strong> <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Apes</strong> (<strong class="red">2024</strong>) 1080p H265 WebDl Rip ita eng AC3 5 1 sub ita eng Licdom </a>
1358
+ <span class="font11px lightgrey block">
1359
+ Posted by
1360
+ <i title="Verified Uploader" class="ka ka-verify" style="font-size: 16px;color:orange;">
1361
+ </i>
1362
+ <a class="plain" href="/user/licdom/">
1363
+ licdom </a>
1364
+ in
1365
+ <span>
1366
+ <strong>
1367
+ <a href="/movies/">
1368
+ Movies </a> &gt;
1369
+ <a href="/movies/hd/">
1370
+ HD </a>
1371
+ </strong>
1372
+ </span>
1373
+ </span>
1374
+ </div>
1375
+ </div>
1376
+ </td>
1377
+ <td class="nobr center">
1378
+ 3.3 GB </td>
1379
+ <td class="center">
1380
+ licdom </td>
1381
+ <td class="center" title="29<br/>days">
1382
+ 29<br/>days </td>
1383
+ <td class="green center">
1384
+ 32 </td>
1385
+ <td class="red lasttd center">
1386
+ 7 </td>
1387
+ </tr><tr class="even" >
1388
+ <td>
1389
+ <div class="iaconbox center floatright">
1390
+ <a data-download="" title="Download torrent file" target="_blank" href="#il-regno-del-pianeta-delle-scimmie-kingdom-of-the-planet-of-the-apes-2024-2160p-h265-webdl-rip-10-bit-dv-hdr10-ita-eng-ac3-5-1-sub-ita-eng-licdom-t6159680.html"
1391
+ class="icon16">
1392
+ <i class="ka ka16 ka-arrow-down">
1393
+ </i>
1394
+ </a>
1395
+ </div>
1396
+ <div class="torrentname">
1397
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-10bit-webrip-hindi-ddp-5-1-english-aac-5-1-dual-audio-x265-hevc-esubs-psa-il-regno-del-pianeta-delle-scimmie-kingdom-of-the-planet-of-the-apes-2024-1080p-h265-webdl-rip-ita-eng-ac3-5-1-sub-ita-il-regno-del-pianeta-delle-scimmie-kingdom-of-the-planet-of-the-apes-2024-2160p-h265-webdl-rip-10-bit-dv-hdr10-ita-eng-ac3-t6159680.html"
1398
+ class="torType filmType">
1399
+ </a>
1400
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-10bit-webrip-hindi-ddp-5-1-english-aac-5-1-dual-audio-x265-hevc-esubs-psa-il-regno-del-pianeta-delle-scimmie-kingdom-of-the-planet-of-the-apes-2024-1080p-h265-webdl-rip-ita-eng-ac3-5-1-sub-ita-il-regno-del-pianeta-delle-scimmie-kingdom-of-the-planet-of-the-apes-2024-2160p-h265-webdl-rip-10-bit-dv-hdr10-ita-eng-ac3-t6159680.html"
1401
+ class="normalgrey font12px plain bold">
1402
+ </a>
1403
+ <div class="markeredBlock torType filmType">
1404
+ <a href="/kingdom-of-the-planet-of-the-apes-2024-1080p-10bit-webrip-hindi-ddp-5-1-english-aac-5-1-dual-audio-x265-hevc-esubs-psa-il-regno-del-pianeta-delle-scimmie-kingdom-of-the-planet-of-the-apes-2024-1080p-h265-webdl-rip-ita-eng-ac3-5-1-sub-ita-il-regno-del-pianeta-delle-scimmie-kingdom-of-the-planet-of-the-apes-2024-2160p-h265-webdl-rip-10-bit-dv-hdr10-ita-eng-ac3-t6159680.html"
1405
+ class="cellMainLink">
1406
+ Il regno del pianeta delle scimmie - Kingdom <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Planet</strong> <strong class="red">of</strong> <strong class="red">the</strong> <strong class="red">Apes</strong> (<strong class="red">2024</strong>) 2160p H265 WebDl Rip 10 bit DV HDR10+ ita eng AC3 5 1 sub ita eng Licdom </a>
1407
+ <span class="font11px lightgrey block">
1408
+ Posted by
1409
+ <i title="Verified Uploader" class="ka ka-verify" style="font-size: 16px;color:orange;">
1410
+ </i>
1411
+ <a class="plain" href="/user/licdom/">
1412
+ licdom </a>
1413
+ in
1414
+ <span>
1415
+ <strong>
1416
+ <a href="/movies/">
1417
+ Movies </a> &gt;
1418
+ <a href="/movies/uhd/">
1419
+ UHD </a>
1420
+ </strong>
1421
+ </span>
1422
+ </span>
1423
+ </div>
1424
+ </div>
1425
+ </td>
1426
+ <td class="nobr center">
1427
+ 5.5 GB </td>
1428
+ <td class="center">
1429
+ licdom </td>
1430
+ <td class="center" title="29<br/>days">
1431
+ 29<br/>days </td>
1432
+ <td class="green center">
1433
+ 27 </td>
1434
+ <td class="red lasttd center">
1435
+ 18 </td>
1436
+ </tr> </tbody>
1437
+ </table>
1438
+ </div>
1439
+ </td>
1440
+ </tr>
1441
+ </tbody>
1442
+ </table>
1443
+ <div class="pages botmarg5px floatright"> <a href="javascript:void(0)" class="turnoverButton siteButton bigButton active">1</a><a class="turnoverButton siteButton bigButton" href="/search/planet%20of%20the%20apes%202024/category/movies/2/">2</a><a class="turnoverButton siteButton bigButton" href="/search/planet%20of%20the%20apes%202024/category/movies/3/">3</a> <a class="turnoverButton siteButton bigButton" href="/search/planet%20of%20the%20apes%202024/category/movies/2/">>></a> </ul></div> </td>
1444
+ <td class="sidebarCell">
1445
+ <div id="sidebar">
1446
+ <div class="sliderbox">
1447
+ <h3>
1448
+ Latest Searches
1449
+ <i class="sliderBoxToggle ka ka16 ka-arrow2-up foldClose">
1450
+ </i>
1451
+ </h3>
1452
+ <ul id="latestSearches" rel="latestSearches" class="showBlockJS">
1453
+ <li>
1454
+ <a href="/search/BOOTY/"><i class="ka ka16 ka-zoom latest-icon"></i><p class="latest-title">BOOTY</p></a>
1455
+ <span class="explanation">just&nbsp;now</span>
1456
+ </li><li>
1457
+ <a href="/search/The+mermaid/"><i class="ka ka16 ka-zoom latest-icon"></i><p class="latest-title">The+mermaid</p></a>
1458
+ <span class="explanation">just&nbsp;now</span>
1459
+ </li><li>
1460
+ <a href="/search/True detective/"><i class="ka ka16 ka-zoom latest-icon"></i><p class="latest-title">True detective</p></a>
1461
+ <span class="explanation">just&nbsp;now</span>
1462
+ </li><li>
1463
+ <a href="/search/babes/"><i class="ka ka16 ka-zoom latest-icon"></i><p class="latest-title">babes</p></a>
1464
+ <span class="explanation">just&nbsp;now</span>
1465
+ </li><li>
1466
+ <a href="/search/heroes might magic 5/"><i class="ka ka16 ka-zoom latest-icon"></i><p class="latest-title">heroes might magic 5</p></a>
1467
+ <span class="explanation">just&nbsp;now</span>
1468
+ </li><li>
1469
+ <a href="/search/Jane mcdonald/"><i class="ka ka16 ka-zoom latest-icon"></i><p class="latest-title">Jane mcdonald</p></a>
1470
+ <span class="explanation">just&nbsp;now</span>
1471
+ </li><li>
1472
+ <a href="/search/mummies 2014/"><i class="ka ka16 ka-zoom latest-icon"></i><p class="latest-title">mummies 2014</p></a>
1473
+ <span class="explanation">just&nbsp;now</span>
1474
+ </li><li>
1475
+ <a href="/search/aerial america s08e05/"><i class="ka ka16 ka-zoom latest-icon"></i><p class="latest-title">aerial america s08e05</p></a>
1476
+ <span class="explanation">just&nbsp;now</span>
1477
+ </li><li>
1478
+ <a href="/search/psychology/"><i class="ka ka16 ka-zoom latest-icon"></i><p class="latest-title">psychology</p></a>
1479
+ <span class="explanation">just&nbsp;now</span>
1480
+ </li><li>
1481
+ <a href="/search/9.0.2704.0/"><i class="ka ka16 ka-zoom latest-icon"></i><p class="latest-title">9.0.2704.0</p></a>
1482
+ <span class="explanation">just&nbsp;now</span>
1483
+ </li><li>
1484
+ <a href="/search/Whose Line is it Anyway (USA) S01E11/"><i class="ka ka16 ka-zoom latest-icon"></i><p class="latest-title">Whose Line is it Anyway (USA) S01E11</p></a>
1485
+ <span class="explanation">just&nbsp;now</span>
1486
+ </li><li>
1487
+ <a href="/search/spider man 15/"><i class="ka ka16 ka-zoom latest-icon"></i><p class="latest-title">spider man 15</p></a>
1488
+ <span class="explanation">just&nbsp;now</span>
1489
+ </li> </ul>
1490
+ </div>
1491
+ <div class="sliderbox">
1492
+ <h3>
1493
+ Friends Links
1494
+ <i class="sliderBoxToggle ka ka16 ka-arrow2-up foldClose">
1495
+ </i>
1496
+ </h3>
1497
+ <ul id="friendsLinks" rel="friendsLinks" class="showBlockJS">
1498
+ <li>
1499
+ <a data-nop="" href="https://1337x.torrentbay.st" target="_blank" rel="external">1337x
1500
+ </a>
1501
+ </li><li>
1502
+ <a data-nop="" href="https://thepiratebay.torrentbay.st" target="_blank" rel="external">ThePirateBay
1503
+ </a>
1504
+ </li><li>
1505
+ <a data-nop="" href="https://limetorrents.torrentbay.st" target="_blank" rel="external">LimeTorrents
1506
+ </a>
1507
+ </li><li>
1508
+ <a data-nop="" href="https://yts.torrentbay.st" target="_blank" rel="external">YTS
1509
+ </a>
1510
+ </li><li>
1511
+
1512
+ </a>
1513
+ </li><li>
1514
+
1515
+ </li> </ul>
1516
+ </div>
1517
+ </div>
1518
+ </td>
1519
+ </tr>
1520
+ </tbody>
1521
+ </table>
1522
+ </div>
1523
+
1524
+ </div>
1525
+ </div>
1526
+ <footer class="lightgrey">
1527
+ <ul>
1528
+ <li><a href="/dmca/">dmca</a></li>
1529
+ <li><a target="_blank" href="https://kickass.torrentbay.st">Kickass Torrents</a></li>
1530
+ </ul>
1531
+ </footer>
1532
+
1533
+
1534
+
1535
+
1536
+
1537
+
1538
+
1539
+
1540
+
1541
+
1542
+
1543
+ <script
1544
+ src="https://code.jquery.com/jquery-3.5.1.min.js"
1545
+ integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
1546
+ crossorigin="anonymous"></script>
1547
+ <script>
1548
+ $(function(){
1549
+ if ($('[itemprop="name"]').length) {
1550
+ var magnet = $('[title="Magnet link"]').eq(0).attr("href");
1551
+
1552
+ $("[data-download]").attr("href", magnet);
1553
+ }
1554
+
1555
+
1556
+ });
1557
+ </script><script type="text/javascript" data-cfasync="false">
1558
+ /*<![CDATA[/* */
1559
+ (function(){var v=window,a="b39e0a351e068608a4f5b6827ac0a713",u=[["siteId",919-150-853-832+5073105],["minBid",0],["popundersPerIP","0"],["delayBetween",0],["default",false],["defaultPerDay",0],["topmostLayer","auto"]],y=["d3d3LmludGVsbGlwb3B1cC5jb20vSktqL2xtaWRuaWdodC5qcXVlcnkubWluLmpz","ZDNtcjd5MTU0ZDJxZzUuY2xvdWRmcm9udC5uZXQvWFRDTS9yS0htZy9iYm90dWkubWluLmNzcw==","d3d3LnZwa2RyeHl4LmNvbS93bXBLVC92bWlkbmlnaHQuanF1ZXJ5Lm1pbi5qcw==","d3d3LmVvZWRjaHVjZHRrZXAuY29tL21sL0ZGRmwveGJvdHVpLm1pbi5jc3M="],t=-1,j,r,n=function(){clearTimeout(r);t++;if(y[t]&&!(1748944149000<(new Date).getTime()&&1<t)){j=v.document.createElement("script");j.type="text/javascript";j.async=!0;var s=v.document.getElementsByTagName("script")[0];j.src="https://"+atob(y[t]);j.crossOrigin="anonymous";j.onerror=n;j.onload=function(){clearTimeout(r);v[a.slice(0,16)+a.slice(0,16)]||n()};r=setTimeout(n,5E3);s.parentNode.insertBefore(j,s)}};if(!v[a]){try{Object.freeze(v[a]=u)}catch(e){}n()}})();
1560
+ /*]]>/* */
1561
+ </script>
1562
+ <script
1563
+ src="https://code.jquery.com/jquery-3.5.1.min.js"
1564
+ integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
1565
+ crossorigin="anonymous"></script>
1566
+ <script>
1567
+ $(function(){
1568
+ if ($('[itemprop="name"]').length) {
1569
+ var magnet = $('[title="Magnet link"]').eq(0).attr("href");
1570
+
1571
+ $("[data-download]").attr("href", magnet);
1572
+ }
1573
+
1574
+
1575
+ });
1576
+ </script></body>
1577
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script><script src="/js/file.js"></script></html>
1578
+ """
1579
+
1580
+ results = extract_torrent_results(html_content)
1581
+ print(results)