##		<div class="large-12 medium-12 smal-12 columns no-pad">
			<h1 class="entry-title">FNArena Members Only</h1>

			<p style="margin-top: 12px;">The full story is for FNArena subscribers only. To read the full story plus enjoy a free two-week trial to our service <a href="/index.php/free-trial"><b>SIGN UP HERE</b></a></p>
			<p>If you already had your free trial, why not join as a paying subscriber? <a href="/index.php/sign-up/"><b>CLICK HERE</b></a></p>

			<hr/>

			<div class="large-12 medium-12 smal-12 columns" style="background:#F0F0F0; border:1px solid #DDDDDD;">
				<h2 class="noborderbot marbot-0">Are You A Subscriber?</h2>
				<p>If you are a subscriber to FNArena you may need to login first using your username and password.</p>
			</div>
			<div class="large-12 columns" style="border:1px solid #DDDDDD; padding-top:10px; padding-bottom:20px;">
				<form class="formLogin" action="https://staging.fnarena.com/wp-content/themes/fnarena/action-forms/wp_login.php" method="post">
					<input type="hidden" name="gobackto" value="https://staging.fnarena.com/index.php/wp-json/wp/v2/pages/73">
										<h2 class="noborderbot marbot-0 martop-0 padl-10">MEMBER LOGIN</h2>
					<div class="medium-6 small-12 columns">
						<div class="row rows">
							<div class="small-4 columns" style="padding-top: 6px;">
								<label for="right-label nowrap" class="left">Username</label>
							</div>
							<div class="small-8 columns">
								<input name="username" type="text" id="right-label" placeholder="username" value="">
							</div>
						</div>
						<div class="row rows">
							<div class="small-4 columns" style="padding-top: 6px;">
								<label for="right-label nowrap" class="left">Password</label>
							</div>
							<div class="small-8 columns">
								<input name="password" type="password" id="right-label" placeholder="password" value="">
							</div>
						</div>
						<div class="row rows">
							<div class="small-8 columns">
								<p class="marbot-5"><a class="s12 black redH martop-0 marbot-0" href="https://staging.fnarena.com/index.php/forgot-password">
									<u>Lost your login details?</u>
								</a></p>
								<input type="checkbox" name="rememberMe" value="1"  style="cursor:pointer; margin-bottom:0px; float: left; margin-top: 4px;">
								<div style="float: left; white-space: nowrap; font-size: 13px; color: #000;  padding-top: 1px; margin-left: 7px;"><p>Remember me</p></div>
							</div>
							<div class="small-4 columns text-right">
								<input type="submit" style="padding:10px 20px;" id="searchsubmit" value="LOGIN" class="button tiny nomarginbot radius">
							</div>
						</div>
					</div>
				</form>
				<div class="clearfix"></div>
			</div>
			<div class="large-12 medium-12 smal-12 columns" style="background:#F0F0F0; border:1px solid #DDDDDD;">
				<p class="martop-15 marbot-15">FNArena is building the future of financial news reporting. Thank you for supporting our ambition.</p>
			</div>
		</div>
		<div class="clearfix"></div>
				<style>
			.ui-widget-content a { color: #12417f; }
			.ui-menu-item {
				padding-left:25px;
			}
			.click-here{
				white-space: nowrap;
				padding-left:8px;
				padding-top:2px;
			}
			.click-below{
				white-space: nowrap;
				padding-left:25px;
				padding-top:10px;
				padding-bottom:10px;
			}
			ul.ui-autocomplete > li.click-here:hover,
			ul.ui-autocomplete > li.ui-menu-item:hover {
				background:#dbeef3;
			}
			</style>
			<div class="large-12 columns no-pad search_form">
				<form action="https://staging.fnarena.com/index.php/search/" style="background:#f8f8f8; padding: 14px 18px 16px 18px;" id="searchform" method="get" role="search" class="search-form">
					<h5 class="helveLTbold" style="margin-bottom:5px;">Search Stocks & Stories</h5>
					<div class="row collapse">
						<div class="medium-9 large-9 columns">
							<input type="text" placeholder="Enter company name or ASX code" id="s" name="searchkeyword" value="" class="nomarginbot">
						</div>
						<div class="medium-3 large-3 columns">
							<input type="submit" class="button postfix tiny nomarginbot" value="Search" id="searchsubmit" style="border-radius:0px !important;">
						</div>
						<div class="clearfix"></div>
					</div>
				</form>
			</div>
			<script>

            jQuery(document).ready(function(){

                  jQuery( "#s" ).autocomplete({
				    source: function(request, response) {
				        if (request.term.length < 3) {
				            response([]);
				            return;
				        }
				        
				        jQuery.ajax({
				            url: '/wp-content/themes/fnarena/ajax_company_search.php',
				            dataType: "json",
				            data: {
				                term: request.term
				            },
				            success: function(data) {
				                // First deduplicate the Ajax results
				                var uniqueResults = [];
				                var seenLabels = {};
				                
				                // Remove duplicates from initial data
				                jQuery.each(data, function(i, item) {
				                    if (!seenLabels[item.label]) {
				                        seenLabels[item.label] = true;
				                        uniqueResults.push(item);
				                    }
				                });
				                
				                // Filter for top suggestions (exact matches at start)
				                var top_suggestions = jQuery.grep(uniqueResults, function(n, i) {
				                    return (n.label.substr(0, request.term.length).toLowerCase() == request.term.toLowerCase());
				                });
				                
				                // Since we've already deduplicated, we can safely merge
				                var final_results = jQuery.merge(top_suggestions, uniqueResults);
				                
				                // Remove any duplicates that might have been created during merge
				                var finalUnique = [];
				                seenLabels = {};
				                
				                jQuery.each(final_results, function(i, item) {
				                    if (!seenLabels[item.label]) {
				                        seenLabels[item.label] = true;
				                        finalUnique.push(item);
				                    }
				                });
				                
				                response(finalUnique);
				            },
				            error: function() {
				                response([]);
				            }
				        });
				    },
				    minLength: 3,
				    open: function(e, ui) {
				        var acData = jQuery(this).data('ui-autocomplete');
				        acData.menu.element.find('li').each(function() {
				            var me = jQuery(this);
				            var keywords = acData.term.split(' ').join('|');
				            me.html(me.text().replace(new RegExp("(" + keywords + ")", "gi"), '<b>$1</b>'));
				        });
				        
				        var searchletter = acData.term.split(' ').join('|');
				        jQuery('ul.ui-autocomplete').prepend('<li class="click-here"><a href="/index.php?s='+searchletter+'">Click here to search using : '+searchletter+'</a></li>');
				        jQuery('ul.ui-autocomplete').prepend('<li class="click-below">Click below to search by company : </li>');
				    }
				});
            });
            </script>
			<div class="clearfix"></div>
	        <div class="clearfix"></div>
        <div class="large-12 medium-12 columns no-pad martop-15 latest-news">
            <h2>Latest News</h2>
            <div class="inner-area">
            <table style='margin:0px; border:0px;'>                        <tr>
                            <td valign="top" align="left" style="background: white; font-size:16px; padding-top:2px; border:0px; ">
                                <span>1</span>
                            </td>
                            <td valign="top" align="left" style="background: white; padding:0px; border:0px; ">
                                <h6 class="marbot-5 helveLTstdCN" style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px;">
                                    <a href="https://staging.fnarena.com/index.php/2025/10/07/technologyones-saas-transformation-complete/">TechnologyOne&#8217;s SaaS Transformation &#8216;Complete&#8217;</a>
                                </h6>
                                <p class="s12 marbot-0 gray ">Oct 07 2025 - <font color="#12417F"><a href="https://staging.fnarena.com/index.php/financial-news/daily-financial-news/category/australia/" rel="category tag">Australia</a></font></p>
                            </td>
                        </tr>
                        <tr><td colspan='2' style="background: white; padding:10px 0px; border:0px; "><hr style="margin:0px !important;"/></td></tr>
                                            <tr>
                            <td valign="top" align="left" style="background: white; font-size:16px; padding-top:2px; border:0px; ">
                                <span>2</span>
                            </td>
                            <td valign="top" align="left" style="background: white; padding:0px; border:0px; ">
                                <h6 class="marbot-5 helveLTstdCN" style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px;">
                                    <a href="https://staging.fnarena.com/index.php/2025/10/06/stock-market-in-september-republish/">Stock Market in September Republish</a>
                                </h6>
                                <p class="s12 marbot-0 gray ">Oct 06 2025 - <font color="#12417F"><a href="https://staging.fnarena.com/index.php/financial-news/daily-financial-news/category/international/" rel="category tag">International</a></font></p>
                            </td>
                        </tr>
                        <tr><td colspan='2' style="background: white; padding:10px 0px; border:0px; "><hr style="margin:0px !important;"/></td></tr>
                                            <tr>
                            <td valign="top" align="left" style="background: white; font-size:16px; padding-top:2px; border:0px; ">
                                <span>3</span>
                            </td>
                            <td valign="top" align="left" style="background: white; padding:0px; border:0px; ">
                                <h6 class="marbot-5 helveLTstdCN" style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px;">
                                    <a href="https://staging.fnarena.com/index.php/2025/10/06/stock-market-in-september/">Stock Market in September</a>
                                </h6>
                                <p class="s12 marbot-0 gray ">Oct 06 2025 - <font color="#12417F"><a href="https://staging.fnarena.com/index.php/financial-news/daily-financial-news/category/international/" rel="category tag">International</a></font></p>
                            </td>
                        </tr>
                        <tr><td colspan='2' style="background: white; padding:10px 0px; border:0px; "><hr style="margin:0px !important;"/></td></tr>
                                            <tr>
                            <td valign="top" align="left" style="background: white; font-size:16px; padding-top:2px; border:0px; ">
                                <span>4</span>
                            </td>
                            <td valign="top" align="left" style="background: white; padding:0px; border:0px; ">
                                <h6 class="marbot-5 helveLTstdCN" style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px;">
                                    <a href="https://staging.fnarena.com/index.php/2025/10/06/technologyone-story-by-novi/">TechnologyOne Story by Novi</a>
                                </h6>
                                <p class="s12 marbot-0 gray ">Oct 06 2025 - <font color="#12417F"><a href="https://staging.fnarena.com/index.php/financial-news/daily-financial-news/category/international/" rel="category tag">International</a></font></p>
                            </td>
                        </tr>
                        <tr><td colspan='2' style="background: white; padding:10px 0px; border:0px; "><hr style="margin:0px !important;"/></td></tr>
                                            <tr>
                            <td valign="top" align="left" style="background: white; font-size:16px; padding-top:2px; border:0px; ">
                                <span>5</span>
                            </td>
                            <td valign="top" align="left" style="background: white; padding:0px; border:0px; ">
                                <h6 class="marbot-5 helveLTstdCN" style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px;">
                                    <a href="https://staging.fnarena.com/index.php/2025/06/12/geopolitical-hedging-drives-investor-confidence-in-commbank/">Geopolitical Hedging Drives Investor Confidence in CommBank</a>
                                </h6>
                                <p class="s12 marbot-0 gray ">Jun 12 2025 - <font color="#12417F"><a href="https://staging.fnarena.com/index.php/financial-news/daily-financial-news/category/general/" rel="category tag">General</a></font></p>
                            </td>
                        </tr>
                        <tr><td colspan='2' style="background: white; padding:10px 0px; border:0px; "><hr style="margin:0px !important;"/></td></tr>
                                    </table>            </div>
        </div>
        <div class="clearfix"></div>
							
				<div><div class="textwidget custom-html-widget"></div></div>
						<!-- <div class="large-12 medium-12 columns no-pad marbot-5">
				<script async src="https://www.googletagservices.com/tag/js/gpt.js"></script>
				<script>
					var googletag = googletag || {};
					googletag.cmd = googletag.cmd || [];
				</script>

				<div id="div-gpt-ad-1520311188559-0">
					<script>
						googletag.cmd.push(function() {
							googletag.defineSlot('/76291182/FNarena-MREC', [300, 250], 'div-gpt-ad-1520311188559-0').addService(googletag.pubads());
							googletag.enableServices();
							googletag.display('div-gpt-ad-1520311188559-0');
						});
					</script>
				</div>
			</div> -->
	
		<div class="large-12 medium-12 columns no-pad most-popular">
			<h2>Most Popular</h2>
			<div class="inner-area">
              <table style='margin:0px; border:0px;'>							<p>No Data</p>
														<p>No Data</p>
														<p>No Data</p>
														<p>No Data</p>
														<p>No Data</p>
														<p>No Data</p>
							</table>            </div>
		</div>
		<div class="clearfix"></div>
	{"id":73,"date":"2015-02-28T07:31:00","date_gmt":"2015-02-27T20:31:00","guid":{"rendered":"http:\/\/www.fnarena.com\/?page_id=73"},"modified":"2023-05-29T14:33:30","modified_gmt":"2023-05-29T04:33:30","slug":"super-stock-report","status":"publish","type":"page","link":"https:\/\/staging.fnarena.com\/index.php\/analysis-data\/super-stock-report\/","title":{"rendered":"Super Stock Report"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row][vc_column width=&#8221;3\/4&#8243;][vc_column_text][\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/4&#8243;][vc_column_text css=&#8221;.vc_custom_1467906653958{margin-bottom: 0px !important;}&#8221;][\/vc_column_text][vc_column_text][\/vc_column_text][vc_column_text][\/vc_column_text][\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row][vc_column width=&#8221;3\/4&#8243;][vc_column_text][\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/4&#8243;][vc_column_text css=&#8221;.vc_custom_1467906653958{margin-bottom: 0px !important;}&#8221;][\/vc_column_text][vc_column_text][\/vc_column_text][vc_column_text][\/vc_column_text][\/vc_column][\/vc_row]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":14,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"acf":[],"_links":{"self":[{"href":"https:\/\/staging.fnarena.com\/index.php\/wp-json\/wp\/v2\/pages\/73"}],"collection":[{"href":"https:\/\/staging.fnarena.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/staging.fnarena.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/staging.fnarena.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/staging.fnarena.com\/index.php\/wp-json\/wp\/v2\/comments?post=73"}],"version-history":[{"count":0,"href":"https:\/\/staging.fnarena.com\/index.php\/wp-json\/wp\/v2\/pages\/73\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/staging.fnarena.com\/index.php\/wp-json\/wp\/v2\/pages\/14"}],"wp:attachment":[{"href":"https:\/\/staging.fnarena.com\/index.php\/wp-json\/wp\/v2\/media?parent=73"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}