movie_helper 0.1.0

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.
@@ -0,0 +1,55 @@
1
+ class MovieHelper::Scraper
2
+
3
+ def self.scrape_movie(link, category)
4
+ doc = Nokogiri::HTML(open(link))
5
+
6
+ hash = {}
7
+
8
+ hash[:title] = doc.css("h1").children.first.text.strip
9
+ if doc.css("h1 span.movieyear").first != nil
10
+ hash[:year] = doc.css("h1 span.movieyear").first.text
11
+ end
12
+ hash[:watch_with] = doc.css("span[title='More movies to watch with']").children.text.strip
13
+ hash[:watch_when] = doc.css("span[title='More movies to watch when']").children.text.strip
14
+ hash[:genre] = doc.css("span[itemprop='genre']").children.text.strip
15
+ hash[:review] = doc.css(".review-block span p").text
16
+ hash[:stars] = doc.css("#agmtw-opened li.meta-item div.infom span").first.children.text
17
+ #e.g. for individual actor/actress: doc.css("#agmtw-opened li.meta-item div.infom span").first.children.first.attributes.first.last.value
18
+ hash[:rating] = doc.css("span[itemprop='contentRating']").children.text.strip
19
+ hash[:language] = doc.css("span[title='More from the language']").children.text.strip
20
+ hash[:url] = link
21
+
22
+ if category == "best"
23
+ hash[:is_best] = true
24
+ elsif category == "latest"
25
+ hash[:is_latest] = true
26
+ end
27
+
28
+ hash
29
+ end
30
+
31
+ def self.random
32
+ scrape_movie("https://agoodmovietowatch.com/random/", nil)
33
+ end
34
+
35
+ def self.best_films
36
+ doc = Nokogiri::HTML(open("https://agoodmovietowatch.com/best/"))
37
+ links = doc.css("h3").map {|movie| movie.elements.first.first.last}
38
+ best = links.map {|movie_link| scrape_movie(movie_link, "best")}
39
+ end
40
+
41
+ def self.latest
42
+ doc = Nokogiri::HTML(open("https://agoodmovietowatch.com/all/new/"))
43
+ links = doc.css(".entry-title").map do |movie|
44
+ if movie.elements.first == nil
45
+ nil
46
+ else
47
+ movie.elements.first.first.last
48
+ end
49
+ end
50
+ links.delete(nil)
51
+ latest = links.map {|movie_link| scrape_movie(movie_link, "latest")}
52
+ end
53
+
54
+
55
+ end
@@ -0,0 +1,4 @@
1
+ module MovieHelper
2
+ VERSION = "0.1.0"
3
+ end
4
+
@@ -0,0 +1,31 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "movie_helper/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "movie_helper"
8
+ spec.version = MovieHelper::VERSION
9
+ spec.authors = ["dlyons8"]
10
+ spec.email = ["dlyons8@binghamton.edu"]
11
+
12
+ spec.summary = %q{Scrapes data off of website to help you find a movie to watch.}
13
+ spec.description = %q{This application scrapes data off of the website, https://agoodmovietowatch.com/, and uses it to feed a CLI app that helps you to find a movie to watch.}
14
+ spec.homepage = "https://github.com/dlyons8/movie_helper"
15
+ spec.license = "MIT"
16
+
17
+ # Specify which files should be added to the gem when it is released.
18
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
19
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
20
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
21
+ end
22
+ spec.bindir = "exe"
23
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
24
+ spec.require_paths = ["lib"]
25
+
26
+ spec.add_development_dependency "bundler", "~> 1.16"
27
+ spec.add_development_dependency "rake", "~> 10.0"
28
+ spec.add_development_dependency "rspec", "~> 3.0"
29
+ spec.add_development_dependency "nokogiri"
30
+ spec.add_development_dependency "pry"
31
+ end
@@ -0,0 +1,2831 @@
1
+ => #(Document:0x3ff733d007a4 {
2
+ name = "document",
3
+ children = [
4
+ #(DTD:0x3ff733d7c278 { name = "html" }),
5
+ #(Element:0x3ff733d005d8 {
6
+ name = "html",
7
+ attributes = [ #(Attr:0x3ff733d74960 { name = "class", value = "no-js" }), #(Attr:0x3ff733d7494c { name = "lang", value = "en-US" })],
8
+ children = [
9
+ #(Element:0x3ff733d616e4 {
10
+ name = "head",
11
+ children = [
12
+ #(Element:0x3ff733d588c8 {
13
+ name = "link",
14
+ attributes = [
15
+ #(Attr:0x3ff733d55e20 { name = "rel", value = "stylesheet" }),
16
+ #(Attr:0x3ff733d55e0c { name = "type", value = "text/css" }),
17
+ #(Attr:0x3ff733d55df8 { name = "href", value = "https://agoodmovietowatch.com/wp-content/cache/minify/8010e.css" }),
18
+ #(Attr:0x3ff733d55da8 { name = "media", value = "all" })]
19
+ }),
20
+ #(Element:0x3ff733d2d95c { name = "meta", attributes = [ #(Attr:0x3ff733d290dc { name = "charset", value = "UTF-8" })] }),
21
+ #(Element:0x3ff733d1ce18 {
22
+ name = "meta",
23
+ attributes = [ #(Attr:0x3ff733d15a14 { name = "http-equiv", value = "Content-Type" }), #(Attr:0x3ff733d15a00 { name = "content", value = "text/html; charset=UTF-8" })]
24
+ }),
25
+ #(Element:0x3ff733d00718 { name = "title", children = [ #(Text " Food, Inc (2008) | agoodmovietowatch")] }),
26
+ #(Element:0x3ff733cf57b4 {
27
+ name = "meta",
28
+ attributes = [
29
+ #(Attr:0x3ff733cf1998 { name = "name", value = "description" }),
30
+ #(Attr:0x3ff733cf1984 {
31
+ name = "content",
32
+ value = "An equally interesting and terrifying must-watch documentary about the state of food in the United States, Food Inc is a sobering tour of where the stuff you eat comes from. Spoiler alert: it’s gross, and should be illegal but that shouldn’t stop you from watching this film, which showcases the food industry’s vile practices and […]"
33
+ })]
34
+ }),
35
+ #(Element:0x3ff7338fef34 {
36
+ name = "link",
37
+ attributes = [ #(Attr:0x3ff7338fb94c { name = "rel", value = "shortcut icon" }), #(Attr:0x3ff7338fb938 { name = "href", value = "https://agoodmovietowatch.com/favicon.ico" })]
38
+ }),
39
+ #(Element:0x3ff7338e2b7c {
40
+ name = "meta",
41
+ attributes = [ #(Attr:0x3ff7338decfc { name = "name", value = "viewport" }), #(Attr:0x3ff7338decc0 { name = "content", value = "width=device-width" })]
42
+ }),
43
+ #(Element:0x3ff7338c8060 {
44
+ name = "meta",
45
+ attributes = [ #(Attr:0x3ff7338c48e8 { name = "property", value = "fb:pages" }), #(Attr:0x3ff7338c48c0 { name = "content", value = "477712632325327" })]
46
+ }),
47
+ #(Element:0x3ff733cc9600 {
48
+ name = "meta",
49
+ attributes = [ #(Attr:0x3ff733cc544c { name = "property", value = "fb:admins" }), #(Attr:0x3ff733cc5438 { name = "content", value = "1144103209" })]
50
+ }),
51
+ #(Element:0x3ff733ca5124 {
52
+ name = "meta",
53
+ attributes = [ #(Attr:0x3ff733ca18a8 { name = "property", value = "fb:app_id" }), #(Attr:0x3ff733ca1858 { name = "content", value = "238620209623258" })]
54
+ }),
55
+ #(Element:0x3ff733c5a278 {
56
+ name = "meta",
57
+ attributes = [ #(Attr:0x3ff733c57708 { name = "name", value = "msvalidate.01" }), #(Attr:0x3ff733c57ed8 { name = "content", value = "18F754857A75488CB4B2C89E9F5FBC2E" })]
58
+ }),
59
+ #(Element:0x3ff733c2d5fc {
60
+ name = "meta",
61
+ attributes = [ #(Attr:0x3ff733c2c198 { name = "property", value = "og:title" }), #(Attr:0x3ff733c2c184 { name = "content", value = " Food, Inc (2008) | agoodmovietowatch" })]
62
+ }),
63
+ #(Element:0x3ff7338b9bdc { name = "meta", attributes = [ #(Attr:0x3ff7338b8548 { name = "property", value = "og:description" }), #(Attr:0x3ff7338b84e4 { name = "content", value = "" })] }),
64
+ #(Element:0x3ff73387dec0 {
65
+ name = "meta",
66
+ attributes = [
67
+ #(Attr:0x3ff733879000 { name = "property", value = "og:image" }),
68
+ #(Attr:0x3ff733878fd8 { name = "content", value = "https://agoodmovietowatch.com/wp-content/uploads/hrana-dd-film-1.jpg" })]
69
+ }),
70
+ #(Element:0x3ff7338400ac {
71
+ name = "link",
72
+ attributes = [ #(Attr:0x3ff733828880 { name = "rel", value = "canonical" }), #(Attr:0x3ff7338287cc { name = "href", value = "https://agoodmovietowatch.com/food-inc-2008/" })]
73
+ }),
74
+ #(Element:0x3ff733089430 {
75
+ name = "link",
76
+ attributes = [
77
+ #(Attr:0x3ff733084db8 { name = "rel", value = "stylesheet" }),
78
+ #(Attr:0x3ff733084c50 { name = "href", value = "https://use.fontawesome.com/releases/v5.2.0/css/all.css" }),
79
+ #(Attr:0x3ff733084bb0 { name = "integrity", value = "sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" }),
80
+ #(Attr:0x3ff733084ad4 { name = "crossorigin", value = "anonymous" })]
81
+ }),
82
+ #(Element:0x3ff733033ee0 { name = "link", attributes = [ #(Attr:0x3ff73302f41c { name = "rel", value = "dns-prefetch" }), #(Attr:0x3ff73302f3e0 { name = "href", value = "//s.w.org" })] }),
83
+ #(Element:0x3ff73301277c {
84
+ name = "link",
85
+ attributes = [
86
+ #(Attr:0x3ff7338e7438 { name = "rel", value = "stylesheet" }),
87
+ #(Attr:0x3ff7338e7424 { name = "id", value = "style-css" }),
88
+ #(Attr:0x3ff7338e7410 { name = "href", value = "https://agoodmovietowatch.com/wp-content/themes/emphaino/style.css?ver=2.9.9.22" }),
89
+ #(Attr:0x3ff7338e73fc { name = "type", value = "text/css" }),
90
+ #(Attr:0x3ff7338e73e8 { name = "media", value = "screen, projection, print" })]
91
+ }),
92
+ #(Text " "),
93
+ #(Element:0x3ff733d9c334 {
94
+ name = "script",
95
+ attributes = [
96
+ #(Attr:0x3ff733d98d60 { name = "type", value = "text/javascript" }),
97
+ #(Attr:0x3ff733d98d4c { name = "src", value = "https://agoodmovietowatch.com/wp-includes/js/jquery/jquery.js?ver=1.12.4" })]
98
+ }),
99
+ #(Text " "),
100
+ #(Element:0x3ff733d7c5e8 {
101
+ name = "script",
102
+ attributes = [
103
+ #(Attr:0x3ff733d79348 { name = "type", value = "text/javascript" }),
104
+ #(Attr:0x3ff733d792e4 { name = "src", value = "https://agoodmovietowatch.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1" })]
105
+ }),
106
+ #(Text " "),
107
+ #(Element:0x3ff733d64bf0 {
108
+ name = "script",
109
+ attributes = [
110
+ #(Attr:0x3ff733d61e3c { name = "type", value = "text/javascript" }),
111
+ #(Attr:0x3ff733d61e14 { name = "src", value = "https://agoodmovietowatch.com/wp-content/plugins/wpdiscuz/assets/third-party/wpdcookiejs/customcookie.js?ver=5.1.2" })]
112
+ }),
113
+ #(Text " "),
114
+ #(Element:0x3ff733d49be8 {
115
+ name = "script",
116
+ attributes = [
117
+ #(Attr:0x3ff733d4901c { name = "type", value = "text/javascript" }),
118
+ #(Attr:0x3ff733d48fe0 { name = "src", value = "https://agoodmovietowatch.com/wp-content/plugins/wpdiscuz/assets/third-party/autogrow/jquery.autogrowtextarea.min.js?ver=5.1.2" })]
119
+ }),
120
+ #(Text " "),
121
+ #(Element:0x3ff733d3812c {
122
+ name = "script",
123
+ attributes = [ #(Attr:0x3ff733d353f0 { name = "type", value = "text/javascript" })],
124
+ children = [
125
+ #(CDATA "var wpdiscuzAjaxObj = {\"url\":\"https:\\/\\/agoodmovietowatch.com\\/wp-admin\\/admin-ajax.php\",\"wpdiscuz_options\":{\"wc_hide_replies_text\":\"Hide Replies\",\"wc_show_replies_text\":\"View Replies\",\"wc_msg_required_fields\":\"Please fill out required fields\",\"wc_invalid_field\":\"Some of field value is invalid\",\"wc_error_empty_text\":\"please fill out this field to comment\",\"wc_error_url_text\":\"url is invalid\",\"wc_error_email_text\":\"email address is invalid\",\"wc_invalid_captcha\":\"Invalid Captcha Code\",\"wc_login_to_vote\":\"You Must Be Logged In To Vote\",\"wc_deny_voting_from_same_ip\":\"You are not allowed to vote for this comment\",\"wc_self_vote\":\"You cannot vote for your comment\",\"wc_vote_only_one_time\":\"You've already voted for this comment\",\"wc_voting_error\":\"Voting Error\",\"wc_held_for_moderate\":\"Comment awaiting moderation\",\"wc_comment_edit_not_possible\":\"Sorry, this comment no longer possible to edit\",\"wc_comment_not_updated\":\"Sorry, the comment was not updated\",\"wc_comment_not_edited\":\"You've not made any changes\",\"wc_new_comment_button_text\":\"new comment\",\"wc_new_comments_button_text\":\"new comments\",\"wc_new_reply_button_text\":\"new reply on your comment\",\"wc_new_replies_button_text\":\"new replies on your comments\",\"wc_msg_input_min_length\":\"Input is too short\",\"wc_msg_input_max_length\":\"Input is too long\",\"is_user_logged_in\":false,\"commentListLoadType\":\"0\",\"commentListUpdateType\":\"0\",\"commentListUpdateTimer\":\"30\",\"liveUpdateGuests\":\"1\",\"wc_comment_bg_color\":\"#FEFEFE\",\"wc_reply_bg_color\":\"#F8F8F8\",\"wordpress_comment_order\":\"desc\",\"commentsVoteOrder\":true,\"wordpressThreadCommentsDepth\":\"5\",\"wordpressIsPaginate\":\"\",\"commentTextMaxLength\":null,\"storeCommenterData\":100000,\"isCaptchaInSession\":true,\"isGoodbyeCaptchaActive\":false,\"socialLoginAgreementCheckbox\":0,\"enableFbLogin\":0,\"enableFbShare\":0,\"facebookAppID\":\"\",\"enableGoogleLogin\":0,\"googleAppID\":\"\",\"cookiehash\":\"6ff657e27603d1a3ba30109e18045d01\",\"isLoadOnlyParentComments\":0,\"ahk\":\"\",\"version\":\"5.1.2\",\"wc_post_id\":435,\"loadLastCommentId\":0,\"lastVisitKey\":\"wordpress_last_visit\",\"lastVisitExpires\":1542495263,\"lastVisitCookie\":{\"1\":{\"435\":1539903263}},\"isCookiesEnabled\":true,\"wc_captcha_show_for_guest\":\"0\",\"wc_captcha_show_for_members\":\"0\",\"is_email_field_required\":\"0\"}};")]
126
+ }),
127
+ #(Text " "),
128
+ #(Element:0x3ff733d08080 {
129
+ name = "script",
130
+ attributes = [
131
+ #(Attr:0x3ff733d04bec { name = "type", value = "text/javascript" }),
132
+ #(Attr:0x3ff733d04bd8 { name = "src", value = "https://agoodmovietowatch.com/wp-content/plugins/wpdiscuz/assets/js/wpdiscuz.js?ver=5.1.2" })]
133
+ }),
134
+ #(Text " "),
135
+ #(Element:0x3ff733cf037c {
136
+ name = "link",
137
+ attributes = [ #(Attr:0x3ff733cec86c { name = "rel", value = "https://api.w.org/" }), #(Attr:0x3ff733cec858 { name = "href", value = "https://agoodmovietowatch.com/wp-json/" })]
138
+ }),
139
+ #(Element:0x3ff7338ff010 {
140
+ name = "link",
141
+ attributes = [
142
+ #(Attr:0x3ff7338fbc44 { name = "rel", value = "prev" }),
143
+ #(Attr:0x3ff7338fbc30 { name = "title", value = "The Last King of Scotland (2006)" }),
144
+ #(Attr:0x3ff7338fbc1c { name = "href", value = "https://agoodmovietowatch.com/last-king-scotland-2006/" })]
145
+ }),
146
+ #(Element:0x3ff7338dfd78 {
147
+ name = "link",
148
+ attributes = [
149
+ #(Attr:0x3ff7338de950 { name = "rel", value = "next" }),
150
+ #(Attr:0x3ff7338de928 { name = "title", value = "Garden State (2004)" }),
151
+ #(Attr:0x3ff7338de8ec { name = "href", value = "https://agoodmovietowatch.com/garden-state-2004/" })]
152
+ }),
153
+ #(Element:0x3ff7338c480c {
154
+ name = "link",
155
+ attributes = [ #(Attr:0x3ff7338c3aec { name = "rel", value = "canonical" }), #(Attr:0x3ff7338c3ad8 { name = "href", value = "https://agoodmovietowatch.com/food-inc-2008/" })]
156
+ }),
157
+ #(Element:0x3ff733ccd200 {
158
+ name = "style",
159
+ children = [
160
+ #(CDATA "#wpcomm\n.wc_new_comment{background:#D61B30}#wpcomm\n.wc_new_reply{background:#D61B30}#wpcomm .wc-form-wrapper{background:none}#wpcomm .wpdiscuz-front-actions{background:#F9F9F9}#wpcomm .wpdiscuz-subscribe-bar{background:#F9F9F9}#wpcomm select,\n#wpcomm input[type=\"text\"],\n#wpcomm input[type=\"email\"],\n#wpcomm input[type=\"url\"],\n#wpcomm input[type=\"date\"],\n#wpcomm input[type=\"color\"]{border:#D9D9D9 1px solid}#wpcomm .wc-comment .wc-comment-right{background:#FEFEFE}#wpcomm .wc-reply .wc-comment-right{background:#F8F8F8}#wpcomm .wc-comment-right .wc-comment-text,\n#wpcomm .wc-comment-right .wc-comment-text\n*{font-size:14px}#wpcomm .wc-blog-administrator > .wc-comment-right .wc-comment-author, #wpcomm .wc-blog-administrator > .wc-comment-right .wc-comment-author\na{color:#D61B30}#wpcomm .wc-blog-administrator > .wc-comment-left .wc-comment-label{color:#D61B30;border:none;border-bottom:1px solid #ddd}#wpcomm .wc-blog-author > .wc-comment-right .wc-comment-author, #wpcomm .wc-blog-author > .wc-comment-right .wc-comment-author\na{color:#D61B30}#wpcomm .wc-blog-author > .wc-comment-left .wc-comment-label{color:#D61B30;border:none;border-bottom:1px solid #ddd}#wpcomm .wc-blog-contributor > .wc-comment-right .wc-comment-author, #wpcomm .wc-blog-contributor > .wc-comment-right .wc-comment-author\na{color:#D61B30}#wpcomm .wc-blog-contributor > .wc-comment-left .wc-comment-label{color:#D61B30;border:none;border-bottom:1px solid #ddd}#wpcomm .wc-blog-editor > .wc-comment-right .wc-comment-author, #wpcomm .wc-blog-editor > .wc-comment-right .wc-comment-author\na{color:#D61B30}#wpcomm .wc-blog-editor > .wc-comment-left .wc-comment-label{color:#D61B30;border:none;border-bottom:1px solid #ddd}#wpcomm .wc-blog-subscriber > .wc-comment-right .wc-comment-author, #wpcomm .wc-blog-subscriber > .wc-comment-right .wc-comment-author\na{color:#D61B30}#wpcomm .wc-blog-subscriber > .wc-comment-left .wc-comment-label{color:#D61B30;border:none;border-bottom:1px solid #ddd}#wpcomm .wc-blog-give_manager > .wc-comment-right .wc-comment-author, #wpcomm .wc-blog-give_manager > .wc-comment-right .wc-comment-author\na{color:#D61B30}#wpcomm .wc-blog-give_manager > .wc-comment-left .wc-comment-label{color:#D61B30;border:none;border-bottom:1px solid #ddd}#wpcomm .wc-blog-give_accountant > .wc-comment-right .wc-comment-author, #wpcomm .wc-blog-give_accountant > .wc-comment-right .wc-comment-author\na{color:#D61B30}#wpcomm .wc-blog-give_accountant > .wc-comment-left .wc-comment-label{color:#D61B30;border:none;border-bottom:1px solid #ddd}#wpcomm .wc-blog-give_worker > .wc-comment-right .wc-comment-author, #wpcomm .wc-blog-give_worker > .wc-comment-right .wc-comment-author\na{color:#D61B30}#wpcomm .wc-blog-give_worker > .wc-comment-left .wc-comment-label{color:#D61B30;border:none;border-bottom:1px solid #ddd}#wpcomm .wc-blog-post_author > .wc-comment-right .wc-comment-author, #wpcomm .wc-blog-post_author > .wc-comment-right .wc-comment-author\na{color:#D61B30}#wpcomm .wc-blog-post_author > .wc-comment-left .wc-comment-label{color:#D61B30;border:none;border-bottom:1px solid #ddd}#wpcomm .wc-blog-guest > .wc-comment-right .wc-comment-author, #wpcomm .wc-blog-guest > .wc-comment-right .wc-comment-author\na{color:#D61B30}#wpcomm .wc-blog-guest > .wc-comment-left .wc-comment-label{color:#D61B30;border:none;border-bottom:1px solid #ddd}#wpcomm .wc-blog-wpseo_manager > .wc-comment-right .wc-comment-author, #wpcomm .wc-blog-wpseo_manager > .wc-comment-right .wc-comment-author\na{color:#00B38F}#wpcomm .wc-blog-wpseo_manager > .wc-comment-left .wc-comment-label{color:#00B38F;border:none;border-bottom:1px solid #ddd}#wpcomm .wc-blog-wpseo_editor > .wc-comment-right .wc-comment-author, #wpcomm .wc-blog-wpseo_editor > .wc-comment-right .wc-comment-author\na{color:#00B38F}#wpcomm .wc-blog-wpseo_editor > .wc-comment-left .wc-comment-label{color:#00B38F;border:none;border-bottom:1px solid #ddd}#wpcomm .wc-blog-ai1ec_event_assistant > .wc-comment-right .wc-comment-author, #wpcomm .wc-blog-ai1ec_event_assistant > .wc-comment-right .wc-comment-author\na{color:#00B38F}#wpcomm .wc-blog-ai1ec_event_assistant > .wc-comment-left .wc-comment-label{color:#00B38F;border:none;border-bottom:1px solid #ddd}#wpcomm .wc-comment .wc-comment-left .wc-comment-label{background:#fff}#wpcomm .wc-load-more-submit{border:1px\nsolid #D9D9D9}#wpcomm .wc-new-loaded-comment>.wc-comment-right{background:#FFFAD6}#wpcomm .wpdiscuz-subscribe-bar{color:#777}#wpcomm .wpdiscuz-front-actions .wpdiscuz-sbs-wrap\nspan{color:#777}#wpcomm .page-numbers{color:#555;border:#555 1px solid}#wpcomm\nspan.current{background:#555}#wpcomm .wpdiscuz-readmore{cursor:pointer;color:#D61B30}#wpcomm .wpdiscuz-textarea-wrap{border:#D9D9D9 1px solid}.wpd-custom-field .wcf-pasiv-star, #wpcomm .wpdiscuz-item .wpdiscuz-rating>label{color:#DDD}#wpcomm .wpdiscuz-item .wpdiscuz-rating:not(:checked)>label:hover,.wpdiscuz-rating:not(:checked)>label:hover~label{}#wpcomm .wpdiscuz-item .wpdiscuz-rating > input ~ label:hover, #wpcomm .wpdiscuz-item .wpdiscuz-rating > input:not(:checked) ~ label:hover ~ label, #wpcomm .wpdiscuz-item .wpdiscuz-rating>input:not(:checked)~label:hover~label{color:#FFED85}#wpcomm .wpdiscuz-item .wpdiscuz-rating > input:checked ~ label:hover, #wpcomm .wpdiscuz-item .wpdiscuz-rating > input:checked ~ label:hover, #wpcomm .wpdiscuz-item .wpdiscuz-rating > label:hover ~ input:checked ~ label, #wpcomm .wpdiscuz-item .wpdiscuz-rating > input:checked + label:hover ~ label, #wpcomm .wpdiscuz-item .wpdiscuz-rating > input:checked ~ label:hover ~ label, .wpd-custom-field .wcf-activ-star, #wpcomm .wpdiscuz-item .wpdiscuz-rating>input:checked~label{color:#FFD700}#wpcomm .wc-comment-header{border-bottom:1px solid #dedede}#wpcomm .wc-reply .wc-comment-header{border-bottom:1px solid #DDD}#wpcomm button,\n#wpcomm input[type=\"button\"],\n#wpcomm input[type=\"reset\"],\n#wpcomm input[type=\"submit\"]{border:1px\nsolid #555;color:#FFF;background-color:#555}#wpcomm button:hover,\n#wpcomm button:focus,\n#wpcomm input[type=\"button\"]:hover,\n#wpcomm input[type=\"button\"]:focus,\n#wpcomm input[type=\"reset\"]:hover,\n#wpcomm input[type=\"reset\"]:focus,\n#wpcomm input[type=\"submit\"]:hover,\n#wpcomm input[type=\"submit\"]:focus{border:1px\nsolid #333;background-color:#333}#wpcomm .wpdiscuz-sort-buttons{color:#777}#wpcomm .wpdiscuz-sort-button{color:#777;cursor:pointer}#wpcomm .wpdiscuz-sort-button:hover{color:#D61B30!important;cursor:pointer}#wpcomm .wpdiscuz-sort-button-active{color:#D61B30!important;cursor:default!important}#wpcomm .wc-cta-button,\n#wpcomm .wc-cta-button-x{color:#777;border-bottom:1px solid #ddd}#wpcomm .wc-vote-link.wc-up{color:#999}#wpcomm .wc-vote-link.wc-down{color:#999}#wpcomm .wc-vote-result{color:#999}#wpcomm .wpf-cta{color:#999}#wpcomm .wc-comment-link .wc-share-link .wpf-cta{color:#eee}#wpcomm .wpf-cta:hover{background:#D61B30!important;color:#FFF}#wpcomm .wc-cta-active{background:#D61B30!important;color:#FFF}#wpcomm .wc-cta-button:hover{background:#D61B30!important;color:#FFF}#wpcomm .wc-footer-right .wc-toggle,\n#wpcomm .wc-footer-right .wc-toggle a,\n#wpcomm .wc-footer-right .wc-toggle\ni{color:#D61B30}#wpcomm .wc-sticky-comment.wc-comment .wc-comment-header{background:#f2fcfb;border-bottom:1px dotted #00B38F}#wpcomm .wc-sticky-comment.wc-comment .wc-comment-header .wpd-sticky{color:#00B38F;border:1px\ndotted #00B38F}#wpcomm .wc-closed-comment.wc-comment .wc-comment-header .wpd-closed{color:#555;border:1px\ndotted #555}#wpcomm .wc-private-comment.wc-comment .wc-comment-header{background:#eee;border-bottom:1px solid #999}#wpcomm .wc-private-comment.wc-comment .wc-comment-header .wpd-private{color:#000;border:1px\ndotted #333}.wpd-wrapper .wpd-list-item.wpd-active{border-top:3px solid #D61B30}.comments-area{width:auto}")]
161
+ }),
162
+ #(Element:0x3ff733cb4674 { name = "style", attributes = [ #(Attr:0x3ff733cb11cc { name = "type", value = "text/css" }), #(Attr:0x3ff733cb11a4 { name = "id", value = "wp-custom-css" })] }),
163
+ #(Text " "),
164
+ #(Element:0x3ff733c8d4fc {
165
+ name = "script",
166
+ attributes = [ #(Attr:0x3ff733c8c7c8 { name = "async", value = "" }), #(Attr:0x3ff733c8c7b4 { name = "src", value = "//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" })]
167
+ }),
168
+ #(Text " "),
169
+ #(Element:0x3ff733c7ac80 {
170
+ name = "script",
171
+ children = [ #(CDATA "(adsbygoogle = window.adsbygoogle || []).push({\n google_ad_client: \"ca-pub-7395002666792853\",\n enable_page_level_ads: true\n });")]
172
+ }),
173
+ #(Text " "),
174
+ #(Element:0x3ff733c2db38 {
175
+ name = "script",
176
+ attributes = [
177
+ #(Attr:0x3ff733c2cabc { name = "src", value = "//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js" }),
178
+ #(Attr:0x3ff733c2caa8 { name = "async", value = "" })]
179
+ }),
180
+ #(Text " "),
181
+ #(Element:0x3ff7338bd408 {
182
+ name = "script",
183
+ attributes = [ #(Attr:0x3ff7338b9b00 { name = "async", value = "" })],
184
+ children = [
185
+ #(CDATA "window.addEventListener(\"load\", function(){\nwindow.cookieconsent.initialise({\n \"palette\": { },\n \"content\": {\n \"message\": \"We use cookies to maintain our service and for advertising.\",\n \"href\": \"https://agoodmovietowatch.com/privacy-policy/\"\n }\n})});")]
186
+ }),
187
+ #(Text " ")]
188
+ }),
189
+ #(Element:0x3ff7338750a4 {
190
+ name = "body",
191
+ attributes = [ #(Attr:0x3ff733870d38 { name = "class", value = "post-template-default single single-post postid-435 single-format-standard custom-background" })],
192
+ children = [
193
+ #(Element:0x3ff733850948 {
194
+ name = "div",
195
+ attributes = [ #(Attr:0x3ff733849b84 { name = "id", value = "page" }), #(Attr:0x3ff733849b34 { name = "class", value = "hfeed site" })],
196
+ children = [
197
+ #(Element:0x3ff7330911e4 {
198
+ name = "div",
199
+ attributes = [ #(Attr:0x3ff73308d6c0 { name = "class", value = "headerwrap" })],
200
+ children = [
201
+ #(Element:0x3ff732c4f7d4 {
202
+ name = "div",
203
+ attributes = [ #(Attr:0x3ff732c4e438 { name = "class", value = "headerother headerplace" })],
204
+ children = [
205
+ #(Text "\n"),
206
+ #(Element:0x3ff732c02984 {
207
+ name = "header",
208
+ attributes = [
209
+ #(Attr:0x3ff7330568a0 { name = "id", value = "masthead" }),
210
+ #(Attr:0x3ff733056738 { name = "class", value = "site-header" }),
211
+ #(Attr:0x3ff733056594 { name = "role", value = "banner" })],
212
+ children = [
213
+ #(Element:0x3ff7338e74d8 {
214
+ name = "div",
215
+ attributes = [ #(Attr:0x3ff7338e68bc { name = "class", value = "header-main" })],
216
+ children = [
217
+ #(Element:0x3ff733dc5dc4 {
218
+ name = "div",
219
+ attributes = [ #(Attr:0x3ff733dc412c { name = "class", value = "newlogon logondiv" })],
220
+ children = [
221
+ #(Element:0x3ff733dad7c4 {
222
+ name = "a",
223
+ attributes = [
224
+ #(Attr:0x3ff733dac5a4 { name = "href", value = "/" }),
225
+ #(Attr:0x3ff733dac518 { name = "alt", value = "agoodmovietowatch" }),
226
+ #(Attr:0x3ff733dac4f0 { name = "class", value = "newlogona" })],
227
+ children = [
228
+ #(Text "\n"),
229
+ #(Element:0x3ff733d8d924 {
230
+ name = "span",
231
+ attributes = [ #(Attr:0x3ff733d8998c { name = "class", value = "header-logo-text" })],
232
+ children = [ #(Text "a"), #(Element:0x3ff733d71f44 { name = "b", children = [ #(Text "goodmovie")] }), #(Text "towatch")]
233
+ }),
234
+ #(Text "\n")]
235
+ }),
236
+ #(Element:0x3ff733d605c8 {
237
+ name = "div",
238
+ attributes = [ #(Attr:0x3ff733d5d670 { name = "class", value = "header-wolf-pack" })],
239
+ children = [
240
+ #(Text "\n"),
241
+ #(Element:0x3ff733d502cc {
242
+ name = "a",
243
+ attributes = [
244
+ #(Attr:0x3ff733d49e54 { name = "title", value = "Random movie suggestion" }),
245
+ #(Attr:0x3ff733d49e40 { name = "href", value = "/random/" }),
246
+ #(Attr:0x3ff733d49e2c { name = "class", value = "random-w random-wolf" })],
247
+ children = [
248
+ #(Text "\n"),
249
+ #(Element:0x3ff733d30eb8 { name = "i", attributes = [ #(Attr:0x3ff733d2df60 { name = "class", value = "fas fa-random" })] }),
250
+ #(Text "\n")]
251
+ }),
252
+ #(Text "\n"),
253
+ #(Element:0x3ff733d151e0 {
254
+ name = "a",
255
+ attributes = [
256
+ #(Attr:0x3ff733d1445c { name = "href", value = "/login/" }),
257
+ #(Attr:0x3ff733d14448 { name = "class", value = "login-w random-wolf" }),
258
+ #(Attr:0x3ff733d14434 { name = "title", value = "Subscribe" })],
259
+ children = [
260
+ #(Text "\n"),
261
+ #(Element:0x3ff733cf5f84 { name = "i", attributes = [ #(Attr:0x3ff733cf5494 { name = "class", value = "fas fa-sign-in-alt" })] }),
262
+ #(Text "\n")]
263
+ }),
264
+ #(Text "\n"),
265
+ #(Element:0x3ff733cdc4f8 {
266
+ name = "a",
267
+ attributes = [
268
+ #(Attr:0x3ff7339039a8 { name = "href", value = "https://instagram.com/agoodmovietowatch/" }),
269
+ #(Attr:0x3ff733903994 { name = "class", value = "instagram-w random-wolf" }),
270
+ #(Attr:0x3ff733903944 { name = "title", value = "Get movie suggestions on Instagram" })],
271
+ children = [
272
+ #(Text "\n"),
273
+ #(Element:0x3ff7338eae6c { name = "i", attributes = [ #(Attr:0x3ff7338e30f4 { name = "class", value = "fab fa-instagram" })] }),
274
+ #(Text "\n")]
275
+ }),
276
+ #(Text "\n"),
277
+ #(Element:0x3ff7338ca3d8 {
278
+ name = "a",
279
+ attributes = [
280
+ #(Attr:0x3ff7338c9ed8 { name = "href", value = "https://twitter.com/agoodmovietw/" }),
281
+ #(Attr:0x3ff7338c9ec4 { name = "class", value = "twitter-w random-wolf" }),
282
+ #(Attr:0x3ff7338c9eb0 { name = "title", value = "Get movie suggestions on Twitter" })],
283
+ children = [
284
+ #(Text "\n"),
285
+ #(Element:0x3ff733ccc0bc { name = "i", attributes = [ #(Attr:0x3ff733cc8d18 { name = "class", value = "fab fa-twitter" })] }),
286
+ #(Text "\n")]
287
+ }),
288
+ #(Text "\n"),
289
+ #(Element:0x3ff733cac5a0 {
290
+ name = "a",
291
+ attributes = [
292
+ #(Attr:0x3ff733ca5bb0 { name = "href", value = "http://agoodmovietowatch.substack.com" }),
293
+ #(Attr:0x3ff733ca5b9c { name = "class", value = "sub-w random-wolf" }),
294
+ #(Attr:0x3ff733ca5b88 { name = "title", value = "Subscribe" })],
295
+ children = [
296
+ #(Text "\n"),
297
+ #(Element:0x3ff733c56e84 { name = "i", attributes = [ #(Attr:0x3ff733c4975c { name = "class", value = "fas fa-envelope" })] }),
298
+ #(Text "\n")]
299
+ })]
300
+ })]
301
+ }),
302
+ #(Element:0x3ff733c30680 {
303
+ name = "div",
304
+ attributes = [ #(Attr:0x3ff733c2d1ec { name = "id", value = "navbar" })],
305
+ children = [
306
+ #(Element:0x3ff733c1504c {
307
+ name = "div",
308
+ attributes = [ #(Attr:0x3ff733c14278 { name = "class", value = "hdrbsearch" })],
309
+ children = [
310
+ #(Element:0x3ff7338b9bb4 {
311
+ name = "form",
312
+ attributes = [
313
+ #(Attr:0x3ff7338b8d7c { name = "method", value = "get" }),
314
+ #(Attr:0x3ff7338b8cc8 { name = "id", value = "searchform" }),
315
+ #(Attr:0x3ff7338b8c78 { name = "action", value = "https://agoodmovietowatch.com/" }),
316
+ #(Attr:0x3ff7338b8c64 { name = "role", value = "search" })]
317
+ }),
318
+ #(Text "\n"),
319
+ #(Element:0x3ff73384c7d0 {
320
+ name = "label",
321
+ attributes = [ #(Attr:0x3ff73382c4f8 { name = "for", value = "s" }), #(Attr:0x3ff73382c458 { name = "class", value = "assistive-text" })],
322
+ children = [ #(Text "Search")]
323
+ }),
324
+ #(Element:0x3ff732c1b8f8 {
325
+ name = "div",
326
+ attributes = [ #(Attr:0x3ff732c17eb0 { name = "class", value = "ssubmit" })],
327
+ children = [
328
+ #(Element:0x3ff732c230a8 {
329
+ name = "input",
330
+ attributes = [
331
+ #(Attr:0x3ff732c12ff0 { name = "type", value = "text" }),
332
+ #(Attr:0x3ff732c12fdc { name = "class", value = "field" }),
333
+ #(Attr:0x3ff732c12fc8 { name = "name", value = "s" }),
334
+ #(Attr:0x3ff732c12fb4 { name = "value", value = "" }),
335
+ #(Attr:0x3ff732c12fa0 { name = "id", value = "s" }),
336
+ #(Attr:0x3ff732c12f8c { name = "placeholder", value = "search" })]
337
+ }),
338
+ #(Text "\n"),
339
+ #(Element:0x3ff733db887c {
340
+ name = "input",
341
+ attributes = [
342
+ #(Attr:0x3ff733db517c { name = "type", value = "image" }),
343
+ #(Attr:0x3ff733db512c { name = "alt", value = "submit" }),
344
+ #(Attr:0x3ff733db5118 { name = "border", value = "0" }),
345
+ #(Attr:0x3ff733db5104 { name = "id", value = "searchsubmit" })]
346
+ })]
347
+ })]
348
+ }),
349
+ #(Element:0x3ff733d90890 {
350
+ name = "div",
351
+ attributes = [ #(Attr:0x3ff733d8d118 { name = "id", value = "top-bar" })],
352
+ children = [
353
+ #(Element:0x3ff733d78254 {
354
+ name = "nav",
355
+ attributes = [
356
+ #(Attr:0x3ff733d754dc { name = "role", value = "navigation" }),
357
+ #(Attr:0x3ff733d754c8 { name = "class", value = "site-navigation main-navigation" })],
358
+ children = [
359
+ #(Element:0x3ff733d64c54 {
360
+ name = "div",
361
+ attributes = [ #(Attr:0x3ff733d644ac { name = "class", value = "icon-menu" })],
362
+ children = [
363
+ #(Element:0x3ff733d586ac {
364
+ name = "span",
365
+ children = [ #(Element:0x3ff733d54084 { name = "i", attributes = [ #(Attr:0x3ff733d51334 { name = "class", value = "fas fa-bars" })] })]
366
+ })]
367
+ }),
368
+ #(Element:0x3ff733d41754 {
369
+ name = "div",
370
+ attributes = [ #(Attr:0x3ff733d40d04 { name = "class", value = "menu-menu-1-container" })],
371
+ children = [
372
+ #(Element:0x3ff733d384b0 {
373
+ name = "ul",
374
+ attributes = [ #(Attr:0x3ff733d35aa8 { name = "id", value = "menu-menu-1" }), #(Attr:0x3ff733d35a94 { name = "class", value = "menu" })],
375
+ children = [
376
+ #(Text "\n"),
377
+ #(Element:0x3ff733d196c8 {
378
+ name = "span",
379
+ attributes = [ #(Attr:0x3ff733d18840 { name = "class", value = "menu-left" })],
380
+ children = [
381
+ #(Element:0x3ff733d0d328 {
382
+ name = "li",
383
+ attributes = [
384
+ #(Attr:0x3ff733d0c414 { name = "id", value = "menu-item-319f" }),
385
+ #(Attr:0x3ff733d0c400 {
386
+ name = "class",
387
+ value = "menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-319f"
388
+ })],
389
+ children = [
390
+ #(Element:0x3ff733cf8194 {
391
+ name = "a",
392
+ attributes = [ #(Attr:0x3ff733cf591c { name = "href", value = "https://agoodmovietowatch.com/all/" })],
393
+ children = [ #(Text "Movies")]
394
+ }),
395
+ #(Element:0x3ff733ce1624 {
396
+ name = "ul",
397
+ attributes = [ #(Attr:0x3ff733ce097c { name = "class", value = "sub-menu" })],
398
+ children = [
399
+ #(Element:0x3ff7338fbde8 {
400
+ name = "li",
401
+ attributes = [
402
+ #(Attr:0x3ff7338fb3c0 { name = "id", value = "menu-item-549" }),
403
+ #(Attr:0x3ff7338fb3ac { name = "class", value = "menu-item menu-item-type-custom menu-item-object-custom menu-item-549" })],
404
+ children = [
405
+ #(Element:0x3ff7338eb858 {
406
+ name = "a",
407
+ attributes = [ #(Attr:0x3ff7338ea9bc { name = "href", value = "/all/" })],
408
+ children = [ #(Text "Top Movies")]
409
+ })]
410
+ }),
411
+ #(Element:0x3ff7338cbf44 {
412
+ name = "li",
413
+ attributes = [
414
+ #(Attr:0x3ff7338cb4e0 { name = "id", value = "menu-item-14350" }),
415
+ #(Attr:0x3ff7338cb4cc { name = "class", value = "menu-item menu-item-type-post_type menu-item-object-page menu-item-14350" })],
416
+ children = [
417
+ #(Element:0x3ff733cd8c68 {
418
+ name = "a",
419
+ attributes = [ #(Attr:0x3ff733cd845c { name = "href", value = "https://agoodmovietowatch.com/all/new/" })],
420
+ children = [ #(Text "Good New Movies")]
421
+ })]
422
+ })]
423
+ })]
424
+ }),
425
+ #(Element:0x3ff733cbc414 {
426
+ name = "li",
427
+ attributes = [
428
+ #(Attr:0x3ff733cb89e0 { name = "id", value = "menu-item-319fs" }),
429
+ #(Attr:0x3ff733cb89b8 {
430
+ name = "class",
431
+ value = "menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-319fs"
432
+ })],
433
+ children = [
434
+ #(Element:0x3ff733c9d550 {
435
+ name = "a",
436
+ attributes = [ #(Attr:0x3ff733c9c95c { name = "href", value = "https://agoodmovietowatch.com/shows/" })],
437
+ children = [ #(Element:0x3ff733c95544 { name = "span", children = [ #(Text "Shows")] })]
438
+ }),
439
+ #(Element:0x3ff733c5609c {
440
+ name = "ul",
441
+ attributes = [ #(Attr:0x3ff733c48c08 { name = "class", value = "sub-menu" })],
442
+ children = [
443
+ #(Element:0x3ff733c50868 {
444
+ name = "li",
445
+ attributes = [
446
+ #(Attr:0x3ff733c4d71c { name = "id", value = "menu-item-549s" }),
447
+ #(Attr:0x3ff733c4d708 { name = "class", value = "menu-item menu-item-type-custom menu-item-object-custom menu-item-549s" })],
448
+ children = [
449
+ #(Element:0x3ff733c149f8 {
450
+ name = "a",
451
+ attributes = [ #(Attr:0x3ff733c0ddc4 { name = "href", value = "/shows?toprated=1/" })],
452
+ children = [ #(Text "Top Shows")]
453
+ })]
454
+ }),
455
+ #(Element:0x3ff7338ad468 {
456
+ name = "li",
457
+ attributes = [
458
+ #(Attr:0x3ff7338a9bc4 { name = "id", value = "menu-item-14350s" }),
459
+ #(Attr:0x3ff7338a9b10 { name = "class", value = "menu-item menu-item-type-post_type menu-item-object-page menu-item-14350s" })],
460
+ children = [
461
+ #(Element:0x3ff733869ad8 {
462
+ name = "a",
463
+ attributes = [ #(Attr:0x3ff7338680fc { name = "href", value = "https://agoodmovietowatch.com/shows/" })],
464
+ children = [ #(Text "Good New Shows")]
465
+ })]
466
+ })]
467
+ })]
468
+ }),
469
+ #(Element:0x3ff733810ab4 {
470
+ name = "li",
471
+ attributes = [
472
+ #(Attr:0x3ff732c52204 { name = "id", value = "menu-item-3116" }),
473
+ #(Attr:0x3ff732c52164 {
474
+ name = "class",
475
+ value = "menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-3116"
476
+ })],
477
+ children = [
478
+ #(Element:0x3ff732c3a9d8 {
479
+ name = "a",
480
+ attributes = [ #(Attr:0x3ff732c374cc { name = "href", value = "https://agoodmovietowatch.com/mood/" })],
481
+ children = [ #(Text "Mood")]
482
+ })]
483
+ }),
484
+ #(Element:0x3ff73302a0c0 {
485
+ name = "li",
486
+ attributes = [
487
+ #(Attr:0x3ff733026a9c { name = "id", value = "menu-item-319" }),
488
+ #(Attr:0x3ff733026a88 {
489
+ name = "class",
490
+ value = "menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-319"
491
+ })],
492
+ children = [
493
+ #(Element:0x3ff733de0e30 {
494
+ name = "a",
495
+ attributes = [ #(Attr:0x3ff733ddd0f0 { name = "href", value = "https://agoodmovietowatch.com/genre/comedy/" })],
496
+ children = [ #(Text "Genres")]
497
+ }),
498
+ #(Element:0x3ff733db0d0c {
499
+ name = "ul",
500
+ attributes = [ #(Attr:0x3ff733dadd00 { name = "class", value = "sub-menu" })],
501
+ children = [
502
+ #(Element:0x3ff733da0c54 {
503
+ name = "li",
504
+ attributes = [
505
+ #(Attr:0x3ff733d9dcd4 { name = "id", value = "menu-item-13059" }),
506
+ #(Attr:0x3ff733d9dcc0 { name = "class", value = "menu-item menu-item-type-taxonomy menu-item-object-category menu-item-13059" })],
507
+ children = [
508
+ #(Element:0x3ff733d8c4c0 {
509
+ name = "a",
510
+ attributes = [ #(Attr:0x3ff733d8952c { name = "href", value = "https://agoodmovietowatch.com/genre/action/" })],
511
+ children = [ #(Text "Action")]
512
+ })]
513
+ }),
514
+ #(Element:0x3ff733d70360 {
515
+ name = "li",
516
+ attributes = [
517
+ #(Attr:0x3ff733d6d82c { name = "id", value = "menu-item-13061" }),
518
+ #(Attr:0x3ff733d6d818 { name = "class", value = "menu-item menu-item-type-taxonomy menu-item-object-category menu-item-13061" })],
519
+ children = [
520
+ #(Element:0x3ff733d59cf0 {
521
+ name = "a",
522
+ attributes = [ #(Attr:0x3ff733d58f94 { name = "href", value = "https://agoodmovietowatch.com/genre/animation/" })],
523
+ children = [ #(Text "Animation")]
524
+ })]
525
+ }),
526
+ #(Element:0x3ff733d457a0 {
527
+ name = "li",
528
+ attributes = [
529
+ #(Attr:0x3ff733d44440 { name = "id", value = "menu-item-13054" }),
530
+ #(Attr:0x3ff733d4442c { name = "class", value = "menu-item menu-item-type-taxonomy menu-item-object-category menu-item-13054" })],
531
+ children = [
532
+ #(Element:0x3ff733d31ca0 {
533
+ name = "a",
534
+ attributes = [ #(Attr:0x3ff733d30904 { name = "href", value = "https://agoodmovietowatch.com/genre/comedy/" })],
535
+ children = [ #(Text "Comedy")]
536
+ })]
537
+ }),
538
+ #(Element:0x3ff733d191dc {
539
+ name = "li",
540
+ attributes = [
541
+ #(Attr:0x3ff733d15780 { name = "id", value = "menu-item-13053" }),
542
+ #(Attr:0x3ff733d15744 { name = "class", value = "menu-item menu-item-type-taxonomy menu-item-object-category menu-item-13053" })],
543
+ children = [
544
+ #(Element:0x3ff733d04ac0 {
545
+ name = "a",
546
+ attributes = [ #(Attr:0x3ff733d01c44 { name = "href", value = "https://agoodmovietowatch.com/genre/drama/" })],
547
+ children = [ #(Text "Drama")]
548
+ })]
549
+ }),
550
+ #(Element:0x3ff733cf1024 {
551
+ name = "li",
552
+ attributes = [
553
+ #(Attr:0x3ff733cf0318 { name = "id", value = "menu-item-13055" }),
554
+ #(Attr:0x3ff733cf0304 { name = "class", value = "menu-item menu-item-type-taxonomy menu-item-object-category menu-item-13055" })],
555
+ children = [
556
+ #(Element:0x3ff7338ff5d8 {
557
+ name = "a",
558
+ attributes = [ #(Attr:0x3ff7338fec78 { name = "href", value = "https://agoodmovietowatch.com/genre/documentary/" })],
559
+ children = [ #(Text "Documentary")]
560
+ })]
561
+ }),
562
+ #(Element:0x3ff7338ef084 {
563
+ name = "li",
564
+ attributes = [
565
+ #(Attr:0x3ff7338ee530 { name = "id", value = "menu-item-13060" }),
566
+ #(Attr:0x3ff7338ee51c { name = "class", value = "menu-item menu-item-type-taxonomy menu-item-object-category menu-item-13060" })],
567
+ children = [
568
+ #(Element:0x3ff7338d3c08 {
569
+ name = "a",
570
+ attributes = [ #(Attr:0x3ff7338d2e70 { name = "href", value = "https://agoodmovietowatch.com/genre/horror-2/" })],
571
+ children = [ #(Text "Horror")]
572
+ })]
573
+ }),
574
+ #(Element:0x3ff7338c27f0 {
575
+ name = "li",
576
+ attributes = [
577
+ #(Attr:0x3ff733cd9690 { name = "id", value = "menu-item-13056" }),
578
+ #(Attr:0x3ff733cd967c { name = "class", value = "menu-item menu-item-type-taxonomy menu-item-object-category menu-item-13056" })],
579
+ children = [
580
+ #(Element:0x3ff733cc580c {
581
+ name = "a",
582
+ attributes = [ #(Attr:0x3ff733cc4e20 { name = "href", value = "https://agoodmovietowatch.com/genre/mystery/" })],
583
+ children = [ #(Text "Mystery")]
584
+ })]
585
+ }),
586
+ #(Element:0x3ff733cac370 {
587
+ name = "li",
588
+ attributes = [
589
+ #(Attr:0x3ff733ca5a48 { name = "id", value = "menu-item-13057" }),
590
+ #(Attr:0x3ff733ca5a34 { name = "class", value = "menu-item menu-item-type-taxonomy menu-item-object-category menu-item-13057" })],
591
+ children = [
592
+ #(Element:0x3ff733c95224 {
593
+ name = "a",
594
+ attributes = [ #(Attr:0x3ff733c8bf44 { name = "href", value = "https://agoodmovietowatch.com/genre/romance/" })],
595
+ children = [ #(Text "Romance")]
596
+ })]
597
+ }),
598
+ #(Element:0x3ff733c761a8 {
599
+ name = "li",
600
+ attributes = [
601
+ #(Attr:0x3ff733c6ab28 { name = "id", value = "menu-item-13058" }),
602
+ #(Attr:0x3ff733c6aa38 { name = "class", value = "menu-item menu-item-type-taxonomy menu-item-object-category menu-item-13058" })],
603
+ children = [
604
+ #(Element:0x3ff733c1d850 {
605
+ name = "a",
606
+ attributes = [ #(Attr:0x3ff733c1ca2c { name = "href", value = "https://agoodmovietowatch.com/genre/science-fiction-fantasy/" })],
607
+ children = [ #(Text "Sci-Fi")]
608
+ })]
609
+ })]
610
+ })]
611
+ }),
612
+ #(Element:0x3ff7338b0e10 {
613
+ name = "li",
614
+ attributes = [
615
+ #(Attr:0x3ff7338ad260 { name = "id", value = "menu-item-14569" }),
616
+ #(Attr:0x3ff7338ad24c {
617
+ name = "class",
618
+ value = "menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-14569"
619
+ })],
620
+ children = [
621
+ #(Element:0x3ff73386d610 {
622
+ name = "a",
623
+ attributes = [ #(Attr:0x3ff733869d08 { name = "href", value = "/more/" })],
624
+ children = [ #(Text "More")]
625
+ }),
626
+ #(Element:0x3ff732c575ec {
627
+ name = "ul",
628
+ attributes = [ #(Attr:0x3ff733821ee0 { name = "class", value = "sub-menu first" })],
629
+ children = [
630
+ #(Element:0x3ff733088148 {
631
+ name = "li",
632
+ attributes = [
633
+ #(Attr:0x3ff733081460 { name = "id", value = "menu-item-14570" }),
634
+ #(Attr:0x3ff73308112c { name = "class", value = "menu-item menu-item-type-custom menu-item-object-custom menu-item-14570" })],
635
+ children = [
636
+ #(Element:0x3ff732c09414 {
637
+ name = "a",
638
+ attributes = [ #(Attr:0x3ff732c0858c { name = "href", value = "https://agoodmovietowatch.com/genre/comedy/" })],
639
+ children = [ #(Text "Genres")]
640
+ })]
641
+ }),
642
+ #(Element:0x3ff73301f698 {
643
+ name = "li",
644
+ attributes = [
645
+ #(Attr:0x3ff73301b2f0 { name = "id", value = "menu-item-5546" }),
646
+ #(Attr:0x3ff73301b2dc { name = "class", value = "menu-item menu-item-type-post_type menu-item-object-page menu-item-5546" })],
647
+ children = [
648
+ #(Element:0x3ff733dc89ac {
649
+ name = "a",
650
+ attributes = [ #(Attr:0x3ff733dc435c { name = "href", value = "https://agoodmovietowatch.com/best/" })],
651
+ children = [ #(Text "Best Films")]
652
+ })]
653
+ }),
654
+ #(Element:0x3ff733da5830 {
655
+ name = "li",
656
+ attributes = [
657
+ #(Attr:0x3ff733da4278 { name = "id", value = "menu-item-4364" }),
658
+ #(Attr:0x3ff733da4264 {
659
+ name = "class",
660
+ value = "menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-4364"
661
+ })],
662
+ children = [
663
+ #(Element:0x3ff733d911f0 {
664
+ name = "a",
665
+ attributes = [ #(Attr:0x3ff733d90a48 { name = "href", value = "https://agoodmovietowatch.com/staff-lists/" })],
666
+ children = [ #(Text "Staff picks")]
667
+ }),
668
+ #(Element:0x3ff733d7421c {
669
+ name = "ul",
670
+ attributes = [ #(Attr:0x3ff733d7156c { name = "class", value = "sub-menu" })],
671
+ children = [
672
+ #(Element:0x3ff733d65d5c {
673
+ name = "li",
674
+ attributes = [
675
+ #(Attr:0x3ff733d650f0 { name = "id", value = "menu-item-13458" }),
676
+ #(Attr:0x3ff733d650dc { name = "class", value = "menu-item menu-item-type-post_type menu-item-object-page menu-item-13458" })],
677
+ children = [
678
+ #(Element:0x3ff733d51e74 {
679
+ name = "a",
680
+ attributes = [
681
+ #(Attr:0x3ff733d51078 { name = "href", value = "https://agoodmovietowatch.com/best-movies-few-people-know-about/" })],
682
+ children = [ #(Text "Best Little-Known Movies")]
683
+ })]
684
+ }),
685
+ #(Element:0x3ff733d3df00 {
686
+ name = "li",
687
+ attributes = [
688
+ #(Attr:0x3ff733d3d398 { name = "id", value = "menu-item-9146" }),
689
+ #(Attr:0x3ff733d3d384 { name = "class", value = "menu-item menu-item-type-post_type menu-item-object-page menu-item-9146" })],
690
+ children = [
691
+ #(Element:0x3ff733d284c0 {
692
+ name = "a",
693
+ attributes = [ #(Attr:0x3ff733d25504 { name = "href", value = "https://agoodmovietowatch.com/amazon-prime/21-best/" })],
694
+ children = [ #(Text "Best on Amazon Prime")]
695
+ })]
696
+ }),
697
+ #(Element:0x3ff733d10c58 {
698
+ name = "li",
699
+ attributes = [
700
+ #(Attr:0x3ff733d0dddc { name = "id", value = "menu-item-6925" }),
701
+ #(Attr:0x3ff733d0ddc8 {
702
+ name = "class",
703
+ value = "menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-6925"
704
+ })],
705
+ children = [
706
+ #(Element:0x3ff733cfc690 {
707
+ name = "a",
708
+ attributes = [ #(Attr:0x3ff733cf9a6c { name = "href", value = "https://agoodmovietowatch.com/netflix/23-best-netflix/" })],
709
+ children = [ #(Text "Best Movies On Netflix")]
710
+ }),
711
+ #(Element:0x3ff733ce84d8 {
712
+ name = "ul",
713
+ attributes = [ #(Attr:0x3ff733ce43ec { name = "class", value = "sub-menu" })],
714
+ children = [
715
+ #(Element:0x3ff7338ff59c {
716
+ name = "li",
717
+ attributes = [
718
+ #(Attr:0x3ff7338febb0 { name = "id", value = "menu-item-12910" }),
719
+ #(Attr:0x3ff7338feb74 {
720
+ name = "class",
721
+ value = "menu-item menu-item-type-post_type menu-item-object-page menu-item-12910"
722
+ })],
723
+ children = [
724
+ #(Element:0x3ff7338eebe8 {
725
+ name = "a",
726
+ attributes = [
727
+ #(Attr:0x3ff7338ee314 { name = "href", value = "https://agoodmovietowatch.com/netflix/23-best-netflix/" })],
728
+ children = [ #(Text "23 Best On Netflix")]
729
+ })]
730
+ }),
731
+ #(Element:0x3ff7338d3c30 {
732
+ name = "li",
733
+ attributes = [
734
+ #(Attr:0x3ff7338d2aec { name = "id", value = "menu-item-6896" }),
735
+ #(Attr:0x3ff7338d2ad8 {
736
+ name = "class",
737
+ value = "menu-item menu-item-type-post_type menu-item-object-page menu-item-6896"
738
+ })],
739
+ children = [
740
+ #(Element:0x3ff733cd9cd0 {
741
+ name = "a",
742
+ attributes = [
743
+ #(Attr:0x3ff733cd9104 { name = "href", value = "https://agoodmovietowatch.com/netflix/32-best-netflix/" })],
744
+ children = [ #(Text "32 Best On Netflix")]
745
+ })]
746
+ })]
747
+ })]
748
+ }),
749
+ #(Element:0x3ff733cbdd50 {
750
+ name = "li",
751
+ attributes = [
752
+ #(Attr:0x3ff733cbc590 { name = "id", value = "menu-item-12907" }),
753
+ #(Attr:0x3ff733cbc57c { name = "class", value = "menu-item menu-item-type-post_type menu-item-object-page menu-item-12907" })],
754
+ children = [
755
+ #(Element:0x3ff733ca4a80 {
756
+ name = "a",
757
+ attributes = [ #(Attr:0x3ff733ca1a88 { name = "href", value = "https://agoodmovietowatch.com/netflix/best-shows/" })],
758
+ children = [ #(Text "Best Shows on Netflix")]
759
+ })]
760
+ }),
761
+ #(Element:0x3ff733c8b238 {
762
+ name = "li",
763
+ attributes = [
764
+ #(Attr:0x3ff733c8a4b4 { name = "id", value = "menu-item-13455" }),
765
+ #(Attr:0x3ff733c8a478 { name = "class", value = "menu-item menu-item-type-post_type menu-item-object-page menu-item-13455" })],
766
+ children = [
767
+ #(Element:0x3ff733c50638 {
768
+ name = "a",
769
+ attributes = [ #(Attr:0x3ff733c4d76c { name = "href", value = "https://agoodmovietowatch.com/best-things-on-netflix/" })],
770
+ children = [ #(Text "Best Things on Netflix")]
771
+ })]
772
+ }),
773
+ #(Element:0x3ff733c14ee4 {
774
+ name = "li",
775
+ attributes = [
776
+ #(Attr:0x3ff733c102cc { name = "id", value = "menu-item-5686" }),
777
+ #(Attr:0x3ff733c1027c { name = "class", value = "menu-item menu-item-type-post_type menu-item-object-page menu-item-5686" })],
778
+ children = [
779
+ #(Element:0x3ff7338ad4cc {
780
+ name = "a",
781
+ attributes = [
782
+ #(Attr:0x3ff7338ac07c { name = "href", value = "https://agoodmovietowatch.com/netflix/10-best-documentaries/" })],
783
+ children = [ #(Text "Best Docs on Netflix")]
784
+ })]
785
+ }),
786
+ #(Element:0x3ff733869d80 {
787
+ name = "li",
788
+ attributes = [
789
+ #(Attr:0x3ff733865ca8 { name = "id", value = "menu-item-13453" }),
790
+ #(Attr:0x3ff733865c80 { name = "class", value = "menu-item menu-item-type-post_type menu-item-object-page menu-item-13453" })],
791
+ children = [
792
+ #(Element:0x3ff733814d08 {
793
+ name = "a",
794
+ attributes = [ #(Attr:0x3ff733810f50 { name = "href", value = "https://agoodmovietowatch.com/staff-lists/" })],
795
+ children = [ #(Text "All staff lists")]
796
+ })]
797
+ })]
798
+ })]
799
+ }),
800
+ #(Element:0x3ff732c3a410 {
801
+ name = "li",
802
+ attributes = [
803
+ #(Attr:0x3ff732c26cd0 { name = "id", value = "menu-item-14148" }),
804
+ #(Attr:0x3ff732c23f44 { name = "class", value = "menu-item menu-item-type-post_type menu-item-object-page menu-item-14148" })],
805
+ children = [
806
+ #(Element:0x3ff733027d5c {
807
+ name = "a",
808
+ attributes = [ #(Attr:0x3ff733026c54 { name = "href", value = "https://agoodmovietowatch.com/contribute-2/" })],
809
+ children = [ #(Text "Contribute")]
810
+ })]
811
+ })]
812
+ })]
813
+ }),
814
+ #(Text "\n")]
815
+ }),
816
+ #(Text "\n"),
817
+ #(Element:0x3ff733db5640 {
818
+ name = "span",
819
+ attributes = [ #(Attr:0x3ff733db40ec { name = "class", value = "menu-right" })],
820
+ children = [
821
+ #(Element:0x3ff733da504c {
822
+ name = "li",
823
+ attributes = [
824
+ #(Attr:0x3ff733da1e10 { name = "id", value = "menu-item-3532" }),
825
+ #(Attr:0x3ff733da1dfc { name = "class", value = "customenuitem menu-item menu-item-type-post_type menu-item-object-page menu-item-3532" })],
826
+ children = [
827
+ #(Element:0x3ff733d90ef8 {
828
+ name = "a",
829
+ attributes = [ #(Attr:0x3ff733d90778 { name = "href", value = "https://agoodmovietowatch.com/netflix/" })],
830
+ children = [ #(Text "Netflix")]
831
+ }),
832
+ #(Element:0x3ff733d71ee0 {
833
+ name = "div",
834
+ attributes = [ #(Attr:0x3ff733d71260 { name = "id", value = "netflix-region-list-container" })],
835
+ children = [
836
+ #(Element:0x3ff733d65618 {
837
+ name = "div",
838
+ attributes = [ #(Attr:0x3ff733d64b8c { name = "id", value = "netflix-region-list-selected-container" })],
839
+ children = [
840
+ #(Element:0x3ff733d58db4 {
841
+ name = "div",
842
+ attributes = [ #(Attr:0x3ff733d581e8 { name = "id", value = "netflix-loader-overlay" })],
843
+ children = [
844
+ #(Element:0x3ff733d49724 {
845
+ name = "span",
846
+ attributes = [ #(Attr:0x3ff733d48d74 { name = "class", value = "netflix-loader-spinner" })]
847
+ })]
848
+ }),
849
+ #(Element:0x3ff733d3d488 {
850
+ name = "span",
851
+ attributes = [
852
+ #(Attr:0x3ff733d3c470 { name = "data-selected-region", value = "netflix" }),
853
+ #(Attr:0x3ff733d3c45c { name = "title", value = "USA" }),
854
+ #(Attr:0x3ff733d3c448 { name = "id", value = "netflix-region-list-selected-flag" })],
855
+ children = [ #(Text "USA")]
856
+ }),
857
+ #(Element:0x3ff733d156cc {
858
+ name = "span",
859
+ attributes = [ #(Attr:0x3ff733d1468c { name = "class", value = "netflix-region-list-selected-poiter" })]
860
+ })]
861
+ }),
862
+ #(Element:0x3ff733d08800 {
863
+ name = "ul",
864
+ attributes = [ #(Attr:0x3ff733d05920 { name = "id", value = "netflix-region-list" })],
865
+ children = [
866
+ #(Element:0x3ff733cf9328 {
867
+ name = "li",
868
+ attributes = [
869
+ #(Attr:0x3ff733cf80cc { name = "title", value = "Argentina" }),
870
+ #(Attr:0x3ff733cf8090 { name = "data-region", value = "argentina-netflix" })],
871
+ children = [ #(Element:0x3ff733ce0fa8 { name = "p", children = [ #(Text "Argentina")] })]
872
+ }),
873
+ #(Element:0x3ff7338fec8c {
874
+ name = "li",
875
+ attributes = [
876
+ #(Attr:0x3ff7338fb9b0 { name = "title", value = "Australia" }),
877
+ #(Attr:0x3ff7338fb99c { name = "data-region", value = "australia-netflix" })],
878
+ children = [ #(Element:0x3ff7338ee134 { name = "p", children = [ #(Text "Australia")] })]
879
+ }),
880
+ #(Element:0x3ff7338da7ec {
881
+ name = "li",
882
+ attributes = [
883
+ #(Attr:0x3ff7338d7718 { name = "title", value = "Belgium" }),
884
+ #(Attr:0x3ff7338d7704 { name = "data-region", value = "belgium-netflix" })],
885
+ children = [ #(Element:0x3ff7338c4a8c { name = "p", children = [ #(Text "Belgium")] })]
886
+ }),
887
+ #(Element:0x3ff733cd82b8 {
888
+ name = "li",
889
+ attributes = [
890
+ #(Attr:0x3ff733cd561c { name = "title", value = "Brazil" }),
891
+ #(Attr:0x3ff733cd5608 { name = "data-region", value = "brazil-netflix" })],
892
+ children = [ #(Element:0x3ff733cbc5a4 { name = "p", children = [ #(Text "Brazil")] })]
893
+ }),
894
+ #(Element:0x3ff733cad734 {
895
+ name = "li",
896
+ attributes = [
897
+ #(Attr:0x3ff733cac8d4 { name = "title", value = "Canada" }),
898
+ #(Attr:0x3ff733cac8c0 { name = "data-region", value = "canada-netflix" })],
899
+ children = [ #(Element:0x3ff733c8c4bc { name = "p", children = [ #(Text "Canada")] })]
900
+ }),
901
+ #(Element:0x3ff733c57d98 {
902
+ name = "li",
903
+ attributes = [ #(Attr:0x3ff733c5618c { name = "id", value = "netflix_region_expand" })],
904
+ children = [ #(Text "More")]
905
+ }),
906
+ #(Element:0x3ff733c44d88 {
907
+ name = "li",
908
+ attributes = [
909
+ #(Attr:0x3ff733c3cf20 { name = "title", value = "France" }),
910
+ #(Attr:0x3ff733c3cef8 { name = "data-region", value = "france-netflix" }),
911
+ #(Attr:0x3ff733c3ce6c { name = "class", value = "agmtw_ns_hidden_li" })],
912
+ children = [ #(Element:0x3ff7338bd868 { name = "p", children = [ #(Text "France")] })]
913
+ }),
914
+ #(Element:0x3ff7338ac6a8 {
915
+ name = "li",
916
+ attributes = [
917
+ #(Attr:0x3ff7338a5ed4 { name = "title", value = "Germany" }),
918
+ #(Attr:0x3ff7338a5ec0 { name = "data-region", value = "germany-netflix" }),
919
+ #(Attr:0x3ff7338a5de4 { name = "class", value = "agmtw_ns_hidden_li" })],
920
+ children = [ #(Element:0x3ff73384d680 { name = "p", children = [ #(Text "Germany")] })]
921
+ }),
922
+ #(Element:0x3ff733820298 {
923
+ name = "li",
924
+ attributes = [
925
+ #(Attr:0x3ff7338113b0 { name = "title", value = "India" }),
926
+ #(Attr:0x3ff7338112fc { name = "data-region", value = "india-netflix" }),
927
+ #(Attr:0x3ff7338112ac { name = "class", value = "agmtw_ns_hidden_li" })],
928
+ children = [ #(Element:0x3ff732c12cf8 { name = "p", children = [ #(Text "India")] })]
929
+ }),
930
+ #(Element:0x3ff7330363ac {
931
+ name = "li",
932
+ attributes = [
933
+ #(Attr:0x3ff73302f91c { name = "title", value = "Italy" }),
934
+ #(Attr:0x3ff73302f8f4 { name = "data-region", value = "italy-netflix" }),
935
+ #(Attr:0x3ff73302f8a4 { name = "class", value = "agmtw_ns_hidden_li" })],
936
+ children = [ #(Element:0x3ff733dd1980 { name = "p", children = [ #(Text "Italy")] })]
937
+ }),
938
+ #(Element:0x3ff733db4c40 {
939
+ name = "li",
940
+ attributes = [
941
+ #(Attr:0x3ff733db0b90 { name = "title", value = "Japan" }),
942
+ #(Attr:0x3ff733db0b7c { name = "data-region", value = "japan-netflix" }),
943
+ #(Attr:0x3ff733db0b68 { name = "class", value = "agmtw_ns_hidden_li" })],
944
+ children = [ #(Element:0x3ff733d946d4 { name = "p", children = [ #(Text "Japan")] })]
945
+ }),
946
+ #(Element:0x3ff733d84dec {
947
+ name = "li",
948
+ attributes = [
949
+ #(Attr:0x3ff733d7ce44 { name = "title", value = "Mexico" }),
950
+ #(Attr:0x3ff733d7ce30 { name = "data-region", value = "mexico-netflix" }),
951
+ #(Attr:0x3ff733d7ce1c { name = "class", value = "agmtw_ns_hidden_li" })],
952
+ children = [ #(Element:0x3ff733d61644 { name = "p", children = [ #(Text "Mexico")] })]
953
+ }),
954
+ #(Element:0x3ff733d55c54 {
955
+ name = "li",
956
+ attributes = [
957
+ #(Attr:0x3ff733d54fc0 { name = "title", value = "Netherlands" }),
958
+ #(Attr:0x3ff733d54f98 { name = "data-region", value = "netherlands-netflix" }),
959
+ #(Attr:0x3ff733d54f84 { name = "class", value = "agmtw_ns_hidden_li" })],
960
+ children = [ #(Element:0x3ff733d3c664 { name = "p", children = [ #(Text "Netherlands")] })]
961
+ }),
962
+ #(Element:0x3ff733d30238 {
963
+ name = "li",
964
+ attributes = [
965
+ #(Attr:0x3ff733d2c3e0 { name = "title", value = "Norway" }),
966
+ #(Attr:0x3ff733d2c3cc { name = "data-region", value = "norway-netflix" }),
967
+ #(Attr:0x3ff733d2c3b8 { name = "class", value = "agmtw_ns_hidden_li" })],
968
+ children = [ #(Element:0x3ff733d0ddb4 { name = "p", children = [ #(Text "Norway")] })]
969
+ }),
970
+ #(Element:0x3ff733d01d48 {
971
+ name = "li",
972
+ attributes = [
973
+ #(Attr:0x3ff733d004c0 { name = "title", value = "Poland" }),
974
+ #(Attr:0x3ff733d004ac { name = "data-region", value = "poland-netflix" }),
975
+ #(Attr:0x3ff733d00484 { name = "class", value = "agmtw_ns_hidden_li" })],
976
+ children = [ #(Element:0x3ff733ce1ad4 { name = "p", children = [ #(Text "Poland")] })]
977
+ }),
978
+ #(Element:0x3ff7338ff4fc {
979
+ name = "li",
980
+ attributes = [
981
+ #(Attr:0x3ff7338fe4e4 { name = "title", value = "Portugal" }),
982
+ #(Attr:0x3ff7338fe41c { name = "data-region", value = "portugal-netflix" }),
983
+ #(Attr:0x3ff7338fe3f4 { name = "class", value = "agmtw_ns_hidden_li" })],
984
+ children = [ #(Element:0x3ff7338dfcd8 { name = "p", children = [ #(Text "Portugal")] })]
985
+ }),
986
+ #(Element:0x3ff7338d6228 {
987
+ name = "li",
988
+ attributes = [
989
+ #(Attr:0x3ff7338d32a8 { name = "title", value = "Russia" }),
990
+ #(Attr:0x3ff7338d3294 { name = "data-region", value = "russia-netflix" }),
991
+ #(Attr:0x3ff7338d3258 { name = "class", value = "agmtw_ns_hidden_li" })],
992
+ children = [ #(Element:0x3ff733cd5a7c { name = "p", children = [ #(Text "Russia")] })]
993
+ }),
994
+ #(Element:0x3ff733cc9c2c {
995
+ name = "li",
996
+ attributes = [
997
+ #(Attr:0x3ff733cc823c { name = "title", value = "South Korea" }),
998
+ #(Attr:0x3ff733cc81ec { name = "data-region", value = "south-korea-netflix" }),
999
+ #(Attr:0x3ff733cc81c4 { name = "class", value = "agmtw_ns_hidden_li" })],
1000
+ children = [ #(Element:0x3ff733ca4260 { name = "p", children = [ #(Text "South Korea")] })]
1001
+ }),
1002
+ #(Element:0x3ff733c8ccf0 {
1003
+ name = "li",
1004
+ attributes = [
1005
+ #(Attr:0x3ff733c8c048 { name = "title", value = "Spain" }),
1006
+ #(Attr:0x3ff733c8c034 { name = "data-region", value = "spain-netflix" }),
1007
+ #(Attr:0x3ff733c8c00c { name = "class", value = "agmtw_ns_hidden_li" })],
1008
+ children = [ #(Element:0x3ff733c50b4c { name = "p", children = [ #(Text "Spain")] })]
1009
+ }),
1010
+ #(Element:0x3ff733c2c378 {
1011
+ name = "li",
1012
+ attributes = [
1013
+ #(Attr:0x3ff733c25884 { name = "title", value = "Sweden" }),
1014
+ #(Attr:0x3ff733c25870 { name = "data-region", value = "sweden-netflix" }),
1015
+ #(Attr:0x3ff733c25744 { name = "class", value = "agmtw_ns_hidden_li" })],
1016
+ children = [ #(Element:0x3ff7338b11bc { name = "p", children = [ #(Text "Sweden")] })]
1017
+ }),
1018
+ #(Element:0x3ff733890bc4 {
1019
+ name = "li",
1020
+ attributes = [
1021
+ #(Attr:0x3ff7338808a0 { name = "title", value = "Switzerland" }),
1022
+ #(Attr:0x3ff73388088c { name = "data-region", value = "switzerland-netflix" }),
1023
+ #(Attr:0x3ff733880864 { name = "class", value = "agmtw_ns_hidden_li" })],
1024
+ children = [ #(Element:0x3ff732c5a710 { name = "p", children = [ #(Text "Switzerland")] })]
1025
+ }),
1026
+ #(Element:0x3ff733090bb8 {
1027
+ name = "li",
1028
+ attributes = [
1029
+ #(Attr:0x3ff73308900c { name = "title", value = "UK" }),
1030
+ #(Attr:0x3ff733088ff8 { name = "data-region", value = "uk-netflix" }),
1031
+ #(Attr:0x3ff733088fd0 { name = "class", value = "agmtw_ns_hidden_li" })],
1032
+ children = [ #(Element:0x3ff73306380c { name = "p", children = [ #(Text "UK")] })]
1033
+ }),
1034
+ #(Element:0x3ff733026894 {
1035
+ name = "li",
1036
+ attributes = [
1037
+ #(Attr:0x3ff73302311c { name = "title", value = "USA" }),
1038
+ #(Attr:0x3ff733023108 { name = "data-region", value = "netflix" }),
1039
+ #(Attr:0x3ff7330230f4 { name = "class", value = "agmtw_ns_hidden_li" })],
1040
+ children = [ #(Element:0x3ff733dbd19c { name = "p", children = [ #(Text "USA")] })]
1041
+ })]
1042
+ })]
1043
+ })]
1044
+ }),
1045
+ #(Element:0x3ff733da4f70 {
1046
+ name = "li",
1047
+ attributes = [
1048
+ #(Attr:0x3ff733da199c { name = "id", value = "menu-item-10314" }),
1049
+ #(Attr:0x3ff733da1988 { name = "class", value = "menu-item menu-item-type-post_type menu-item-object-page menu-item-10314" })],
1050
+ children = [
1051
+ #(Element:0x3ff733d9096c {
1052
+ name = "a",
1053
+ attributes = [ #(Attr:0x3ff733d8ddc0 { name = "href", value = "https://agoodmovietowatch.com/amazon-prime/" })],
1054
+ children = [ #(Text "Amazon Prime")]
1055
+ })]
1056
+ })]
1057
+ })]
1058
+ })]
1059
+ })]
1060
+ })]
1061
+ })]
1062
+ })]
1063
+ }),
1064
+ #(Text "\n")]
1065
+ })]
1066
+ })]
1067
+ }),
1068
+ #(Element:0x3ff733d5c9c8 {
1069
+ name = "div",
1070
+ attributes = [ #(Attr:0x3ff733d59930 { name = "id", value = "main" }), #(Attr:0x3ff733d5991c { name = "class", value = "site-main" })],
1071
+ children = [
1072
+ #(Element:0x3ff733d45a20 {
1073
+ name = "link",
1074
+ attributes = [
1075
+ #(Attr:0x3ff733d44b34 { name = "href", value = "https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700" }),
1076
+ #(Attr:0x3ff733d44abc { name = "rel", value = "stylesheet" }),
1077
+ #(Attr:0x3ff733d44a94 { name = "lazyload", value = "" })]
1078
+ }),
1079
+ #(Element:0x3ff733d291b8 {
1080
+ name = "div",
1081
+ attributes = [ #(Attr:0x3ff733d28614 { name = "class", value = "newsletter-message" })],
1082
+ children = [
1083
+ #(Text "\n"),
1084
+ #(Element:0x3ff733d14f88 {
1085
+ name = "a",
1086
+ attributes = [ #(Attr:0x3ff733d11e8c { name = "href", value = "https://agoodmovietowatch.substack.com/subscribe?&coupon=yfyKXSVg" })],
1087
+ children = [
1088
+ #(Text "\n"),
1089
+ #(Element:0x3ff733d046b0 {
1090
+ name = "span",
1091
+ attributes = [ #(Attr:0x3ff733d015a0 { name = "class", value = "newsletter-logo" })],
1092
+ children = [ #(Text "a"), #(Element:0x3ff733cf1bb4 { name = "b", children = [ #(Text "goodmovie")] }), #(Text "towatch")]
1093
+ }),
1094
+ #(Text "\n"),
1095
+ #(Element:0x3ff7339031c4 {
1096
+ name = "span",
1097
+ attributes = [ #(Attr:0x3ff7338ffad8 { name = "class", value = "newsletter-first" })],
1098
+ children = [ #(Text "Sign up here for our new \"Film Nerds vs. Algorithms\" newsletter.")]
1099
+ }),
1100
+ #(Text "\n"),
1101
+ #(Element:0x3ff7338eef80 {
1102
+ name = "span",
1103
+ attributes = [ #(Attr:0x3ff7338ee3a0 { name = "class", value = "newsletter-second" })],
1104
+ children = [ #(Text "Read our best reviews before they go online. Every Friday. In your inbox.")]
1105
+ }),
1106
+ #(Text "\n"),
1107
+ #(Element:0x3ff7338d2a4c {
1108
+ name = "span",
1109
+ attributes = [ #(Attr:0x3ff7338cb774 { name = "class", value = "newsletter-button" })],
1110
+ children = [ #(Text "Subscribe - First Month FREE")]
1111
+ }),
1112
+ #(Text "\n")]
1113
+ })]
1114
+ }),
1115
+ #(Element:0x3ff733cd51e4 {
1116
+ name = "span",
1117
+ attributes = [ #(Attr:0x3ff733cd4294 { name = "itemscope", value = "" }), #(Attr:0x3ff733cd4280 { name = "itemtype", value = "http://schema.org/Movie" })],
1118
+ children = [
1119
+ #(Element:0x3ff733cb5e34 {
1120
+ name = "meta",
1121
+ attributes = [ #(Attr:0x3ff733cb513c { name = "itemprop", value = "director" }), #(Attr:0x3ff733cb5128 { name = "content", value = "Robert Kenner" })]
1122
+ }),
1123
+ #(Element:0x3ff733c9c86c {
1124
+ name = "meta",
1125
+ attributes = [ #(Attr:0x3ff733c9943c { name = "itemprop", value = "actor" }), #(Attr:0x3ff733c99428 { name = "content", value = "Eric Schlosser" })]
1126
+ }),
1127
+ #(Element:0x3ff733c57fc8 {
1128
+ name = "meta",
1129
+ attributes = [ #(Attr:0x3ff733c56218 { name = "itemprop", value = "actor" }), #(Attr:0x3ff733c56204 { name = "content", value = "Michael Pollan" })]
1130
+ }),
1131
+ #(Element:0x3ff733c3d524 {
1132
+ name = "meta",
1133
+ attributes = [ #(Attr:0x3ff733c31418 { name = "itemprop", value = "actor" }), #(Attr:0x3ff733c31300 { name = "content", value = "Richard Lobb" })]
1134
+ }),
1135
+ #(Element:0x3ff733c0cd0c {
1136
+ name = "div",
1137
+ attributes = [ #(Attr:0x3ff733c05958 { name = "id", value = "primary" }), #(Attr:0x3ff733c05908 { name = "class", value = "content-area" })],
1138
+ children = [
1139
+ #(Element:0x3ff7338a49e4 {
1140
+ name = "div",
1141
+ attributes = [
1142
+ #(Attr:0x3ff73389de64 { name = "id", value = "content" }),
1143
+ #(Attr:0x3ff73389de14 { name = "class", value = "site-content" }),
1144
+ #(Attr:0x3ff73389de00 { name = "role", value = "main" })],
1145
+ children = [
1146
+ #(Text "\n"),
1147
+ #(Element:0x3ff732c5f698 {
1148
+ name = "article",
1149
+ attributes = [
1150
+ #(Attr:0x3ff732c56e58 { name = "id", value = "post-435" }),
1151
+ #(Attr:0x3ff732c56e1c {
1152
+ name = "class",
1153
+ value = "post-435 post type-post status-publish format-standard has-post-thumbnail hentry category-documentary tag-amazon tag-canada-netflix tag-family tag-itunes tag-japan-netflix tag-instructive tag-netflix tag-watch-with-mom mpaarating-pg movieslike-fahrenheit-911 bbyear-247 mood-depressing mood-instructive-2 award-oscar_nominated screenwriter-elise-pearlstein screenwriter-robert-kenner actor-eric-schlosser actor-michael-pollan actor-richard-lobb bbdirector-robert-kenner good-good-scary-documentary-movies language-english genres-documentary"
1154
+ })],
1155
+ children = [
1156
+ #(Element:0x3ff732c17b90 {
1157
+ name = "div",
1158
+ attributes = [ #(Attr:0x3ff732c16484 { name = "class", value = "similar-to-opposite" })],
1159
+ children = [
1160
+ #(Element:0x3ff732c12adc {
1161
+ name = "div",
1162
+ attributes = [ #(Attr:0x3ff732c08dfc { name = "class", value = "right-wrapper" })],
1163
+ children = [
1164
+ #(Text "\n"),
1165
+ #(Element:0x3ff7330271cc {
1166
+ name = "header",
1167
+ children = [
1168
+ #(Element:0x3ff73301b00c {
1169
+ name = "div",
1170
+ attributes = [
1171
+ #(Attr:0x3ff733017150 { name = "class", value = "agmtw_container" }),
1172
+ #(Attr:0x3ff73301713c { name = "data-agmtw-post-id", value = "435" })],
1173
+ children = [
1174
+ #(Element:0x3ff733dc0694 {
1175
+ name = "span",
1176
+ attributes = [
1177
+ #(Attr:0x3ff733db90c4 { name = "data-agmtw-modal-id", value = "agmtw_login_box" }),
1178
+ #(Attr:0x3ff733db90b0 { name = "data-tooltip", value = "Not interested" }),
1179
+ #(Attr:0x3ff733db909c { name = "class", value = "tooltip agmtw_dismiss" })],
1180
+ children = [ #(Element:0x3ff733d993a0 { name = "span", attributes = [ #(Attr:0x3ff733d98860 { name = "class", value = "dismiss-icon" })] })]
1181
+ }),
1182
+ #(Element:0x3ff733d8c0c4 {
1183
+ name = "span",
1184
+ attributes = [
1185
+ #(Attr:0x3ff733d88794 { name = "data-agmtw-modal-id", value = "agmtw_login_box" }),
1186
+ #(Attr:0x3ff733d88780 { name = "data-tooltip", value = "Add to Loved" }),
1187
+ #(Attr:0x3ff733d8876c { name = "class", value = "tooltip agmtw_loved" })],
1188
+ children = [ #(Element:0x3ff733d658e8 { name = "span", attributes = [ #(Attr:0x3ff733d65028 { name = "class", value = "loved-icon" })] })]
1189
+ }),
1190
+ #(Element:0x3ff733d5856c {
1191
+ name = "span",
1192
+ attributes = [
1193
+ #(Attr:0x3ff733d55510 { name = "data-agmtw-modal-id", value = "agmtw_login_box" }),
1194
+ #(Attr:0x3ff733d554e8 { name = "data-tooltip", value = "Watch it later" }),
1195
+ #(Attr:0x3ff733d554d4 { name = "class", value = "tooltip agmtw_queue" })],
1196
+ children = [ #(Element:0x3ff733d3cc2c { name = "span", attributes = [ #(Attr:0x3ff733d3c060 { name = "class", value = "queue-icon" })] })]
1197
+ }),
1198
+ #(Element:0x3ff733d2c160 {
1199
+ name = "span",
1200
+ attributes = [
1201
+ #(Attr:0x3ff733d28ba0 { name = "data-agmtw-modal-id", value = "agmtw_login_box" }),
1202
+ #(Attr:0x3ff733d28b8c { name = "data-tooltip", value = "Seen it" }),
1203
+ #(Attr:0x3ff733d28b78 { name = "class", value = "tooltip agmtw_seen" })],
1204
+ children = [ #(Element:0x3ff733d0c84c { name = "span", attributes = [ #(Attr:0x3ff733d09c50 { name = "class", value = "seen-icon" })] })]
1205
+ })]
1206
+ }),
1207
+ #(Element:0x3ff733d001b4 {
1208
+ name = "h1",
1209
+ children = [
1210
+ #(Text "\nFood, Inc "),
1211
+ #(Element:0x3ff733d0072c { name = "a", children = [ #(Text " (")] }),
1212
+ #(Element:0x3ff733d0086c {
1213
+ name = "span",
1214
+ attributes = [
1215
+ #(Attr:0x3ff733ce402c { name = "class", value = "movieyear" }),
1216
+ #(Attr:0x3ff733ce1fd4 { name = "title", value = "More movies from this year" })],
1217
+ children = [
1218
+ #(Element:0x3ff7338f7d38 {
1219
+ name = "a",
1220
+ attributes = [
1221
+ #(Attr:0x3ff7338f7554 { name = "href", value = "https://agoodmovietowatch.com/year/2008/" }),
1222
+ #(Attr:0x3ff7338f7540 { name = "rel", value = "tag" })],
1223
+ children = [ #(Text "2008")]
1224
+ })]
1225
+ }),
1226
+ #(Element:0x3ff733d00b00 { name = "a", children = [ #(Text ")")] })]
1227
+ }),
1228
+ #(Element:0x3ff7338ca4b4 {
1229
+ name = "a",
1230
+ attributes = [ #(Attr:0x3ff7338c9f8c { name = "href", value = "/login" })],
1231
+ children = [
1232
+ #(Element:0x3ff7338c2430 {
1233
+ name = "div",
1234
+ attributes = [ #(Attr:0x3ff733cd971c { name = "class", value = "rating-area" })],
1235
+ children = [
1236
+ #(Element:0x3ff733ccd41c {
1237
+ name = "div",
1238
+ attributes = [ #(Attr:0x3ff733ccc7b0 { name = "class", value = "user-rating-list rating-content" })],
1239
+ children = [
1240
+ #(Text "\n"),
1241
+ #(Element:0x3ff733cb473c {
1242
+ name = "span",
1243
+ attributes = [ #(Attr:0x3ff733cb1460 { name = "class", value = "rating-f4" })],
1244
+ children = [
1245
+ #(Element:0x3ff733ca4b0c {
1246
+ name = "span",
1247
+ attributes = [ #(Attr:0x3ff733c9d280 { name = "class", value = "rating-score full-star" })],
1248
+ children = [
1249
+ #(Element:0x3ff733c95b84 {
1250
+ name = "span",
1251
+ children = [
1252
+ #(Element:0x3ff733c8b288 {
1253
+ name = "span",
1254
+ attributes = [ #(Attr:0x3ff733c8aacc { name = "class", value = "user-rating-list-rating" })],
1255
+ children = [ #(Text "4.2")]
1256
+ }),
1257
+ #(Element:0x3ff733c6685c {
1258
+ name = "span",
1259
+ attributes = [ #(Attr:0x3ff733c50778 { name = "class", value = "rating-outoff" })],
1260
+ children = [ #(Text "/")]
1261
+ }),
1262
+ #(Element:0x3ff733c1d3f0 {
1263
+ name = "span",
1264
+ attributes = [ #(Attr:0x3ff733c19610 { name = "class", value = "rating-outoff" })],
1265
+ children = [ #(Text "5")]
1266
+ })]
1267
+ }),
1268
+ #(Text "\n")]
1269
+ })]
1270
+ })]
1271
+ }),
1272
+ #(Element:0x3ff7338a14d8 {
1273
+ name = "div",
1274
+ attributes = [ #(Attr:0x3ff733894120 { name = "class", value = "rating-rate" })],
1275
+ children = [
1276
+ #(Element:0x3ff73386c1c0 {
1277
+ name = "div",
1278
+ attributes = [ #(Attr:0x3ff73386850c { name = "class", value = "agmtwr_container" })],
1279
+ children = [
1280
+ #(Element:0x3ff732c62e24 {
1281
+ name = "div",
1282
+ attributes = [
1283
+ #(Attr:0x3ff732c5e2fc { name = "class", value = "agmtwr_hidden" }),
1284
+ #(Attr:0x3ff732c5e270 { name = "itemprop", value = "aggregateRating" }),
1285
+ #(Attr:0x3ff732c5e1bc { name = "itemscope", value = "" }),
1286
+ #(Attr:0x3ff732c5e108 { name = "itemtype", value = "http://schema.org/AggregateRating" })],
1287
+ children = [
1288
+ #(Element:0x3ff732c121b8 {
1289
+ name = "span",
1290
+ attributes = [ #(Attr:0x3ff732c08a28 { name = "itemprop", value = "ratingValue" })],
1291
+ children = [ #(Text "4.152")]
1292
+ }),
1293
+ #(Element:0x3ff733022578 {
1294
+ name = "span",
1295
+ attributes = [ #(Attr:0x3ff73301e2ac { name = "itemprop", value = "bestRating" })],
1296
+ children = [ #(Text "5")]
1297
+ }),
1298
+ #(Element:0x3ff733da9994 {
1299
+ name = "span",
1300
+ attributes = [ #(Attr:0x3ff733da88dc { name = "itemprop", value = "ratingCount" })],
1301
+ children = [ #(Text "250")]
1302
+ })]
1303
+ }),
1304
+ #(Element:0x3ff733d798fc {
1305
+ name = "div",
1306
+ attributes = [
1307
+ #(Attr:0x3ff733d7197c { name = "id", value = "d4" }),
1308
+ #(Attr:0x3ff733d71968 { name = "class", value = "agmtwr_shape_container" }),
1309
+ #(Attr:0x3ff733d71940 { name = "data-agmtw-modal-id", value = "agmtw_login_box" })],
1310
+ children = [
1311
+ #(Element:0x3ff733d411c8 {
1312
+ name = "span",
1313
+ attributes = [
1314
+ #(Attr:0x3ff733d407dc { name = "data-agmtwr-value", value = "1" }),
1315
+ #(Attr:0x3ff733d407c8 { name = "data-agmtwr-tooltip", value = "Hated it" }),
1316
+ #(Attr:0x3ff733d407b4 { name = "id", value = "tts14.152" }),
1317
+ #(Attr:0x3ff733d407a0 { name = "class", value = "agmtwr_tooltip agmtwr_shape agmtwr_voted" })]
1318
+ }),
1319
+ #(Element:0x3ff733cf9bfc {
1320
+ name = "span",
1321
+ attributes = [
1322
+ #(Attr:0x3ff733cf80e0 { name = "data-agmtwr-value", value = "2" }),
1323
+ #(Attr:0x3ff733cf807c { name = "data-agmtwr-tooltip", value = "Didn't like it" }),
1324
+ #(Attr:0x3ff733cf8068 { name = "id", value = "tts24.152" }),
1325
+ #(Attr:0x3ff733cf8054 { name = "class", value = "agmtwr_tooltip agmtwr_shape agmtwr_voted" })]
1326
+ }),
1327
+ #(Element:0x3ff7338d7218 {
1328
+ name = "span",
1329
+ attributes = [
1330
+ #(Attr:0x3ff7338d64a8 { name = "data-agmtwr-value", value = "3" }),
1331
+ #(Attr:0x3ff7338d6494 { name = "data-agmtwr-tooltip", value = "Meh..." }),
1332
+ #(Attr:0x3ff7338d6480 { name = "id", value = "tts34.152" }),
1333
+ #(Attr:0x3ff7338d646c { name = "class", value = "agmtwr_tooltip agmtwr_shape agmtwr_voted" })]
1334
+ }),
1335
+ #(Element:0x3ff733c99c48 {
1336
+ name = "span",
1337
+ attributes = [
1338
+ #(Attr:0x3ff733c98d20 { name = "data-agmtwr-value", value = "4" }),
1339
+ #(Attr:0x3ff733c98ce4 { name = "data-agmtwr-tooltip", value = "Liked it" }),
1340
+ #(Attr:0x3ff733c98cd0 { name = "id", value = "tts44.152" }),
1341
+ #(Attr:0x3ff733c98cbc { name = "class", value = "agmtwr_tooltip agmtwr_shape agmtwr_voted" })]
1342
+ }),
1343
+ #(Element:0x3ff73389d540 {
1344
+ name = "span",
1345
+ attributes = [
1346
+ #(Attr:0x3ff7338808c8 { name = "data-agmtwr-value", value = "5" }),
1347
+ #(Attr:0x3ff73388083c { name = "data-agmtwr-tooltip", value = "Loved it" }),
1348
+ #(Attr:0x3ff7338807d8 { name = "id", value = "tts54.152" }),
1349
+ #(Attr:0x3ff733880788 { name = "class", value = "agmtwr_tooltip agmtwr_shape agmtwr_empty" })]
1350
+ })]
1351
+ }),
1352
+ #(Element:0x3ff73302a084 {
1353
+ name = "span",
1354
+ attributes = [ #(Attr:0x3ff73301ad00 { name = "class", value = "agmtwr_vote_count" })],
1355
+ children = [ #(Text "Rate film (250 votes)")]
1356
+ })]
1357
+ })]
1358
+ })]
1359
+ }),
1360
+ #(Text "\n")]
1361
+ }),
1362
+ #(Element:0x3ff73382106c {
1363
+ name = "div",
1364
+ attributes = [ #(Attr:0x3ff733811d24 { name = "class", value = "vouch rating4" })],
1365
+ children = [
1366
+ #(Element:0x3ff73389915c { name = "span", attributes = [ #(Attr:0x3ff73387d1f0 { name = "class", value = "vouch-icon" })] }),
1367
+ #(Text "70% Vouch")]
1368
+ }),
1369
+ #(Text "\n")]
1370
+ }),
1371
+ #(Element:0x3ff733c3c264 {
1372
+ name = "div",
1373
+ attributes = [ #(Attr:0x3ff733c2ccb0 { name = "class", value = "featured-image" })],
1374
+ children = [
1375
+ #(Text "\n"),
1376
+ #(Element:0x3ff733c8d86c {
1377
+ name = "span",
1378
+ attributes = [ #(Attr:0x3ff733c8c750 { name = "itemprop", value = "image" })],
1379
+ children = [ #(Element:0x3ff733cac35c { name = "div", attributes = [ #(Attr:0x3ff733ca54d0 { name = "class", value = "wpoembed" })] })]
1380
+ })]
1381
+ }),
1382
+ #(Element:0x3ff733cd8ccc {
1383
+ name = "div",
1384
+ attributes = [ #(Attr:0x3ff733cd818c { name = "class", value = "random-redirection-container" })],
1385
+ children = [
1386
+ #(Element:0x3ff7338c4a14 {
1387
+ name = "div",
1388
+ attributes = [ #(Attr:0x3ff7338effac { name = "class", value = "random-redirection" })],
1389
+ children = [
1390
+ #(Element:0x3ff7338da0a8 {
1391
+ name = "li",
1392
+ children = [
1393
+ #(Text "\n"),
1394
+ #(Element:0x3ff7338f67a8 {
1395
+ name = "a",
1396
+ attributes = [ #(Attr:0x3ff733cf5cdc { name = "href", value = "/random/" })],
1397
+ children = [
1398
+ #(Text "\n"),
1399
+ #(Element:0x3ff733cfd5a4 { name = "i", attributes = [ #(Attr:0x3ff733cfc6a4 { name = "class", value = "fas fa-random" })] }),
1400
+ #(Element:0x3ff733d25edc {
1401
+ name = "div",
1402
+ attributes = [ #(Attr:0x3ff733d24140 { name = "class", value = "random-single" })],
1403
+ children = [
1404
+ #(Text "another random suggestion\n"),
1405
+ #(Element:0x3ff733d54264 { name = "i", attributes = [ #(Attr:0x3ff733d45e1c { name = "class", value = "fas fa-long-arrow-alt-right" })] })]
1406
+ }),
1407
+ #(Text "\n")]
1408
+ })]
1409
+ }),
1410
+ #(Element:0x3ff733d6c620 {
1411
+ name = "li",
1412
+ attributes = [ #(Attr:0x3ff733d957a0 { name = "id", value = "similarmovies" })],
1413
+ children = [
1414
+ #(Text "\n"),
1415
+ #(Element:0x3ff733da491c {
1416
+ name = "a",
1417
+ attributes = [ #(Attr:0x3ff733d9d4c8 { name = "href", value = "https://agoodmovietowatch.com/food-inc-2008/?movieslike" })],
1418
+ children = [
1419
+ #(Text "\n"),
1420
+ #(Element:0x3ff7338e7fa0 { name = "i", attributes = [ #(Attr:0x3ff7338e6ac4 { name = "class", value = "fas fa-plus" })] }),
1421
+ #(Element:0x3ff733dc8970 {
1422
+ name = "div",
1423
+ attributes = [ #(Attr:0x3ff733dc1468 { name = "class", value = "random-single" })],
1424
+ children = [
1425
+ #(Text "3 Movies Like It\n"),
1426
+ #(Element:0x3ff733da8698 { name = "i", attributes = [ #(Attr:0x3ff733da53d0 { name = "class", value = "fas fa-long-arrow-alt-right" })] })]
1427
+ }),
1428
+ #(Text "\n")]
1429
+ })]
1430
+ })]
1431
+ })]
1432
+ })]
1433
+ }),
1434
+ #(Element:0x3ff733d89630 {
1435
+ name = "div",
1436
+ attributes = [ #(Attr:0x3ff733d85d14 { name = "class", value = "single-left" })],
1437
+ children = [
1438
+ #(Element:0x3ff733d74208 {
1439
+ name = "h2",
1440
+ attributes = [ #(Attr:0x3ff733d71990 { name = "class", value = "single-title main-review" })],
1441
+ children = [ #(Text "Selected review")]
1442
+ }),
1443
+ #(Element:0x3ff733d61b94 {
1444
+ name = "div",
1445
+ attributes = [ #(Attr:0x3ff733d608ac { name = "class", value = "review-block" })],
1446
+ children = [
1447
+ #(Text "\n"),
1448
+ #(Element:0x3ff733d50ed4 {
1449
+ name = "span",
1450
+ attributes = [ #(Attr:0x3ff733d4d2c0 { name = "itemprop", value = "reviewBody" })],
1451
+ children = [
1452
+ #(Element:0x3ff733cf82ac {
1453
+ name = "p",
1454
+ children = [
1455
+ #(Text "An equally interesting and terrifying must-watch documentary about the state of food in the United States, Food Inc is a sobering tour of where the stuff you eat comes from. Spoiler alert: it’s gross, and should be illegal but that shouldn’t stop you from watching this film, which showcases the food industry’s vile practices and overt corruption. Don’t worry though, even at its most muckraking, Food Inc manages to mix entertainment with its information.")]
1456
+ }),
1457
+ #(Text "\n")]
1458
+ }),
1459
+ #(Element:0x3ff733d351ac { name = "div", attributes = [ #(Attr:0x3ff733d30f30 { name = "class", value = "recognition" })], children = [ #(Text "\n.")] })]
1460
+ }),
1461
+ #(Element:0x3ff733d197f4 {
1462
+ name = "h2",
1463
+ attributes = [ #(Attr:0x3ff733d18958 { name = "id", value = "addyourreview" }), #(Attr:0x3ff733d18944 { name = "class", value = "single-title" })],
1464
+ children = [ #(Text "Add Your Review")]
1465
+ }),
1466
+ #(Text "\n"),
1467
+ #(Element:0x3ff733cfd1a8 {
1468
+ name = "span",
1469
+ attributes = [ #(Attr:0x3ff733cfc26c { name = "id", value = "nosigninneeded" })],
1470
+ children = [ #(Text " You don't need to be signed-in to post a review.")]
1471
+ }),
1472
+ #(Element:0x3ff733ce8ce4 {
1473
+ name = "span",
1474
+ attributes = [ #(Attr:0x3ff733ce4fb8 { name = "class", value = "nocomments" })],
1475
+ children = [
1476
+ #(Element:0x3ff7338ffb64 { name = "div", attributes = [ #(Attr:0x3ff7338ff100 { name = "class", value = "wpdiscuz_top_clearing" })] }),
1477
+ #(Element:0x3ff7338f65a0 {
1478
+ name = "div",
1479
+ attributes = [ #(Attr:0x3ff7338f38f0 { name = "id", value = "comments" }), #(Attr:0x3ff7338f38dc { name = "class", value = "comments-area" })],
1480
+ children = [
1481
+ #(Element:0x3ff7338da6ac {
1482
+ name = "div",
1483
+ attributes = [
1484
+ #(Attr:0x3ff7338d7754 { name = "id", value = "respond" }),
1485
+ #(Attr:0x3ff7338d772c { name = "style", value = "width: 0;height: 0;clear: both;margin: 0;padding: 0;" })]
1486
+ }),
1487
+ #(Element:0x3ff7338c4618 { name = "h3", attributes = [ #(Attr:0x3ff7338c3768 { name = "id", value = "wc-comment-header" })] }),
1488
+ #(Element:0x3ff733cd4078 {
1489
+ name = "div",
1490
+ attributes = [
1491
+ #(Attr:0x3ff733ccdcc8 { name = "id", value = "wpcomm" }),
1492
+ #(Attr:0x3ff733ccdcb4 { name = "class", value = "wpdiscuz_unauth wpd-default" })],
1493
+ children = [
1494
+ #(Element:0x3ff733cb49d0 {
1495
+ name = "div",
1496
+ attributes = [ #(Attr:0x3ff733cb4110 { name = "class", value = "wpdiscuz-front-actions" })],
1497
+ children = [ #(Element:0x3ff733ca4c38 { name = "div", attributes = [ #(Attr:0x3ff733ca1808 { name = "class", value = "clearfix" })] })]
1498
+ }),
1499
+ #(Element:0x3ff733c95b98 {
1500
+ name = "div",
1501
+ attributes = [
1502
+ #(Attr:0x3ff733c94518 { name = "id", value = "wcThreadWrapper" }),
1503
+ #(Attr:0x3ff733c944c8 { name = "class", value = "wc-thread-wrapper" })],
1504
+ children = [
1505
+ #(Element:0x3ff733c73214 { name = "div", attributes = [ #(Attr:0x3ff733c6e1d8 { name = "class", value = "wpdiscuz-comment-pagination" })] })]
1506
+ }),
1507
+ #(Element:0x3ff733c2ca1c {
1508
+ name = "div",
1509
+ attributes = [ #(Attr:0x3ff733c28f48 { name = "class", value = "wpdiscuz-form-top-bar" })],
1510
+ children = [
1511
+ #(Element:0x3ff733c0d9a0 {
1512
+ name = "div",
1513
+ attributes = [ #(Attr:0x3ff733c0cc08 { name = "class", value = "wpdiscuz-ftb-left" })],
1514
+ children = [
1515
+ #(Element:0x3ff7338b427c {
1516
+ name = "div",
1517
+ attributes = [ #(Attr:0x3ff7338b0dfc { name = "id", value = "wc_show_hide_loggedin_username" })]
1518
+ })]
1519
+ }),
1520
+ #(Element:0x3ff733879ed8 { name = "div", attributes = [ #(Attr:0x3ff733875c84 { name = "class", value = "wpd-clear" })] })]
1521
+ }),
1522
+ #(Element:0x3ff733850628 { name = "div", attributes = [ #(Attr:0x3ff73383d208 { name = "class", value = "wc_social_plugin_wrapper" })] }),
1523
+ #(Element:0x3ff733810a78 {
1524
+ name = "div",
1525
+ attributes = [
1526
+ #(Attr:0x3ff732c2905c { name = "class", value = "wc-form-wrapper wc-main-form-wrapper" }),
1527
+ #(Attr:0x3ff732c29020 { name = "id", value = "wc-main-form-wrapper-0_0" })],
1528
+ children = [
1529
+ #(Element:0x3ff732c3b748 {
1530
+ name = "div",
1531
+ attributes = [
1532
+ #(Attr:0x3ff732c37ea4 { name = "class", value = "wpdiscuz-comment-message" }),
1533
+ #(Attr:0x3ff732c37e68 { name = "style", value = "display: block;" })]
1534
+ }),
1535
+ #(Element:0x3ff73302b8d0 {
1536
+ name = "form",
1537
+ attributes = [
1538
+ #(Attr:0x3ff733027500 { name = "class", value = "wc_comm_form wc_main_comm_form" }),
1539
+ #(Attr:0x3ff7330274ec { name = "method", value = "post" }),
1540
+ #(Attr:0x3ff7330274c4 { name = "enctype", value = "multipart/form-data" })],
1541
+ children = [
1542
+ #(Element:0x3ff733dcca98 {
1543
+ name = "div",
1544
+ attributes = [ #(Attr:0x3ff733dc8470 { name = "class", value = "wc-field-comment" })],
1545
+ children = [
1546
+ #(Element:0x3ff733dadf30 {
1547
+ name = "div",
1548
+ attributes = [ #(Attr:0x3ff733dad4e0 { name = "class", value = "wpdiscuz-item wc-field-textarea" })],
1549
+ children = [
1550
+ #(Element:0x3ff733d9dc5c {
1551
+ name = "div",
1552
+ attributes = [ #(Attr:0x3ff733d9ceec { name = "class", value = "wpdiscuz-textarea-wrap " })],
1553
+ children = [
1554
+ #(Element:0x3ff733d918e4 {
1555
+ name = "div",
1556
+ attributes = [ #(Attr:0x3ff733d90fac { name = "class", value = "wc-field-avatararea" })],
1557
+ children = [
1558
+ #(Text "\n"),
1559
+ #(Element:0x3ff733d7575c {
1560
+ name = "img",
1561
+ attributes = [
1562
+ #(Attr:0x3ff733d749d8 { name = "alt", value = "avatar" }),
1563
+ #(Attr:0x3ff733d748d4 {
1564
+ name = "src",
1565
+ value = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
1566
+ }),
1567
+ #(Attr:0x3ff733d74898 { name = "data-lazy-type", value = "image" }),
1568
+ #(Attr:0x3ff733d74884 { name = "data-lazy-src", value = "https://secure.gravatar.com/avatar/?s=40&d=mm&r=g" }),
1569
+ #(Attr:0x3ff733d74870 { name = "data-lazy-srcset", value = "https://secure.gravatar.com/avatar/?s=80&d=mm&r=g 2x" }),
1570
+ #(Attr:0x3ff733d747e4 { name = "class", value = "lazy lazy-hidden avatar avatar-40 photo avatar-default" }),
1571
+ #(Attr:0x3ff733d747d0 { name = "height", value = "40" }),
1572
+ #(Attr:0x3ff733d747a8 { name = "width", value = "40" })]
1573
+ }),
1574
+ #(Element:0x3ff733d39630 {
1575
+ name = "noscript",
1576
+ children = [
1577
+ #(Element:0x3ff733d35850 {
1578
+ name = "img",
1579
+ attributes = [
1580
+ #(Attr:0x3ff733d34b58 { name = "alt", value = "avatar" }),
1581
+ #(Attr:0x3ff733d34b44 { name = "src", value = "https://secure.gravatar.com/avatar/?s=40&d=mm&r=g" }),
1582
+ #(Attr:0x3ff733d34a18 { name = "srcset", value = "https://secure.gravatar.com/avatar/?s=80&d=mm&r=g 2x" }),
1583
+ #(Attr:0x3ff733d34a04 { name = "class", value = "avatar avatar-40 photo avatar-default" }),
1584
+ #(Attr:0x3ff733d349f0 { name = "height", value = "40" }),
1585
+ #(Attr:0x3ff733d349dc { name = "width", value = "40" })]
1586
+ })]
1587
+ })]
1588
+ }),
1589
+ #(Element:0x3ff733cfccbc {
1590
+ name = "textarea",
1591
+ attributes = [
1592
+ #(Attr:0x3ff733cf9d78 { name = "id", value = "wc-textarea-0_0" }),
1593
+ #(Attr:0x3ff733cf9d3c { name = "placeholder", value = "Start the discussion..." }),
1594
+ #(Attr:0x3ff733cf9d28 { name = "required", value = "" }),
1595
+ #(Attr:0x3ff733cf9cc4 { name = "name", value = "wc_comment" }),
1596
+ #(Attr:0x3ff733cf9cb0 { name = "class", value = "wc_comment wpd-field" })]
1597
+ })]
1598
+ })]
1599
+ }),
1600
+ #(Element:0x3ff7338f626c { name = "div", attributes = [ #(Attr:0x3ff7338f2bd0 { name = "class", value = "clearfix" })] })]
1601
+ }),
1602
+ #(Element:0x3ff7338df990 {
1603
+ name = "div",
1604
+ attributes = [
1605
+ #(Attr:0x3ff7338de1a8 { name = "class", value = "wc-form-footer" }),
1606
+ #(Attr:0x3ff7338de194 { name = "style", value = "display: none;" })],
1607
+ children = [
1608
+ #(Element:0x3ff7338c95b4 {
1609
+ name = "div",
1610
+ attributes = [ #(Attr:0x3ff7338c840c { name = "class", value = "wpd-form-row" })],
1611
+ children = [
1612
+ #(Element:0x3ff733cd8b50 {
1613
+ name = "div",
1614
+ attributes = [ #(Attr:0x3ff733cd82f4 { name = "class", value = "wpd-form-col-left" })],
1615
+ children = [
1616
+ #(Element:0x3ff733cc9448 {
1617
+ name = "div",
1618
+ attributes = [ #(Attr:0x3ff733cc5c58 { name = "class", value = "wpdiscuz-item wpd-has-icon" })],
1619
+ children = [
1620
+ #(Element:0x3ff733cb4714 {
1621
+ name = "div",
1622
+ attributes = [ #(Attr:0x3ff733cb1d84 { name = "class", value = "wpd-field-icon" })],
1623
+ children = [
1624
+ #(Element:0x3ff733ca433c {
1625
+ name = "i",
1626
+ attributes = [ #(Attr:0x3ff733c9d5dc { name = "class", value = "fas fa-at" })]
1627
+ })]
1628
+ }),
1629
+ #(Text "\n"),
1630
+ #(Element:0x3ff733c8b38c {
1631
+ name = "input",
1632
+ attributes = [
1633
+ #(Attr:0x3ff733c8a6d0 { name = "value", value = "" }),
1634
+ #(Attr:0x3ff733c8a6bc { name = "class", value = "wc_email wpd-field" }),
1635
+ #(Attr:0x3ff733c8a644 { name = "type", value = "email" }),
1636
+ #(Attr:0x3ff733c8a5e0 { name = "name", value = "wc_email" }),
1637
+ #(Attr:0x3ff733c8a5cc { name = "placeholder", value = "Email (optional)" })]
1638
+ })]
1639
+ }),
1640
+ #(Element:0x3ff733c11e74 {
1641
+ name = "div",
1642
+ attributes = [ #(Attr:0x3ff733c0d6e4 { name = "class", value = "wpdiscuz-item wpd-has-icon" })],
1643
+ children = [
1644
+ #(Element:0x3ff7338b5ec4 {
1645
+ name = "div",
1646
+ attributes = [ #(Attr:0x3ff7338b1dc4 { name = "class", value = "wpd-field-icon" })],
1647
+ children = [
1648
+ #(Element:0x3ff73388c178 {
1649
+ name = "i",
1650
+ attributes = [ #(Attr:0x3ff7338803b4 { name = "class", value = "fas fa-user" })]
1651
+ })]
1652
+ }),
1653
+ #(Text "\n"),
1654
+ #(Element:0x3ff733851a78 {
1655
+ name = "input",
1656
+ attributes = [
1657
+ #(Attr:0x3ff733844c74 { name = "value", value = "" }),
1658
+ #(Attr:0x3ff733844a1c { name = "required", value = "required" }),
1659
+ #(Attr:0x3ff73384492c { name = "class", value = "wc_name wpd-field" }),
1660
+ #(Attr:0x3ff7338448b4 { name = "type", value = "text" }),
1661
+ #(Attr:0x3ff7338445f8 { name = "name", value = "wc_name" }),
1662
+ #(Attr:0x3ff7338445a8 { name = "placeholder", value = "Name" }),
1663
+ #(Attr:0x3ff733844558 { name = "maxlength", value = "50" }),
1664
+ #(Attr:0x3ff733844170 { name = "pattern", value = ".{3,50}" }),
1665
+ #(Attr:0x3ff733840f70 { name = "title", value = "" })]
1666
+ })]
1667
+ })]
1668
+ }),
1669
+ #(Element:0x3ff7338e645c {
1670
+ name = "div",
1671
+ attributes = [ #(Attr:0x3ff733de1038 { name = "class", value = "wpd-form-col-right" })],
1672
+ children = [
1673
+ #(Element:0x3ff733db98f8 {
1674
+ name = "div",
1675
+ attributes = [ #(Attr:0x3ff733db85c0 { name = "class", value = "wc-field-submit" })],
1676
+ children = [
1677
+ #(Text "\n"),
1678
+ #(Element:0x3ff733da482c {
1679
+ name = "input",
1680
+ attributes = [
1681
+ #(Attr:0x3ff733da17f8 { name = "class", value = "wc_comm_submit wc_not_clicked button alt" }),
1682
+ #(Attr:0x3ff733da17d0 { name = "type", value = "submit" }),
1683
+ #(Attr:0x3ff733da171c { name = "name", value = "submit" }),
1684
+ #(Attr:0x3ff733da16a4 { name = "value", value = "Post Review" })]
1685
+ })]
1686
+ })]
1687
+ }),
1688
+ #(Element:0x3ff733d74028 { name = "div", attributes = [ #(Attr:0x3ff733d712d8 { name = "class", value = "clearfix" })] })]
1689
+ })]
1690
+ }),
1691
+ #(Element:0x3ff733d6481c { name = "div", attributes = [ #(Attr:0x3ff733d615e0 { name = "class", value = "clearfix" })] }),
1692
+ #(Text "\n"),
1693
+ #(Element:0x3ff733d51960 {
1694
+ name = "input",
1695
+ attributes = [
1696
+ #(Attr:0x3ff733d507e0 { name = "type", value = "hidden" }),
1697
+ #(Attr:0x3ff733d507cc { name = "class", value = "wpdiscuz_unique_id" }),
1698
+ #(Attr:0x3ff733d507b8 { name = "value", value = "0_0" }),
1699
+ #(Attr:0x3ff733d507a4 { name = "name", value = "wpdiscuz_unique_id" })]
1700
+ })]
1701
+ })]
1702
+ }),
1703
+ #(Element:0x3ff733d2c098 {
1704
+ name = "div",
1705
+ attributes = [
1706
+ #(Attr:0x3ff733d28a74 { name = "id", value = "wpdiscuz_hidden_secondary_form" }),
1707
+ #(Attr:0x3ff733d28a60 { name = "style", value = "display: none;" })],
1708
+ children = [
1709
+ #(Element:0x3ff733d11dd8 {
1710
+ name = "div",
1711
+ attributes = [
1712
+ #(Attr:0x3ff733d1139c { name = "class", value = "wc-form-wrapper wc-secondary-form-wrapper" }),
1713
+ #(Attr:0x3ff733d11388 { name = "id", value = "wc-secondary-form-wrapper-wpdiscuzuniqueid" }),
1714
+ #(Attr:0x3ff733d11374 { name = "style", value = "display: none;" })],
1715
+ children = [
1716
+ #(Element:0x3ff733cf5e58 {
1717
+ name = "div",
1718
+ attributes = [
1719
+ #(Attr:0x3ff733cf56b0 { name = "class", value = "wpdiscuz-comment-message" }),
1720
+ #(Attr:0x3ff733cf569c { name = "style", value = "display: block;" })]
1721
+ }),
1722
+ #(Element:0x3ff733ce042c {
1723
+ name = "div",
1724
+ attributes = [ #(Attr:0x3ff733cdc214 { name = "class", value = "wc-secondary-forms-social-content" })]
1725
+ }),
1726
+ #(Element:0x3ff7338fa90c { name = "div", attributes = [ #(Attr:0x3ff7338f7a7c { name = "class", value = "clearfix" })] }),
1727
+ #(Element:0x3ff7338eec60 {
1728
+ name = "form",
1729
+ attributes = [
1730
+ #(Attr:0x3ff7338ebed4 { name = "class", value = "wc_comm_form wc-secondary-form-wrapper" }),
1731
+ #(Attr:0x3ff7338ebec0 { name = "method", value = "post" }),
1732
+ #(Attr:0x3ff7338ebe70 { name = "enctype", value = "multipart/form-data" })],
1733
+ children = [
1734
+ #(Element:0x3ff7338c9258 {
1735
+ name = "div",
1736
+ attributes = [ #(Attr:0x3ff7338c5c20 { name = "class", value = "wc-field-comment" })],
1737
+ children = [
1738
+ #(Element:0x3ff733cd840c {
1739
+ name = "div",
1740
+ attributes = [ #(Attr:0x3ff733cd593c { name = "class", value = "wpdiscuz-item wc-field-textarea" })],
1741
+ children = [
1742
+ #(Element:0x3ff733cc56cc {
1743
+ name = "div",
1744
+ attributes = [ #(Attr:0x3ff733cc4cb8 { name = "class", value = "wpdiscuz-textarea-wrap " })],
1745
+ children = [
1746
+ #(Element:0x3ff733cb1410 {
1747
+ name = "div",
1748
+ attributes = [ #(Attr:0x3ff733cb0434 { name = "class", value = "wc-field-avatararea" })],
1749
+ children = [
1750
+ #(Text "\n"),
1751
+ #(Element:0x3ff733c9948c {
1752
+ name = "img",
1753
+ attributes = [
1754
+ #(Attr:0x3ff733c987a8 { name = "alt", value = "avatar" }),
1755
+ #(Attr:0x3ff733c98794 {
1756
+ name = "src",
1757
+ value = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
1758
+ }),
1759
+ #(Attr:0x3ff733c98780 { name = "data-lazy-type", value = "image" }),
1760
+ #(Attr:0x3ff733c9876c { name = "data-lazy-src", value = "https://secure.gravatar.com/avatar/?s=48&d=mm&r=g" }),
1761
+ #(Attr:0x3ff733c98758 {
1762
+ name = "data-lazy-srcset",
1763
+ value = "https://secure.gravatar.com/avatar/?s=96&d=mm&r=g 2x"
1764
+ }),
1765
+ #(Attr:0x3ff733c98708 { name = "class", value = "lazy lazy-hidden avatar avatar-48 photo avatar-default" }),
1766
+ #(Attr:0x3ff733c986cc { name = "height", value = "48" }),
1767
+ #(Attr:0x3ff733c986b8 { name = "width", value = "48" })]
1768
+ }),
1769
+ #(Element:0x3ff733c09738 {
1770
+ name = "noscript",
1771
+ children = [
1772
+ #(Element:0x3ff7338b91b4 {
1773
+ name = "img",
1774
+ attributes = [
1775
+ #(Attr:0x3ff7338b5ca8 { name = "alt", value = "avatar" }),
1776
+ #(Attr:0x3ff7338b5c80 { name = "src", value = "https://secure.gravatar.com/avatar/?s=48&d=mm&r=g" }),
1777
+ #(Attr:0x3ff7338b5c30 { name = "srcset", value = "https://secure.gravatar.com/avatar/?s=96&d=mm&r=g 2x" }),
1778
+ #(Attr:0x3ff7338b5bb8 { name = "class", value = "avatar avatar-48 photo avatar-default" }),
1779
+ #(Attr:0x3ff7338b5b7c { name = "height", value = "48" }),
1780
+ #(Attr:0x3ff7338b5b18 { name = "width", value = "48" })]
1781
+ })]
1782
+ })]
1783
+ }),
1784
+ #(Element:0x3ff733090938 {
1785
+ name = "textarea",
1786
+ attributes = [
1787
+ #(Attr:0x3ff73308964c { name = "id", value = "wc-textarea-wpdiscuzuniqueid" }),
1788
+ #(Attr:0x3ff733089610 { name = "placeholder", value = "Join the discussion..." }),
1789
+ #(Attr:0x3ff7330895d4 { name = "required", value = "" }),
1790
+ #(Attr:0x3ff7330894f8 { name = "name", value = "wc_comment" }),
1791
+ #(Attr:0x3ff7330893b8 { name = "class", value = "wc_comment wpd-field" })]
1792
+ })]
1793
+ })]
1794
+ }),
1795
+ #(Element:0x3ff73301b444 { name = "div", attributes = [ #(Attr:0x3ff733016fc0 { name = "class", value = "clearfix" })] })]
1796
+ }),
1797
+ #(Element:0x3ff733ddc330 {
1798
+ name = "div",
1799
+ attributes = [
1800
+ #(Attr:0x3ff733dd16d8 { name = "class", value = "wc-form-footer" }),
1801
+ #(Attr:0x3ff733dd1674 { name = "style", value = "display: none;" })],
1802
+ children = [
1803
+ #(Element:0x3ff733da9200 {
1804
+ name = "div",
1805
+ attributes = [ #(Attr:0x3ff733da8a44 { name = "class", value = "wpd-form-row" })],
1806
+ children = [
1807
+ #(Element:0x3ff733d99f6c {
1808
+ name = "div",
1809
+ attributes = [ #(Attr:0x3ff733d98e8c { name = "class", value = "wpd-form-col-left" })],
1810
+ children = [
1811
+ #(Element:0x3ff733d90458 {
1812
+ name = "div",
1813
+ attributes = [ #(Attr:0x3ff733d8cc54 { name = "class", value = "wpdiscuz-item wpd-has-icon" })],
1814
+ children = [
1815
+ #(Element:0x3ff733d753b0 {
1816
+ name = "div",
1817
+ attributes = [ #(Attr:0x3ff733d74a00 { name = "class", value = "wpd-field-icon" })],
1818
+ children = [
1819
+ #(Element:0x3ff733d69bdc {
1820
+ name = "i",
1821
+ attributes = [ #(Attr:0x3ff733d687c8 { name = "class", value = "fas fa-at" })]
1822
+ })]
1823
+ }),
1824
+ #(Text "\n"),
1825
+ #(Element:0x3ff733d558e4 {
1826
+ name = "input",
1827
+ attributes = [
1828
+ #(Attr:0x3ff733d54d90 { name = "value", value = "" }),
1829
+ #(Attr:0x3ff733d54d7c { name = "class", value = "wc_email wpd-field" }),
1830
+ #(Attr:0x3ff733d54d54 { name = "type", value = "email" }),
1831
+ #(Attr:0x3ff733d54d40 { name = "name", value = "wc_email" }),
1832
+ #(Attr:0x3ff733d54d2c { name = "placeholder", value = "Email (optional)" })]
1833
+ })]
1834
+ }),
1835
+ #(Element:0x3ff733d290f0 {
1836
+ name = "div",
1837
+ attributes = [ #(Attr:0x3ff733d28254 { name = "class", value = "wpdiscuz-item wpd-has-icon" })],
1838
+ children = [
1839
+ #(Element:0x3ff733d18c28 {
1840
+ name = "div",
1841
+ attributes = [ #(Attr:0x3ff733d15a50 { name = "class", value = "wpd-field-icon" })],
1842
+ children = [
1843
+ #(Element:0x3ff733d09ca0 {
1844
+ name = "i",
1845
+ attributes = [ #(Attr:0x3ff733d09110 { name = "class", value = "fas fa-user" })]
1846
+ })]
1847
+ }),
1848
+ #(Text "\n"),
1849
+ #(Element:0x3ff733cf5b9c {
1850
+ name = "input",
1851
+ attributes = [
1852
+ #(Attr:0x3ff733cf4d3c { name = "value", value = "" }),
1853
+ #(Attr:0x3ff733cf4d28 { name = "required", value = "required" }),
1854
+ #(Attr:0x3ff733cf4d00 { name = "class", value = "wc_name wpd-field" }),
1855
+ #(Attr:0x3ff733cf4cec { name = "type", value = "text" }),
1856
+ #(Attr:0x3ff733cf4cd8 { name = "name", value = "wc_name" }),
1857
+ #(Attr:0x3ff733cf4cb0 { name = "placeholder", value = "Name" }),
1858
+ #(Attr:0x3ff733cf4c88 { name = "maxlength", value = "50" }),
1859
+ #(Attr:0x3ff733cf4c74 { name = "pattern", value = ".{3,50}" }),
1860
+ #(Attr:0x3ff733cf4c4c { name = "title", value = "" })]
1861
+ })]
1862
+ })]
1863
+ }),
1864
+ #(Element:0x3ff7338cfab8 {
1865
+ name = "div",
1866
+ attributes = [ #(Attr:0x3ff7338c9028 { name = "class", value = "wpd-form-col-right" })],
1867
+ children = [
1868
+ #(Element:0x3ff733cd8f10 {
1869
+ name = "div",
1870
+ attributes = [ #(Attr:0x3ff733cd8538 { name = "class", value = "wc-field-submit" })],
1871
+ children = [
1872
+ #(Text "\n"),
1873
+ #(Element:0x3ff733cc4fc4 {
1874
+ name = "input",
1875
+ attributes = [
1876
+ #(Attr:0x3ff733cc41b4 { name = "class", value = "wc_comm_submit wc_not_clicked button alt" }),
1877
+ #(Attr:0x3ff733cc41a0 { name = "type", value = "submit" }),
1878
+ #(Attr:0x3ff733cc4178 { name = "name", value = "submit" }),
1879
+ #(Attr:0x3ff733cc4150 { name = "value", value = "Post Review" })]
1880
+ })]
1881
+ })]
1882
+ }),
1883
+ #(Element:0x3ff733c95af8 { name = "div", attributes = [ #(Attr:0x3ff733c9434c { name = "class", value = "clearfix" })] })]
1884
+ })]
1885
+ }),
1886
+ #(Element:0x3ff733c82688 { name = "div", attributes = [ #(Attr:0x3ff733c7b1d0 { name = "class", value = "clearfix" })] }),
1887
+ #(Text "\n"),
1888
+ #(Element:0x3ff733c2d5e8 {
1889
+ name = "input",
1890
+ attributes = [
1891
+ #(Attr:0x3ff733c2c530 { name = "type", value = "hidden" }),
1892
+ #(Attr:0x3ff733c2c508 { name = "class", value = "wpdiscuz_unique_id" }),
1893
+ #(Attr:0x3ff733c2c4f4 { name = "value", value = "wpdiscuzuniqueid" }),
1894
+ #(Attr:0x3ff733c2c4e0 { name = "name", value = "wpdiscuz_unique_id" })]
1895
+ })]
1896
+ })]
1897
+ })]
1898
+ }),
1899
+ #(Element:0x3ff73389429c { name = "div", attributes = [ #(Attr:0x3ff733888550 { name = "class", value = "wpdiscuz_clear" })] })]
1900
+ })]
1901
+ }),
1902
+ #(Element:0x3ff7338619f0 {
1903
+ name = "div",
1904
+ attributes = [
1905
+ #(Attr:0x3ff73385c568 { name = "id", value = "wpdiscuz-loading-bar" }),
1906
+ #(Attr:0x3ff73385c518 { name = "class", value = "wpdiscuz-loading-bar wpdiscuz-loading-bar-unauth" })]
1907
+ }),
1908
+ #(Text " "),
1909
+ #(Element:0x3ff7330881ac {
1910
+ name = "script",
1911
+ attributes = [ #(Attr:0x3ff733080b14 { name = "type", value = "text/javascript" })],
1912
+ children = [
1913
+ #(CDATA "jQuery(document).ready(function($){\n$('#addyourreview').click(function(){\n\t$(\"#wc-main-form-wrapper-0_0\").toggle();\n});\n\n var body = $( 'body' );\n});")]
1914
+ }),
1915
+ #(Text " ")]
1916
+ })]
1917
+ }),
1918
+ #(Element:0x3ff733053574 {
1919
+ name = "div",
1920
+ attributes = [ #(Attr:0x3ff73303bf14 { name = "class", value = "single-right" })],
1921
+ children = [
1922
+ #(Element:0x3ff73301f968 {
1923
+ name = "div",
1924
+ attributes = [ #(Attr:0x3ff73301b408 { name = "class", value = "taxdesc" })],
1925
+ children = [
1926
+ #(Element:0x3ff733de0b9c {
1927
+ name = "h2",
1928
+ attributes = [ #(Attr:0x3ff733ddc8bc { name = "class", value = "single-title" })],
1929
+ children = [ #(Text "Watch it")]
1930
+ }),
1931
+ #(Element:0x3ff733db02a8 {
1932
+ name = "div",
1933
+ attributes = [ #(Attr:0x3ff733dad51c { name = "class", value = "playnow" })],
1934
+ children = [
1935
+ #(Text "\n"),
1936
+ #(Element:0x3ff733d9c6a4 {
1937
+ name = "a",
1938
+ attributes = [
1939
+ #(Attr:0x3ff733d98cd4 { name = "class", value = "netflixl" }),
1940
+ #(Attr:0x3ff733d98c98 { name = "href", value = "http://movies.netflix.com/WiMovie/70108783" }),
1941
+ #(Attr:0x3ff733d98c84 { name = "itemprop", value = "url" })],
1942
+ children = [
1943
+ #(Element:0x3ff733d74f8c { name = "div", attributes = [ #(Attr:0x3ff733d741f4 { name = "class", value = "netflix-small" })] }),
1944
+ #(Text "Netflix")]
1945
+ }),
1946
+ #(Text "\n"),
1947
+ #(Element:0x3ff733d60960 {
1948
+ name = "a",
1949
+ attributes = [
1950
+ #(Attr:0x3ff733d5de68 { name = "class", value = "amazonl" }),
1951
+ #(Attr:0x3ff733d5de54 {
1952
+ name = "href",
1953
+ value = "https://www.amazon.com/gp/product/B002VRZEYM/ref=as_li_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=B002VRZEYM&linkCode=as2&tag=agomotowa-20&linkId=DGKLNLOH5F5T3TPG"
1954
+ }),
1955
+ #(Attr:0x3ff733d5de40 { name = "itemprop", value = "url" })],
1956
+ children = [
1957
+ #(Element:0x3ff733d4181c { name = "div", attributes = [ #(Attr:0x3ff733d4109c { name = "class", value = "amazon-small" })] }),
1958
+ #(Text "Amazon")]
1959
+ }),
1960
+ #(Text " "),
1961
+ #(Element:0x3ff733d2cb88 {
1962
+ name = "a",
1963
+ attributes = [
1964
+ #(Attr:0x3ff733d28f38 { name = "class", value = "itunesl" }),
1965
+ #(Attr:0x3ff733d28f24 { name = "href", value = "https://geo.itunes.apple.com/us/movie/food-inc./id339392799?at=1000lvd&mt=6" }),
1966
+ #(Attr:0x3ff733d28f10 { name = "itemprop", value = "url" })],
1967
+ children = [
1968
+ #(Element:0x3ff733d0d4a4 { name = "div", attributes = [ #(Attr:0x3ff733d0c720 { name = "class", value = "itunes-small" })] }),
1969
+ #(Text "iTunes")]
1970
+ })]
1971
+ }),
1972
+ #(Element:0x3ff733cf8860 {
1973
+ name = "li",
1974
+ attributes = [ #(Attr:0x3ff733cf58cc { name = "class", value = "meta-item meta-item-countries" })],
1975
+ children = [
1976
+ #(Element:0x3ff733ce9a18 {
1977
+ name = "div",
1978
+ attributes = [ #(Attr:0x3ff733ce8064 { name = "class", value = "infom" })],
1979
+ children = [
1980
+ #(Element:0x3ff7338ffb3c { name = "h3", children = [ #(Text "On Netflix:")] }),
1981
+ #(Text " "),
1982
+ #(Element:0x3ff7338f6280 {
1983
+ name = "span",
1984
+ children = [
1985
+ #(Element:0x3ff7338ef340 {
1986
+ name = "a",
1987
+ attributes = [ #(Attr:0x3ff7338eea94 { name = "href", value = "https://agoodmovietowatch.com/netflix/japan/" })],
1988
+ children = [ #(Text "Japan")]
1989
+ }),
1990
+ #(Text ", "),
1991
+ #(Element:0x3ff7338d2d1c {
1992
+ name = "a",
1993
+ attributes = [ #(Attr:0x3ff7338cb954 { name = "href", value = "https://agoodmovietowatch.com/netflix/canada/" })],
1994
+ children = [ #(Text "Canada")]
1995
+ }),
1996
+ #(Text ", "),
1997
+ #(Element:0x3ff733cd84ac {
1998
+ name = "a",
1999
+ attributes = [ #(Attr:0x3ff733cd5720 { name = "href", value = "https://agoodmovietowatch.com/netflix/usa/" })],
2000
+ children = [ #(Text "USA")]
2001
+ })]
2002
+ })]
2003
+ })]
2004
+ }),
2005
+ #(Element:0x3ff733cb59fc {
2006
+ name = "li",
2007
+ attributes = [ #(Attr:0x3ff733cb46c4 { name = "class", value = "meta-item" })],
2008
+ children = [
2009
+ #(Element:0x3ff733ca5368 {
2010
+ name = "div",
2011
+ attributes = [ #(Attr:0x3ff733ca42ec { name = "class", value = "infom" })],
2012
+ children = [
2013
+ #(Element:0x3ff733c8c958 { name = "h3", children = [ #(Text "Mood:")] }),
2014
+ #(Element:0x3ff733c5bad8 {
2015
+ name = "a",
2016
+ attributes = [
2017
+ #(Attr:0x3ff733c575a0 { name = "href", value = "https://agoodmovietowatch.com/mood/depressing/?netflix=1" }),
2018
+ #(Attr:0x3ff733c57578 { name = "rel", value = "tag" })],
2019
+ children = [ #(Text "Depressing")]
2020
+ }),
2021
+ #(Text ", "),
2022
+ #(Element:0x3ff733c28b24 {
2023
+ name = "a",
2024
+ attributes = [
2025
+ #(Attr:0x3ff733c247b8 { name = "href", value = "https://agoodmovietowatch.com/mood/instructive-2/?netflix=1" }),
2026
+ #(Attr:0x3ff733c24790 { name = "rel", value = "tag" })],
2027
+ children = [ #(Text "Instructive")]
2028
+ })]
2029
+ })]
2030
+ }),
2031
+ #(Element:0x3ff7338acaa4 {
2032
+ name = "h2",
2033
+ attributes = [ #(Attr:0x3ff7338a8d3c { name = "id", value = "agmtw-open" }), #(Attr:0x3ff7338a8d14 { name = "class", value = "single-title" })],
2034
+ children = [ #(Text "Details")]
2035
+ }),
2036
+ #(Element:0x3ff733855e34 {
2037
+ name = "ul",
2038
+ attributes = [ #(Attr:0x3ff733848838 { name = "id", value = "agmtw-opened" }), #(Attr:0x3ff733848770 { name = "class", value = "meta-list" })],
2039
+ children = [
2040
+ #(Element:0x3ff733089a48 {
2041
+ name = "li",
2042
+ attributes = [ #(Attr:0x3ff733085768 { name = "class", value = "meta-item" })],
2043
+ children = [
2044
+ #(Element:0x3ff732c42b24 {
2045
+ name = "div",
2046
+ attributes = [ #(Attr:0x3ff732c3ad0c { name = "class", value = "infom" })],
2047
+ children = [
2048
+ #(Element:0x3ff73305aeb4 { name = "h3", children = [ #(Text "Starring")] }),
2049
+ #(Text "\n"),
2050
+ #(Element:0x3ff733cf4d14 {
2051
+ name = "span",
2052
+ attributes = [ #(Attr:0x3ff73301a2ec { name = "title", value = "More from the actor" })],
2053
+ children = [
2054
+ #(Element:0x3ff733cf4c60 {
2055
+ name = "a",
2056
+ attributes = [
2057
+ #(Attr:0x3ff733db15e0 { name = "href", value = "https://agoodmovietowatch.com/actor/eric-schlosser/" }),
2058
+ #(Attr:0x3ff733db1590 { name = "rel", value = "tag" })],
2059
+ children = [ #(Text "Eric Schlosser")]
2060
+ }),
2061
+ #(Text ", "),
2062
+ #(Element:0x3ff733cf4be8 {
2063
+ name = "a",
2064
+ attributes = [
2065
+ #(Attr:0x3ff733d69dd0 { name = "href", value = "https://agoodmovietowatch.com/actor/michael-pollan/" }),
2066
+ #(Attr:0x3ff733d69d6c { name = "rel", value = "tag" })],
2067
+ children = [ #(Text "Michael Pollan")]
2068
+ }),
2069
+ #(Text ", "),
2070
+ #(Element:0x3ff733cf4b84 {
2071
+ name = "a",
2072
+ attributes = [
2073
+ #(Attr:0x3ff733d31a48 { name = "href", value = "https://agoodmovietowatch.com/actor/richard-lobb/" }),
2074
+ #(Attr:0x3ff733d31a0c { name = "rel", value = "tag" })],
2075
+ children = [ #(Text "Richard Lobb")]
2076
+ })]
2077
+ })]
2078
+ })]
2079
+ }),
2080
+ #(Element:0x3ff733cf1c18 {
2081
+ name = "div",
2082
+ attributes = [ #(Attr:0x3ff733cf0fc0 { name = "class", value = "genre-and-subgenre" })],
2083
+ children = [
2084
+ #(Element:0x3ff733903110 {
2085
+ name = "li",
2086
+ attributes = [ #(Attr:0x3ff7338fba28 { name = "class", value = "meta-item meta-item-genre" })],
2087
+ children = [
2088
+ #(Element:0x3ff7338def04 {
2089
+ name = "div",
2090
+ attributes = [ #(Attr:0x3ff7338d79ac { name = "class", value = "infom" })],
2091
+ children = [
2092
+ #(Element:0x3ff7338c836c { name = "h3", children = [ #(Text "Genre")] }),
2093
+ #(Element:0x3ff733ccd5ac {
2094
+ name = "span",
2095
+ attributes = [ #(Attr:0x3ff733ccc92c { name = "itemprop", value = "genre" })],
2096
+ children = [
2097
+ #(Text "\n"),
2098
+ #(Element:0x3ff733cac870 {
2099
+ name = "a",
2100
+ attributes = [
2101
+ #(Attr:0x3ff733ca57a0 { name = "href", value = "https://agoodmovietowatch.com/genre/documentary/" }),
2102
+ #(Attr:0x3ff733ca578c { name = "rel", value = "category tag" })],
2103
+ children = [ #(Text "Documentary")]
2104
+ }),
2105
+ #(Text " ")]
2106
+ })]
2107
+ })]
2108
+ }),
2109
+ #(Element:0x3ff733c25528 {
2110
+ name = "li",
2111
+ attributes = [ #(Attr:0x3ff733c1d724 { name = "class", value = "meta-item meta-item-good" })],
2112
+ children = [
2113
+ #(Element:0x3ff7338b9470 {
2114
+ name = "div",
2115
+ attributes = [ #(Attr:0x3ff7338b83b8 { name = "class", value = "infom" })],
2116
+ children = [
2117
+ #(Element:0x3ff733865aa0 { name = "h3", children = [ #(Text "Sub-genres")] }),
2118
+ #(Text "\n"),
2119
+ #(Element:0x3ff732c52b14 {
2120
+ name = "span",
2121
+ attributes = [ #(Attr:0x3ff732c1fb60 { name = "title", value = "More movies from the sub-genre" })],
2122
+ children = [
2123
+ #(Element:0x3ff73304e0d8 {
2124
+ name = "a",
2125
+ attributes = [
2126
+ #(Attr:0x3ff73302fa5c { name = "href", value = "https://agoodmovietowatch.com/good/good-scary-documentary-movies/" }),
2127
+ #(Attr:0x3ff73302fa34 { name = "rel", value = "tag" })],
2128
+ children = [ #(Text "Scary documentary")]
2129
+ })]
2130
+ })]
2131
+ })]
2132
+ })]
2133
+ }),
2134
+ #(Element:0x3ff732c57b14 {
2135
+ name = "div",
2136
+ attributes = [ #(Attr:0x3ff733814c7c { name = "class", value = "meta-item-last" })],
2137
+ children = [
2138
+ #(Element:0x3ff733830fd0 {
2139
+ name = "li",
2140
+ attributes = [ #(Attr:0x3ff7338ad378 { name = "class", value = "meta-item meta-item-movieslike" })],
2141
+ children = [
2142
+ #(Element:0x3ff7338bd5ac {
2143
+ name = "div",
2144
+ attributes = [ #(Attr:0x3ff7338bc06c { name = "class", value = "infom" })],
2145
+ children = [
2146
+ #(Element:0x3ff733c95620 { name = "h3", children = [ #(Text "Similar famous movies")] }),
2147
+ #(Text "\n"),
2148
+ #(Element:0x3ff733c9911c {
2149
+ name = "span",
2150
+ attributes = [ #(Attr:0x3ff733c980b4 { name = "title", value = "More movies like" })],
2151
+ children = [
2152
+ #(Element:0x3ff7338d3e88 {
2153
+ name = "a",
2154
+ attributes = [
2155
+ #(Attr:0x3ff7338d30a0 { name = "href", value = "https://agoodmovietowatch.com/movieslike/fahrenheit-911/" }),
2156
+ #(Attr:0x3ff7338d308c { name = "rel", value = "tag" })],
2157
+ children = [ #(Text "fahrenheit 9/11")]
2158
+ })]
2159
+ })]
2160
+ })]
2161
+ }),
2162
+ #(Element:0x3ff733cf59e4 {
2163
+ name = "li",
2164
+ attributes = [ #(Attr:0x3ff733cf4954 { name = "class", value = "meta-item" })],
2165
+ children = [
2166
+ #(Element:0x3ff733cfd784 {
2167
+ name = "div",
2168
+ attributes = [ #(Attr:0x3ff733cfcb54 { name = "class", value = "infom" })],
2169
+ children = [
2170
+ #(Element:0x3ff733d2c714 { name = "h3", children = [ #(Text "Directed by")] }),
2171
+ #(Text "\n"),
2172
+ #(Element:0x3ff733d35030 {
2173
+ name = "span",
2174
+ attributes = [ #(Attr:0x3ff733d556dc { name = "title", value = "More from the director" })],
2175
+ children = [
2176
+ #(Element:0x3ff733d647cc {
2177
+ name = "a",
2178
+ attributes = [
2179
+ #(Attr:0x3ff733d5dd3c { name = "href", value = "https://agoodmovietowatch.com/bbdirector/robert-kenner/" }),
2180
+ #(Attr:0x3ff733d5dd28 { name = "rel", value = "tag" })],
2181
+ children = [ #(Text "Robert Kenner")]
2182
+ })]
2183
+ })]
2184
+ })]
2185
+ }),
2186
+ #(Element:0x3ff733da437c {
2187
+ name = "li",
2188
+ attributes = [ #(Attr:0x3ff733d9d248 { name = "class", value = "meta-item" })],
2189
+ children = [
2190
+ #(Element:0x3ff7338e7e9c {
2191
+ name = "div",
2192
+ attributes = [ #(Attr:0x3ff7338e6b00 { name = "class", value = "infom" })],
2193
+ children = [
2194
+ #(Element:0x3ff7330a0b30 { name = "h3", children = [ #(Text "Written by")] }),
2195
+ #(Text "\n"),
2196
+ #(Element:0x3ff7330a9ab4 {
2197
+ name = "span",
2198
+ attributes = [ #(Attr:0x3ff7330a912c { name = "title", value = "More from the screenwriter" })],
2199
+ children = [
2200
+ #(Element:0x3ff733dd0148 {
2201
+ name = "a",
2202
+ attributes = [
2203
+ #(Attr:0x3ff7330b1980 { name = "href", value = "https://agoodmovietowatch.com/screenwriter/elise-pearlstein/" }),
2204
+ #(Attr:0x3ff7330b196c { name = "rel", value = "tag" })],
2205
+ children = [ #(Text "Elise Pearlstein")]
2206
+ }),
2207
+ #(Text ", "),
2208
+ #(Element:0x3ff7330bceac {
2209
+ name = "a",
2210
+ attributes = [
2211
+ #(Attr:0x3ff7330bc4fc { name = "href", value = "https://agoodmovietowatch.com/screenwriter/robert-kenner/" }),
2212
+ #(Attr:0x3ff7330bc4e8 { name = "rel", value = "tag" })],
2213
+ children = [ #(Text "Robert Kenner")]
2214
+ })]
2215
+ })]
2216
+ })]
2217
+ }),
2218
+ #(Element:0x3ff733db486c {
2219
+ name = "li",
2220
+ attributes = [ #(Attr:0x3ff7330cb77c { name = "class", value = "meta-item meta-item-rating" })],
2221
+ children = [
2222
+ #(Element:0x3ff7330cee40 {
2223
+ name = "div",
2224
+ attributes = [ #(Attr:0x3ff7330ce74c { name = "class", value = "infom" })],
2225
+ children = [
2226
+ #(Element:0x3ff7330d20a4 { name = "h3", children = [ #(Text "Rating")] }),
2227
+ #(Text "\n"),
2228
+ #(Element:0x3ff733cf1894 {
2229
+ name = "span",
2230
+ attributes = [
2231
+ #(Attr:0x3ff7330db654 { name = "itemprop", value = "contentRating" }),
2232
+ #(Attr:0x3ff7330db640 { name = "title", value = "More movies with this rating" })],
2233
+ children = [
2234
+ #(Element:0x3ff733cf17f4 {
2235
+ name = "a",
2236
+ attributes = [
2237
+ #(Attr:0x3ff7330e3610 { name = "href", value = "https://agoodmovietowatch.com/mpaarating/pg/" }),
2238
+ #(Attr:0x3ff7330e35fc { name = "rel", value = "tag" })],
2239
+ children = [ #(Text "PG")]
2240
+ })]
2241
+ })]
2242
+ })]
2243
+ }),
2244
+ #(Element:0x3ff733d91880 {
2245
+ name = "li",
2246
+ attributes = [ #(Attr:0x3ff733d90c3c { name = "class", value = "meta-item" })],
2247
+ children = [
2248
+ #(Element:0x3ff733cf07b4 {
2249
+ name = "div",
2250
+ attributes = [ #(Attr:0x3ff7330f331c { name = "class", value = "infom" })],
2251
+ children = [
2252
+ #(Element:0x3ff7330f6bd4 { name = "h3", children = [ #(Text "Language")] }),
2253
+ #(Text "\n"),
2254
+ #(Element:0x3ff733cf0778 {
2255
+ name = "span",
2256
+ attributes = [ #(Attr:0x3ff7330feb2c { name = "title", value = "More from the language" })],
2257
+ children = [
2258
+ #(Element:0x3ff73310222c {
2259
+ name = "a",
2260
+ attributes = [
2261
+ #(Attr:0x3ff733d79794 { name = "href", value = "https://agoodmovietowatch.com/language/english/" }),
2262
+ #(Attr:0x3ff733d79780 { name = "rel", value = "tag" })],
2263
+ children = [ #(Text "English")]
2264
+ })]
2265
+ })]
2266
+ })]
2267
+ })]
2268
+ })]
2269
+ }),
2270
+ #(Text " "),
2271
+ #(Element:0x3ff733d6cb98 {
2272
+ name = "script",
2273
+ attributes = [ #(Attr:0x3ff733113c70 { name = "type", value = "text/javascript" }), #(Attr:0x3ff733113c5c { name = "async", value = "" })],
2274
+ children = [
2275
+ #(CDATA "jQuery(document).ready(function($){\n$('#agmtw-open').on('click', function(){\n\t$( \"#agmtw-open\" ).toggleClass( \"opened\" );\n $('#agmtw-opened').toggle();\n});\n$('#agmtw-open.opened').on('click', function(){\n\t$( \"#agmtw-open\" ).removeClass( \"opened\" );\n});\n var body = $( 'body' );\n});")]
2276
+ }),
2277
+ #(Text " ")]
2278
+ })]
2279
+ })]
2280
+ }),
2281
+ #(Element:0x3ff73311f3e0 {
2282
+ name = "div",
2283
+ attributes = [ #(Attr:0x3ff73311ea30 { name = "class", value = "finalbranding" })],
2284
+ children = [
2285
+ #(Text "\nRecommended to you by humans, not algorithms.\n"),
2286
+ #(Element:0x3ff733d58454 {
2287
+ name = "a",
2288
+ attributes = [
2289
+ #(Attr:0x3ff7331278d8 { name = "href", value = "/" }),
2290
+ #(Attr:0x3ff7331278c4 { name = "alt", value = "agoodmovietowatch" }),
2291
+ #(Attr:0x3ff7331278b0 { name = "class", value = "agmtw_circle" }),
2292
+ #(Attr:0x3ff73312789c { name = "title", value = "agoodmovietowatch" })],
2293
+ children = [ #(Text "\n")]
2294
+ })]
2295
+ })]
2296
+ })]
2297
+ })]
2298
+ })]
2299
+ })]
2300
+ }),
2301
+ #(Element:0x3ff73313215c {
2302
+ name = "footer",
2303
+ attributes = [
2304
+ #(Attr:0x3ff733d44c88 { name = "id", value = "colophon" }),
2305
+ #(Attr:0x3ff733d44c38 { name = "class", value = "site-footer" }),
2306
+ #(Attr:0x3ff733d44bd4 { name = "role", value = "contentinfo" })],
2307
+ children = [
2308
+ #(Element:0x3ff733d3c13c {
2309
+ name = "div",
2310
+ attributes = [ #(Attr:0x3ff73313fa00 { name = "class", value = "fcontaineur" })],
2311
+ children = [
2312
+ #(Element:0x3ff733143c90 {
2313
+ name = "div",
2314
+ attributes = [ #(Attr:0x3ff73314359c { name = "class", value = "agmtwgrey" })],
2315
+ children = [
2316
+ #(Element:0x3ff733146d8c {
2317
+ name = "a",
2318
+ attributes = [
2319
+ #(Attr:0x3ff733146698 { name = "href", value = "/" }),
2320
+ #(Attr:0x3ff733146684 { name = "alt", value = "agoodmovietowatch" }),
2321
+ #(Attr:0x3ff733146670 { name = "class", value = "newlogon footer" })],
2322
+ children = [ #(Text "a"), #(Element:0x3ff733152808 { name = "b", children = [ #(Text "goodmovie")] }), #(Text "towatch")]
2323
+ })]
2324
+ }),
2325
+ #(Element:0x3ff73315b00c {
2326
+ name = "div",
2327
+ attributes = [ #(Attr:0x3ff73315a65c { name = "class", value = "flinx" })],
2328
+ children = [
2329
+ #(Element:0x3ff73315e130 {
2330
+ name = "ul",
2331
+ attributes = [ #(Attr:0x3ff733d1986c { name = "class", value = "fsitelinx" })],
2332
+ children = [
2333
+ #(Element:0x3ff733d14d08 {
2334
+ name = "li",
2335
+ children = [
2336
+ #(Element:0x3ff733166fec {
2337
+ name = "div",
2338
+ children = [ #(Element:0x3ff733d116e4 { name = "a", attributes = [ #(Attr:0x3ff733d10e9c { name = "href", value = "/login" })], children = [ #(Text "Login")] })]
2339
+ })]
2340
+ }),
2341
+ #(Element:0x3ff73316e030 {
2342
+ name = "li",
2343
+ children = [
2344
+ #(Element:0x3ff733173bac {
2345
+ name = "a",
2346
+ attributes = [ #(Attr:0x3ff7331734b8 { name = "class", value = "llink" }), #(Attr:0x3ff7331734a4 { name = "href", value = "/suggest-movie/" })],
2347
+ children = [ #(Text "Suggest a Movie")]
2348
+ })]
2349
+ }),
2350
+ #(Element:0x3ff733cfda90 {
2351
+ name = "li",
2352
+ children = [
2353
+ #(Element:0x3ff73317f9fc {
2354
+ name = "a",
2355
+ attributes = [
2356
+ #(Attr:0x3ff73317f308 { name = "class", value = "llink" }),
2357
+ #(Attr:0x3ff73317f2f4 { name = "href", value = "http://agoodmovietowatch.substack.com" })],
2358
+ children = [ #(Text "Newsletter")]
2359
+ })]
2360
+ }),
2361
+ #(Element:0x3ff733cf1e84 {
2362
+ name = "li",
2363
+ children = [
2364
+ #(Element:0x3ff73318bbbc {
2365
+ name = "a",
2366
+ attributes = [ #(Attr:0x3ff73318b4c8 { name = "class", value = "llink" }), #(Attr:0x3ff73318b4b4 { name = "href", value = "/feedback/" })],
2367
+ children = [ #(Text "Feedback")]
2368
+ })]
2369
+ }),
2370
+ #(Element:0x3ff733197e58 {
2371
+ name = "li",
2372
+ children = [
2373
+ #(Element:0x3ff7331965e4 {
2374
+ name = "a",
2375
+ attributes = [
2376
+ #(Attr:0x3ff733ce1bc4 { name = "class", value = "flink" }),
2377
+ #(Attr:0x3ff733ce1bb0 { name = "alt", value = "Get movie suggestions on Instagram" }),
2378
+ #(Attr:0x3ff733ce1b9c { name = "href", value = "https://www.instagram.com/agoodmovietowatch/" })],
2379
+ children = [ #(Text "Instagram")]
2380
+ })]
2381
+ }),
2382
+ #(Element:0x3ff7338ff114 {
2383
+ name = "li",
2384
+ children = [
2385
+ #(Element:0x3ff733decde8 {
2386
+ name = "a",
2387
+ attributes = [
2388
+ #(Attr:0x3ff733dec6f4 { name = "class", value = "llink" }),
2389
+ #(Attr:0x3ff733dec6e0 { name = "alt", value = "Get movie suggestions on Twitter" }),
2390
+ #(Attr:0x3ff733dec6cc { name = "href", value = "https://twitter.com/agoodmovietw/" })],
2391
+ children = [ #(Text "Twitter")]
2392
+ })]
2393
+ }),
2394
+ #(Element:0x3ff732c750ec {
2395
+ name = "li",
2396
+ attributes = [ #(Attr:0x3ff732c7473c { name = "class", value = "llink" })],
2397
+ children = [
2398
+ #(Element:0x3ff732c78d8c {
2399
+ name = "a",
2400
+ attributes = [
2401
+ #(Attr:0x3ff732c78698 { name = "class", value = "flink" }),
2402
+ #(Attr:0x3ff732c78684 { name = "href", value = "https://agoodmovietowatch.com/agoodmovietowatch-terms-of-use/" })],
2403
+ children = [ #(Text "Terms of Use")]
2404
+ })]
2405
+ }),
2406
+ #(Element:0x3ff732c93434 {
2407
+ name = "li",
2408
+ attributes = [ #(Attr:0x3ff732c92a84 { name = "class", value = "llink" })],
2409
+ children = [
2410
+ #(Element:0x3ff732c967ec {
2411
+ name = "a",
2412
+ attributes = [ #(Attr:0x3ff732c960f8 { name = "class", value = "flink" }), #(Attr:0x3ff732c960e4 { name = "href", value = "/privacy-policy/" })],
2413
+ children = [ #(Text "Privacy Policy")]
2414
+ })]
2415
+ })]
2416
+ })]
2417
+ }),
2418
+ #(Element:0x3ff732ca34ec {
2419
+ name = "div",
2420
+ attributes = [ #(Attr:0x3ff732ca2b3c { name = "class", value = "copyrightagmtw" })],
2421
+ children = [
2422
+ #(Text "© 2018 agoodmovietowatch, all rights reserved. Recommendation algorithms are turning us into close-minded idiots, avoid them. We don't use one and never will. Find where to stream Food, Inc (2008) and learn more about this movie. Netflix, Amazon, Amazon Prime, and Hulu are trademarked brands, all rights reserved. Our Netflix movie recommendation engine is not produced or endorsed by Netflix, nor do the creators of this site have any affiliation with Netflix or any other VOD providers. All images, names, and trademarks are copyright and the property of their respective owners.")]
2423
+ }),
2424
+ #(Element:0x3ff732cab390 {
2425
+ name = "div",
2426
+ attributes = [ #(Attr:0x3ff732caa9e0 { name = "class", value = "site-info" })],
2427
+ children = [
2428
+ #(Element:0x3ff732cae84c {
2429
+ name = "form",
2430
+ attributes = [
2431
+ #(Attr:0x3ff732cae158 { name = "method", value = "get" }),
2432
+ #(Attr:0x3ff732cae144 { name = "id", value = "searchform2" }),
2433
+ #(Attr:0x3ff732cae130 { name = "action", value = "https://agoodmovietowatch.com/" }),
2434
+ #(Attr:0x3ff732cae11c { name = "role", value = "search" })]
2435
+ }),
2436
+ #(Text "\n"),
2437
+ #(Element:0x3ff733cd01e4 {
2438
+ name = "label",
2439
+ attributes = [ #(Attr:0x3ff732cbf64c { name = "for", value = "search" }), #(Attr:0x3ff732cbf638 { name = "class", value = "assistive-text" })],
2440
+ children = [ #(Text "Search")]
2441
+ }),
2442
+ #(Element:0x3ff732cc6bcc {
2443
+ name = "div",
2444
+ attributes = [ #(Attr:0x3ff732cc621c { name = "class", value = "ssubmit" })],
2445
+ children = [
2446
+ #(Element:0x3ff733cc18d8 {
2447
+ name = "input",
2448
+ attributes = [
2449
+ #(Attr:0x3ff732ccfbb4 { name = "type", value = "text" }),
2450
+ #(Attr:0x3ff732ccfba0 { name = "class", value = "field" }),
2451
+ #(Attr:0x3ff732ccfb8c { name = "name", value = "s" }),
2452
+ #(Attr:0x3ff732ccfb78 { name = "value", value = "" }),
2453
+ #(Attr:0x3ff732ccfb64 { name = "id", value = "sss" }),
2454
+ #(Attr:0x3ff732ccfb50 { name = "placeholder", value = "search" })]
2455
+ })]
2456
+ })]
2457
+ })]
2458
+ }),
2459
+ #(Text "\n")]
2460
+ })]
2461
+ }),
2462
+ #(Text " "),
2463
+ #(Element:0x3ff732ce6c4c {
2464
+ name = "script",
2465
+ attributes = [ #(Attr:0x3ff732ce629c { name = "type", value = "text/javascript" }), #(Attr:0x3ff732ce6288 { name = "async", value = "" })],
2466
+ children = [
2467
+ #(CDATA "/*\tvar $masthead = $( '#top-bar' ),\n\t timeout = false;\n\n\t$.fn.smallMenu = function() {\n\t\t$masthead.find( '.site-navigation' ).removeClass( 'main-navigation' ).addClass( 'main-small-navigation' );\n\t\t$masthead.find( '.site-navigation h1' ).removeClass( 'assistive-text' ).addClass( 'menu-toggle' );\n\n\t\t$( '.menu-toggle' ).unbind( 'click' ).click( function() {\n\t\t\t$masthead.find( '.menu' ).toggle();\n\t\t\t$( this ).toggleClass( 'toggled-on' );\n\t\t} );\n\t};\n\n\t// Check viewport width on first load.\n\tif ( $( window ).width() < 900 )\n\t\t$.fn.smallMenu();\n\n\t// Check viewport width when user resizes the browser window.\n\t$( window ).resize( function() {\n\t\tvar browserWidth = $( window ).width();\n\n\t\tif ( false !== timeout )\n\t\t\tclearTimeout( timeout );\n\n\t\ttimeout = setTimeout( function() {\n\t\t\tif ( browserWidth < 900 ) {\n\t\t\t\t$.fn.smallMenu();\n\t\t\t} else {\n\t\t\t\t$masthead.find( '.site-navigation' ).removeClass( 'main-small-navigation' ).addClass( 'main-navigation' );\n\t\t\t\t$masthead.find( '.site-navigation h1' ).removeClass( 'menu-toggle' ).addClass( 'assistive-text' );\n\t\t\t\t$masthead.find( '.menu' ).removeAttr( 'style' );\n\t\t\t}\n\t\t}, 200 );\n\t} );\n});\n var body = $( 'body' );\n});\n*/")]
2468
+ }),
2469
+ #(Text " "),
2470
+ #(Element:0x3ff733df2e64 {
2471
+ name = "script",
2472
+ attributes = [ #(Attr:0x3ff733df24b4 { name = "type", value = "text/javascript" })],
2473
+ children = [
2474
+ #(CDATA "jQuery(document).ready(function($){\n$(window).scroll(function() { \n var scroll = $(window).scrollTop();\n if (scroll >= 50) {\n $(\".headerwrap\").addClass(\"darkHeader\");\n } else {\n $(\".headerwrap\").removeClass(\"darkHeader\");\n }\n\t if (scroll >= 380) {\n $(\".headerwrap\").addClass(\"simpleheader\");\n } else {\n $(\".headerwrap\").removeClass(\"simpleheader\");\n }\n\t\n});\n var body = $( 'body' );\n});")]
2475
+ }),
2476
+ #(Text " "),
2477
+ #(Element:0x3ff733c8b800 {
2478
+ name = "script",
2479
+ attributes = [ #(Attr:0x3ff733c8ac84 { name = "type", value = "text/javascript" })],
2480
+ children = [
2481
+ #(CDATA "jQuery(document).ready(function($){\n$(\".rating-area\").click(function(){\n$(this).find('.rating-rate').show();\n$(this).find('.rating-content').hide();\n});\n var body = $( 'body' );\n});")]
2482
+ }),
2483
+ #(Text " "),
2484
+ #(Element:0x3ff733916dc8 {
2485
+ name = "script",
2486
+ attributes = [ #(Attr:0x3ff733916418 { name = "type", value = "text/javascript" })],
2487
+ children = [
2488
+ #(CDATA "// jQuery(document).ready(function($){\n\t\nvar prevScrollpos = window.pageYOffset;\nwindow.onscroll = function() {\n var currentScrollPos = window.pageYOffset;\n if (prevScrollpos > currentScrollPos) {\n var element = document.getElementById(\"navbar\")\n element.classList.remove(\"darkerHeader\");\n\t var element = document.getElementById(\"masthead\")\n element.classList.remove(\"collapsedHeader\"); \n } else {\n var element = document.getElementById(\"navbar\")\n element.classList.add(\"darkerHeader\");\n\tvar element = document.getElementById(\"masthead\")\n element.classList.add(\"collapsedHeader\"); \n\n }\t\n prevScrollpos = currentScrollPos;\n}\n\t\n\t\n// });\n// var body = $( 'body' );\n// });")]
2489
+ }),
2490
+ #(Text " "),
2491
+ #(Element:0x3ff73391d54c {
2492
+ name = "script",
2493
+ attributes = [ #(Attr:0x3ff73391cb9c { name = "type", value = "text/javascript" })],
2494
+ children = [
2495
+ #(CDATA "jQuery(document).ready(function($){\n$(\".icon-menu\").click(function(){\n$(document).find(\"#top-bar\").toggleClass(\"menu-opened\");\n});\n var body = $( 'body' );\n});")]
2496
+ }),
2497
+ #(Text " "),
2498
+ #(Element:0x3ff7339257b0 {
2499
+ name = "script",
2500
+ attributes = [
2501
+ #(Attr:0x3ff733924e00 { name = "src", value = "//z-na.amazon-adsystem.com/widgets/onejs?MarketPlace=US&adInstanceId=59a2f143-d0cd-4eb0-9135-7981a9bdb5fa" }),
2502
+ #(Attr:0x3ff733924dec { name = "async", value = "" })]
2503
+ }),
2504
+ #(Text " "),
2505
+ #(Element:0x3ff7339332ac {
2506
+ name = "script",
2507
+ children = [
2508
+ #(CDATA "(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){\n (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),\n m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\n })(window,document,'script','//www.google-analytics.com/analytics.js','ga');\n\n ga('create', 'UA-43843107-1', 'auto');\nga('require', 'displayfeatures');\n ga('send', 'pageview');")]
2509
+ }),
2510
+ #(Text " "),
2511
+ #(Element:0x3ff73393d194 {
2512
+ name = "div",
2513
+ attributes = [ #(Attr:0x3ff73393c7e4 { name = "id", value = "agmtw_login_box" }), #(Attr:0x3ff73393c7d0 { name = "class", value = "modal" })],
2514
+ children = [
2515
+ #(Element:0x3ff7339402e0 { name = "div", attributes = [ #(Attr:0x3ff733c444a0 { name = "class", value = "agmtw_close-modal" })] }),
2516
+ #(Element:0x3ff7339491d8 {
2517
+ name = "div",
2518
+ attributes = [ #(Attr:0x3ff733948850 { name = "class", value = "agmtw_panel_container" })],
2519
+ children = [
2520
+ #(Element:0x3ff73395198c {
2521
+ name = "div",
2522
+ attributes = [ #(Attr:0x3ff733951298 { name = "class", value = "agmtw_login_sign" })],
2523
+ children = [
2524
+ #(Text "You need to be logged in to do that"),
2525
+ #(Element:0x3ff733959290 {
2526
+ name = "p",
2527
+ children = [
2528
+ #(Text "(Free) login will also allow you to see less ads. "),
2529
+ #(Element:0x3ff73395de6c { name = "a", attributes = [ #(Attr:0x3ff73395d3e0 { name = "href", value = "/agoodmovietowatch-ads" })], children = [ #(Text "Learn more.")] })]
2530
+ })]
2531
+ }),
2532
+ #(Element:0x3ff73396471c {
2533
+ name = "div",
2534
+ attributes = [ #(Attr:0x3ff733c20dc0 { name = "class", value = "agmtw_panel agmtw_divider" })],
2535
+ children = [
2536
+ #(Text "\n"),
2537
+ #(Element:0x3ff73396c8e0 {
2538
+ name = "span",
2539
+ attributes = [ #(Attr:0x3ff733c18dc8 { name = "class", value = "agmtw_modal_title" })],
2540
+ children = [
2541
+ #(Element:0x3ff733975710 { name = "div", children = [ #(Text "CREATE A NEW ACCOUNT")] }),
2542
+ #(Element:0x3ff733978ce4 {
2543
+ name = "div",
2544
+ attributes = [ #(Attr:0x3ff73397835c { name = "class", value = "agmtw_modal_title_below" })],
2545
+ children = [ #(Text "(It only takes these 4 fields)")]
2546
+ })]
2547
+ }),
2548
+ #(Element:0x3ff7339803e0 { name = "p", attributes = [ #(Attr:0x3ff733c096e8 { name = "class", value = "agmtw_reg_errors" })] }),
2549
+ #(Element:0x3ff733989c74 {
2550
+ name = "p",
2551
+ children = [
2552
+ #(Text "\n"),
2553
+ #(Element:0x3ff7338b80e8 {
2554
+ name = "label",
2555
+ attributes = [ #(Attr:0x3ff73398d6a8 { name = "for", value = "user_name" })],
2556
+ children = [
2557
+ #(Text "\n"),
2558
+ #(Element:0x3ff7338b0ec4 {
2559
+ name = "input",
2560
+ attributes = [
2561
+ #(Attr:0x3ff733995a60 { name = "type", value = "text" }),
2562
+ #(Attr:0x3ff733995a4c { name = "name", value = "log" }),
2563
+ #(Attr:0x3ff733995a38 { name = "id", value = "user_name" }),
2564
+ #(Attr:0x3ff733995a24 { name = "placeholder", value = "username" }),
2565
+ #(Attr:0x3ff733995a10 { name = "class", value = "input" }),
2566
+ #(Attr:0x3ff7339959fc { name = "value", value = "" }),
2567
+ #(Attr:0x3ff7339959e8 { name = "size", value = "20" })]
2568
+ }),
2569
+ #(Text "\n")]
2570
+ })]
2571
+ }),
2572
+ #(Element:0x3ff7331b2910 {
2573
+ name = "p",
2574
+ children = [
2575
+ #(Text "\n"),
2576
+ #(Element:0x3ff7331b6434 {
2577
+ name = "label",
2578
+ attributes = [ #(Attr:0x3ff7331bbd94 { name = "for", value = "email" })],
2579
+ children = [
2580
+ #(Text "\n"),
2581
+ #(Element:0x3ff733880378 {
2582
+ name = "input",
2583
+ attributes = [
2584
+ #(Attr:0x3ff7331c36d4 { name = "type", value = "text" }),
2585
+ #(Attr:0x3ff7331c36c0 { name = "name", value = "email" }),
2586
+ #(Attr:0x3ff7331c36ac { name = "id", value = "user_email" }),
2587
+ #(Attr:0x3ff7331c3698 { name = "placeholder", value = "e-mail" }),
2588
+ #(Attr:0x3ff7331c3684 { name = "class", value = "input" }),
2589
+ #(Attr:0x3ff7331c3670 { name = "value", value = "" }),
2590
+ #(Attr:0x3ff7331c365c { name = "size", value = "20" })]
2591
+ }),
2592
+ #(Text "\n")]
2593
+ })]
2594
+ }),
2595
+ #(Element:0x3ff7331dfc08 {
2596
+ name = "p",
2597
+ children = [
2598
+ #(Text "\n"),
2599
+ #(Element:0x3ff7331e37cc {
2600
+ name = "label",
2601
+ attributes = [ #(Attr:0x3ff7331e2e44 { name = "for", value = "user_password" })],
2602
+ children = [
2603
+ #(Text "\n"),
2604
+ #(Element:0x3ff7331eb29c {
2605
+ name = "input",
2606
+ attributes = [
2607
+ #(Attr:0x3ff7331ea5f4 { name = "type", value = "password" }),
2608
+ #(Attr:0x3ff7331ea5e0 { name = "name", value = "pwd" }),
2609
+ #(Attr:0x3ff7331ea5cc { name = "id", value = "user_password" }),
2610
+ #(Attr:0x3ff7331ea5b8 { name = "placeholder", value = "password" }),
2611
+ #(Attr:0x3ff7331ea5a4 { name = "class", value = "input" }),
2612
+ #(Attr:0x3ff7331ea590 { name = "value", value = "" }),
2613
+ #(Attr:0x3ff7331ea57c { name = "size", value = "20" })]
2614
+ }),
2615
+ #(Text "\n")]
2616
+ })]
2617
+ }),
2618
+ #(Element:0x3ff73320fd68 {
2619
+ name = "p",
2620
+ children = [
2621
+ #(Text "\n"),
2622
+ #(Element:0x3ff733213ae4 {
2623
+ name = "label",
2624
+ attributes = [ #(Attr:0x3ff73321315c { name = "for", value = "user_passwordr" })],
2625
+ children = [
2626
+ #(Text "\n"),
2627
+ #(Element:0x3ff73321b848 {
2628
+ name = "input",
2629
+ attributes = [
2630
+ #(Attr:0x3ff73321acb8 { name = "type", value = "password" }),
2631
+ #(Attr:0x3ff73321aca4 { name = "name", value = "pwdr" }),
2632
+ #(Attr:0x3ff73321ac90 { name = "id", value = "user_passwordr" }),
2633
+ #(Attr:0x3ff73321ac7c { name = "placeholder", value = "repeat password" }),
2634
+ #(Attr:0x3ff73321ac68 { name = "class", value = "input" }),
2635
+ #(Attr:0x3ff73321ac54 { name = "value", value = "" }),
2636
+ #(Attr:0x3ff73321ac40 { name = "size", value = "20" })]
2637
+ }),
2638
+ #(Text "\n")]
2639
+ })]
2640
+ }),
2641
+ #(Element:0x3ff73323b698 {
2642
+ name = "p",
2643
+ attributes = [ #(Attr:0x3ff73323ace8 { name = "class", value = "submit" })],
2644
+ children = [
2645
+ #(Text "\n"),
2646
+ #(Element:0x3ff733242b3c {
2647
+ name = "button",
2648
+ attributes = [
2649
+ #(Attr:0x3ff7332421b4 { name = "type", value = "button" }),
2650
+ #(Attr:0x3ff7332421a0 { name = "class", value = "agmtw_register button button-primary button-large" })],
2651
+ children = [ #(Text "Register")]
2652
+ })]
2653
+ })]
2654
+ }),
2655
+ #(Element:0x3ff7339a17c0 {
2656
+ name = "div",
2657
+ attributes = [ #(Attr:0x3ff7339a0e10 { name = "class", value = "agmtw_panel" })],
2658
+ children = [
2659
+ #(Text "\n"),
2660
+ #(Element:0x3ff732c1bfb0 { name = "span", attributes = [ #(Attr:0x3ff732c1a944 { name = "class", value = "agmtw_modal_title" })], children = [ #(Text "LOG IN")] }),
2661
+ #(Element:0x3ff732c0844c { name = "p", attributes = [ #(Attr:0x3ff73306bc78 { name = "class", value = "agmtw_login_errors" })] }),
2662
+ #(Element:0x3ff733026a10 {
2663
+ name = "p",
2664
+ children = [
2665
+ #(Text "\n"),
2666
+ #(Element:0x3ff73301399c {
2667
+ name = "label",
2668
+ attributes = [ #(Attr:0x3ff733012934 { name = "for", value = "user_login" })],
2669
+ children = [
2670
+ #(Text "\n"),
2671
+ #(Element:0x3ff73399dd78 {
2672
+ name = "input",
2673
+ attributes = [
2674
+ #(Attr:0x3ff73399d0d0 { name = "type", value = "text" }),
2675
+ #(Attr:0x3ff73399d0bc { name = "name", value = "log" }),
2676
+ #(Attr:0x3ff73399d0a8 { name = "id", value = "user_login" }),
2677
+ #(Attr:0x3ff73399d094 { name = "placeholder", value = "username" }),
2678
+ #(Attr:0x3ff73399d080 { name = "class", value = "input" }),
2679
+ #(Attr:0x3ff73399d06c { name = "value", value = "" }),
2680
+ #(Attr:0x3ff73399d058 { name = "size", value = "20" })]
2681
+ }),
2682
+ #(Text "\n")]
2683
+ })]
2684
+ }),
2685
+ #(Element:0x3ff73320ba10 {
2686
+ name = "p",
2687
+ children = [
2688
+ #(Text "\n"),
2689
+ #(Element:0x3ff7331fb2dc {
2690
+ name = "label",
2691
+ attributes = [ #(Attr:0x3ff7331fa954 { name = "for", value = "user_pass" })],
2692
+ children = [
2693
+ #(Text "\n"),
2694
+ #(Element:0x3ff7331e6418 {
2695
+ name = "input",
2696
+ attributes = [
2697
+ #(Attr:0x3ff7331e395c { name = "type", value = "password" }),
2698
+ #(Attr:0x3ff7331e3948 { name = "name", value = "pwd" }),
2699
+ #(Attr:0x3ff7331e3934 { name = "id", value = "user_pass" }),
2700
+ #(Attr:0x3ff7331e3920 { name = "class", value = "input" }),
2701
+ #(Attr:0x3ff7331e390c { name = "placeholder", value = "password" }),
2702
+ #(Attr:0x3ff7331e38f8 { name = "value", value = "" }),
2703
+ #(Attr:0x3ff7331e38e4 { name = "size", value = "20" })]
2704
+ }),
2705
+ #(Text "\n")]
2706
+ })]
2707
+ }),
2708
+ #(Element:0x3ff7331b2104 {
2709
+ name = "p",
2710
+ attributes = [ #(Attr:0x3ff7331af724 { name = "class", value = "forgetmenot" })],
2711
+ children = [
2712
+ #(Text "\n"),
2713
+ #(Element:0x3ff7339952f4 {
2714
+ name = "label",
2715
+ attributes = [ #(Attr:0x3ff73399496c { name = "for", value = "rememberme" })],
2716
+ children = [
2717
+ #(Element:0x3ff73398d248 {
2718
+ name = "input",
2719
+ attributes = [
2720
+ #(Attr:0x3ff73398ca3c { name = "id", value = "agtmw_remember_me" }),
2721
+ #(Attr:0x3ff73398ca28 { name = "name", value = "rememberme" }),
2722
+ #(Attr:0x3ff73398ca14 { name = "type", value = "checkbox" }),
2723
+ #(Attr:0x3ff73398ca00 { name = "value", value = "forever" })]
2724
+ }),
2725
+ #(Text " Remember Me")]
2726
+ })]
2727
+ }),
2728
+ #(Element:0x3ff73396d2a4 {
2729
+ name = "p",
2730
+ attributes = [ #(Attr:0x3ff73396c8f4 { name = "class", value = "submit" })],
2731
+ children = [
2732
+ #(Text "\n"),
2733
+ #(Element:0x3ff733960540 {
2734
+ name = "button",
2735
+ attributes = [
2736
+ #(Attr:0x3ff73395db74 { name = "type", value = "button" }),
2737
+ #(Attr:0x3ff73395db60 { name = "class", value = "agmtw_login button button-primary button-large" })],
2738
+ children = [ #(Text "Log in")]
2739
+ })]
2740
+ })]
2741
+ }),
2742
+ #(Element:0x3ff733949a70 {
2743
+ name = "div",
2744
+ attributes = [ #(Attr:0x3ff733949098 { name = "class", value = "logindisclaimer" })],
2745
+ children = [
2746
+ #(Text "\nBy signing up, you agree to our "),
2747
+ #(Element:0x3ff73393c3e8 {
2748
+ name = "a",
2749
+ attributes = [ #(Attr:0x3ff733937a14 { name = "href", value = "https://agoodmovietowatch.com/agoodmovietowatch-terms-of-use/" })],
2750
+ children = [ #(Text "Terms of Use")]
2751
+ }),
2752
+ #(Text " and that you have read our "),
2753
+ #(Element:0x3ff733925b48 {
2754
+ name = "a",
2755
+ attributes = [ #(Attr:0x3ff733925184 { name = "href", value = "https://agoodmovietowatch.com/privacy-policy/" })],
2756
+ children = [ #(Text "Privacy Policy")]
2757
+ }),
2758
+ #(Text ". "),
2759
+ #(Element:0x3ff73391737c {
2760
+ name = "a",
2761
+ attributes = [
2762
+ #(Attr:0x3ff7339169b8 { name = "href", value = "https://agoodmovietowatch.com/wp-login.php?action=lostpassword" }),
2763
+ #(Attr:0x3ff7339169a4 { name = "title", value = "Lost Password" })],
2764
+ children = [ #(Text "Lost Password?")]
2765
+ })]
2766
+ })]
2767
+ })]
2768
+ }),
2769
+ #(Text " "),
2770
+ #(Element:0x3ff732cef4c8 {
2771
+ name = "script",
2772
+ attributes = [ #(Attr:0x3ff732ceeb18 { name = "type", value = "text/javascript" })],
2773
+ children = [ #(CDATA "var agmtw_netflix_stuff_object = {\"ajax_url\":\"https:\\/\\/agoodmovietowatch.com\\/wp-admin\\/admin-ajax.php\"};")]
2774
+ }),
2775
+ #(Text " "),
2776
+ #(Element:0x3ff732cd2918 {
2777
+ name = "script",
2778
+ attributes = [
2779
+ #(Attr:0x3ff732ccff4c { name = "type", value = "text/javascript" }),
2780
+ #(Attr:0x3ff732ccff38 { name = "src", value = "https://agoodmovietowatch.com/wp-content/plugins/netflix-stuff/netflix-stuff.js?ver=4.9.8" }),
2781
+ #(Attr:0x3ff732ccff24 { name = "async", value = "async" })]
2782
+ }),
2783
+ #(Text " "),
2784
+ #(Element:0x3ff732caf904 {
2785
+ name = "script",
2786
+ attributes = [
2787
+ #(Attr:0x3ff732caef54 { name = "type", value = "text/javascript" }),
2788
+ #(Attr:0x3ff732caef40 { name = "src", value = "https://agoodmovietowatch.com/wp-includes/js/jquery/jquery.form.min.js?ver=4.2.1" })]
2789
+ }),
2790
+ #(Text " "),
2791
+ #(Element:0x3ff732c9e8c0 {
2792
+ name = "script",
2793
+ attributes = [
2794
+ #(Attr:0x3ff732c97ee4 { name = "type", value = "text/javascript" }),
2795
+ #(Attr:0x3ff732c97ed0 { name = "src", value = "https://agoodmovietowatch.com/wp-content/plugins/bj-lazy-load/js/bj-lazy-load.min.js?ver=2" }),
2796
+ #(Attr:0x3ff732c97ebc { name = "async", value = "async" })]
2797
+ }),
2798
+ #(Text " "),
2799
+ #(Element:0x3ff732c758d0 {
2800
+ name = "script",
2801
+ attributes = [ #(Attr:0x3ff732c74f0c { name = "type", value = "text/javascript" })],
2802
+ children = [
2803
+ #(CDATA "var agmtw_ajax_object = {\"ajax_url\":\"https:\\/\\/agoodmovietowatch.com\\/wp-admin\\/admin-ajax.php\"};\nvar agmtw_ajax_object = {\"ajax_url\":\"https:\\/\\/agoodmovietowatch.com\\/wp-admin\\/admin-ajax.php\"};")]
2804
+ }),
2805
+ #(Text " "),
2806
+ #(Element:0x3ff733196814 {
2807
+ name = "script",
2808
+ attributes = [
2809
+ #(Attr:0x3ff733193e34 { name = "type", value = "text/javascript" }),
2810
+ #(Attr:0x3ff733193e20 { name = "src", value = "https://agoodmovietowatch.com/wp-content/plugins/movie-management/agmtw_script.js" }),
2811
+ #(Attr:0x3ff733193e0c { name = "async", value = "async" })]
2812
+ }),
2813
+ #(Text " "),
2814
+ #(Element:0x3ff73317b820 {
2815
+ name = "script",
2816
+ attributes = [ #(Attr:0x3ff73317ae70 { name = "type", value = "text/javascript" })],
2817
+ children = [ #(CDATA "var agmtwr_ajax_object = {\"ajax_url\":\"https:\\/\\/agoodmovietowatch.com\\/wp-admin\\/admin-ajax.php\"};")]
2818
+ }),
2819
+ #(Text " "),
2820
+ #(Element:0x3ff733166c68 {
2821
+ name = "script",
2822
+ attributes = [
2823
+ #(Attr:0x3ff7331662a4 { name = "type", value = "text/javascript" }),
2824
+ #(Attr:0x3ff733166290 { name = "src", value = "https://agoodmovietowatch.com/wp-content/plugins/agmtw-rating/agmtwr_script.js" }),
2825
+ #(Attr:0x3ff73316627c { name = "async", value = "async" })]
2826
+ }),
2827
+ #(Text " "),
2828
+ #(Element:0x3ff733147cc8 { name = "noscript", children = [ #(Text "Your browser does not support JavaScript!")] })]
2829
+ })]
2830
+ })]
2831
+ })